├── .gitignore ├── README.md ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenhost2.png ├── screenshot.png ├── screenshot1.png ├── settings.gradle ├── settings.yaml ├── templates ├── archives.html ├── assets │ ├── css │ │ ├── font.css │ │ ├── jqcloud.min.css │ │ └── style.css │ ├── fonts │ │ ├── EJRQQgYoZZY2vCFuvAFT9gaQZy3foPNB.woff2 │ │ ├── EJRQQgYoZZY2vCFuvAFT9gaQZyTfoPNB.woff2 │ │ ├── EJRQQgYoZZY2vCFuvAFT9gaQZyffoPNB.woff2 │ │ ├── EJRQQgYoZZY2vCFuvAFT9gaQZynfoA.woff2 │ │ ├── EJRSQgYoZZY2vCFuvAnt66qSVys.woff2 │ │ ├── EJRSQgYoZZY2vCFuvAnt66qWVyvHpA.woff2 │ │ ├── EJRSQgYoZZY2vCFuvAnt66qcVyvHpA.woff2 │ │ ├── EJRSQgYoZZY2vCFuvAnt66qfVyvHpA.woff2 │ │ ├── EJRTQgYoZZY2vCFuvAFT_r21cg.woff2 │ │ ├── EJRTQgYoZZY2vCFuvAFT_rC1chb-.woff2 │ │ ├── EJRTQgYoZZY2vCFuvAFT_rO1chb-.woff2 │ │ ├── EJRTQgYoZZY2vCFuvAFT_rm1chb-.woff2 │ │ ├── EJRVQgYoZZY2vCFuvAFSzr-tdg.woff2 │ │ ├── EJRVQgYoZZY2vCFuvAFWzr8.woff2 │ │ ├── EJRVQgYoZZY2vCFuvAFYzr-tdg.woff2 │ │ └── EJRVQgYoZZY2vCFuvAFbzr-tdg.woff2 │ ├── images │ │ ├── code_bg.png │ │ ├── line-tile.png │ │ ├── noise.png │ │ ├── rss.png │ │ └── search.svg │ └── js │ │ ├── jqcloud.min.js │ │ ├── jquery.min.js │ │ ├── main.js │ │ └── modernizr-2.0.js ├── categories.html ├── category.html ├── index.html ├── layout.html ├── page.html ├── post.html ├── sidebar.html ├── tag.html └── tags.html └── theme.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | .DS_Store 12 | *.local 13 | 14 | # Editor directories and files 15 | .vscode/* 16 | !.vscode/extensions.json 17 | .idea 18 | *.suo 19 | *.ntvs* 20 | *.njsproj 21 | *.sln 22 | *.sw? 23 | 24 | .gradle 25 | build 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | Halo 2.0 Geek主题,本主题参考Octopress,关注文章内容,极客风格 4 | 5 | ## 😃 预览 6 | DEMO:[https://www.codehome.vip](https://www.codehome.vip) 7 | 截图: 8 | ![](./screenshot1.png) 9 | 10 | ![](./screenhost2.png) 11 | ## ⚡ 功能 12 |
13 | 点击查看完整功能列表 14 | 15 | - [x] halo2.x模板适配 16 | - [x] 社交媒体 17 | - [x] 标签、分类云 18 | - [x] 搜索组件适配 19 | - [x] 评论组件适配 20 | - [x] Rss默认显示 21 | - [x] 代码高亮 22 | - [x] 移动客户端适配 23 | 24 | ## 本地安装 25 | 1. 点击链接[下载](https://github.com/mytianya/halo-theme-geek/releases) 26 | 2. 进入 Halo 后台 -> 外观 -> 主题 27 | 3. 点击右上角 “切换主题”, 在弹出的窗口中选择 “安装主题” 28 | 4. 选择下载好的主题包(zip) 29 | 5. 安装完成后的主题将会出现在 “未安装” 内,点击启用主题 30 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java' 3 | } 4 | 5 | group 'run.halo' 6 | version '1.0' 7 | 8 | repositories { 9 | mavenCentral() 10 | } 11 | 12 | dependencies { 13 | implementation('org.thymeleaf:thymeleaf:3.0.12.RELEASE') 14 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Copyright © 2015-2021 the original authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | # 21 | # Gradle start up script for POSIX generated by Gradle. 22 | # 23 | # Important for running: 24 | # 25 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 26 | # noncompliant, but you have some other compliant shell such as ksh or 27 | # bash, then to run this script, type that shell name before the whole 28 | # command line, like: 29 | # 30 | # ksh Gradle 31 | # 32 | # Busybox and similar reduced shells will NOT work, because this script 33 | # requires all of these POSIX shell features: 34 | # * functions; 35 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», 36 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»; 37 | # * compound commands having a testable exit status, especially «case»; 38 | # * various built-in commands including «command», «set», and «ulimit». 39 | # 40 | # Important for patching: 41 | # 42 | # (2) This script targets any POSIX shell, so it avoids extensions provided 43 | # by Bash, Ksh, etc; in particular arrays are avoided. 44 | # 45 | # The "traditional" practice of packing multiple parameters into a 46 | # space-separated string is a well documented source of bugs and security 47 | # problems, so this is (mostly) avoided, by progressively accumulating 48 | # options in "$@", and eventually passing that to Java. 49 | # 50 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 51 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 52 | # see the in-line comments for details. 53 | # 54 | # There are tweaks for specific operating systems such as AIX, CygWin, 55 | # Darwin, MinGW, and NonStop. 56 | # 57 | # (3) This script is generated from the Groovy template 58 | # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 59 | # within the Gradle project. 60 | # 61 | # You can find Gradle at https://github.com/gradle/gradle/. 62 | # 63 | ############################################################################## 64 | 65 | # Attempt to set APP_HOME 66 | 67 | # Resolve links: $0 may be a link 68 | app_path=$0 69 | 70 | # Need this for daisy-chained symlinks. 71 | while 72 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 73 | [ -h "$app_path" ] 74 | do 75 | ls=$( ls -ld "$app_path" ) 76 | link=${ls#*' -> '} 77 | case $link in #( 78 | /*) app_path=$link ;; #( 79 | *) app_path=$APP_HOME$link ;; 80 | esac 81 | done 82 | 83 | APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit 84 | 85 | APP_NAME="Gradle" 86 | APP_BASE_NAME=${0##*/} 87 | 88 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 89 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 90 | 91 | # Use the maximum available, or set MAX_FD != -1 to use that value. 92 | MAX_FD=maximum 93 | 94 | warn () { 95 | echo "$*" 96 | } >&2 97 | 98 | die () { 99 | echo 100 | echo "$*" 101 | echo 102 | exit 1 103 | } >&2 104 | 105 | # OS specific support (must be 'true' or 'false'). 106 | cygwin=false 107 | msys=false 108 | darwin=false 109 | nonstop=false 110 | case "$( uname )" in #( 111 | CYGWIN* ) cygwin=true ;; #( 112 | Darwin* ) darwin=true ;; #( 113 | MSYS* | MINGW* ) msys=true ;; #( 114 | NONSTOP* ) nonstop=true ;; 115 | esac 116 | 117 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 118 | 119 | 120 | # Determine the Java command to use to start the JVM. 121 | if [ -n "$JAVA_HOME" ] ; then 122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 123 | # IBM's JDK on AIX uses strange locations for the executables 124 | JAVACMD=$JAVA_HOME/jre/sh/java 125 | else 126 | JAVACMD=$JAVA_HOME/bin/java 127 | fi 128 | if [ ! -x "$JAVACMD" ] ; then 129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 130 | 131 | Please set the JAVA_HOME variable in your environment to match the 132 | location of your Java installation." 133 | fi 134 | else 135 | JAVACMD=java 136 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 137 | 138 | Please set the JAVA_HOME variable in your environment to match the 139 | location of your Java installation." 140 | fi 141 | 142 | # Increase the maximum file descriptors if we can. 143 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 144 | case $MAX_FD in #( 145 | max*) 146 | MAX_FD=$( ulimit -H -n ) || 147 | warn "Could not query maximum file descriptor limit" 148 | esac 149 | case $MAX_FD in #( 150 | '' | soft) :;; #( 151 | *) 152 | ulimit -n "$MAX_FD" || 153 | warn "Could not set maximum file descriptor limit to $MAX_FD" 154 | esac 155 | fi 156 | 157 | # Collect all arguments for the java command, stacking in reverse order: 158 | # * args from the command line 159 | # * the main class name 160 | # * -classpath 161 | # * -D...appname settings 162 | # * --module-path (only if needed) 163 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 164 | 165 | # For Cygwin or MSYS, switch paths to Windows format before running java 166 | if "$cygwin" || "$msys" ; then 167 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 168 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 169 | 170 | JAVACMD=$( cygpath --unix "$JAVACMD" ) 171 | 172 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 173 | for arg do 174 | if 175 | case $arg in #( 176 | -*) false ;; # don't mess with options #( 177 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 178 | [ -e "$t" ] ;; #( 179 | *) false ;; 180 | esac 181 | then 182 | arg=$( cygpath --path --ignore --mixed "$arg" ) 183 | fi 184 | # Roll the args list around exactly as many times as the number of 185 | # args, so each arg winds up back in the position where it started, but 186 | # possibly modified. 187 | # 188 | # NB: a `for` loop captures its iteration list before it begins, so 189 | # changing the positional parameters here affects neither the number of 190 | # iterations, nor the values presented in `arg`. 191 | shift # remove old arg 192 | set -- "$@" "$arg" # push replacement arg 193 | done 194 | fi 195 | 196 | # Collect all arguments for the java command; 197 | # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of 198 | # shell script including quotes and variable substitutions, so put them in 199 | # double quotes to make sure that they get re-expanded; and 200 | # * put everything else in single quotes, so that it's not re-expanded. 201 | 202 | set -- \ 203 | "-Dorg.gradle.appname=$APP_BASE_NAME" \ 204 | -classpath "$CLASSPATH" \ 205 | org.gradle.wrapper.GradleWrapperMain \ 206 | "$@" 207 | 208 | # Use "xargs" to parse quoted args. 209 | # 210 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 211 | # 212 | # In Bash we could simply go: 213 | # 214 | # readarray ARGS < <( xargs -n1 <<<"$var" ) && 215 | # set -- "${ARGS[@]}" "$@" 216 | # 217 | # but POSIX shell has neither arrays nor command substitution, so instead we 218 | # post-process each arg (as a line of input to sed) to backslash-escape any 219 | # character that might be a shell metacharacter, then use eval to reverse 220 | # that process (while maintaining the separation between arguments), and wrap 221 | # the whole thing up as a single "set" statement. 222 | # 223 | # This will of course break if any of these variables contains a newline or 224 | # an unmatched quote. 225 | # 226 | 227 | eval "set -- $( 228 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 229 | xargs -n1 | 230 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 231 | tr '\n' ' ' 232 | )" '"$@"' 233 | 234 | exec "$JAVACMD" "$@" 235 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /screenhost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/screenhost2.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/screenshot.png -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/screenshot1.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'theme-starter' 2 | -------------------------------------------------------------------------------- /settings.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1alpha1 2 | kind: Setting 3 | metadata: 4 | name: theme-geek-setting 5 | spec: 6 | forms: 7 | - group: beian 8 | label: 备案设置 9 | formSchema: 10 | - $formkit: text 11 | name: icp_text 12 | label: ICP备案号 13 | - $formkit: text 14 | name: icp_link 15 | label: ICP备案跳转链接 16 | value: https://beian.miit.gov.cn/ 17 | - group: social 18 | label: 社交媒体 19 | formSchema: 20 | - $formkit: repeater 21 | name: socials 22 | label: 社交媒体 23 | value: [] 24 | children: 25 | - $formkit: text 26 | name: name 27 | label: 名称 28 | value: "" 29 | - $formkit: text 30 | name: url 31 | label: 地址 32 | value: "" 33 | - $formkit: select 34 | name: icon 35 | label: 图标 36 | options: 37 | - label: 电子邮箱 38 | value: fa fa-envelope 39 | - label: 微信 40 | value: fa fa-weixin 41 | - label: 腾讯 QQ 42 | value: fa fa-qq 43 | - label: 新浪微博 44 | value: fa fa-weibo 45 | - label: GitHub 46 | value: fa fa-github -------------------------------------------------------------------------------- /templates/archives.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |
7 |
8 |
9 |

Blog Archive

10 |
11 | 12 |
13 |

14 | 15 | 16 |
17 |

19 | 20 | 21 |
22 |
23 |
24 | 25 |
26 | 30 |
31 |
32 | 33 | 34 | 35 | 36 | 37 | 38 |
39 |
40 |
41 | 42 | 43 | -------------------------------------------------------------------------------- /templates/assets/css/font.css: -------------------------------------------------------------------------------- 1 | /* cyrillic-ext */ 2 | @font-face { 3 | font-family: 'PT Serif'; 4 | font-style: italic; 5 | font-weight: 400; 6 | src: url(../fonts/EJRTQgYoZZY2vCFuvAFT_rC1chb-.woff2) format('woff2'); 7 | unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; 8 | } 9 | /* cyrillic */ 10 | @font-face { 11 | font-family: 'PT Serif'; 12 | font-style: italic; 13 | font-weight: 400; 14 | src: url(../fonts/EJRTQgYoZZY2vCFuvAFT_rm1chb-.woff2) format('woff2'); 15 | unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; 16 | } 17 | /* latin-ext */ 18 | @font-face { 19 | font-family: 'PT Serif'; 20 | font-style: italic; 21 | font-weight: 400; 22 | src: url(../fonts/EJRTQgYoZZY2vCFuvAFT_rO1chb-.woff2) format('woff2'); 23 | unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; 24 | } 25 | /* latin */ 26 | @font-face { 27 | font-family: 'PT Serif'; 28 | font-style: italic; 29 | font-weight: 400; 30 | src: url(../fonts/EJRTQgYoZZY2vCFuvAFT_r21cg.woff2) format('woff2'); 31 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 32 | } 33 | /* cyrillic-ext */ 34 | @font-face { 35 | font-family: 'PT Serif'; 36 | font-style: italic; 37 | font-weight: 700; 38 | src: url(../fonts/EJRQQgYoZZY2vCFuvAFT9gaQZyTfoPNB.woff2) format('woff2'); 39 | unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; 40 | } 41 | /* cyrillic */ 42 | @font-face { 43 | font-family: 'PT Serif'; 44 | font-style: italic; 45 | font-weight: 700; 46 | src: url(../fonts/EJRQQgYoZZY2vCFuvAFT9gaQZy3foPNB.woff2) format('woff2'); 47 | unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; 48 | } 49 | /* latin-ext */ 50 | @font-face { 51 | font-family: 'PT Serif'; 52 | font-style: italic; 53 | font-weight: 700; 54 | src: url(../fonts/EJRQQgYoZZY2vCFuvAFT9gaQZyffoPNB.woff2) format('woff2'); 55 | unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; 56 | } 57 | /* latin */ 58 | @font-face { 59 | font-family: 'PT Serif'; 60 | font-style: italic; 61 | font-weight: 700; 62 | src: url(../fonts/EJRQQgYoZZY2vCFuvAFT9gaQZynfoA.woff2) format('woff2'); 63 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 64 | } 65 | /* cyrillic-ext */ 66 | @font-face { 67 | font-family: 'PT Serif'; 68 | font-style: normal; 69 | font-weight: 400; 70 | src: url(../fonts/EJRVQgYoZZY2vCFuvAFbzr-tdg.woff2) format('woff2'); 71 | unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; 72 | } 73 | /* cyrillic */ 74 | @font-face { 75 | font-family: 'PT Serif'; 76 | font-style: normal; 77 | font-weight: 400; 78 | src: url(../fonts/EJRVQgYoZZY2vCFuvAFSzr-tdg.woff2) format('woff2'); 79 | unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; 80 | } 81 | /* latin-ext */ 82 | @font-face { 83 | font-family: 'PT Serif'; 84 | font-style: normal; 85 | font-weight: 400; 86 | src: url(../fonts/EJRVQgYoZZY2vCFuvAFYzr-tdg.woff2) format('woff2'); 87 | unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; 88 | } 89 | /* latin */ 90 | @font-face { 91 | font-family: 'PT Serif'; 92 | font-style: normal; 93 | font-weight: 400; 94 | src: url(../fonts/EJRVQgYoZZY2vCFuvAFWzr8.woff2) format('woff2'); 95 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 96 | } 97 | /* cyrillic-ext */ 98 | @font-face { 99 | font-family: 'PT Serif'; 100 | font-style: normal; 101 | font-weight: 700; 102 | src: url(../fonts/EJRSQgYoZZY2vCFuvAnt66qfVyvHpA.woff2) format('woff2'); 103 | unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; 104 | } 105 | /* cyrillic */ 106 | @font-face { 107 | font-family: 'PT Serif'; 108 | font-style: normal; 109 | font-weight: 700; 110 | src: url(../fonts/EJRSQgYoZZY2vCFuvAnt66qWVyvHpA.woff2) format('woff2'); 111 | unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; 112 | } 113 | /* latin-ext */ 114 | @font-face { 115 | font-family: 'PT Serif'; 116 | font-style: normal; 117 | font-weight: 700; 118 | src: url(../fonts/EJRSQgYoZZY2vCFuvAnt66qcVyvHpA.woff2) format('woff2'); 119 | unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; 120 | } 121 | /* latin */ 122 | @font-face { 123 | font-family: 'PT Serif'; 124 | font-style: normal; 125 | font-weight: 700; 126 | src: url(../fonts/EJRSQgYoZZY2vCFuvAnt66qSVys.woff2) format('woff2'); 127 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 128 | } -------------------------------------------------------------------------------- /templates/assets/css/jqcloud.min.css: -------------------------------------------------------------------------------- 1 | .jqcloud{font:10px Helvetica,Arial,sans-serif;line-height:normal;overflow:hidden;position:relative}.jqcloud-word{margin:0;padding:0}.jqcloud-word.w1{color:#aab5f0;font-size:100%}.jqcloud-word.w2{color:#9ce;font-size:150%}.jqcloud-word.w3{color:#a0ddff;font-size:200%}.jqcloud-word.w4{color:#90c5f0;font-size:250%}.jqcloud-word.w5{color:#90a0dd;font-size:300%}.jqcloud-word.w6{color:#90c5f0;font-size:350%}.jqcloud-word.w7{color:#39d;font-size:400%}.jqcloud-word.w8{color:#0cf;font-size:450%}.jqcloud-word.w9{color:#0cf;font-size:500%}.jqcloud-word.w10{color:#0cf;font-size:550%}.jqcloud-word a{color:inherit;font-size:inherit;text-decoration:none}.jqcloud-word a:hover{color:#0cf} -------------------------------------------------------------------------------- /templates/assets/css/style.css: -------------------------------------------------------------------------------- 1 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { 2 | margin: 0; 3 | padding: 0; 4 | border: 0; 5 | font: inherit; 6 | font-size: 100%; 7 | vertical-align: baseline 8 | } 9 | 10 | html { 11 | line-height: 1 12 | } 13 | body{ 14 | background-color: #f2f2f2; 15 | } 16 | ol,ul { 17 | list-style: none 18 | } 19 | table { 20 | border-collapse: collapse; 21 | border-spacing: 0 22 | } 23 | 24 | caption,th,td { 25 | text-align: left; 26 | font-weight: normal; 27 | vertical-align: middle 28 | } 29 | 30 | q,blockquote { 31 | quotes: none 32 | } 33 | 34 | q:before,q:after,blockquote:before,blockquote:after { 35 | content: ""; 36 | content: none 37 | } 38 | 39 | a img { 40 | border: none 41 | } 42 | 43 | article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary { 44 | display: block 45 | } 46 | 47 | a { 48 | color: #1863a1 49 | } 50 | 51 | a:visited { 52 | color: #751590 53 | } 54 | 55 | a:focus { 56 | color: #0181eb 57 | } 58 | 59 | a:hover { 60 | color: #0181eb 61 | } 62 | 63 | a:active { 64 | color: #01579f 65 | } 66 | 67 | aside.sidebar a { 68 | color: #222 69 | } 70 | 71 | aside.sidebar a:focus { 72 | color: #0181eb 73 | } 74 | 75 | aside.sidebar a:hover { 76 | color: #0181eb 77 | } 78 | 79 | aside.sidebar a:active { 80 | color: #01579f 81 | } 82 | 83 | a { 84 | -webkit-transition: color 0.3s; 85 | -moz-transition: color 0.3s; 86 | -o-transition: color 0.3s; 87 | transition: color 0.3s 88 | } 89 | 90 | html { 91 | background: #252525 url('../images/line-tile.png') top left 92 | } 93 | 94 | /* body>div { 95 | background: #f2f2f2 url('../images/noise.png?1478113812') top left; 96 | border-bottom: 1px solid #bfbfbf 97 | } */ 98 | 99 | /* body>div>div { 100 | background: #f8f8f8 url('../images/noise.png?1478113812') top left; 101 | border-right: 1px solid #e0e0e0 102 | } */ 103 | 104 | .heading,body>header h1,h1,h2,h3,h4,h5,h6 { 105 | font-family: "PT Serif","Georgia","Helvetica Neue",Arial,sans-serif 106 | } 107 | 108 | .sans,body>header h2,article header p.meta,article>footer,#content .blog-index footer,html .gist .gist-file .gist-meta,#blog-archives a.category,#blog-archives time,aside.sidebar section,body>footer { 109 | font-family: "PT Sans","Helvetica Neue",Arial,sans-serif 110 | } 111 | 112 | .serif,body,#content .blog-index a[rel=full-article] { 113 | font-family: "PT Serif",Georgia,Times,"Times New Roman",serif 114 | } 115 | 116 | .mono,pre,code,tt,p code,li code { 117 | font-family: Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace 118 | } 119 | 120 | body>header h1 { 121 | font-size: 2.2em; 122 | font-family: "PT Serif","Georgia","Helvetica Neue",Arial,sans-serif; 123 | font-weight: normal; 124 | line-height: 1.2em; 125 | margin-bottom: 0.6667em 126 | } 127 | 128 | body>header h2 { 129 | font-family: "PT Serif","Georgia","Helvetica Neue",Arial,sans-serif 130 | } 131 | 132 | body { 133 | line-height: 1.5em; 134 | color: #222 135 | } 136 | 137 | h1 { 138 | font-size: 2.2em; 139 | line-height: 1.2em 140 | } 141 | 142 | @media only screen and (min-width: 992px) { 143 | body { 144 | font-size:1.15em 145 | } 146 | 147 | h1 { 148 | font-size: 2.6em; 149 | line-height: 1.2em 150 | } 151 | } 152 | 153 | h1,h2,h3,h4,h5,h6 { 154 | text-rendering: optimizelegibility; 155 | margin-bottom: 1em; 156 | font-weight: bold 157 | } 158 | 159 | h2,section h1 { 160 | font-size: 1.5em 161 | } 162 | 163 | h3,section h2,section section h1 { 164 | font-size: 1.3em 165 | } 166 | 167 | h4,section h3,section section h2,section section section h1 { 168 | font-size: 1em 169 | } 170 | 171 | h5,section h4,section section h3 { 172 | font-size: .9em 173 | } 174 | 175 | h6,section h5,section section h4,section section section h3 { 176 | font-size: .8em 177 | } 178 | 179 | p,article blockquote,ul,ol { 180 | margin-bottom: 1.5em 181 | } 182 | 183 | ul { 184 | list-style-type: disc 185 | } 186 | 187 | ul ul { 188 | list-style-type: circle; 189 | margin-bottom: 0px 190 | } 191 | 192 | ul ul ul { 193 | list-style-type: square; 194 | margin-bottom: 0px 195 | } 196 | 197 | ol { 198 | list-style-type: decimal 199 | } 200 | 201 | ol ol { 202 | list-style-type: lower-alpha; 203 | margin-bottom: 0px 204 | } 205 | 206 | ol ol ol { 207 | list-style-type: lower-roman; 208 | margin-bottom: 0px 209 | } 210 | 211 | ul,ul ul,ul ol,ol,ol ul,ol ol { 212 | margin-left: 1.3em 213 | } 214 | 215 | ul ul,ul ol,ol ul,ol ol { 216 | margin-bottom: 0em 217 | } 218 | 219 | strong { 220 | font-weight: bold 221 | } 222 | 223 | em { 224 | font-style: italic 225 | } 226 | 227 | sup,sub { 228 | font-size: 0.75em; 229 | position: relative; 230 | display: inline-block; 231 | padding: 0 .2em; 232 | line-height: .8em 233 | } 234 | 235 | sup { 236 | top: -.5em 237 | } 238 | 239 | sub { 240 | bottom: -.5em 241 | } 242 | 243 | a[rev='footnote'] { 244 | font-size: .75em; 245 | padding: 0 .3em; 246 | line-height: 1 247 | } 248 | 249 | q { 250 | font-style: italic 251 | } 252 | 253 | q:before { 254 | content: "\201C" 255 | } 256 | 257 | q:after { 258 | content: "\201D" 259 | } 260 | 261 | em,dfn { 262 | font-style: italic 263 | } 264 | 265 | strong,dfn { 266 | font-weight: bold 267 | } 268 | 269 | del,s { 270 | text-decoration: line-through 271 | } 272 | 273 | abbr,acronym { 274 | border-bottom: 1px dotted; 275 | cursor: help 276 | } 277 | 278 | hr { 279 | margin-bottom: 0.2em 280 | } 281 | 282 | small { 283 | font-size: .8em 284 | } 285 | 286 | big { 287 | font-size: 1.2em 288 | } 289 | 290 | article blockquote { 291 | font-style: italic; 292 | position: relative; 293 | font-size: 1.2em; 294 | line-height: 1.5em; 295 | padding-left: 1em; 296 | border-left: 4px solid rgba(170,170,170,0.5) 297 | } 298 | 299 | article blockquote cite { 300 | font-style: italic 301 | } 302 | 303 | article blockquote cite a { 304 | color: #aaa !important; 305 | word-wrap: break-word 306 | } 307 | 308 | article blockquote cite:before { 309 | content: '\2014'; 310 | padding-right: .3em; 311 | padding-left: .3em; 312 | color: #aaa 313 | } 314 | 315 | @media only screen and (min-width: 992px) { 316 | article blockquote { 317 | padding-left:1.5em; 318 | border-left-width: 4px 319 | } 320 | } 321 | 322 | .pullquote-right:before,.pullquote-left:before { 323 | padding: 0; 324 | border: none; 325 | content: attr(data-pullquote); 326 | float: right; 327 | width: 45%; 328 | margin: .5em 0 1em 1.5em; 329 | position: relative; 330 | top: 7px; 331 | font-size: 1.4em; 332 | line-height: 1.45em 333 | } 334 | 335 | .pullquote-left:before { 336 | float: left; 337 | margin: .5em 1.5em 1em 0 338 | } 339 | 340 | .force-wrap,article a,aside.sidebar a { 341 | white-space: -moz-pre-wrap; 342 | white-space: -pre-wrap; 343 | white-space: -o-pre-wrap; 344 | white-space: pre-wrap; 345 | word-wrap: break-word 346 | } 347 | 348 | .group,body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section,body div.pagination,aside.sidebar,#main,#content,.sidebar { 349 | *zoom:1} 350 | 351 | .group:after,body>header:after,body>nav:after,body>footer:after,body #content>article:after,body #content>div>section:after,body div.pagination:after,#main:after,#content:after,.sidebar:after { 352 | content: ""; 353 | display: table; 354 | clear: both 355 | } 356 | 357 | body { 358 | -webkit-text-size-adjust: none; 359 | max-width: 1200px; 360 | position: relative; 361 | margin: 0 auto 362 | } 363 | .entry-content > table th{ 364 | background-color: rgba(0,0,0,.1); 365 | padding:8px 16px; 366 | border:1px solid #dfe2e5; 367 | line-height: 1.5; 368 | font-size:90%; 369 | } 370 | .entry-content > table td { 371 | padding: 8px 16px; 372 | border: 1px solid #dfe2e5; 373 | line-height: 1.5; 374 | font-size: 90%; 375 | } 376 | body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section { 377 | padding-left: 18px; 378 | padding-right: 18px 379 | } 380 | 381 | @media only screen and (min-width: 480px) { 382 | body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section { 383 | padding-left:25px; 384 | padding-right: 25px 385 | } 386 | } 387 | 388 | @media only screen and (min-width: 768px) { 389 | body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section { 390 | padding-left:35px; 391 | padding-right: 35px 392 | } 393 | } 394 | 395 | @media only screen and (min-width: 992px) { 396 | body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section { 397 | padding-left:55px; 398 | padding-right: 55px 399 | } 400 | } 401 | 402 | body div.pagination { 403 | margin-left: 18px; 404 | margin-right: 18px 405 | } 406 | 407 | @media only screen and (min-width: 480px) { 408 | body div.pagination { 409 | margin-left:25px; 410 | margin-right: 25px 411 | } 412 | } 413 | 414 | @media only screen and (min-width: 768px) { 415 | body div.pagination { 416 | margin-left:35px; 417 | margin-right: 35px 418 | } 419 | } 420 | 421 | @media only screen and (min-width: 992px) { 422 | body div.pagination { 423 | margin-left:55px; 424 | margin-right: 55px 425 | } 426 | } 427 | 428 | body>header { 429 | font-size: 1em; 430 | padding-top: 1.5em; 431 | padding-bottom: 1.5em 432 | } 433 | 434 | #content { 435 | overflow: hidden 436 | } 437 | 438 | #content>div,#content>article { 439 | width: 100% 440 | } 441 | 442 | aside.sidebar { 443 | float: none; 444 | padding: 0 18px 1px; 445 | background-color: #f7f7f7; 446 | border-top: 1px solid #e0e0e0 447 | } 448 | 449 | .flex-content,article img,article video,article .flash-video,aside.sidebar img { 450 | max-width: 100%; 451 | height: auto 452 | } 453 | 454 | .basic-alignment.left,article img.left,article video.left,article .left.flash-video,aside.sidebar img.left { 455 | float: left; 456 | margin-right: 1.5em 457 | } 458 | 459 | .basic-alignment.right,article img.right,article video.right,article .right.flash-video,aside.sidebar img.right { 460 | float: right; 461 | margin-left: 1.5em 462 | } 463 | 464 | .basic-alignment.center,article img.center,article video.center,article .center.flash-video,aside.sidebar img.center { 465 | display: block; 466 | margin: 0 auto 1.5em 467 | } 468 | 469 | .basic-alignment.left,article img.left,article video.left,article .left.flash-video,aside.sidebar img.left,.basic-alignment.right,article img.right,article video.right,article .right.flash-video,aside.sidebar img.right { 470 | margin-bottom: .8em 471 | } 472 | 473 | .toggle-sidebar,.no-sidebar .toggle-sidebar { 474 | display: none 475 | } 476 | 477 | @media only screen and (min-width: 750px) { 478 | body.sidebar-footer aside.sidebar { 479 | float:none; 480 | width: auto; 481 | clear: left; 482 | margin: 0; 483 | padding: 0 35px 1px; 484 | background-color: #f7f7f7; 485 | border-top: 1px solid #eaeaea 486 | } 487 | 488 | body.sidebar-footer aside.sidebar section.odd,body.sidebar-footer aside.sidebar section.even { 489 | float: left; 490 | width: 48% 491 | } 492 | 493 | body.sidebar-footer aside.sidebar section.odd { 494 | margin-left: 0 495 | } 496 | 497 | body.sidebar-footer aside.sidebar section.even { 498 | margin-left: 4% 499 | } 500 | 501 | body.sidebar-footer aside.sidebar.thirds section { 502 | width: 30%; 503 | margin-left: 5% 504 | } 505 | 506 | body.sidebar-footer aside.sidebar.thirds section.first { 507 | margin-left: 0; 508 | clear: both 509 | } 510 | } 511 | 512 | body.sidebar-footer #content { 513 | margin-right: 0px 514 | } 515 | 516 | body.sidebar-footer .toggle-sidebar { 517 | display: none 518 | } 519 | 520 | @media only screen and (min-width: 550px) { 521 | body>header { 522 | font-size:1em 523 | } 524 | } 525 | 526 | @media only screen and (min-width: 750px) { 527 | aside.sidebar { 528 | float:none; 529 | width: auto; 530 | clear: left; 531 | margin: 0; 532 | padding: 0 35px 1px; 533 | background-color: #f7f7f7; 534 | border-top: 1px solid #eaeaea 535 | } 536 | 537 | aside.sidebar section.odd,aside.sidebar section.even { 538 | float: left; 539 | width: 48% 540 | } 541 | 542 | aside.sidebar section.odd { 543 | margin-left: 0 544 | } 545 | 546 | aside.sidebar section.even { 547 | margin-left: 4% 548 | } 549 | 550 | aside.sidebar.thirds section { 551 | width: 30%; 552 | margin-left: 5% 553 | } 554 | 555 | aside.sidebar.thirds section.first { 556 | margin-left: 0; 557 | clear: both 558 | } 559 | } 560 | 561 | @media only screen and (min-width: 768px) { 562 | body { 563 | -webkit-text-size-adjust:auto 564 | } 565 | 566 | body>header { 567 | font-size: 1.2em 568 | } 569 | 570 | #main { 571 | padding: 0; 572 | margin: 0 auto 573 | } 574 | 575 | #content { 576 | overflow: visible; 577 | margin-right: 240px; 578 | position: relative 579 | } 580 | 581 | .no-sidebar #content { 582 | margin-right: 0; 583 | border-right: 0 584 | } 585 | 586 | .collapse-sidebar #content { 587 | margin-right: 20px 588 | } 589 | 590 | #content>div,#content>article { 591 | padding-top: 17.5px; 592 | padding-bottom: 17.5px; 593 | float: left 594 | } 595 | 596 | aside.sidebar { 597 | width: 210px; 598 | padding: 0 15px 15px; 599 | background: none; 600 | clear: none; 601 | float: left; 602 | margin: 0 -100% 0 0 603 | } 604 | 605 | aside.sidebar section { 606 | width: auto; 607 | margin-left: 0 608 | } 609 | 610 | aside.sidebar section.odd,aside.sidebar section.even { 611 | float: none; 612 | width: auto; 613 | margin-left: 0 614 | } 615 | 616 | .collapse-sidebar aside.sidebar { 617 | float: none; 618 | width: auto; 619 | clear: left; 620 | margin: 0; 621 | padding: 0 35px 1px; 622 | background-color: #f7f7f7; 623 | border-top: 1px solid #eaeaea 624 | } 625 | 626 | .collapse-sidebar aside.sidebar section.odd,.collapse-sidebar aside.sidebar section.even { 627 | float: left; 628 | width: 48% 629 | } 630 | 631 | .collapse-sidebar aside.sidebar section.odd { 632 | margin-left: 0 633 | } 634 | 635 | .collapse-sidebar aside.sidebar section.even { 636 | margin-left: 4% 637 | } 638 | 639 | .collapse-sidebar aside.sidebar.thirds section { 640 | width: 30%; 641 | margin-left: 5% 642 | } 643 | 644 | .collapse-sidebar aside.sidebar.thirds section.first { 645 | margin-left: 0; 646 | clear: both 647 | } 648 | } 649 | 650 | @media only screen and (min-width: 992px) { 651 | body>header { 652 | font-size:1.3em 653 | } 654 | 655 | #content { 656 | margin-right: 300px 657 | } 658 | 659 | #content>div,#content>article { 660 | padding-top: 27.5px; 661 | padding-bottom: 27.5px 662 | } 663 | 664 | aside.sidebar { 665 | width: 260px; 666 | padding: 1.2em 20px 20px 667 | } 668 | 669 | .collapse-sidebar aside.sidebar { 670 | padding-left: 55px; 671 | padding-right: 55px 672 | } 673 | } 674 | 675 | @media only screen and (min-width: 768px) { 676 | ul,ol { 677 | margin-left:0 678 | } 679 | } 680 | 681 | body>header { 682 | background: #333 683 | } 684 | 685 | body>header h1 { 686 | display: inline-block; 687 | margin: 0 688 | } 689 | 690 | body>header h1 a,body>header h1 a:visited,body>header h1 a:hover { 691 | color: #f2f2f2; 692 | text-decoration: none 693 | } 694 | 695 | body>header h2 { 696 | margin: .2em 0 0; 697 | font-size: 1em; 698 | color: #aaa; 699 | font-weight: normal 700 | } 701 | 702 | body>nav { 703 | position: relative; 704 | background-color: #ccc; 705 | background: url('../images/noise.png?1478113812'),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0e0e0), color-stop(50%, #cccccc), color-stop(100%, #b0b0b0)); 706 | background: url('../images/noise.png?1478113812'),-webkit-linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 707 | background: url('../images/noise.png?1478113812'),-moz-linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 708 | background: url('../images/noise.png?1478113812'),-o-linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 709 | background: url('../images/noise.png?1478113812'),linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 710 | border-top: 1px solid #f2f2f2; 711 | border-bottom: 1px solid #8c8c8c; 712 | padding-top: .35em; 713 | padding-bottom: .35em 714 | } 715 | 716 | body>nav form { 717 | -webkit-background-clip: padding; 718 | -moz-background-clip: padding; 719 | background-clip: padding-box; 720 | margin: 0; 721 | padding: 0 722 | } 723 | 724 | body>nav form .search { 725 | padding: .3em .5em 0; 726 | font-size: .85em; 727 | font-family: "PT Sans","Helvetica Neue",Arial,sans-serif; 728 | line-height: 1.1em; 729 | width: 95%; 730 | -webkit-border-radius: 0.5em; 731 | -moz-border-radius: 0.5em; 732 | -ms-border-radius: 0.5em; 733 | -o-border-radius: 0.5em; 734 | border-radius: 0.5em; 735 | -webkit-background-clip: padding; 736 | -moz-background-clip: padding; 737 | background-clip: padding-box; 738 | -webkit-box-shadow: #d1d1d1 0 1px; 739 | -moz-box-shadow: #d1d1d1 0 1px; 740 | box-shadow: #d1d1d1 0 1px; 741 | background-color: #f2f2f2; 742 | border: 1px solid #b3b3b3; 743 | color: #888 744 | } 745 | 746 | body>nav form .search:focus { 747 | color: #444; 748 | border-color: #80b1df; 749 | -webkit-box-shadow: #80b1df 0 0 4px,#80b1df 0 0 3px inset; 750 | -moz-box-shadow: #80b1df 0 0 4px,#80b1df 0 0 3px inset; 751 | box-shadow: #80b1df 0 0 4px,#80b1df 0 0 3px inset; 752 | background-color: #fff; 753 | outline: none 754 | } 755 | 756 | body>nav fieldset[role=search] { 757 | float: right; 758 | width: 48% 759 | } 760 | 761 | body>nav fieldset.mobile-nav { 762 | float: left; 763 | width: 48% 764 | } 765 | 766 | body>nav fieldset.mobile-nav select { 767 | width: 100%; 768 | font-size: .8em; 769 | border: 1px solid #888 770 | } 771 | 772 | body>nav ul { 773 | display: none 774 | } 775 | 776 | @media only screen and (min-width: 550px) { 777 | body>nav { 778 | font-size:.9em 779 | } 780 | 781 | body>nav ul { 782 | margin: 0; 783 | padding: 0; 784 | border: 0; 785 | overflow: hidden; 786 | *zoom:1;float: left; 787 | display: block; 788 | padding-top: .15em 789 | } 790 | 791 | body>nav ul li { 792 | list-style-image: none; 793 | list-style-type: none; 794 | margin-left: 0; 795 | white-space: nowrap; 796 | display: inline; 797 | float: left; 798 | padding-left: 0; 799 | padding-right: 0 800 | } 801 | 802 | body>nav ul li:first-child,body>nav ul li.first { 803 | padding-left: 0 804 | } 805 | 806 | body>nav ul li:last-child { 807 | padding-right: 0 808 | } 809 | 810 | body>nav ul li.last { 811 | padding-right: 0 812 | } 813 | 814 | body>nav ul.subscription { 815 | margin-left: .8em; 816 | float: right 817 | } 818 | 819 | body>nav ul.subscription li:last-child a { 820 | padding-right: 0 821 | } 822 | 823 | body>nav ul li { 824 | margin: 0 825 | } 826 | 827 | body>nav a { 828 | color: #6b6b6b; 829 | font-family: "PT Sans","Helvetica Neue",Arial,sans-serif; 830 | text-shadow: #ebebeb 0 1px; 831 | float: left; 832 | text-decoration: none; 833 | font-size: 1.1em; 834 | padding: .1em 0; 835 | line-height: 1.5em 836 | } 837 | 838 | body>nav a:visited { 839 | color: #6b6b6b 840 | } 841 | 842 | body>nav a:hover { 843 | color: #2b2b2b 844 | } 845 | 846 | body>nav li+li { 847 | border-left: 1px solid #b0b0b0; 848 | margin-left: .8em 849 | } 850 | 851 | body>nav li+li a { 852 | padding-left: .8em; 853 | border-left: 1px solid #dedede 854 | } 855 | 856 | body>nav form { 857 | float: right; 858 | text-align: left; 859 | padding-left: .8em; 860 | width: 175px 861 | } 862 | 863 | body>nav form .search { 864 | width: 93%; 865 | font-size: .95em; 866 | line-height: 1.2em 867 | } 868 | 869 | body>nav ul[data-subscription$=email]+form { 870 | width: 97px 871 | } 872 | 873 | body>nav ul[data-subscription$=email]+form .search { 874 | width: 91% 875 | } 876 | 877 | body>nav fieldset.mobile-nav { 878 | display: none 879 | } 880 | 881 | body>nav fieldset[role=search] { 882 | width: 99% 883 | } 884 | } 885 | 886 | @media only screen and (min-width: 992px) { 887 | body>nav form { 888 | width:215px 889 | } 890 | 891 | body>nav ul[data-subscription$=email]+form { 892 | width: 147px 893 | } 894 | } 895 | 896 | .no-placeholder body>nav .search { 897 | background: #f2f2f2 url('../images/search.png?1478113812') 0.3em 0.25em no-repeat; 898 | text-indent: 1.3em 899 | } 900 | 901 | @media only screen and (min-width: 550px) { 902 | .maskImage body>nav ul[data-subscription$=email]+form { 903 | width:123px 904 | } 905 | } 906 | 907 | @media only screen and (min-width: 992px) { 908 | .maskImage body>nav ul[data-subscription$=email]+form { 909 | width:173px 910 | } 911 | } 912 | 913 | .maskImage ul.subscription { 914 | position: relative; 915 | top: .2em 916 | } 917 | 918 | .maskImage ul.subscription li,.maskImage ul.subscription a { 919 | border: 0; 920 | padding: 0 921 | } 922 | 923 | .maskImage a[rel=subscribe-rss] { 924 | position: relative; 925 | top: 0px; 926 | text-indent: -999999em; 927 | background-color: #dedede; 928 | border: 0; 929 | padding: 0 930 | } 931 | 932 | .maskImage a[rel=subscribe-rss],.maskImage a[rel=subscribe-rss]:after { 933 | -webkit-mask-image: url('../images/rss.png?1478113812'); 934 | -moz-mask-image: url('../images/rss.png?1478113812'); 935 | -ms-mask-image: url('../images/rss.png?1478113812'); 936 | -o-mask-image: url('../images/rss.png?1478113812'); 937 | mask-image: url('../images/rss.png?1478113812'); 938 | -webkit-mask-repeat: no-repeat; 939 | -moz-mask-repeat: no-repeat; 940 | -ms-mask-repeat: no-repeat; 941 | -o-mask-repeat: no-repeat; 942 | mask-repeat: no-repeat; 943 | width: 22px; 944 | height: 22px 945 | } 946 | 947 | .maskImage a[rel=subscribe-rss]:after { 948 | content: ""; 949 | position: absolute; 950 | top: -1px; 951 | left: 0; 952 | background-color: #ababab 953 | } 954 | 955 | .maskImage a[rel=subscribe-rss]:hover:after { 956 | background-color: #9e9e9e 957 | } 958 | 959 | .maskImage a[rel=subscribe-email] { 960 | position: relative; 961 | top: 0px; 962 | text-indent: -999999em; 963 | background-color: #dedede; 964 | border: 0; 965 | padding: 0 966 | } 967 | 968 | .maskImage a[rel=subscribe-email],.maskImage a[rel=subscribe-email]:after { 969 | -webkit-mask-image: url('../images/email.png?1478113812'); 970 | -moz-mask-image: url('../images/email.png?1478113812'); 971 | -ms-mask-image: url('../images/email.png?1478113812'); 972 | -o-mask-image: url('../images/email.png?1478113812'); 973 | mask-image: url('../images/email.png?1478113812'); 974 | -webkit-mask-repeat: no-repeat; 975 | -moz-mask-repeat: no-repeat; 976 | -ms-mask-repeat: no-repeat; 977 | -o-mask-repeat: no-repeat; 978 | mask-repeat: no-repeat; 979 | width: 28px; 980 | height: 22px 981 | } 982 | 983 | .maskImage a[rel=subscribe-email]:after { 984 | content: ""; 985 | position: absolute; 986 | top: -1px; 987 | left: 0; 988 | background-color: #ababab 989 | } 990 | 991 | .maskImage a[rel=subscribe-email]:hover:after { 992 | background-color: #9e9e9e 993 | } 994 | 995 | article { 996 | padding-top: 1em 997 | } 998 | 999 | article header { 1000 | position: relative; 1001 | padding-top: 2em; 1002 | padding-bottom: 1em; 1003 | margin-bottom: 1em; 1004 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x 1005 | } 1006 | 1007 | article header h1 { 1008 | margin: 0 1009 | } 1010 | 1011 | article header h1 a { 1012 | text-decoration: none 1013 | } 1014 | 1015 | article header h1 a:hover { 1016 | text-decoration: underline 1017 | } 1018 | 1019 | article header p { 1020 | font-size: .9em; 1021 | color: #aaa; 1022 | margin: 0 1023 | } 1024 | 1025 | article header p.meta { 1026 | text-transform: uppercase; 1027 | position: absolute; 1028 | top: 0 1029 | } 1030 | 1031 | @media only screen and (min-width: 768px) { 1032 | article header { 1033 | margin-bottom:1.5em; 1034 | padding-bottom: 1em; 1035 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x 1036 | } 1037 | } 1038 | 1039 | article h2 { 1040 | padding-top: 0.8em; 1041 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x 1042 | } 1043 | 1044 | .entry-content article h2:first-child,article header+h2 { 1045 | padding-top: 0 1046 | } 1047 | 1048 | article h2:first-child,article header+h2 { 1049 | background: none 1050 | } 1051 | 1052 | article .feature { 1053 | padding-top: .5em; 1054 | margin-bottom: 1em; 1055 | padding-bottom: 1em; 1056 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x; 1057 | font-size: 2.0em; 1058 | font-style: italic; 1059 | line-height: 1.3em 1060 | } 1061 | 1062 | article img,article video,article .flash-video { 1063 | -webkit-border-radius: 0.3em; 1064 | -moz-border-radius: 0.3em; 1065 | -ms-border-radius: 0.3em; 1066 | -o-border-radius: 0.3em; 1067 | border-radius: 0.3em; 1068 | -webkit-box-shadow: rgba(0,0,0,0.15) 0 1px 4px; 1069 | -moz-box-shadow: rgba(0,0,0,0.15) 0 1px 4px; 1070 | box-shadow: rgba(0,0,0,0.15) 0 1px 4px; 1071 | -webkit-box-sizing: border-box; 1072 | -moz-box-sizing: border-box; 1073 | box-sizing: border-box; 1074 | border: #fff 0.5em solid 1075 | } 1076 | 1077 | article video,article .flash-video { 1078 | margin: 0 auto 1.5em 1079 | } 1080 | 1081 | article video { 1082 | display: block; 1083 | width: 100% 1084 | } 1085 | 1086 | article .flash-video>div { 1087 | position: relative; 1088 | display: block; 1089 | padding-bottom: 56.25%; 1090 | padding-top: 1px; 1091 | height: 0; 1092 | overflow: hidden 1093 | } 1094 | 1095 | article .flash-video>div iframe,article .flash-video>div object,article .flash-video>div embed { 1096 | position: absolute; 1097 | top: 0; 1098 | left: 0; 1099 | width: 100%; 1100 | height: 100% 1101 | } 1102 | 1103 | article>footer { 1104 | padding-bottom: 2.5em; 1105 | margin-top: 2em 1106 | } 1107 | 1108 | article>footer p.meta { 1109 | margin-bottom: .8em; 1110 | font-size: .85em; 1111 | clear: both; 1112 | overflow: hidden 1113 | } 1114 | 1115 | .blog-index article+article { 1116 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x 1117 | } 1118 | 1119 | #content .blog-index { 1120 | padding-top: 0; 1121 | padding-bottom: 0 1122 | } 1123 | 1124 | #content .blog-index article { 1125 | padding-top: 2em 1126 | } 1127 | 1128 | #content .blog-index article header { 1129 | background: none; 1130 | padding-bottom: 0 1131 | } 1132 | 1133 | #content .blog-index article h1 { 1134 | font-size: 2.2em 1135 | } 1136 | 1137 | #content .blog-index article h1 a { 1138 | color: inherit 1139 | } 1140 | 1141 | #content .blog-index article h1 a:hover { 1142 | color: #0181eb 1143 | } 1144 | 1145 | #content .blog-index a[rel=full-article] { 1146 | background: #ebebeb; 1147 | display: inline-block; 1148 | padding: .4em .8em; 1149 | margin-right: .5em; 1150 | text-decoration: none; 1151 | color: #666; 1152 | -webkit-transition: background-color 0.5s; 1153 | -moz-transition: background-color 0.5s; 1154 | -o-transition: background-color 0.5s; 1155 | transition: background-color 0.5s 1156 | } 1157 | 1158 | #content .blog-index a[rel=full-article]:hover { 1159 | background: #0181eb; 1160 | text-shadow: none; 1161 | color: #f8f8f8 1162 | } 1163 | 1164 | #content .blog-index footer { 1165 | margin-top: 1em 1166 | } 1167 | 1168 | .separator,article>footer .byline+time:before,article>footer time+time:before,article>footer .comments:before,article>footer .byline ~ .categories:before { 1169 | content: "\2022 "; 1170 | padding: 0 .4em 0 .2em; 1171 | display: inline-block 1172 | } 1173 | 1174 | #content div.pagination { 1175 | text-align: center; 1176 | font-size: .95em; 1177 | position: relative; 1178 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x; 1179 | padding-top: 1.5em; 1180 | padding-bottom: 1.5em 1181 | } 1182 | 1183 | #content div.pagination a { 1184 | text-decoration: none; 1185 | color: #aaa 1186 | } 1187 | 1188 | #content div.pagination a.prev { 1189 | position: absolute; 1190 | left: 0 1191 | } 1192 | 1193 | #content div.pagination a.next { 1194 | position: absolute; 1195 | right: 0 1196 | } 1197 | 1198 | #content div.pagination a:hover { 1199 | color: #0181eb 1200 | } 1201 | 1202 | #content div.pagination a[href*=archive]:before,#content div.pagination a[href*=archive]:after { 1203 | content: '\2014'; 1204 | padding: 0 .3em 1205 | } 1206 | 1207 | p.meta+.sharing { 1208 | padding-top: 1em; 1209 | padding-left: 0; 1210 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x 1211 | } 1212 | 1213 | #fb-root { 1214 | display: none 1215 | } 1216 | 1217 | .highlight,html .gist .gist-file .gist-syntax .gist-highlight { 1218 | border: 1px solid #05232b !important 1219 | } 1220 | 1221 | .highlight table td.code,html .gist .gist-file .gist-syntax .gist-highlight table td.code { 1222 | width: 100% 1223 | } 1224 | 1225 | .highlight .line-numbers,html .gist .gist-file .gist-syntax .highlight .line_numbers { 1226 | text-align: right; 1227 | font-size: 13px; 1228 | line-height: 1.45em; 1229 | background: #073642 url('../images/noise.png?1478113812') top left !important; 1230 | border-right: 1px solid #00232c !important; 1231 | -webkit-box-shadow: #083e4b -1px 0 inset; 1232 | -moz-box-shadow: #083e4b -1px 0 inset; 1233 | box-shadow: #083e4b -1px 0 inset; 1234 | text-shadow: #021014 0 -1px; 1235 | padding: .8em !important; 1236 | -webkit-border-radius: 0; 1237 | -moz-border-radius: 0; 1238 | -ms-border-radius: 0; 1239 | -o-border-radius: 0; 1240 | border-radius: 0 1241 | } 1242 | 1243 | .highlight .line-numbers span,html .gist .gist-file .gist-syntax .highlight .line_numbers span { 1244 | color: #586e75 !important 1245 | } 1246 | 1247 | figure.code,.gist-file,pre { 1248 | -webkit-box-shadow: rgba(0,0,0,0.06) 0 0 10px; 1249 | -moz-box-shadow: rgba(0,0,0,0.06) 0 0 10px; 1250 | box-shadow: rgba(0,0,0,0.06) 0 0 10px 1251 | } 1252 | 1253 | figure.code .highlight pre,.gist-file .highlight pre,pre .highlight pre { 1254 | -webkit-box-shadow: none; 1255 | -moz-box-shadow: none; 1256 | box-shadow: none 1257 | } 1258 | 1259 | .gist .highlight *::-moz-selection,figure.code .highlight *::-moz-selection { 1260 | background: #386774; 1261 | color: inherit; 1262 | text-shadow: #002b36 0 1px 1263 | } 1264 | 1265 | .gist .highlight *::-webkit-selection,figure.code .highlight *::-webkit-selection { 1266 | background: #386774; 1267 | color: inherit; 1268 | text-shadow: #002b36 0 1px 1269 | } 1270 | 1271 | .gist .highlight *::selection,figure.code .highlight *::selection { 1272 | background: #386774; 1273 | color: inherit; 1274 | text-shadow: #002b36 0 1px 1275 | } 1276 | 1277 | html .gist .gist-file { 1278 | margin-bottom: 1.8em; 1279 | position: relative; 1280 | border: none; 1281 | padding-top: 26px !important 1282 | } 1283 | 1284 | html .gist .gist-file .highlight { 1285 | margin-bottom: 0 1286 | } 1287 | 1288 | html .gist .gist-file .gist-syntax { 1289 | border-bottom: 0 !important; 1290 | background: none !important 1291 | } 1292 | 1293 | html .gist .gist-file .gist-syntax .gist-highlight { 1294 | background: #002b36 !important 1295 | } 1296 | 1297 | html .gist .gist-file .gist-syntax .highlight pre { 1298 | padding: 0 1299 | } 1300 | 1301 | html .gist .gist-file .gist-meta { 1302 | padding: .6em 0.8em; 1303 | border: 1px solid #083e4b !important; 1304 | color: #586e75; 1305 | font-size: .7em !important; 1306 | background: #073642 url('../images/noise.png?1478113812') top left; 1307 | line-height: 1.5em 1308 | } 1309 | 1310 | html .gist .gist-file .gist-meta a { 1311 | color: #75878b !important; 1312 | text-decoration: none 1313 | } 1314 | 1315 | html .gist .gist-file .gist-meta a:hover { 1316 | text-decoration: underline 1317 | } 1318 | 1319 | html .gist .gist-file .gist-meta a:hover { 1320 | color: #93a1a1 !important 1321 | } 1322 | 1323 | html .gist .gist-file .gist-meta a[href*='#file'] { 1324 | position: absolute; 1325 | top: 0; 1326 | left: 0; 1327 | right: -10px; 1328 | color: #474747 !important 1329 | } 1330 | 1331 | html .gist .gist-file .gist-meta a[href*='#file']:hover { 1332 | color: #1863a1 !important 1333 | } 1334 | 1335 | html .gist .gist-file .gist-meta a[href*=raw] { 1336 | top: .4em 1337 | } 1338 | 1339 | pre { 1340 | background: #002b36 url('../images/noise.png?1478113812') top left; 1341 | -webkit-border-radius: 0.4em; 1342 | -moz-border-radius: 0.4em; 1343 | -ms-border-radius: 0.4em; 1344 | -o-border-radius: 0.4em; 1345 | border-radius: 0.4em; 1346 | border: 1px solid #05232b; 1347 | line-height: 1.45em; 1348 | font-size: 13px; 1349 | margin-bottom: 2.1em; 1350 | padding: .8em 1em; 1351 | color: #93a1a1; 1352 | overflow: auto 1353 | } 1354 | 1355 | h3.filename+pre { 1356 | -moz-border-radius-topleft: 0px; 1357 | -webkit-border-top-left-radius: 0px; 1358 | border-top-left-radius: 0px; 1359 | -moz-border-radius-topright: 0px; 1360 | -webkit-border-top-right-radius: 0px; 1361 | border-top-right-radius: 0px 1362 | } 1363 | 1364 | p code,li code { 1365 | display: inline-block; 1366 | white-space: no-wrap; 1367 | background: #fff; 1368 | font-size: .8em; 1369 | line-height: 1.5em; 1370 | color: #555; 1371 | border: 1px solid #ddd; 1372 | -webkit-border-radius: 0.4em; 1373 | -moz-border-radius: 0.4em; 1374 | -ms-border-radius: 0.4em; 1375 | -o-border-radius: 0.4em; 1376 | border-radius: 0.4em; 1377 | padding: 0 .3em; 1378 | margin: -1px 0 1379 | } 1380 | 1381 | p pre code,li pre code { 1382 | font-size: 1em !important; 1383 | background: none; 1384 | border: none 1385 | } 1386 | 1387 | .pre-code,html .gist .gist-file .gist-syntax .highlight pre,.highlight code { 1388 | font-family: Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace !important; 1389 | overflow: scroll; 1390 | overflow-y: hidden; 1391 | display: block; 1392 | padding: .8em; 1393 | overflow-x: auto; 1394 | line-height: 1.45em; 1395 | background: #002b36 url('../images/noise.png?1478113812') top left !important; 1396 | color: #93a1a1 !important 1397 | } 1398 | 1399 | .pre-code span,html .gist .gist-file .gist-syntax .highlight pre span,.highlight code span { 1400 | color: #93a1a1 !important 1401 | } 1402 | 1403 | .pre-code span,html .gist .gist-file .gist-syntax .highlight pre span,.highlight code span { 1404 | font-style: normal !important; 1405 | font-weight: normal !important 1406 | } 1407 | 1408 | .pre-code .c,html .gist .gist-file .gist-syntax .highlight pre .c,.highlight code .c { 1409 | color: #586e75 !important; 1410 | font-style: italic !important 1411 | } 1412 | 1413 | .pre-code .cm,html .gist .gist-file .gist-syntax .highlight pre .cm,.highlight code .cm { 1414 | color: #586e75 !important; 1415 | font-style: italic !important 1416 | } 1417 | 1418 | .pre-code .cp,html .gist .gist-file .gist-syntax .highlight pre .cp,.highlight code .cp { 1419 | color: #586e75 !important; 1420 | font-style: italic !important 1421 | } 1422 | 1423 | .pre-code .c1,html .gist .gist-file .gist-syntax .highlight pre .c1,.highlight code .c1 { 1424 | color: #586e75 !important; 1425 | font-style: italic !important 1426 | } 1427 | 1428 | .pre-code .cs,html .gist .gist-file .gist-syntax .highlight pre .cs,.highlight code .cs { 1429 | color: #586e75 !important; 1430 | font-weight: bold !important; 1431 | font-style: italic !important 1432 | } 1433 | 1434 | .pre-code .err,html .gist .gist-file .gist-syntax .highlight pre .err,.highlight code .err { 1435 | color: #dc322f !important; 1436 | background: none !important 1437 | } 1438 | 1439 | .pre-code .k,html .gist .gist-file .gist-syntax .highlight pre .k,.highlight code .k { 1440 | color: #cb4b16 !important 1441 | } 1442 | 1443 | .pre-code .o,html .gist .gist-file .gist-syntax .highlight pre .o,.highlight code .o { 1444 | color: #93a1a1 !important; 1445 | font-weight: bold !important 1446 | } 1447 | 1448 | .pre-code .p,html .gist .gist-file .gist-syntax .highlight pre .p,.highlight code .p { 1449 | color: #93a1a1 !important 1450 | } 1451 | 1452 | .pre-code .ow,html .gist .gist-file .gist-syntax .highlight pre .ow,.highlight code .ow { 1453 | color: #2aa198 !important; 1454 | font-weight: bold !important 1455 | } 1456 | 1457 | .pre-code .gd,html .gist .gist-file .gist-syntax .highlight pre .gd,.highlight code .gd { 1458 | color: #93a1a1 !important; 1459 | background-color: #372c34 !important; 1460 | display: inline-block 1461 | } 1462 | 1463 | .pre-code .gd .x,html .gist .gist-file .gist-syntax .highlight pre .gd .x,.highlight code .gd .x { 1464 | color: #93a1a1 !important; 1465 | background-color: #4d2d33 !important; 1466 | display: inline-block 1467 | } 1468 | 1469 | .pre-code .ge,html .gist .gist-file .gist-syntax .highlight pre .ge,.highlight code .ge { 1470 | color: #93a1a1 !important; 1471 | font-style: italic !important 1472 | } 1473 | 1474 | .pre-code .gh,html .gist .gist-file .gist-syntax .highlight pre .gh,.highlight code .gh { 1475 | color: #586e75 !important 1476 | } 1477 | 1478 | .pre-code .gi,html .gist .gist-file .gist-syntax .highlight pre .gi,.highlight code .gi { 1479 | color: #93a1a1 !important; 1480 | background-color: #1a412b !important; 1481 | display: inline-block 1482 | } 1483 | 1484 | .pre-code .gi .x,html .gist .gist-file .gist-syntax .highlight pre .gi .x,.highlight code .gi .x { 1485 | color: #93a1a1 !important; 1486 | background-color: #355720 !important; 1487 | display: inline-block 1488 | } 1489 | 1490 | .pre-code .gs,html .gist .gist-file .gist-syntax .highlight pre .gs,.highlight code .gs { 1491 | color: #93a1a1 !important; 1492 | font-weight: bold !important 1493 | } 1494 | 1495 | .pre-code .gu,html .gist .gist-file .gist-syntax .highlight pre .gu,.highlight code .gu { 1496 | color: #6c71c4 !important 1497 | } 1498 | 1499 | .pre-code .kc,html .gist .gist-file .gist-syntax .highlight pre .kc,.highlight code .kc { 1500 | color: #859900 !important; 1501 | font-weight: bold !important 1502 | } 1503 | 1504 | .pre-code .kd,html .gist .gist-file .gist-syntax .highlight pre .kd,.highlight code .kd { 1505 | color: #268bd2 !important 1506 | } 1507 | 1508 | .pre-code .kp,html .gist .gist-file .gist-syntax .highlight pre .kp,.highlight code .kp { 1509 | color: #cb4b16 !important; 1510 | font-weight: bold !important 1511 | } 1512 | 1513 | .pre-code .kr,html .gist .gist-file .gist-syntax .highlight pre .kr,.highlight code .kr { 1514 | color: #d33682 !important; 1515 | font-weight: bold !important 1516 | } 1517 | 1518 | .pre-code .kt,html .gist .gist-file .gist-syntax .highlight pre .kt,.highlight code .kt { 1519 | color: #2aa198 !important 1520 | } 1521 | 1522 | .pre-code .n,html .gist .gist-file .gist-syntax .highlight pre .n,.highlight code .n { 1523 | color: #268bd2 !important 1524 | } 1525 | 1526 | .pre-code .na,html .gist .gist-file .gist-syntax .highlight pre .na,.highlight code .na { 1527 | color: #268bd2 !important 1528 | } 1529 | 1530 | .pre-code .nb,html .gist .gist-file .gist-syntax .highlight pre .nb,.highlight code .nb { 1531 | color: #859900 !important 1532 | } 1533 | 1534 | .pre-code .nc,html .gist .gist-file .gist-syntax .highlight pre .nc,.highlight code .nc { 1535 | color: #d33682 !important 1536 | } 1537 | 1538 | .pre-code .no,html .gist .gist-file .gist-syntax .highlight pre .no,.highlight code .no { 1539 | color: #b58900 !important 1540 | } 1541 | 1542 | .pre-code .nl,html .gist .gist-file .gist-syntax .highlight pre .nl,.highlight code .nl { 1543 | color: #859900 !important 1544 | } 1545 | 1546 | .pre-code .ne,html .gist .gist-file .gist-syntax .highlight pre .ne,.highlight code .ne { 1547 | color: #268bd2 !important; 1548 | font-weight: bold !important 1549 | } 1550 | 1551 | .pre-code .nf,html .gist .gist-file .gist-syntax .highlight pre .nf,.highlight code .nf { 1552 | color: #268bd2 !important; 1553 | font-weight: bold !important 1554 | } 1555 | 1556 | .pre-code .nn,html .gist .gist-file .gist-syntax .highlight pre .nn,.highlight code .nn { 1557 | color: #b58900 !important 1558 | } 1559 | 1560 | .pre-code .nt,html .gist .gist-file .gist-syntax .highlight pre .nt,.highlight code .nt { 1561 | color: #268bd2 !important; 1562 | font-weight: bold !important 1563 | } 1564 | 1565 | .pre-code .nx,html .gist .gist-file .gist-syntax .highlight pre .nx,.highlight code .nx { 1566 | color: #b58900 !important 1567 | } 1568 | 1569 | .pre-code .vg,html .gist .gist-file .gist-syntax .highlight pre .vg,.highlight code .vg { 1570 | color: #268bd2 !important 1571 | } 1572 | 1573 | .pre-code .vi,html .gist .gist-file .gist-syntax .highlight pre .vi,.highlight code .vi { 1574 | color: #268bd2 !important 1575 | } 1576 | 1577 | .pre-code .nv,html .gist .gist-file .gist-syntax .highlight pre .nv,.highlight code .nv { 1578 | color: #268bd2 !important 1579 | } 1580 | 1581 | .pre-code .mf,html .gist .gist-file .gist-syntax .highlight pre .mf,.highlight code .mf { 1582 | color: #2aa198 !important 1583 | } 1584 | 1585 | .pre-code .m,html .gist .gist-file .gist-syntax .highlight pre .m,.highlight code .m { 1586 | color: #2aa198 !important 1587 | } 1588 | 1589 | .pre-code .mh,html .gist .gist-file .gist-syntax .highlight pre .mh,.highlight code .mh { 1590 | color: #2aa198 !important 1591 | } 1592 | 1593 | .pre-code .mi,html .gist .gist-file .gist-syntax .highlight pre .mi,.highlight code .mi { 1594 | color: #2aa198 !important 1595 | } 1596 | 1597 | .pre-code .s,html .gist .gist-file .gist-syntax .highlight pre .s,.highlight code .s { 1598 | color: #2aa198 !important 1599 | } 1600 | 1601 | .pre-code .sd,html .gist .gist-file .gist-syntax .highlight pre .sd,.highlight code .sd { 1602 | color: #2aa198 !important 1603 | } 1604 | 1605 | .pre-code .s2,html .gist .gist-file .gist-syntax .highlight pre .s2,.highlight code .s2 { 1606 | color: #2aa198 !important 1607 | } 1608 | 1609 | .pre-code .se,html .gist .gist-file .gist-syntax .highlight pre .se,.highlight code .se { 1610 | color: #dc322f !important 1611 | } 1612 | 1613 | .pre-code .si,html .gist .gist-file .gist-syntax .highlight pre .si,.highlight code .si { 1614 | color: #268bd2 !important 1615 | } 1616 | 1617 | .pre-code .sr,html .gist .gist-file .gist-syntax .highlight pre .sr,.highlight code .sr { 1618 | color: #2aa198 !important 1619 | } 1620 | 1621 | .pre-code .s1,html .gist .gist-file .gist-syntax .highlight pre .s1,.highlight code .s1 { 1622 | color: #2aa198 !important 1623 | } 1624 | 1625 | .pre-code div .gd,html .gist .gist-file .gist-syntax .highlight pre div .gd,.highlight code div .gd,.pre-code div .gd .x,html .gist .gist-file .gist-syntax .highlight pre div .gd .x,.highlight code div .gd .x,.pre-code div .gi,html .gist .gist-file .gist-syntax .highlight pre div .gi,.highlight code div .gi,.pre-code div .gi .x,html .gist .gist-file .gist-syntax .highlight pre div .gi .x,.highlight code div .gi .x { 1626 | display: inline-block; 1627 | width: 100% 1628 | } 1629 | 1630 | .highlight,.gist-highlight { 1631 | margin-bottom: 1.8em; 1632 | background: #002b36; 1633 | overflow-y: hidden; 1634 | overflow-x: auto 1635 | } 1636 | 1637 | .highlight pre,.gist-highlight pre { 1638 | background: none; 1639 | -webkit-border-radius: 0px; 1640 | -moz-border-radius: 0px; 1641 | -ms-border-radius: 0px; 1642 | -o-border-radius: 0px; 1643 | border-radius: 0px; 1644 | border: none; 1645 | padding: 0; 1646 | margin-bottom: 0 1647 | } 1648 | 1649 | pre::-webkit-scrollbar,.highlight::-webkit-scrollbar,.gist-highlight::-webkit-scrollbar { 1650 | height: .5em; 1651 | background: rgba(255,255,255,0.15) 1652 | } 1653 | 1654 | pre::-webkit-scrollbar-thumb:horizontal,.highlight::-webkit-scrollbar-thumb:horizontal,.gist-highlight::-webkit-scrollbar-thumb:horizontal { 1655 | background: rgba(255,255,255,0.2); 1656 | -webkit-border-radius: 4px; 1657 | border-radius: 4px 1658 | } 1659 | 1660 | .highlight code { 1661 | background: #000 1662 | } 1663 | 1664 | figure.code { 1665 | background: none; 1666 | padding: 0; 1667 | border: 0; 1668 | margin-bottom: 1.5em 1669 | } 1670 | 1671 | figure.code pre { 1672 | margin-bottom: 0 1673 | } 1674 | 1675 | figure.code figcaption { 1676 | position: relative 1677 | } 1678 | 1679 | figure.code .highlight { 1680 | margin-bottom: 0 1681 | } 1682 | 1683 | .code-title,html .gist .gist-file .gist-meta a[href*='#file'],h3.filename,figure.code figcaption { 1684 | text-align: center; 1685 | font-size: 13px; 1686 | line-height: 2em; 1687 | text-shadow: #cbcccc 0 1px 0; 1688 | color: #474747; 1689 | font-weight: normal; 1690 | margin-bottom: 0; 1691 | -moz-border-radius-topleft: 5px; 1692 | -webkit-border-top-left-radius: 5px; 1693 | border-top-left-radius: 5px; 1694 | -moz-border-radius-topright: 5px; 1695 | -webkit-border-top-right-radius: 5px; 1696 | border-top-right-radius: 5px; 1697 | font-family: "Helvetica Neue", Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif; 1698 | background: #aaa url('../images/code_bg.png?1478113812') top repeat-x; 1699 | border: 1px solid #565656; 1700 | border-top-color: #cbcbcb; 1701 | border-left-color: #a5a5a5; 1702 | border-right-color: #a5a5a5; 1703 | border-bottom: 0 1704 | } 1705 | 1706 | .download-source,html .gist .gist-file .gist-meta a[href*=raw],figure.code figcaption a { 1707 | position: absolute; 1708 | right: .8em; 1709 | text-decoration: none; 1710 | color: #666 !important; 1711 | z-index: 1; 1712 | font-size: 13px; 1713 | text-shadow: #cbcccc 0 1px 0; 1714 | padding-left: 3em 1715 | } 1716 | 1717 | .download-source:hover,html .gist .gist-file .gist-meta a[href*=raw]:hover,figure.code figcaption a:hover { 1718 | text-decoration: underline 1719 | } 1720 | 1721 | #archive #content>div,#archive #content>div>article { 1722 | padding-top: 0 1723 | } 1724 | 1725 | #blog-archives { 1726 | color: #aaa 1727 | } 1728 | 1729 | #blog-archives article { 1730 | padding: 1em 0 1em; 1731 | position: relative; 1732 | background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x 1733 | } 1734 | 1735 | #blog-archives article:last-child { 1736 | background: none 1737 | } 1738 | 1739 | #blog-archives article footer { 1740 | padding: 0; 1741 | margin: 0 1742 | } 1743 | 1744 | #blog-archives h1 { 1745 | color: #222; 1746 | margin-bottom: .3em 1747 | } 1748 | 1749 | #blog-archives h2 { 1750 | display: none 1751 | } 1752 | 1753 | #blog-archives h1 { 1754 | font-size: 1.5em 1755 | } 1756 | 1757 | #blog-archives h1 a { 1758 | text-decoration: none; 1759 | color: inherit; 1760 | font-weight: normal; 1761 | display: inline-block 1762 | } 1763 | 1764 | #blog-archives h1 a:hover { 1765 | text-decoration: underline 1766 | } 1767 | 1768 | #blog-archives h1 a:hover { 1769 | color: #0181eb 1770 | } 1771 | 1772 | #blog-archives a.category,#blog-archives time { 1773 | color: #aaa 1774 | } 1775 | 1776 | #blog-archives .entry-content { 1777 | display: none 1778 | } 1779 | 1780 | #blog-archives time { 1781 | font-size: .9em; 1782 | line-height: 1.2em 1783 | } 1784 | 1785 | #blog-archives time .month,#blog-archives time .day { 1786 | display: inline-block 1787 | } 1788 | 1789 | #blog-archives time .month { 1790 | text-transform: uppercase 1791 | } 1792 | 1793 | #blog-archives p { 1794 | margin-bottom: 1em 1795 | } 1796 | 1797 | #blog-archives a,#blog-archives .entry-content a { 1798 | color: inherit 1799 | } 1800 | 1801 | #blog-archives a:hover,#blog-archives .entry-content a:hover { 1802 | color: #0181eb 1803 | } 1804 | 1805 | #blog-archives a:hover { 1806 | color: #0181eb 1807 | } 1808 | 1809 | @media only screen and (min-width: 550px) { 1810 | #blog-archives article { 1811 | margin-left:5em 1812 | } 1813 | 1814 | #blog-archives h2 { 1815 | margin-bottom: .3em; 1816 | font-weight: normal; 1817 | display: inline-block; 1818 | position: relative; 1819 | top: -1px; 1820 | float: left 1821 | } 1822 | 1823 | #blog-archives h2:first-child { 1824 | padding-top: .75em 1825 | } 1826 | 1827 | #blog-archives time { 1828 | position: absolute; 1829 | text-align: right; 1830 | left: 0em; 1831 | top: 1.8em 1832 | } 1833 | 1834 | #blog-archives .year { 1835 | display: none 1836 | } 1837 | 1838 | #blog-archives article { 1839 | padding-left: 4.5em; 1840 | padding-bottom: .7em 1841 | } 1842 | 1843 | #blog-archives a.category { 1844 | line-height: 1.1em 1845 | } 1846 | } 1847 | 1848 | #content>.category article { 1849 | margin-left: 0; 1850 | padding-left: 6.8em 1851 | } 1852 | 1853 | #content>.category .year { 1854 | display: inline 1855 | } 1856 | 1857 | .side-shadow-border,aside.sidebar section h1,aside.sidebar li { 1858 | -webkit-box-shadow: #fff 0 1px; 1859 | -moz-box-shadow: #fff 0 1px; 1860 | box-shadow: #fff 0 1px 1861 | } 1862 | 1863 | aside.sidebar { 1864 | overflow: hidden; 1865 | color: #4b4b4b; 1866 | text-shadow: #fff 0 1px 1867 | } 1868 | 1869 | aside.sidebar section { 1870 | font-size: .8em; 1871 | line-height: 1.4em; 1872 | margin-bottom: 1.5em 1873 | } 1874 | 1875 | aside.sidebar section h1 { 1876 | margin: 1.5em 0 0; 1877 | padding-bottom: .2em; 1878 | border-bottom: 1px solid #e0e0e0 1879 | } 1880 | 1881 | aside.sidebar section h1+p { 1882 | padding-top: .4em 1883 | } 1884 | 1885 | aside.sidebar img { 1886 | -webkit-border-radius: 0.3em; 1887 | -moz-border-radius: 0.3em; 1888 | -ms-border-radius: 0.3em; 1889 | -o-border-radius: 0.3em; 1890 | border-radius: 0.3em; 1891 | -webkit-box-shadow: rgba(0,0,0,0.15) 0 1px 4px; 1892 | -moz-box-shadow: rgba(0,0,0,0.15) 0 1px 4px; 1893 | box-shadow: rgba(0,0,0,0.15) 0 1px 4px; 1894 | -webkit-box-sizing: border-box; 1895 | -moz-box-sizing: border-box; 1896 | box-sizing: border-box; 1897 | border: #fff 0.3em solid 1898 | } 1899 | 1900 | aside.sidebar ul { 1901 | margin-bottom: 0.5em; 1902 | margin-left: 0 1903 | } 1904 | 1905 | aside.sidebar li { 1906 | list-style: none; 1907 | padding: .5em 0; 1908 | margin: 0; 1909 | border-bottom: 1px solid #e0e0e0 1910 | } 1911 | 1912 | aside.sidebar li p:last-child { 1913 | margin-bottom: 0 1914 | } 1915 | 1916 | aside.sidebar a { 1917 | color: inherit; 1918 | text-decoration: none; 1919 | -webkit-transition: color 0.5s; 1920 | -moz-transition: color 0.5s; 1921 | -o-transition: color 0.5s; 1922 | transition: color 0.5s 1923 | } 1924 | 1925 | aside.sidebar:hover a { 1926 | color: #222 1927 | } 1928 | 1929 | aside.sidebar:hover a:hover { 1930 | color: #0181eb 1931 | } 1932 | 1933 | .aside-alt-link,#pinboard_linkroll .pin-tag { 1934 | color: #7e7e7e 1935 | } 1936 | 1937 | .aside-alt-link:hover,#pinboard_linkroll .pin-tag:hover { 1938 | color: #0181eb 1939 | } 1940 | 1941 | @media only screen and (min-width: 768px) { 1942 | .toggle-sidebar { 1943 | outline:none; 1944 | position: absolute; 1945 | right: -10px; 1946 | top: 0; 1947 | bottom: 0; 1948 | display: inline-block; 1949 | text-decoration: none; 1950 | color: #cecece; 1951 | width: 9px; 1952 | cursor: pointer 1953 | } 1954 | 1955 | .toggle-sidebar:hover { 1956 | background: #e9e9e9; 1957 | background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(224,224,224,0.5)), color-stop(100%, rgba(224,224,224,0))); 1958 | background: -webkit-linear-gradient(left, rgba(224,224,224,0.5),rgba(224,224,224,0)); 1959 | background: -moz-linear-gradient(left, rgba(224,224,224,0.5),rgba(224,224,224,0)); 1960 | background: -o-linear-gradient(left, rgba(224,224,224,0.5),rgba(224,224,224,0)); 1961 | background: linear-gradient(left, rgba(224,224,224,0.5),rgba(224,224,224,0)) 1962 | } 1963 | 1964 | .toggle-sidebar:after { 1965 | position: absolute; 1966 | right: -11px; 1967 | top: 0; 1968 | width: 20px; 1969 | font-size: 1.2em; 1970 | line-height: 1.1em; 1971 | padding-bottom: .15em; 1972 | -moz-border-radius-bottomright: 0.3em; 1973 | -webkit-border-bottom-right-radius: 0.3em; 1974 | border-bottom-right-radius: 0.3em; 1975 | text-align: center; 1976 | background: #f8f8f8 url('../images/noise.png?1478113812') top left; 1977 | border-bottom: 1px solid #e0e0e0; 1978 | border-right: 1px solid #e0e0e0; 1979 | content: "\00BB"; 1980 | text-indent: -1px 1981 | } 1982 | 1983 | .collapse-sidebar .toggle-sidebar { 1984 | text-indent: 0px; 1985 | right: -20px; 1986 | width: 19px 1987 | } 1988 | 1989 | .collapse-sidebar .toggle-sidebar:hover { 1990 | background: #e9e9e9 1991 | } 1992 | 1993 | .collapse-sidebar .toggle-sidebar:after { 1994 | border-left: 1px solid #e0e0e0; 1995 | text-shadow: #fff 0 1px; 1996 | content: "\00AB"; 1997 | left: 0px; 1998 | right: 0; 1999 | text-align: center; 2000 | text-indent: 0; 2001 | border: 0; 2002 | border-right-width: 0; 2003 | background: none 2004 | } 2005 | } 2006 | 2007 | .googleplus h1 { 2008 | -moz-box-shadow: none !important; 2009 | -webkit-box-shadow: none !important; 2010 | -o-box-shadow: none !important; 2011 | box-shadow: none !important; 2012 | border-bottom: 0px none !important 2013 | } 2014 | 2015 | .googleplus a { 2016 | text-decoration: none; 2017 | white-space: normal !important; 2018 | line-height: 32px 2019 | } 2020 | 2021 | .googleplus a img { 2022 | float: left; 2023 | margin-right: 0.5em; 2024 | border: 0 none 2025 | } 2026 | 2027 | .googleplus-hidden { 2028 | position: absolute; 2029 | top: -1000em; 2030 | left: -1000em 2031 | } 2032 | 2033 | #pinboard_linkroll .pin-title,#pinboard_linkroll .pin-description { 2034 | display: block; 2035 | margin-bottom: .5em 2036 | } 2037 | 2038 | #pinboard_linkroll .pin-tag { 2039 | text-decoration: none 2040 | } 2041 | 2042 | #pinboard_linkroll .pin-tag:hover { 2043 | text-decoration: underline 2044 | } 2045 | 2046 | #pinboard_linkroll .pin-tag:after { 2047 | content: ',' 2048 | } 2049 | 2050 | #pinboard_linkroll .pin-tag:last-child:after { 2051 | content: '' 2052 | } 2053 | 2054 | .delicious-posts a.delicious-link { 2055 | margin-bottom: .5em; 2056 | display: block 2057 | } 2058 | 2059 | .delicious-posts p { 2060 | font-size: 1em 2061 | } 2062 | 2063 | body>footer { 2064 | font-size: .9em; 2065 | color: #888; 2066 | text-shadow: #d9d9d9 0 1px; 2067 | background-color: #ccc; 2068 | background: url('../images/noise.png?1478113812'),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0e0e0), color-stop(50%, #cccccc), color-stop(100%, #b0b0b0)); 2069 | background: url('../images/noise.png?1478113812'),-webkit-linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 2070 | background: url('../images/noise.png?1478113812'),-moz-linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 2071 | background: url('../images/noise.png?1478113812'),-o-linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 2072 | background: url('../images/noise.png?1478113812'),linear-gradient(#e0e0e0,#cccccc,#b0b0b0); 2073 | border-top: 1px solid #f2f2f2; 2074 | position: relative; 2075 | padding-top: 1em; 2076 | padding-bottom: 1em; 2077 | margin-bottom: 3em; 2078 | -moz-border-radius-bottomleft: 0.4em; 2079 | -webkit-border-bottom-left-radius: 0.4em; 2080 | border-bottom-left-radius: 0.4em; 2081 | -moz-border-radius-bottomright: 0.4em; 2082 | -webkit-border-bottom-right-radius: 0.4em; 2083 | border-bottom-right-radius: 0.4em; 2084 | z-index: 1 2085 | } 2086 | body>footer>p{ 2087 | text-align: center; 2088 | } 2089 | body>footer a { 2090 | color: #6b6b6b 2091 | } 2092 | 2093 | body>footer a:visited { 2094 | color: #6b6b6b 2095 | } 2096 | 2097 | body>footer a:hover { 2098 | color: #484848 2099 | } 2100 | 2101 | body>footer p:last-child { 2102 | margin-bottom: 0 2103 | } 2104 | ul.tag-cloud{ 2105 | list-style: none; 2106 | padding-left: 0; 2107 | display: flex; 2108 | flex-wrap: wrap; 2109 | align-items: center; 2110 | justify-content: center; 2111 | line-height: 2.5rem; 2112 | } 2113 | ul.tag-cloud a { 2114 | display: block; 2115 | font-size: 1.5rem; 2116 | padding: 0.125rem 0.25rem; 2117 | text-decoration: none; 2118 | position: relative; 2119 | } 2120 | ul.tag-cloud a[data-weight="1"] { --size: 1; } 2121 | ul.tag-cloud a[data-weight="2"] { --size: 2; } 2122 | ul.tag-cloud a[data-weight="3"] { --size: 3; } 2123 | ul.tag-cloud a[data-weight="4"] { --size: 4; } 2124 | ul.tag-cloud a[data-weight="5"] { --size: 5; } 2125 | ul.tag-cloud a[data-weight="6"] { --size: 6; } 2126 | ul.tag-cloud a[data-weight="7"] { --size: 7; } 2127 | ul.tag-cloud a[data-weight="8"] { --size: 8; } 2128 | ul.tag-cloud a[data-weight="9"] { --size: 9; } 2129 | ul.tag-cloud a[data-weight="10"] { --size: 10; } 2130 | ul.tag-cloud a[data-weight="11"] { --size: 11; } 2131 | ul.tag-cloud a[data-weight="12"] { --size: 12; } 2132 | ul.tag-cloud a[data-weight="13"] { --size: 13; } 2133 | ul.tag-cloud a[data-weight="14"] { --size: 14; } 2134 | ul.tag-cloud a[data-weight="15"] { --size: 15; } 2135 | ul.tag-cloud a[data-weight="16"] { --size: 16; } 2136 | ul.tag-cloud a[data-weight="17"] { --size: 17; } 2137 | ul.tag-cloud a[data-weight="18"] { --size: 18; } 2138 | ul.tag-cloud a[data-weight="19"] { --size: 19; } 2139 | ul.tag-cloud a[data-weight="20"] { --size: 20; } 2140 | ul.tag-cloud a[data-weight="21"] { --size: 21; } 2141 | ul.tag-cloud a[data-weight="22"] { --size: 22; } 2142 | ul.tag-cloud a[data-weight="23"] { --size: 23; } 2143 | ul.tag-cloud a[data-weight="24"] { --size: 24; } 2144 | ul.tag-cloud a[data-weight="25"] { --size: 25; } 2145 | ul.tag-cloud a { 2146 | --size: 1; 2147 | font-size: calc(var(--size) * 0.25rem + 0.5rem); 2148 | /* ... */ 2149 | } 2150 | ul.tag-cloud a::after { 2151 | content: " (" attr(data-weight) ")"; 2152 | font-size: 1rem; 2153 | } 2154 | ul.tag-cloud li:nth-child(2n+1) a { --color: #181; } 2155 | ul.tag-cloud li:nth-child(2n) a { --color: #f233f8; } 2156 | ul.tag-cloud li:nth-child(3n+1) a { --color: #33a; } 2157 | ul.tag-cloud li:nth-child(4n+1) a { --color: #c38; } 2158 | ul.tag-cloud li:nth-child(5n+1) a { --color: #33a; } 2159 | ul.tag-cloud li:nth-child(6n+1) a { --color: #c38; } 2160 | 2161 | ul.tag-cloud a:focus { 2162 | outline: 1px dashed; 2163 | } 2164 | ul.tag-cloud a::before { 2165 | content: ""; 2166 | position: absolute; 2167 | top: 0; 2168 | left: 50%; 2169 | width: 0; 2170 | height: 100%; 2171 | background: var(--color); 2172 | transform: translate(-50%, 0); 2173 | opacity: 0.15; 2174 | transition: width 0.25s; 2175 | } 2176 | 2177 | ul.tag-cloud a:focus::before, 2178 | ul.tag-cloud a:hover::before { 2179 | width: 100%; 2180 | } -------------------------------------------------------------------------------- /templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZy3foPNB.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZy3foPNB.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZyTfoPNB.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZyTfoPNB.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZyffoPNB.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZyffoPNB.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZynfoA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRQQgYoZZY2vCFuvAFT9gaQZynfoA.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qSVys.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qSVys.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qWVyvHpA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qWVyvHpA.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qcVyvHpA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qcVyvHpA.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qfVyvHpA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRSQgYoZZY2vCFuvAnt66qfVyvHpA.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_r21cg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_r21cg.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_rC1chb-.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_rC1chb-.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_rO1chb-.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_rO1chb-.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_rm1chb-.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRTQgYoZZY2vCFuvAFT_rm1chb-.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRVQgYoZZY2vCFuvAFSzr-tdg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRVQgYoZZY2vCFuvAFSzr-tdg.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRVQgYoZZY2vCFuvAFWzr8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRVQgYoZZY2vCFuvAFWzr8.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRVQgYoZZY2vCFuvAFYzr-tdg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRVQgYoZZY2vCFuvAFYzr-tdg.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/EJRVQgYoZZY2vCFuvAFbzr-tdg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/fonts/EJRVQgYoZZY2vCFuvAFbzr-tdg.woff2 -------------------------------------------------------------------------------- /templates/assets/images/code_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/images/code_bg.png -------------------------------------------------------------------------------- /templates/assets/images/line-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/images/line-tile.png -------------------------------------------------------------------------------- /templates/assets/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/images/noise.png -------------------------------------------------------------------------------- /templates/assets/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mytianya/halo-theme-geek/868f9302cdde3591bb91be7f05d0060a20042bc9/templates/assets/images/rss.png -------------------------------------------------------------------------------- /templates/assets/images/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/assets/js/jqcloud.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQCloud 2.0.3 3 | * Copyright 2011 Luca Ongaro (http://www.lucaongaro.eu) 4 | * Copyright 2013 Daniel White (http://www.developerdan.com) 5 | * Copyright 2014-2017 Damien "Mistic" Sorel (http://www.strangeplanet.fr) 6 | * Licensed under MIT (http://opensource.org/licenses/MIT) 7 | */ 8 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],b):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){"use strict";function b(a,b,c){var d={pid:null,last:0};return function(){function e(){return d.last=(new Date).getTime(),a.apply(c||h,Array.prototype.slice.call(g))}var f=(new Date).getTime()-d.last,g=arguments,h=this;return f>b?e():(clearTimeout(d.pid),void(d.pid=setTimeout(e,b-f)))}}var c=function(b,c,d){this.$element=a(b),this.word_array=c||[],this.options=d,this.sizeGenerator=null,this.colorGenerator=null,this.data={placed_words:[],timeouts:{},namespace:null,step:null,angle:null,aspect_ratio:null,max_weight:null,min_weight:null,sizes:[],colors:[]},this.initialize()};c.DEFAULTS={width:100,height:100,center:{x:.5,y:.5},steps:10,delay:null,shape:"elliptic",classPattern:"w{n}",encodeURI:!0,removeOverflowing:!0,afterCloudRender:null,autoResize:!1,colors:null,fontSize:null,template:null},c.prototype={initialize:function(){if(this.options.width?this.$element.width(this.options.width):this.options.width=this.$element.width(),this.options.height?this.$element.height(this.options.height):this.options.height=this.$element.height(),this.options=a.extend(!0,{},c.DEFAULTS,this.options),null===this.options.delay&&(this.options.delay=this.word_array.length>50?10:0),this.options.center.x>1&&(this.options.center.x=this.options.center.x/this.options.width,this.options.center.y=this.options.center.y/this.options.height),"function"==typeof this.options.colors)this.colorGenerator=this.options.colors;else if(a.isArray(this.options.colors)){var d=this.options.colors.length;if(d>0){if(d0){if(f0)this.drawOneWordDelayed();else{for(a=0,b=this.word_array.length;a").attr(c.attr),d.addClass("jqcloud-word"),this.options.classPattern&&d.addClass(this.options.classPattern.replace("{n}",l)),this.data.colors.length&&d.css("color",this.data.colors[l-1]),c.color&&d.css("color",c.color),this.data.sizes.length&&d.css("font-size",this.data.sizes[l-1]),this.options.template?d.html(this.options.template(c)):c.link?("string"==typeof c.link&&(c.link={href:c.link}),this.options.encodeURI&&(c.link.href=encodeURI(c.link.href).replace(/'/g,"%27")),d.append(a("").attr(c.link).text(c.text))):d.text(c.text),c.handlers&&d.on(c.handlers),this.$element.append(d),e={width:d.outerWidth(),height:d.outerHeight()},e.left=this.options.center.x*this.options.width-e.width/2,e.top=this.options.center.y*this.options.height-e.height/2,f=d[0].style,f.position="absolute",f.left=e.left+"px",f.top=e.top+"px";this.hitTest(e);){if("rectangular"===this.options.shape)switch(j++,j*this.data.step>(1+Math.floor(k/2))*this.data.step*(k%4%2===0?1:this.data.aspect_ratio)&&(j=0,k++),k%4){case 1:e.left+=this.data.step*this.data.aspect_ratio+2*Math.random();break;case 2:e.top-=this.data.step+2*Math.random();break;case 3:e.left-=this.data.step*this.data.aspect_ratio+2*Math.random();break;case 0:e.top+=this.data.step+2*Math.random()}else i+=this.data.step,h+=(b%2===0?1:-1)*this.data.step,e.left=this.options.center.x*this.options.width-e.width/2+i*Math.cos(h)*this.data.aspect_ratio,e.top=this.options.center.y*this.options.height+i*Math.sin(h)-e.height/2;f.left=e.left+"px",f.top=e.top+"px"}return this.options.removeOverflowing&&(e.left<0||e.top<0||e.left+e.width>this.options.width||e.top+e.height>this.options.height)?void d.remove():(this.data.placed_words.push(e),void("function"==typeof c.afterWordRender&&c.afterWordRender.call(d)))},drawOneWordDelayed:function(b){return b=b||0,this.$element.is(":visible")?void(b)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="
a",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="
t
",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="
",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj; 4 | return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="
",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&>(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X
","
"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l) 5 | }b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("