From 1657b524287a035f6e3291c23e5f928f28163250 Mon Sep 17 00:00:00 2001 From: link <1171745897@qq.com> Date: Sat, 27 Apr 2019 11:34:51 +0800 Subject: [PATCH] simple system --- .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/my_bbs.iml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 89 ++ .project | 1 + .pydevproject | 6 + blog/__pycache__/__init__.cpython-37.pyc | Bin 0 -> 121 bytes blog/__pycache__/admin.cpython-37.pyc | Bin 0 -> 162 bytes blog/__pycache__/models.cpython-37.pyc | Bin 0 -> 2203 bytes blog/__pycache__/urls.cpython-37.pyc | Bin 0 -> 253 bytes blog/__pycache__/views.cpython-37.pyc | Bin 0 -> 480 bytes blog/migrations/0001_initial.py | 51 + .../__pycache__/0001_initial.cpython-37.pyc | Bin 0 -> 1346 bytes .../__pycache__/__init__.cpython-37.pyc | Bin 0 -> 132 bytes blog/models.py | 49 +- blog/static/blog/.gitignore | 1 + blog/static/blog/about.html | 115 +++ blog/static/blog/contact.html | 113 +++ blog/static/blog/css/bootstrap.min.css | 5 + blog/static/blog/css/custom.css | 905 ++++++++++++++++++ blog/static/blog/css/highlights/autumn.css | 58 ++ blog/static/blog/css/highlights/borland.css | 46 + blog/static/blog/css/highlights/bw.css | 34 + blog/static/blog/css/highlights/colorful.css | 61 ++ blog/static/blog/css/highlights/default.css | 62 ++ blog/static/blog/css/highlights/emacs.css | 61 ++ blog/static/blog/css/highlights/friendly.css | 61 ++ blog/static/blog/css/highlights/fruity.css | 69 ++ blog/static/blog/css/highlights/github.css | 61 ++ blog/static/blog/css/highlights/manni.css | 61 ++ blog/static/blog/css/highlights/monokai.css | 64 ++ blog/static/blog/css/highlights/murphy.css | 61 ++ blog/static/blog/css/highlights/native.css | 69 ++ blog/static/blog/css/highlights/pastie.css | 60 ++ blog/static/blog/css/highlights/perldoc.css | 58 ++ blog/static/blog/css/highlights/tango.css | 69 ++ blog/static/blog/css/highlights/trac.css | 59 ++ blog/static/blog/css/highlights/vim.css | 69 ++ blog/static/blog/css/highlights/vs.css | 33 + blog/static/blog/css/highlights/zenburn.css | 71 ++ blog/static/blog/css/pace.css | 13 + blog/static/blog/full-width.html | 188 ++++ blog/static/blog/img/me.jpg | Bin 0 -> 63353 bytes blog/static/blog/index.html | 297 ++++++ blog/static/blog/js/bootstrap.min.js | 7 + blog/static/blog/js/jquery-2.1.3.min.js | 4 + blog/static/blog/js/modernizr.custom.js | 4 + blog/static/blog/js/pace.min.js | 2 + blog/static/blog/js/script.js | 152 +++ blog/static/blog/single.html | 302 ++++++ blog/urls.py | 6 + blog/views.py | 9 +- db.sqlite3 | Bin 12288 -> 167936 bytes my_bbs/__pycache__/settings.cpython-37.pyc | Bin 2240 -> 2273 bytes my_bbs/__pycache__/urls.cpython-37.pyc | Bin 912 -> 957 bytes my_bbs/settings.py | 2 +- my_bbs/urls.py | 3 +- templates/blog/index.html | 233 +++++ 59 files changed, 3748 insertions(+), 25 deletions(-) create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/my_bbs.iml create mode 100644 .idea/vcs.xml create mode 100644 blog/__pycache__/__init__.cpython-37.pyc create mode 100644 blog/__pycache__/admin.cpython-37.pyc create mode 100644 blog/__pycache__/models.cpython-37.pyc create mode 100644 blog/__pycache__/urls.cpython-37.pyc create mode 100644 blog/__pycache__/views.cpython-37.pyc create mode 100644 blog/migrations/0001_initial.py create mode 100644 blog/migrations/__pycache__/0001_initial.cpython-37.pyc create mode 100644 blog/migrations/__pycache__/__init__.cpython-37.pyc create mode 100644 blog/static/blog/.gitignore create mode 100644 blog/static/blog/about.html create mode 100644 blog/static/blog/contact.html create mode 100644 blog/static/blog/css/bootstrap.min.css create mode 100644 blog/static/blog/css/custom.css create mode 100644 blog/static/blog/css/highlights/autumn.css create mode 100644 blog/static/blog/css/highlights/borland.css create mode 100644 blog/static/blog/css/highlights/bw.css create mode 100644 blog/static/blog/css/highlights/colorful.css create mode 100644 blog/static/blog/css/highlights/default.css create mode 100644 blog/static/blog/css/highlights/emacs.css create mode 100644 blog/static/blog/css/highlights/friendly.css create mode 100644 blog/static/blog/css/highlights/fruity.css create mode 100644 blog/static/blog/css/highlights/github.css create mode 100644 blog/static/blog/css/highlights/manni.css create mode 100644 blog/static/blog/css/highlights/monokai.css create mode 100644 blog/static/blog/css/highlights/murphy.css create mode 100644 blog/static/blog/css/highlights/native.css create mode 100644 blog/static/blog/css/highlights/pastie.css create mode 100644 blog/static/blog/css/highlights/perldoc.css create mode 100644 blog/static/blog/css/highlights/tango.css create mode 100644 blog/static/blog/css/highlights/trac.css create mode 100644 blog/static/blog/css/highlights/vim.css create mode 100644 blog/static/blog/css/highlights/vs.css create mode 100644 blog/static/blog/css/highlights/zenburn.css create mode 100644 blog/static/blog/css/pace.css create mode 100644 blog/static/blog/full-width.html create mode 100644 blog/static/blog/img/me.jpg create mode 100644 blog/static/blog/index.html create mode 100644 blog/static/blog/js/bootstrap.min.js create mode 100644 blog/static/blog/js/jquery-2.1.3.min.js create mode 100644 blog/static/blog/js/modernizr.custom.js create mode 100644 blog/static/blog/js/pace.min.js create mode 100644 blog/static/blog/js/script.js create mode 100644 blog/static/blog/single.html create mode 100644 blog/urls.py create mode 100644 templates/blog/index.html diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0c4f69c --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f2da9ed --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/my_bbs.iml b/.idea/my_bbs.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/.idea/my_bbs.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index b809f03..d4dd9d8 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,7 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1556267409584 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.project b/.project index 95b086c..8874260 100644 --- a/.project +++ b/.project @@ -13,5 +13,6 @@ org.python.pydev.pythonNature + org.python.pydev.django.djangoNature diff --git a/.pydevproject b/.pydevproject index d001f0a..67c04c7 100644 --- a/.pydevproject +++ b/.pydevproject @@ -2,4 +2,10 @@ Default python interpreter + +DJANGO_MANAGE_LOCATION +manage.py +PY +37 + diff --git a/blog/__pycache__/__init__.cpython-37.pyc b/blog/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d09260d90f47fbf34b32149c4177572f4cdcf31 GIT binary patch literal 121 zcmZ?b<>g`kf>QwpVnFm`5CH>>K!yVl7qb9~6oz01O-8?!3`HPe1o2DB)hZ^SGPocy uIW;D?GCnD(I3_74KRqTsJ~J<~BtBlRpz;=nO>TZlX-=vgNN+I^GXMbdE*a(k literal 0 HcmV?d00001 diff --git a/blog/__pycache__/admin.cpython-37.pyc b/blog/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30e86b7675529c961a4d52b98ae2c79b4d5ba0b3 GIT binary patch literal 162 zcmZ?b<>g`kf>QwpV(fwRV-N=hn1BoiATAaF5-AKRj5!Rsj8Tk?3@J>(44TX@fuanW zjJH@5Q*tx&{4|-O_)@YG^V0M6lJoOQiZYXmKnAR2C}IXuVB(j&t5r-uWpF`aa%xO& lWqeXnaZFN9etHbp1igaFTO2mI`6;D2sdkJ&J;gxG007@2B`^R0 literal 0 HcmV?d00001 diff --git a/blog/__pycache__/models.cpython-37.pyc b/blog/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32a60b068365c1a05e4010b71e8cc7f4fa420910 GIT binary patch literal 2203 zcmbtV%}*Ow5Z|@e_S)D$Xp%#uN-MP&4z-(WR8>)vQdL!=s3EGfLR#5=F9vFR$?jT; zs~!mEBNQysrUXi8g4;l75)6@2N`PRgQlUbIgV}&7o{JkarE2-y7aooaN${K> zjAv7-R9m@WJsq)DOYGhhtBlo4JNC{)YqBD_H;7)qi%9mvs~RCZ`tUNYdr%rO(bi2f|VEG z=rt{{W6f?@#WI?@H}!IN`rLue{5o5kv!ATE2kxy}r=Tfi;@6cl&8Ccgxa9~Ma@?@7 zO>1$OJ$P83t+4GCFk0Ijt5qgyl^-AgS9mx8xO#P~SS!4!{q&fv&9kv(_fBm4b~6(8 z;K({XCrSImH>}xb;JR`6X%?`gjRe|jlknfXP6JdnK4!ltV<=;*^}?#F2Pjzg zm+i$V>&}E#`uXMVf|I#^!x+-f#9~BE>QUkp#gL{B(xeehs+kzg#!g31zaP`+)tFln zv8#xj9(%`G-!t+Lqle;Rc%@T-nBNI@LGo^qzMff z0mE@(5`zLC<{jDp?pSYcJe9i!mYvjEOB43mo&++f`ux7N{(Wt);5Hl-G5c;>YKARA zGg?c(HS2+m7p*5Hw!2;1D8LD{8uaTC4gPZXhT}`~f!A(c!?4~6KPN??AcDf{`N71U zg3-jM4MI2sjTT0o2u|%db>M^uXq`Cyd+rhU<1pOZ3r_A)_Db$sl%0l?qu7!POMwz6 zi?9Y^4K>y_hf#q^iNENP!yt{&_7X35fV`6)19<@CU5@-MkRK-^2?Fb$AR#F2HdDBy z>PGGgICeq2GhshoYEb~NNUgMLuNK)}nLQ|4KaK!G_Q-QUw7Ru}yga{dZBDY8Z?KWq z=B)Cs*4<~oCQWebJz%*3RQ*rb_jY?6)J$I@9nXFVM<+n~Mi`ntW57s56CR0T6ihWy z3}aviFrNGm7*B$#8SJIk4TsN6A)%7I8F_`|%y3epz*qiS>@mHmw7ojxT8F!sUxojrXLQHMD_56g@>g`k0=0vOVoHJZV-N=hSb+=&ATHJe5-AKRj5!Rsj8Tk?3@J=0%sEWC%u&pY z45^GMEUC;{EGeuhY`x6sj8Uv9?7atr7cl{K-C`(W0a8UEx7^|e3Kt}n zl%y8r6|ZC{0=XPa{E~CEiV3I;E=WvHjmfQyPf99|Ny^Djj{zB@S5SG2!zMRBr8Fni O4&;zxkbyjmJj?*Es6EF3 literal 0 HcmV?d00001 diff --git a/blog/__pycache__/views.cpython-37.pyc b/blog/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9197945361e1e018ca7a81182f6bf0a9ff04effc GIT binary patch literal 480 zcmYk2y-ve05P*I8Ezp*}0TNpV3Nu0ofsmN0if&P)sEJLR%Bh3xLR*!Mm3L@IRvv+o zNASwjS772CK;o?X)A{_J@3Pg}B`9wn@5wa~@@bPlaWJ?*RVQdDp}h655cw%A1?Fo9%K%H$TGx2e|`N~3SyXkFbhRf(x$xh-0; zOds_MRUM+yWCCkvL)I>Z4LpJNRyBVG1yJwBMUvlJwvS3di@So+R2L;%?q^(#jtk_@ zyJKB)vr{28#;ho!dRuye8mrzX4K>b(a7D literal 0 HcmV?d00001 diff --git a/blog/migrations/0001_initial.py b/blog/migrations/0001_initial.py new file mode 100644 index 0000000..5b392f5 --- /dev/null +++ b/blog/migrations/0001_initial.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.6 on 2019-04-26 07:22 +from __future__ import unicode_literals + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='Category', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=100)), + ], + ), + migrations.CreateModel( + name='Post', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('title', models.CharField(max_length=70)), + ('body', models.TextField()), + ('created_time', models.DateTimeField()), + ('modified_time', models.DateTimeField()), + ('excerpt', models.CharField(blank=True, max_length=200)), + ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ('category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='blog.Category')), + ], + ), + migrations.CreateModel( + name='Tag', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=100)), + ], + ), + migrations.AddField( + model_name='post', + name='tags', + field=models.ManyToManyField(blank=True, to='blog.Tag'), + ), + ] diff --git a/blog/migrations/__pycache__/0001_initial.cpython-37.pyc b/blog/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..68d4261ed4d397ef2cfff6aa855d89370819f3df GIT binary patch literal 1346 zcmZuxy^h;P5aupPiKM6>+p-;BV!KJBM!4&eATTWJ?vfxm$H>V=2mu7CS@B5oFH6ck zUYoRf2fIv}CJ&G*&#-N(dxcb)UFu{6xFtB6nVtDK^Ubba^!tv6>(4*_TK?SCw11>= zvkX+8<6E7g01Zg0WyB*y>NKU9?&(U`QzJ7yGwXOAWgBVNv%b;5gwAgobeNggzv`Y1 z#<@1>UL%$^A!4-2<5dC7Pve^LAg$16RjjV#JgO#CI9VL=ppJ{Y5}gbK)9U3)=H9F! zD$nt)J|~*SG>?GhQ6QeqjQ1w%B;5}rBA&&J#0CmFbCMnqd<u>MqR#~j>@8W- zh=Q}FD!O-Tw5y`~Z8Qv+^S=K6drH&$nYM(6XgD>u+MHtT?lI) z)GR7^BWMh#f_`^AF@zgz>cU@fhI=4-C6BX!H~t&e2)klD4$}CF3HL4IVNo$Z4>BeU zDX#%Xfg^OX;L=Z79@Q5U$_MBaopsDosD$yVsA^%>ah!IrL4oKgQ&W))INH#*aO7mkL71{Y(t(n)nD6$shW5>c_=JjxqV+azK>y>l%ekW z{x6##l~kbBjq|uhvbelLVqCoo$}$Ks5Ln4_VEL-yy4)JhUN64&U!R}+oEDtLQT{znumeeu zM}?pe3QN(2w@Y;Av-A1v_(WJUfHrA(7Ua#MkaCAolz2zgW&B;^Utl3h{Cjlr)$&zy zUIr_+%o;xotED7#`SI>94-XHI{2d+Bvf&*}mVY_bAqtBc`oJ&g`kf>QwpVnFm`5CH>>K!yVl7qb9~6oz01O-8?!3`HPe1o2DP)hZ^SGPocy zIW;D?GCnD(I3_74KRqTlGrcIWBr`v+I3_+mGcU6wK3=b&@)n0pZhlH>PO2Tqm|`Gi F003Fk9*O_} literal 0 HcmV?d00001 diff --git a/blog/models.py b/blog/models.py index 496e30e..12a822c 100644 --- a/blog/models.py +++ b/blog/models.py @@ -4,7 +4,7 @@ # Create your models here. class Category(models.Model): - """ + """ Django 要求模型必须继承 models.Model 类。 Category 只需要一个简单的分类名 name 就可以了。 CharField 指定了分类名 name 的数据类型,CharField 是字符型, @@ -14,31 +14,36 @@ class Category(models.Model): https://docs.djangoproject.com/en/1.10/ref/models/fields/#field-types """ name = models.CharField(max_length=100) - + def __str__(self): + return self.name + class Tag(models.Model): - """ + """ 标签 Tag 也比较简单,和 Category 一样。 再次强调一定要继承 models.Model 类! """ - name = models.CharField(max_length=100) - + name = models.CharField(max_length=100) + def __str__(self): + return self.name + class Post(models.Model): - """ + """ 文章的数据库表稍微复杂一点,主要是涉及的字段更多。 """ - - #title - title = models.CharField(max_length=70) - body = models.TextField() - created_time = models.DateTimeField() - modified_time = models.DateTimeField() - #摘要 允许空 - excerpt = models.CharField(max_length=200,blank=True) - - category = models.ForeignKey(Category) - tags = models.ManyToManyField(Tag,blank=True) - # 文章作者,这里 User 是从 django.contrib.auth.models 导入的。 - author = models.ForeignKey(User) - - - \ No newline at end of file + + #title + title = models.CharField(max_length=70) + body = models.TextField() + created_time = models.DateTimeField() + modified_time = models.DateTimeField() + #摘要 允许空 + excerpt = models.CharField(max_length=200,blank=True) + + category = models.ForeignKey(Category) + tags = models.ManyToManyField(Tag,blank=True) + # 文章作者,这里 User 是从 django.contrib.auth.models 导入的。 + author = models.ForeignKey(User) + def __str__(self): + return self.title + + diff --git a/blog/static/blog/.gitignore b/blog/static/blog/.gitignore new file mode 100644 index 0000000..9f11b75 --- /dev/null +++ b/blog/static/blog/.gitignore @@ -0,0 +1 @@ +.idea/ diff --git a/blog/static/blog/about.html b/blog/static/blog/about.html new file mode 100644 index 0000000..b54f64d --- /dev/null +++ b/blog/static/blog/about.html @@ -0,0 +1,115 @@ + + + + Black & White + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+

About Me

+
+
+
+ Developer Image +
+

Responsive web design offers us a way forward, finally allowing us to design for the ebb and flow of things. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly.

+

Responsive web design offers us a way forward, finally allowing us to design for the ebb and flow of things. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly.

+
+

Social

+ +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ + +
+ + +
+ + + + + diff --git a/blog/static/blog/contact.html b/blog/static/blog/contact.html new file mode 100644 index 0000000..00f7600 --- /dev/null +++ b/blog/static/blog/contact.html @@ -0,0 +1,113 @@ + + + + Black & White + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+

Contact

+
+
+
+
+
+ + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ + +
+ + +
+ + + + + diff --git a/blog/static/blog/css/bootstrap.min.css b/blog/static/blog/css/bootstrap.min.css new file mode 100644 index 0000000..28f154d --- /dev/null +++ b/blog/static/blog/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.2 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px \9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.form-group-sm .form-control{height:30px;line-height:30px}select[multiple].form-group-sm .form-control,textarea.form-group-sm .form-control{height:auto}.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.form-group-lg .form-control{height:46px;line-height:46px}select[multiple].form-group-lg .form-control,textarea.form-group-lg .form-control{height:auto}.form-group-lg .form-control-static{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important;visibility:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/blog/static/blog/css/custom.css b/blog/static/blog/css/custom.css new file mode 100644 index 0000000..c4b918b --- /dev/null +++ b/blog/static/blog/css/custom.css @@ -0,0 +1,905 @@ +/** + * Table of Contents + * + * 1.0 - Google Font + * 2.0 - General Elements + * 3.0 - Site Header + * 3.1 - Logo + * 3.2 - Main Navigation + * 3.2.1 - Main Nav CSS 3 Hover Effect + * 4.0 - Home/Blog + * 4.1 - Read More Button CSS 3 style + * 5.0 - Widget + * 6.0 - Footer + * 7.0 - Header Search Bar + * 8.0 - Mobile Menu + * 9.0 - Contact Page Social + * 10.0 - Contact Form + * 11.0 - Media Query + * 12.0 - Comment + * 13.0 - Pagination + */ + +/** + * 1.0 - Google Font + */ + +/** + * 2.0 - General Elements + */ + +* { + outline: none; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; +} + +b { + font-weight: 400; +} + +a { + color: #333; +} + +a:hover, a:focus { + text-decoration: none; + color: #000; +} + +::selection { + background-color: #eee; +} + +body { + color: #444; + font-family: 'Lato', sans-serif; +} + +p { + font-family: 'Ubuntu', sans-serif; + font-weight: 400; + word-spacing: 1px; + letter-spacing: 0.01em; +} + +#single p, +#page p { + margin-bottom: 25px; +} + +.page-title { + text-align: center; +} + +.title { + margin-bottom: 30px; +} + +figure { + margin-bottom: 25px; +} + +img { + max-width: 100%; +} + +.img-responsive-center img { + margin: 0 auto; +} + +.height-40px { + margin-bottom: 40px; +} + +/** + * 3.0 - Site Header + */ + +#site-header { + background-color: #FFF; + padding: 25px 20px; + margin-bottom: 40px; + border-bottom: 1px solid #e7e7e7; +} + +.copyrights { + text-indent: -9999px; + height: 0; + line-height: 0; + font-size: 0; + overflow: hidden; +} + +/** + * 3.1 - Logo + */ + +.logo h1 a { + color: #000; +} + +.logo h1 a:hover { + text-decoration: none; + border-bottom: none; +} + +.logo h1 { + margin: 0; + font-family: 'Lato', sans-serif; + font-weight: 300; +} + +/** + * 3.2 - Main Navigation + */ + +.main-nav { + margin-top: 11px; + max-width: 95%; +} + +.main-nav a { + color: #000000 !important; + padding: 0 0 5px 0 !important; + margin-right: 30px; + font-family: 'Lato', sans-serif; + font-weight: 300; + font-size: 24px; +} + +.main-nav a:active, +.main-nav a:focus, +.main-nav a:hover { + background-color: transparent !important; + border-bottom: 0; +} + +.navbar-toggle { + margin: 0; + border: 0; + padding: 0; + margin-right: 25px; +} + +.navbar-toggle span { + font-size: 2em; + color: #000; +} + +/** + * 3.2.1 - Main Nav CSS 3 Hover Effect + */ + +.cl-effect-11 a { + padding: 10px 0; + color: #0972b4; + text-shadow: none; +} + +.cl-effect-11 a::before { + position: absolute; + top: 0; + left: 0; + overflow: hidden; + padding: 0 0 5px 0 !important; + max-width: 0; + border-bottom: 1px solid #000; + color: #000; + content: attr(data-hover); + white-space: nowrap; + -webkit-transition: max-width 0.5s; + -moz-transition: max-width 0.5s; + transition: max-width 0.5s; +} + +.cl-effect-11 a:hover::before, +.cl-effect-11 a:focus::before { + max-width: 100%; +} + +/** + * 4.0 - Home/Blog + */ + +.content-body { + padding-bottom: 4em; +} + +.post { + background: #fff; + padding: 30px 30px 0; +} + +.entry-title { + text-align: center; + font-size: 1.9em; + margin-bottom: 20px; + line-height: 1.6; + padding: 10px 20px 0; +} + +.entry-meta { + text-align: center; + color: #DDDDDD; + font-size: 13px; + margin-bottom: 30px; +} + +.entry-content { + font-size: 18px; + line-height: 1.9; + font-weight: 300; + color: #000; +} + +.post-category::after, +.post-date::after, +.post-author::after, +.comments-link::after { + content: ' ·'; + color: #000; +} + +/** + * 4.1 - Read More Button CSS 3 style + */ + +.read-more { + font-family: 'Ubuntu', sans-serif; + font-weight: 400; + word-spacing: 1px; + letter-spacing: 0.01em; + text-align: center; + margin-top: 20px; +} + +.cl-effect-14 a { + padding: 0 20px; + height: 45px; + line-height: 45px; + position: relative; + display: inline-block; + margin: 15px 25px; + letter-spacing: 1px; + font-weight: 400; + text-shadow: 0 0 1px rgba(255, 255, 255, 0.3); +} + +.cl-effect-14 a::before, +.cl-effect-14 a::after { + position: absolute; + width: 45px; + height: 1px; + background: #C3C3C3; + content: ''; + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + transition: all 0.3s; + pointer-events: none; +} + +.cl-effect-14 a::before { + top: 0; + left: 0; + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + transform: rotate(90deg); + -webkit-transform-origin: 0 0; + -moz-transform-origin: 0 0; + transform-origin: 0 0; +} + +.cl-effect-14 a::after { + right: 0; + bottom: 0; + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + transform: rotate(90deg); + -webkit-transform-origin: 100% 0; + -moz-transform-origin: 100% 0; + transform-origin: 100% 0; +} + +.cl-effect-14 a:hover::before, +.cl-effect-14 a:hover::after, +.cl-effect-14 a:focus::before, +.cl-effect-14 a:focus::after { + background: #000; +} + +.cl-effect-14 a:hover::before, +.cl-effect-14 a:focus::before { + left: 50%; + -webkit-transform: rotate(0deg) translateX(-50%); + -moz-transform: rotate(0deg) translateX(-50%); + transform: rotate(0deg) translateX(-50%); +} + +.cl-effect-14 a:hover::after, +.cl-effect-14 a:focus::after { + right: 50%; + -webkit-transform: rotate(0deg) translateX(50%); + -moz-transform: rotate(0deg) translateX(50%); + transform: rotate(0deg) translateX(50%); +} + +/** + * 5.0 - Widget + */ + +.widget { + background: #fff; + padding: 30px 0 0; +} + +.widget-title { + font-size: 1.5em; + margin-bottom: 20px; + line-height: 1.6; + padding: 10px 0 0; + font-weight: 400; +} + +.widget-recent-posts ul { + padding: 0; + margin: 0; + padding-left: 20px; +} + +.widget-recent-posts ul li { + list-style-type: none; + position: relative; + line-height: 170%; + margin-bottom: 10px; +} + +.widget-recent-posts ul li::before { + content: '\f3d3'; + font-family: "Ionicons"; + position: absolute; + left: -17px; + top: 3px; + font-size: 16px; + color: #000; +} + +.widget-archives ul { + padding: 0; + margin: 0; + padding-left: 25px; +} + +.widget-archives ul li { + list-style-type: none; + position: relative; + line-height: 170%; + margin-bottom: 10px; +} + +.widget-archives ul li::before { + content: '\f3f3'; + font-family: "Ionicons"; + position: absolute; + left: -25px; + top: 1px; + font-size: 16px; + color: #000; +} + +.widget-category ul { + padding: 0; + margin: 0; + padding-left: 25px; +} + +.widget-category ul li { + list-style-type: none; + position: relative; + line-height: 170%; + margin-bottom: 10px; +} + +.widget-category ul li::before { + content: '\f3fe'; + font-family: "Ionicons"; + position: absolute; + left: -25px; + top: 1px; + font-size: 18px; + color: #000; +} + +.widget-tag-cloud ul { + padding: 0; + margin: 0; + margin-right: -10px; +} + +.widget-tag-cloud ul li { + list-style-type: none; + font-size: 13px; + display: inline-block; + margin-right: 10px; + margin-bottom: 10px; + padding: 3px 8px; + border: 1px solid #ddd; +} + +.widget-content ul ul { + margin-top: 10px; +} + +.widget-content ul li { + margin-bottom: 10px; +} + +.rss { + font-size: 21px; + margin-top: 30px; +} + +.rss a { + color: #444; +} + +/** + * 6.0 - Footer + */ + +#site-footer { + padding-top: 10px; + padding: 0 0 1.5em 0; +} + +.copyright { + text-align: center; + padding-top: 1em; + margin: 0; + border-top: 1px solid #eee; + color: #666; +} + +/** + * 7.0 - Header Search Bar + */ + +#header-search-box { + position: absolute; + right: 38px; + top: 8px; +} + +.search-form { + display: none; + width: 25%; + position: absolute; + min-width: 200px; + right: -6px; + top: 33px; +} + +#search-menu span { + font-size: 20px; +} + +#searchform { + position: relative; + border: 1px solid #ddd; + min-height: 42px; +} + +#searchform input[type=search] { + width: 100%; + border: none; + position: absolute; + left: 0; + padding: 10px 30px 10px 10px; + z-index: 99; +} + +#searchform button { + position: absolute; + right: 6px; + top: 4px; + z-index: 999; + background: transparent; + border: 0; + padding: 0; +} + +#searchform button span { + font-size: 22px; +} + +#search-menu span.ion-ios-close-empty { + font-size: 40px; + line-height: 0; + position: relative; + top: -6px; +} + +/** + * 8.0 - Mobile Menu + */ + +.overlay { + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + background: #fff; +} + +.overlay .overlay-close { + position: absolute; + right: 25px; + top: 10px; + padding: 0; + overflow: hidden; + border: none; + color: transparent; + background-color: transparent; + z-index: 100; +} + +.overlay-hugeinc.open .ion-ios-close-empty { + color: #000; + font-size: 50px; +} + +.overlay nav { + text-align: center; + position: relative; + top: 50%; + height: 60%; + font-size: 54px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); +} + +.overlay ul { + list-style: none; + padding: 0; + margin: 0 auto; + display: inline-block; + height: 100%; + position: relative; +} + +.overlay ul li { + display: block; + height: 20%; + height: calc(100% / 5); + min-height: 54px; +} + +.overlay ul li a { + font-weight: 300; + display: block; + -webkit-transition: color 0.2s; + transition: color 0.2s; +} + +.overlay ul li a:hover, +.overlay ul li a:focus { + color: #000; +} + +.overlay-hugeinc { + opacity: 0; + visibility: hidden; + -webkit-transition: opacity 0.5s, visibility 0s 0.5s; + transition: opacity 0.5s, visibility 0s 0.5s; +} + +.overlay-hugeinc.open { + opacity: 1; + visibility: visible; + -webkit-transition: opacity 0.5s; + transition: opacity 0.5s; +} + +.overlay-hugeinc nav { + -webkit-perspective: 1200px; + perspective: 1200px; +} + +.overlay-hugeinc nav ul { + opacity: 0.4; + -webkit-transform: translateY(-25%) rotateX(35deg); + transform: translateY(-25%) rotateX(35deg); + -webkit-transition: -webkit-transform 0.5s, opacity 0.5s; + transition: transform 0.5s, opacity 0.5s; +} + +.overlay-hugeinc.open nav ul { + opacity: 1; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} + +.overlay-hugeinc.close nav ul { + -webkit-transform: translateY(25%) rotateX(-35deg); + transform: translateY(25%) rotateX(-35deg); +} + +/** + * 9.0 - Contact Page Social + */ + +.social { + list-style-type: none; + padding: 0; + margin: 0; + text-align: center; +} + +.social li { + display: inline-block; + margin-right: 10px; + margin-bottom: 20px; +} + +.social li a { + border: 1px solid #888; + font-size: 22px; + color: #888; + transition: all 0.3s ease-in; +} + +.social li a:hover { + background-color: #333; + color: #fff; +} + +.facebook a { + padding: 12px 21px; +} + +.twitter a { + padding: 12px 15px; +} + +.google-plus a { + padding: 12px 15px; +} + +.tumblr a { + padding: 12px 20px; +} + +/** + * 10.0 - Contact Form + */ + +.contact-form input, .comment-form input { + border: 1px solid #aaa; + margin-bottom: 15px; + width: 100%; + padding: 15px 15px; + font-size: 16px; + line-height: 100%; + transition: 0.4s border-color linear; +} + +.contact-form textarea, .comment-form textarea { + border: 1px solid #aaa; + margin-bottom: 15px; + width: 100%; + padding: 15px 15px; + font-size: 16px; + line-height: 20px !important; + min-height: 183px; + transition: 0.4s border-color linear; +} + +.contact-form input:focus, .comment-form input:focus, +.contact-form textarea:focus, .comment-form textarea:focus { + border-color: #666; +} + +.btn-send { + background: none; + border: 1px solid #aaa; + cursor: pointer; + padding: 25px 80px; + display: inline-block; + letter-spacing: 1px; + position: relative; + transition: all 0.3s; +} + +.btn-5 { + color: #666; + height: 70px; + min-width: 260px; + line-height: 15px; + font-size: 16px; + overflow: hidden; + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + backface-visibility: hidden; +} + +.btn-5 span { + display: inline-block; + width: 100%; + height: 100%; + -webkit-transition: all 0.3s; + -webkit-backface-visibility: hidden; + -moz-transition: all 0.3s; + -moz-backface-visibility: hidden; + transition: all 0.3s; + backface-visibility: hidden; +} + +.btn-5:before { + position: absolute; + height: 100%; + width: 100%; + line-height: 2.5; + font-size: 180%; + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + transition: all 0.3s; +} + +.btn-5:active:before { + color: #703b87; +} + +.btn-5b:hover span { + -webkit-transform: translateX(200%); + -moz-transform: translateX(200%); + -ms-transform: translateX(200%); + transform: translateX(200%); +} + +.btn-5b:before { + left: -100%; + top: 0; +} + +.btn-5b:hover:before { + left: 0; +} + +/** + * 11.0 - Media Query + */ + +@media (max-width: 991px) { + .main-nav a { + margin-right: 20px; + } + + #header-search-box { + position: absolute; + right: 20px; + } +} + +@media (max-width: 767px) { + #header-search-box { + right: 20px; + top: 9px; + } + + .main-nav { + margin-top: 2px; + } + + .btn-5 span { + display: none; + } + + .btn-5b:before { + left: 0; + } +} + +@media (max-width: 431px) { + .logo h1 { + margin-top: 8px; + font-size: 24px; + } + + .post { + background: #fff; + padding: 0 10px 0; + } + + .more-link { + font-size: 0.9em; + line-height: 100%; + } +} + +@media screen and (max-height: 30.5em) { + .overlay nav { + height: 70%; + font-size: 34px; + } + + .overlay ul li { + min-height: 34px; + } +} + +/** + * 12.0 - Comment + */ +.comment-area { + padding: 0 30px 0; +} + +.comment-form { + margin-top: 15px; +} + +.comment-form .comment-btn { + background-color: #fff; + border: 1px solid #aaa; + font-size: 16px; + padding: 5px 10px; +} + +.comment-list-panel { + margin-top: 30px; +} + +.comment-list { + margin-top: 15px; +} + +.comment-item:not(:last-child) { + border-bottom: 1px #ccc solid; + margin-bottom: 20px; + padding-bottom: 20px; +} + +.comment-item .nickname, +.comment-item .submit-date { + color: #777; + font-size: 14px; +} + +.comment-item .nickname:after { + content: ' ·'; +} + +.comment-item .text { + padding-top: 5px; + font-size: 16px; +} + +/** + * 13.0 - Pagination + */ +.pagination-simple { + padding-left: 30px; + font-size: 16px; +} + +.pagination ul { + list-style: none; +} + +.pagination ul li { + display: inline-block; + font-size: 16px; + margin-right: 5px; +} + +.current a { + color: red; +} diff --git a/blog/static/blog/css/highlights/autumn.css b/blog/static/blog/css/highlights/autumn.css new file mode 100644 index 0000000..5bc7f03 --- /dev/null +++ b/blog/static/blog/css/highlights/autumn.css @@ -0,0 +1,58 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #aaaaaa; font-style: italic } /* Comment */ +.codehilite .err { color: #F00000; background-color: #F0A0A0 } /* Error */ +.codehilite .k { color: #0000aa } /* Keyword */ +.codehilite .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #4c8317 } /* Comment.Preproc */ +.codehilite .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #0000aa; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #aa0000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #aa0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00aa00 } /* Generic.Inserted */ +.codehilite .go { color: #888888 } /* Generic.Output */ +.codehilite .gp { color: #555555 } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ +.codehilite .kc { color: #0000aa } /* Keyword.Constant */ +.codehilite .kd { color: #0000aa } /* Keyword.Declaration */ +.codehilite .kn { color: #0000aa } /* Keyword.Namespace */ +.codehilite .kp { color: #0000aa } /* Keyword.Pseudo */ +.codehilite .kr { color: #0000aa } /* Keyword.Reserved */ +.codehilite .kt { color: #00aaaa } /* Keyword.Type */ +.codehilite .m { color: #009999 } /* Literal.Number */ +.codehilite .s { color: #aa5500 } /* Literal.String */ +.codehilite .na { color: #1e90ff } /* Name.Attribute */ +.codehilite .nb { color: #00aaaa } /* Name.Builtin */ +.codehilite .nc { color: #00aa00; text-decoration: underline } /* Name.Class */ +.codehilite .no { color: #aa0000 } /* Name.Constant */ +.codehilite .nd { color: #888888 } /* Name.Decorator */ +.codehilite .ni { color: #800000; font-weight: bold } /* Name.Entity */ +.codehilite .nf { color: #00aa00 } /* Name.Function */ +.codehilite .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */ +.codehilite .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #aa0000 } /* Name.Variable */ +.codehilite .ow { color: #0000aa } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #009999 } /* Literal.Number.Float */ +.codehilite .mh { color: #009999 } /* Literal.Number.Hex */ +.codehilite .mi { color: #009999 } /* Literal.Number.Integer */ +.codehilite .mo { color: #009999 } /* Literal.Number.Oct */ +.codehilite .sb { color: #aa5500 } /* Literal.String.Backtick */ +.codehilite .sc { color: #aa5500 } /* Literal.String.Char */ +.codehilite .sd { color: #aa5500 } /* Literal.String.Doc */ +.codehilite .s2 { color: #aa5500 } /* Literal.String.Double */ +.codehilite .se { color: #aa5500 } /* Literal.String.Escape */ +.codehilite .sh { color: #aa5500 } /* Literal.String.Heredoc */ +.codehilite .si { color: #aa5500 } /* Literal.String.Interpol */ +.codehilite .sx { color: #aa5500 } /* Literal.String.Other */ +.codehilite .sr { color: #009999 } /* Literal.String.Regex */ +.codehilite .s1 { color: #aa5500 } /* Literal.String.Single */ +.codehilite .ss { color: #0000aa } /* Literal.String.Symbol */ +.codehilite .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #aa0000 } /* Name.Variable.Class */ +.codehilite .vg { color: #aa0000 } /* Name.Variable.Global */ +.codehilite .vi { color: #aa0000 } /* Name.Variable.Instance */ +.codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/borland.css b/blog/static/blog/css/highlights/borland.css new file mode 100644 index 0000000..6a011b2 --- /dev/null +++ b/blog/static/blog/css/highlights/borland.css @@ -0,0 +1,46 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #008800; font-style: italic } /* Comment */ +.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.codehilite .k { color: #000080; font-weight: bold } /* Keyword */ +.codehilite .cm { color: #008800; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #008080 } /* Comment.Preproc */ +.codehilite .c1 { color: #008800; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #008800; font-weight: bold } /* Comment.Special */ +.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #aa0000 } /* Generic.Error */ +.codehilite .gh { color: #999999 } /* Generic.Heading */ +.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.codehilite .go { color: #888888 } /* Generic.Output */ +.codehilite .gp { color: #555555 } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #aaaaaa } /* Generic.Subheading */ +.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ +.codehilite .kc { color: #000080; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #000080; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #0000FF } /* Literal.Number */ +.codehilite .s { color: #0000FF } /* Literal.String */ +.codehilite .na { color: #FF0000 } /* Name.Attribute */ +.codehilite .nt { color: #000080; font-weight: bold } /* Name.Tag */ +.codehilite .ow { font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #0000FF } /* Literal.Number.Float */ +.codehilite .mh { color: #0000FF } /* Literal.Number.Hex */ +.codehilite .mi { color: #0000FF } /* Literal.Number.Integer */ +.codehilite .mo { color: #0000FF } /* Literal.Number.Oct */ +.codehilite .sb { color: #0000FF } /* Literal.String.Backtick */ +.codehilite .sc { color: #800080 } /* Literal.String.Char */ +.codehilite .sd { color: #0000FF } /* Literal.String.Doc */ +.codehilite .s2 { color: #0000FF } /* Literal.String.Double */ +.codehilite .se { color: #0000FF } /* Literal.String.Escape */ +.codehilite .sh { color: #0000FF } /* Literal.String.Heredoc */ +.codehilite .si { color: #0000FF } /* Literal.String.Interpol */ +.codehilite .sx { color: #0000FF } /* Literal.String.Other */ +.codehilite .sr { color: #0000FF } /* Literal.String.Regex */ +.codehilite .s1 { color: #0000FF } /* Literal.String.Single */ +.codehilite .ss { color: #0000FF } /* Literal.String.Symbol */ +.codehilite .il { color: #0000FF } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/bw.css b/blog/static/blog/css/highlights/bw.css new file mode 100644 index 0000000..db28785 --- /dev/null +++ b/blog/static/blog/css/highlights/bw.css @@ -0,0 +1,34 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { font-style: italic } /* Comment */ +.codehilite .err { border: 1px solid #FF0000 } /* Error */ +.codehilite .k { font-weight: bold } /* Keyword */ +.codehilite .cm { font-style: italic } /* Comment.Multiline */ +.codehilite .c1 { font-style: italic } /* Comment.Single */ +.codehilite .cs { font-style: italic } /* Comment.Special */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gh { font-weight: bold } /* Generic.Heading */ +.codehilite .gp { font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { font-weight: bold } /* Generic.Subheading */ +.codehilite .kc { font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { font-weight: bold } /* Keyword.Namespace */ +.codehilite .kr { font-weight: bold } /* Keyword.Reserved */ +.codehilite .s { font-style: italic } /* Literal.String */ +.codehilite .nc { font-weight: bold } /* Name.Class */ +.codehilite .ni { font-weight: bold } /* Name.Entity */ +.codehilite .ne { font-weight: bold } /* Name.Exception */ +.codehilite .nn { font-weight: bold } /* Name.Namespace */ +.codehilite .nt { font-weight: bold } /* Name.Tag */ +.codehilite .ow { font-weight: bold } /* Operator.Word */ +.codehilite .sb { font-style: italic } /* Literal.String.Backtick */ +.codehilite .sc { font-style: italic } /* Literal.String.Char */ +.codehilite .sd { font-style: italic } /* Literal.String.Doc */ +.codehilite .s2 { font-style: italic } /* Literal.String.Double */ +.codehilite .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */ +.codehilite .sh { font-style: italic } /* Literal.String.Heredoc */ +.codehilite .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */ +.codehilite .sx { font-style: italic } /* Literal.String.Other */ +.codehilite .sr { font-style: italic } /* Literal.String.Regex */ +.codehilite .s1 { font-style: italic } /* Literal.String.Single */ +.codehilite .ss { font-style: italic } /* Literal.String.Symbol */ diff --git a/blog/static/blog/css/highlights/colorful.css b/blog/static/blog/css/highlights/colorful.css new file mode 100644 index 0000000..72750df --- /dev/null +++ b/blog/static/blog/css/highlights/colorful.css @@ -0,0 +1,61 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #808080 } /* Comment */ +.codehilite .err { color: #F00000; background-color: #F0A0A0 } /* Error */ +.codehilite .k { color: #008000; font-weight: bold } /* Keyword */ +.codehilite .o { color: #303030 } /* Operator */ +.codehilite .cm { color: #808080 } /* Comment.Multiline */ +.codehilite .cp { color: #507090 } /* Comment.Preproc */ +.codehilite .c1 { color: #808080 } /* Comment.Single */ +.codehilite .cs { color: #cc0000; font-weight: bold } /* Comment.Special */ +.codehilite .gd { color: #A00000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00A000 } /* Generic.Inserted */ +.codehilite .go { color: #808080 } /* Generic.Output */ +.codehilite .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #0040D0 } /* Generic.Traceback */ +.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #003080; font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #303090; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #6000E0; font-weight: bold } /* Literal.Number */ +.codehilite .s { background-color: #fff0f0 } /* Literal.String */ +.codehilite .na { color: #0000C0 } /* Name.Attribute */ +.codehilite .nb { color: #007020 } /* Name.Builtin */ +.codehilite .nc { color: #B00060; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #003060; font-weight: bold } /* Name.Constant */ +.codehilite .nd { color: #505050; font-weight: bold } /* Name.Decorator */ +.codehilite .ni { color: #800000; font-weight: bold } /* Name.Entity */ +.codehilite .ne { color: #F00000; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #0060B0; font-weight: bold } /* Name.Function */ +.codehilite .nl { color: #907000; font-weight: bold } /* Name.Label */ +.codehilite .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ +.codehilite .nt { color: #007000 } /* Name.Tag */ +.codehilite .nv { color: #906030 } /* Name.Variable */ +.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */ +.codehilite .mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */ +.codehilite .mi { color: #0000D0; font-weight: bold } /* Literal.Number.Integer */ +.codehilite .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */ +.codehilite .sb { background-color: #fff0f0 } /* Literal.String.Backtick */ +.codehilite .sc { color: #0040D0 } /* Literal.String.Char */ +.codehilite .sd { color: #D04020 } /* Literal.String.Doc */ +.codehilite .s2 { background-color: #fff0f0 } /* Literal.String.Double */ +.codehilite .se { color: #606060; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */ +.codehilite .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */ +.codehilite .si { background-color: #e0e0e0 } /* Literal.String.Interpol */ +.codehilite .sx { color: #D02000; background-color: #fff0f0 } /* Literal.String.Other */ +.codehilite .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */ +.codehilite .s1 { background-color: #fff0f0 } /* Literal.String.Single */ +.codehilite .ss { color: #A06000 } /* Literal.String.Symbol */ +.codehilite .bp { color: #007020 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #306090 } /* Name.Variable.Class */ +.codehilite .vg { color: #d07000; font-weight: bold } /* Name.Variable.Global */ +.codehilite .vi { color: #3030B0 } /* Name.Variable.Instance */ +.codehilite .il { color: #0000D0; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/default.css b/blog/static/blog/css/highlights/default.css new file mode 100644 index 0000000..ef95359 --- /dev/null +++ b/blog/static/blog/css/highlights/default.css @@ -0,0 +1,62 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite { background: #f8f8f8; } +.codehilite .c { color: #408080; font-style: italic } /* Comment */ +.codehilite .err { border: 1px solid #FF0000 } /* Error */ +.codehilite .k { color: #008000; font-weight: bold } /* Keyword */ +.codehilite .o { color: #666666 } /* Operator */ +.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */ +.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #A00000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00A000 } /* Generic.Inserted */ +.codehilite .go { color: #808080 } /* Generic.Output */ +.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #0040D0 } /* Generic.Traceback */ +.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #008000 } /* Keyword.Pseudo */ +.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #B00040 } /* Keyword.Type */ +.codehilite .m { color: #666666 } /* Literal.Number */ +.codehilite .s { color: #BA2121 } /* Literal.String */ +.codehilite .na { color: #7D9029 } /* Name.Attribute */ +.codehilite .nb { color: #008000 } /* Name.Builtin */ +.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #880000 } /* Name.Constant */ +.codehilite .nd { color: #AA22FF } /* Name.Decorator */ +.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #0000FF } /* Name.Function */ +.codehilite .nl { color: #A0A000 } /* Name.Label */ +.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #19177C } /* Name.Variable */ +.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #666666 } /* Literal.Number.Float */ +.codehilite .mh { color: #666666 } /* Literal.Number.Hex */ +.codehilite .mi { color: #666666 } /* Literal.Number.Integer */ +.codehilite .mo { color: #666666 } /* Literal.Number.Oct */ +.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */ +.codehilite .sc { color: #BA2121 } /* Literal.String.Char */ +.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */ +.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.codehilite .sx { color: #008000 } /* Literal.String.Other */ +.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */ +.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */ +.codehilite .ss { color: #19177C } /* Literal.String.Symbol */ +.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #19177C } /* Name.Variable.Class */ +.codehilite .vg { color: #19177C } /* Name.Variable.Global */ +.codehilite .vi { color: #19177C } /* Name.Variable.Instance */ +.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/emacs.css b/blog/static/blog/css/highlights/emacs.css new file mode 100644 index 0000000..07112cd --- /dev/null +++ b/blog/static/blog/css/highlights/emacs.css @@ -0,0 +1,61 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #008800; font-style: italic } /* Comment */ +.codehilite .err { border: 1px solid #FF0000 } /* Error */ +.codehilite .k { color: #AA22FF; font-weight: bold } /* Keyword */ +.codehilite .o { color: #666666 } /* Operator */ +.codehilite .cm { color: #008800; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #008800 } /* Comment.Preproc */ +.codehilite .c1 { color: #008800; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #008800; font-weight: bold } /* Comment.Special */ +.codehilite .gd { color: #A00000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00A000 } /* Generic.Inserted */ +.codehilite .go { color: #808080 } /* Generic.Output */ +.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #0040D0 } /* Generic.Traceback */ +.codehilite .kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #AA22FF } /* Keyword.Pseudo */ +.codehilite .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #666666 } /* Literal.Number */ +.codehilite .s { color: #BB4444 } /* Literal.String */ +.codehilite .na { color: #BB4444 } /* Name.Attribute */ +.codehilite .nb { color: #AA22FF } /* Name.Builtin */ +.codehilite .nc { color: #0000FF } /* Name.Class */ +.codehilite .no { color: #880000 } /* Name.Constant */ +.codehilite .nd { color: #AA22FF } /* Name.Decorator */ +.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #00A000 } /* Name.Function */ +.codehilite .nl { color: #A0A000 } /* Name.Label */ +.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #B8860B } /* Name.Variable */ +.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #666666 } /* Literal.Number.Float */ +.codehilite .mh { color: #666666 } /* Literal.Number.Hex */ +.codehilite .mi { color: #666666 } /* Literal.Number.Integer */ +.codehilite .mo { color: #666666 } /* Literal.Number.Oct */ +.codehilite .sb { color: #BB4444 } /* Literal.String.Backtick */ +.codehilite .sc { color: #BB4444 } /* Literal.String.Char */ +.codehilite .sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */ +.codehilite .s2 { color: #BB4444 } /* Literal.String.Double */ +.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ +.codehilite .sh { color: #BB4444 } /* Literal.String.Heredoc */ +.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ +.codehilite .sx { color: #008000 } /* Literal.String.Other */ +.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */ +.codehilite .s1 { color: #BB4444 } /* Literal.String.Single */ +.codehilite .ss { color: #B8860B } /* Literal.String.Symbol */ +.codehilite .bp { color: #AA22FF } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #B8860B } /* Name.Variable.Class */ +.codehilite .vg { color: #B8860B } /* Name.Variable.Global */ +.codehilite .vi { color: #B8860B } /* Name.Variable.Instance */ +.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/friendly.css b/blog/static/blog/css/highlights/friendly.css new file mode 100644 index 0000000..1f2f18f --- /dev/null +++ b/blog/static/blog/css/highlights/friendly.css @@ -0,0 +1,61 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #60a0b0; font-style: italic } /* Comment */ +.codehilite .err { border: 1px solid #FF0000 } /* Error */ +.codehilite .k { color: #007020; font-weight: bold } /* Keyword */ +.codehilite .o { color: #666666 } /* Operator */ +.codehilite .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #007020 } /* Comment.Preproc */ +.codehilite .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */ +.codehilite .gd { color: #A00000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00A000 } /* Generic.Inserted */ +.codehilite .go { color: #808080 } /* Generic.Output */ +.codehilite .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #0040D0 } /* Generic.Traceback */ +.codehilite .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #007020 } /* Keyword.Pseudo */ +.codehilite .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #902000 } /* Keyword.Type */ +.codehilite .m { color: #40a070 } /* Literal.Number */ +.codehilite .s { color: #4070a0 } /* Literal.String */ +.codehilite .na { color: #4070a0 } /* Name.Attribute */ +.codehilite .nb { color: #007020 } /* Name.Builtin */ +.codehilite .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #60add5 } /* Name.Constant */ +.codehilite .nd { color: #555555; font-weight: bold } /* Name.Decorator */ +.codehilite .ni { color: #d55537; font-weight: bold } /* Name.Entity */ +.codehilite .ne { color: #007020 } /* Name.Exception */ +.codehilite .nf { color: #06287e } /* Name.Function */ +.codehilite .nl { color: #002070; font-weight: bold } /* Name.Label */ +.codehilite .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ +.codehilite .nt { color: #062873; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #bb60d5 } /* Name.Variable */ +.codehilite .ow { color: #007020; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #40a070 } /* Literal.Number.Float */ +.codehilite .mh { color: #40a070 } /* Literal.Number.Hex */ +.codehilite .mi { color: #40a070 } /* Literal.Number.Integer */ +.codehilite .mo { color: #40a070 } /* Literal.Number.Oct */ +.codehilite .sb { color: #4070a0 } /* Literal.String.Backtick */ +.codehilite .sc { color: #4070a0 } /* Literal.String.Char */ +.codehilite .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ +.codehilite .s2 { color: #4070a0 } /* Literal.String.Double */ +.codehilite .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ +.codehilite .sh { color: #4070a0 } /* Literal.String.Heredoc */ +.codehilite .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ +.codehilite .sx { color: #c65d09 } /* Literal.String.Other */ +.codehilite .sr { color: #235388 } /* Literal.String.Regex */ +.codehilite .s1 { color: #4070a0 } /* Literal.String.Single */ +.codehilite .ss { color: #517918 } /* Literal.String.Symbol */ +.codehilite .bp { color: #007020 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #bb60d5 } /* Name.Variable.Class */ +.codehilite .vg { color: #bb60d5 } /* Name.Variable.Global */ +.codehilite .vi { color: #bb60d5 } /* Name.Variable.Instance */ +.codehilite .il { color: #40a070 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/fruity.css b/blog/static/blog/css/highlights/fruity.css new file mode 100644 index 0000000..2b3be4d --- /dev/null +++ b/blog/static/blog/css/highlights/fruity.css @@ -0,0 +1,69 @@ +.codehilite .hll { background-color: #333333 } +.codehilite .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */ +.codehilite .err { color: #ffffff } /* Error */ +.codehilite .g { color: #ffffff } /* Generic */ +.codehilite .k { color: #fb660a; font-weight: bold } /* Keyword */ +.codehilite .l { color: #ffffff } /* Literal */ +.codehilite .n { color: #ffffff } /* Name */ +.codehilite .o { color: #ffffff } /* Operator */ +.codehilite .x { color: #ffffff } /* Other */ +.codehilite .p { color: #ffffff } /* Punctuation */ +.codehilite .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */ +.codehilite .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */ +.codehilite .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */ +.codehilite .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */ +.codehilite .gd { color: #ffffff } /* Generic.Deleted */ +.codehilite .ge { color: #ffffff } /* Generic.Emph */ +.codehilite .gr { color: #ffffff } /* Generic.Error */ +.codehilite .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #ffffff } /* Generic.Inserted */ +.codehilite .go { color: #444444; background-color: #222222 } /* Generic.Output */ +.codehilite .gp { color: #ffffff } /* Generic.Prompt */ +.codehilite .gs { color: #ffffff } /* Generic.Strong */ +.codehilite .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #ffffff } /* Generic.Traceback */ +.codehilite .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #fb660a } /* Keyword.Pseudo */ +.codehilite .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */ +.codehilite .ld { color: #ffffff } /* Literal.Date */ +.codehilite .m { color: #0086f7; font-weight: bold } /* Literal.Number */ +.codehilite .s { color: #0086d2 } /* Literal.String */ +.codehilite .na { color: #ff0086; font-weight: bold } /* Name.Attribute */ +.codehilite .nb { color: #ffffff } /* Name.Builtin */ +.codehilite .nc { color: #ffffff } /* Name.Class */ +.codehilite .no { color: #0086d2 } /* Name.Constant */ +.codehilite .nd { color: #ffffff } /* Name.Decorator */ +.codehilite .ni { color: #ffffff } /* Name.Entity */ +.codehilite .ne { color: #ffffff } /* Name.Exception */ +.codehilite .nf { color: #ff0086; font-weight: bold } /* Name.Function */ +.codehilite .nl { color: #ffffff } /* Name.Label */ +.codehilite .nn { color: #ffffff } /* Name.Namespace */ +.codehilite .nx { color: #ffffff } /* Name.Other */ +.codehilite .py { color: #ffffff } /* Name.Property */ +.codehilite .nt { color: #fb660a; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #fb660a } /* Name.Variable */ +.codehilite .ow { color: #ffffff } /* Operator.Word */ +.codehilite .w { color: #888888 } /* Text.Whitespace */ +.codehilite .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */ +.codehilite .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */ +.codehilite .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */ +.codehilite .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */ +.codehilite .sb { color: #0086d2 } /* Literal.String.Backtick */ +.codehilite .sc { color: #0086d2 } /* Literal.String.Char */ +.codehilite .sd { color: #0086d2 } /* Literal.String.Doc */ +.codehilite .s2 { color: #0086d2 } /* Literal.String.Double */ +.codehilite .se { color: #0086d2 } /* Literal.String.Escape */ +.codehilite .sh { color: #0086d2 } /* Literal.String.Heredoc */ +.codehilite .si { color: #0086d2 } /* Literal.String.Interpol */ +.codehilite .sx { color: #0086d2 } /* Literal.String.Other */ +.codehilite .sr { color: #0086d2 } /* Literal.String.Regex */ +.codehilite .s1 { color: #0086d2 } /* Literal.String.Single */ +.codehilite .ss { color: #0086d2 } /* Literal.String.Symbol */ +.codehilite .bp { color: #ffffff } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #fb660a } /* Name.Variable.Class */ +.codehilite .vg { color: #fb660a } /* Name.Variable.Global */ +.codehilite .vi { color: #fb660a } /* Name.Variable.Instance */ +.codehilite .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/github.css b/blog/static/blog/css/highlights/github.css new file mode 100644 index 0000000..3c6b05f --- /dev/null +++ b/blog/static/blog/css/highlights/github.css @@ -0,0 +1,61 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #999988; font-style: italic } /* Comment */ +.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.codehilite .k { color: #000000; font-weight: bold } /* Keyword */ +.codehilite .o { color: #000000; font-weight: bold } /* Operator */ +.codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */ +.codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #aa0000 } /* Generic.Error */ +.codehilite .gh { color: #999999 } /* Generic.Heading */ +.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.codehilite .go { color: #888888 } /* Generic.Output */ +.codehilite .gp { color: #555555 } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #aaaaaa } /* Generic.Subheading */ +.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ +.codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #009999 } /* Literal.Number */ +.codehilite .s { color: #d01040 } /* Literal.String */ +.codehilite .na { color: #008080 } /* Name.Attribute */ +.codehilite .nb { color: #0086B3 } /* Name.Builtin */ +.codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #008080 } /* Name.Constant */ +.codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */ +.codehilite .ni { color: #800080 } /* Name.Entity */ +.codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */ +.codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */ +.codehilite .nn { color: #555555 } /* Name.Namespace */ +.codehilite .nt { color: #000080 } /* Name.Tag */ +.codehilite .nv { color: #008080 } /* Name.Variable */ +.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #009999 } /* Literal.Number.Float */ +.codehilite .mh { color: #009999 } /* Literal.Number.Hex */ +.codehilite .mi { color: #009999 } /* Literal.Number.Integer */ +.codehilite .mo { color: #009999 } /* Literal.Number.Oct */ +.codehilite .sb { color: #d01040 } /* Literal.String.Backtick */ +.codehilite .sc { color: #d01040 } /* Literal.String.Char */ +.codehilite .sd { color: #d01040 } /* Literal.String.Doc */ +.codehilite .s2 { color: #d01040 } /* Literal.String.Double */ +.codehilite .se { color: #d01040 } /* Literal.String.Escape */ +.codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */ +.codehilite .si { color: #d01040 } /* Literal.String.Interpol */ +.codehilite .sx { color: #d01040 } /* Literal.String.Other */ +.codehilite .sr { color: #009926 } /* Literal.String.Regex */ +.codehilite .s1 { color: #d01040 } /* Literal.String.Single */ +.codehilite .ss { color: #990073 } /* Literal.String.Symbol */ +.codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #008080 } /* Name.Variable.Class */ +.codehilite .vg { color: #008080 } /* Name.Variable.Global */ +.codehilite .vi { color: #008080 } /* Name.Variable.Instance */ +.codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/manni.css b/blog/static/blog/css/highlights/manni.css new file mode 100644 index 0000000..e43a122 --- /dev/null +++ b/blog/static/blog/css/highlights/manni.css @@ -0,0 +1,61 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #0099FF; font-style: italic } /* Comment */ +.codehilite .err { color: #AA0000; background-color: #FFAAAA } /* Error */ +.codehilite .k { color: #006699; font-weight: bold } /* Keyword */ +.codehilite .o { color: #555555 } /* Operator */ +.codehilite .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #009999 } /* Comment.Preproc */ +.codehilite .c1 { color: #0099FF; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */ +.codehilite .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #003300; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ +.codehilite .go { color: #AAAAAA } /* Generic.Output */ +.codehilite .gp { color: #000099; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #003300; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #99CC66 } /* Generic.Traceback */ +.codehilite .kc { color: #006699; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #006699 } /* Keyword.Pseudo */ +.codehilite .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #007788; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #FF6600 } /* Literal.Number */ +.codehilite .s { color: #CC3300 } /* Literal.String */ +.codehilite .na { color: #330099 } /* Name.Attribute */ +.codehilite .nb { color: #336666 } /* Name.Builtin */ +.codehilite .nc { color: #00AA88; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #336600 } /* Name.Constant */ +.codehilite .nd { color: #9999FF } /* Name.Decorator */ +.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */ +.codehilite .ne { color: #CC0000; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #CC00FF } /* Name.Function */ +.codehilite .nl { color: #9999FF } /* Name.Label */ +.codehilite .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */ +.codehilite .nt { color: #330099; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #003333 } /* Name.Variable */ +.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #FF6600 } /* Literal.Number.Float */ +.codehilite .mh { color: #FF6600 } /* Literal.Number.Hex */ +.codehilite .mi { color: #FF6600 } /* Literal.Number.Integer */ +.codehilite .mo { color: #FF6600 } /* Literal.Number.Oct */ +.codehilite .sb { color: #CC3300 } /* Literal.String.Backtick */ +.codehilite .sc { color: #CC3300 } /* Literal.String.Char */ +.codehilite .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ +.codehilite .s2 { color: #CC3300 } /* Literal.String.Double */ +.codehilite .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */ +.codehilite .sh { color: #CC3300 } /* Literal.String.Heredoc */ +.codehilite .si { color: #AA0000 } /* Literal.String.Interpol */ +.codehilite .sx { color: #CC3300 } /* Literal.String.Other */ +.codehilite .sr { color: #33AAAA } /* Literal.String.Regex */ +.codehilite .s1 { color: #CC3300 } /* Literal.String.Single */ +.codehilite .ss { color: #FFCC33 } /* Literal.String.Symbol */ +.codehilite .bp { color: #336666 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #003333 } /* Name.Variable.Class */ +.codehilite .vg { color: #003333 } /* Name.Variable.Global */ +.codehilite .vi { color: #003333 } /* Name.Variable.Instance */ +.codehilite .il { color: #FF6600 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/monokai.css b/blog/static/blog/css/highlights/monokai.css new file mode 100644 index 0000000..6121071 --- /dev/null +++ b/blog/static/blog/css/highlights/monokai.css @@ -0,0 +1,64 @@ +.codehilite .hll { background-color: #49483e } +.codehilite .c { color: #75715e } /* Comment */ +.codehilite .err { color: #960050; background-color: #1e0010 } /* Error */ +.codehilite .k { color: #66d9ef } /* Keyword */ +.codehilite .l { color: #ae81ff } /* Literal */ +.codehilite .n { color: #f8f8f2 } /* Name */ +.codehilite .o { color: #f92672 } /* Operator */ +.codehilite .p { color: #f8f8f2 } /* Punctuation */ +.codehilite .cm { color: #75715e } /* Comment.Multiline */ +.codehilite .cp { color: #75715e } /* Comment.Preproc */ +.codehilite .c1 { color: #75715e } /* Comment.Single */ +.codehilite .cs { color: #75715e } /* Comment.Special */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .kc { color: #66d9ef } /* Keyword.Constant */ +.codehilite .kd { color: #66d9ef } /* Keyword.Declaration */ +.codehilite .kn { color: #f92672 } /* Keyword.Namespace */ +.codehilite .kp { color: #66d9ef } /* Keyword.Pseudo */ +.codehilite .kr { color: #66d9ef } /* Keyword.Reserved */ +.codehilite .kt { color: #66d9ef } /* Keyword.Type */ +.codehilite .ld { color: #e6db74 } /* Literal.Date */ +.codehilite .m { color: #ae81ff } /* Literal.Number */ +.codehilite .s { color: #e6db74 } /* Literal.String */ +.codehilite .na { color: #a6e22e } /* Name.Attribute */ +.codehilite .nb { color: #f8f8f2 } /* Name.Builtin */ +.codehilite .nc { color: #a6e22e } /* Name.Class */ +.codehilite .no { color: #66d9ef } /* Name.Constant */ +.codehilite .nd { color: #a6e22e } /* Name.Decorator */ +.codehilite .ni { color: #f8f8f2 } /* Name.Entity */ +.codehilite .ne { color: #a6e22e } /* Name.Exception */ +.codehilite .nf { color: #a6e22e } /* Name.Function */ +.codehilite .nl { color: #f8f8f2 } /* Name.Label */ +.codehilite .nn { color: #f8f8f2 } /* Name.Namespace */ +.codehilite .nx { color: #a6e22e } /* Name.Other */ +.codehilite .py { color: #f8f8f2 } /* Name.Property */ +.codehilite .nt { color: #f92672 } /* Name.Tag */ +.codehilite .nv { color: #f8f8f2 } /* Name.Variable */ +.codehilite .ow { color: #f92672 } /* Operator.Word */ +.codehilite .w { color: #f8f8f2 } /* Text.Whitespace */ +.codehilite .mf { color: #ae81ff } /* Literal.Number.Float */ +.codehilite .mh { color: #ae81ff } /* Literal.Number.Hex */ +.codehilite .mi { color: #ae81ff } /* Literal.Number.Integer */ +.codehilite .mo { color: #ae81ff } /* Literal.Number.Oct */ +.codehilite .sb { color: #e6db74 } /* Literal.String.Backtick */ +.codehilite .sc { color: #e6db74 } /* Literal.String.Char */ +.codehilite .sd { color: #e6db74 } /* Literal.String.Doc */ +.codehilite .s2 { color: #e6db74 } /* Literal.String.Double */ +.codehilite .se { color: #ae81ff } /* Literal.String.Escape */ +.codehilite .sh { color: #e6db74 } /* Literal.String.Heredoc */ +.codehilite .si { color: #e6db74 } /* Literal.String.Interpol */ +.codehilite .sx { color: #e6db74 } /* Literal.String.Other */ +.codehilite .sr { color: #e6db74 } /* Literal.String.Regex */ +.codehilite .s1 { color: #e6db74 } /* Literal.String.Single */ +.codehilite .ss { color: #e6db74 } /* Literal.String.Symbol */ +.codehilite .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #f8f8f2 } /* Name.Variable.Class */ +.codehilite .vg { color: #f8f8f2 } /* Name.Variable.Global */ +.codehilite .vi { color: #f8f8f2 } /* Name.Variable.Instance */ +.codehilite .il { color: #ae81ff } /* Literal.Number.Integer.Long */ + +.codehilite .gh { } /* Generic Heading & Diff Header */ +.codehilite .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */ +.codehilite .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */ +.codehilite .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */ diff --git a/blog/static/blog/css/highlights/murphy.css b/blog/static/blog/css/highlights/murphy.css new file mode 100644 index 0000000..b948c8f --- /dev/null +++ b/blog/static/blog/css/highlights/murphy.css @@ -0,0 +1,61 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #606060; font-style: italic } /* Comment */ +.codehilite .err { color: #F00000; background-color: #F0A0A0 } /* Error */ +.codehilite .k { color: #208090; font-weight: bold } /* Keyword */ +.codehilite .o { color: #303030 } /* Operator */ +.codehilite .cm { color: #606060; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #507090 } /* Comment.Preproc */ +.codehilite .c1 { color: #606060; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #c00000; font-weight: bold; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #A00000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00A000 } /* Generic.Inserted */ +.codehilite .go { color: #808080 } /* Generic.Output */ +.codehilite .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #0040D0 } /* Generic.Traceback */ +.codehilite .kc { color: #208090; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #208090; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #208090; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #0080f0; font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { color: #208090; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #6060f0; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #6000E0; font-weight: bold } /* Literal.Number */ +.codehilite .s { background-color: #e0e0ff } /* Literal.String */ +.codehilite .na { color: #000070 } /* Name.Attribute */ +.codehilite .nb { color: #007020 } /* Name.Builtin */ +.codehilite .nc { color: #e090e0; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #50e0d0; font-weight: bold } /* Name.Constant */ +.codehilite .nd { color: #505050; font-weight: bold } /* Name.Decorator */ +.codehilite .ni { color: #800000 } /* Name.Entity */ +.codehilite .ne { color: #F00000; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #50e0d0; font-weight: bold } /* Name.Function */ +.codehilite .nl { color: #907000; font-weight: bold } /* Name.Label */ +.codehilite .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ +.codehilite .nt { color: #007000 } /* Name.Tag */ +.codehilite .nv { color: #003060 } /* Name.Variable */ +.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */ +.codehilite .mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */ +.codehilite .mi { color: #6060f0; font-weight: bold } /* Literal.Number.Integer */ +.codehilite .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */ +.codehilite .sb { background-color: #e0e0ff } /* Literal.String.Backtick */ +.codehilite .sc { color: #8080F0 } /* Literal.String.Char */ +.codehilite .sd { color: #D04020 } /* Literal.String.Doc */ +.codehilite .s2 { background-color: #e0e0ff } /* Literal.String.Double */ +.codehilite .se { color: #606060; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */ +.codehilite .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */ +.codehilite .si { background-color: #e0e0e0 } /* Literal.String.Interpol */ +.codehilite .sx { color: #f08080; background-color: #e0e0ff } /* Literal.String.Other */ +.codehilite .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */ +.codehilite .s1 { background-color: #e0e0ff } /* Literal.String.Single */ +.codehilite .ss { color: #f0c080 } /* Literal.String.Symbol */ +.codehilite .bp { color: #007020 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #c0c0f0 } /* Name.Variable.Class */ +.codehilite .vg { color: #f08040 } /* Name.Variable.Global */ +.codehilite .vi { color: #a0a0f0 } /* Name.Variable.Instance */ +.codehilite .il { color: #6060f0; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/native.css b/blog/static/blog/css/highlights/native.css new file mode 100644 index 0000000..b1e8fa2 --- /dev/null +++ b/blog/static/blog/css/highlights/native.css @@ -0,0 +1,69 @@ +.codehilite .hll { background-color: #404040 } +.codehilite .c { color: #999999; font-style: italic } /* Comment */ +.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.codehilite .g { color: #d0d0d0 } /* Generic */ +.codehilite .k { color: #6ab825; font-weight: bold } /* Keyword */ +.codehilite .l { color: #d0d0d0 } /* Literal */ +.codehilite .n { color: #d0d0d0 } /* Name */ +.codehilite .o { color: #d0d0d0 } /* Operator */ +.codehilite .x { color: #d0d0d0 } /* Other */ +.codehilite .p { color: #d0d0d0 } /* Punctuation */ +.codehilite .cm { color: #999999; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ +.codehilite .c1 { color: #999999; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ +.codehilite .gd { color: #d22323 } /* Generic.Deleted */ +.codehilite .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #d22323 } /* Generic.Error */ +.codehilite .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #589819 } /* Generic.Inserted */ +.codehilite .go { color: #cccccc } /* Generic.Output */ +.codehilite .gp { color: #aaaaaa } /* Generic.Prompt */ +.codehilite .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ +.codehilite .gt { color: #d22323 } /* Generic.Traceback */ +.codehilite .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #6ab825 } /* Keyword.Pseudo */ +.codehilite .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */ +.codehilite .ld { color: #d0d0d0 } /* Literal.Date */ +.codehilite .m { color: #3677a9 } /* Literal.Number */ +.codehilite .s { color: #ed9d13 } /* Literal.String */ +.codehilite .na { color: #bbbbbb } /* Name.Attribute */ +.codehilite .nb { color: #24909d } /* Name.Builtin */ +.codehilite .nc { color: #447fcf; text-decoration: underline } /* Name.Class */ +.codehilite .no { color: #40ffff } /* Name.Constant */ +.codehilite .nd { color: #ffa500 } /* Name.Decorator */ +.codehilite .ni { color: #d0d0d0 } /* Name.Entity */ +.codehilite .ne { color: #bbbbbb } /* Name.Exception */ +.codehilite .nf { color: #447fcf } /* Name.Function */ +.codehilite .nl { color: #d0d0d0 } /* Name.Label */ +.codehilite .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */ +.codehilite .nx { color: #d0d0d0 } /* Name.Other */ +.codehilite .py { color: #d0d0d0 } /* Name.Property */ +.codehilite .nt { color: #6ab825; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #40ffff } /* Name.Variable */ +.codehilite .ow { color: #6ab825; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #666666 } /* Text.Whitespace */ +.codehilite .mf { color: #3677a9 } /* Literal.Number.Float */ +.codehilite .mh { color: #3677a9 } /* Literal.Number.Hex */ +.codehilite .mi { color: #3677a9 } /* Literal.Number.Integer */ +.codehilite .mo { color: #3677a9 } /* Literal.Number.Oct */ +.codehilite .sb { color: #ed9d13 } /* Literal.String.Backtick */ +.codehilite .sc { color: #ed9d13 } /* Literal.String.Char */ +.codehilite .sd { color: #ed9d13 } /* Literal.String.Doc */ +.codehilite .s2 { color: #ed9d13 } /* Literal.String.Double */ +.codehilite .se { color: #ed9d13 } /* Literal.String.Escape */ +.codehilite .sh { color: #ed9d13 } /* Literal.String.Heredoc */ +.codehilite .si { color: #ed9d13 } /* Literal.String.Interpol */ +.codehilite .sx { color: #ffa500 } /* Literal.String.Other */ +.codehilite .sr { color: #ed9d13 } /* Literal.String.Regex */ +.codehilite .s1 { color: #ed9d13 } /* Literal.String.Single */ +.codehilite .ss { color: #ed9d13 } /* Literal.String.Symbol */ +.codehilite .bp { color: #24909d } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #40ffff } /* Name.Variable.Class */ +.codehilite .vg { color: #40ffff } /* Name.Variable.Global */ +.codehilite .vi { color: #40ffff } /* Name.Variable.Instance */ +.codehilite .il { color: #3677a9 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/pastie.css b/blog/static/blog/css/highlights/pastie.css new file mode 100644 index 0000000..c23fa49 --- /dev/null +++ b/blog/static/blog/css/highlights/pastie.css @@ -0,0 +1,60 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #888888 } /* Comment */ +.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.codehilite .k { color: #008800; font-weight: bold } /* Keyword */ +.codehilite .cm { color: #888888 } /* Comment.Multiline */ +.codehilite .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ +.codehilite .c1 { color: #888888 } /* Comment.Single */ +.codehilite .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ +.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #aa0000 } /* Generic.Error */ +.codehilite .gh { color: #303030 } /* Generic.Heading */ +.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.codehilite .go { color: #888888 } /* Generic.Output */ +.codehilite .gp { color: #555555 } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #606060 } /* Generic.Subheading */ +.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ +.codehilite .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #008800 } /* Keyword.Pseudo */ +.codehilite .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #888888; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #0000DD; font-weight: bold } /* Literal.Number */ +.codehilite .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ +.codehilite .na { color: #336699 } /* Name.Attribute */ +.codehilite .nb { color: #003388 } /* Name.Builtin */ +.codehilite .nc { color: #bb0066; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #003366; font-weight: bold } /* Name.Constant */ +.codehilite .nd { color: #555555 } /* Name.Decorator */ +.codehilite .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #0066bb; font-weight: bold } /* Name.Function */ +.codehilite .nl { color: #336699; font-style: italic } /* Name.Label */ +.codehilite .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ +.codehilite .py { color: #336699; font-weight: bold } /* Name.Property */ +.codehilite .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #336699 } /* Name.Variable */ +.codehilite .ow { color: #008800 } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ +.codehilite .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ +.codehilite .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ +.codehilite .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ +.codehilite .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ +.codehilite .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ +.codehilite .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ +.codehilite .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ +.codehilite .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ +.codehilite .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ +.codehilite .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ +.codehilite .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ +.codehilite .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ +.codehilite .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ +.codehilite .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ +.codehilite .bp { color: #003388 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #336699 } /* Name.Variable.Class */ +.codehilite .vg { color: #dd7700 } /* Name.Variable.Global */ +.codehilite .vi { color: #3333bb } /* Name.Variable.Instance */ +.codehilite .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/perldoc.css b/blog/static/blog/css/highlights/perldoc.css new file mode 100644 index 0000000..e25c8ae --- /dev/null +++ b/blog/static/blog/css/highlights/perldoc.css @@ -0,0 +1,58 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #228B22 } /* Comment */ +.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.codehilite .k { color: #8B008B; font-weight: bold } /* Keyword */ +.codehilite .cm { color: #228B22 } /* Comment.Multiline */ +.codehilite .cp { color: #1e889b } /* Comment.Preproc */ +.codehilite .c1 { color: #228B22 } /* Comment.Single */ +.codehilite .cs { color: #8B008B; font-weight: bold } /* Comment.Special */ +.codehilite .gd { color: #aa0000 } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #aa0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00aa00 } /* Generic.Inserted */ +.codehilite .go { color: #888888 } /* Generic.Output */ +.codehilite .gp { color: #555555 } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ +.codehilite .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #a7a7a7; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #B452CD } /* Literal.Number */ +.codehilite .s { color: #CD5555 } /* Literal.String */ +.codehilite .na { color: #658b00 } /* Name.Attribute */ +.codehilite .nb { color: #658b00 } /* Name.Builtin */ +.codehilite .nc { color: #008b45; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #00688B } /* Name.Constant */ +.codehilite .nd { color: #707a7c } /* Name.Decorator */ +.codehilite .ne { color: #008b45; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #008b45 } /* Name.Function */ +.codehilite .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */ +.codehilite .nt { color: #8B008B; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #00688B } /* Name.Variable */ +.codehilite .ow { color: #8B008B } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #B452CD } /* Literal.Number.Float */ +.codehilite .mh { color: #B452CD } /* Literal.Number.Hex */ +.codehilite .mi { color: #B452CD } /* Literal.Number.Integer */ +.codehilite .mo { color: #B452CD } /* Literal.Number.Oct */ +.codehilite .sb { color: #CD5555 } /* Literal.String.Backtick */ +.codehilite .sc { color: #CD5555 } /* Literal.String.Char */ +.codehilite .sd { color: #CD5555 } /* Literal.String.Doc */ +.codehilite .s2 { color: #CD5555 } /* Literal.String.Double */ +.codehilite .se { color: #CD5555 } /* Literal.String.Escape */ +.codehilite .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */ +.codehilite .si { color: #CD5555 } /* Literal.String.Interpol */ +.codehilite .sx { color: #cb6c20 } /* Literal.String.Other */ +.codehilite .sr { color: #1c7e71 } /* Literal.String.Regex */ +.codehilite .s1 { color: #CD5555 } /* Literal.String.Single */ +.codehilite .ss { color: #CD5555 } /* Literal.String.Symbol */ +.codehilite .bp { color: #658b00 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #00688B } /* Name.Variable.Class */ +.codehilite .vg { color: #00688B } /* Name.Variable.Global */ +.codehilite .vi { color: #00688B } /* Name.Variable.Instance */ +.codehilite .il { color: #B452CD } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/tango.css b/blog/static/blog/css/highlights/tango.css new file mode 100644 index 0000000..dfd06f1 --- /dev/null +++ b/blog/static/blog/css/highlights/tango.css @@ -0,0 +1,69 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #8f5902; font-style: italic } /* Comment */ +.codehilite .err { color: #a40000; border: 1px solid #ef2929 } /* Error */ +.codehilite .g { color: #000000 } /* Generic */ +.codehilite .k { color: #204a87; font-weight: bold } /* Keyword */ +.codehilite .l { color: #000000 } /* Literal */ +.codehilite .n { color: #000000 } /* Name */ +.codehilite .o { color: #ce5c00; font-weight: bold } /* Operator */ +.codehilite .x { color: #000000 } /* Other */ +.codehilite .p { color: #000000; font-weight: bold } /* Punctuation */ +.codehilite .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */ +.codehilite .c1 { color: #8f5902; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #8f5902; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #a40000 } /* Generic.Deleted */ +.codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #ef2929 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00A000 } /* Generic.Inserted */ +.codehilite .go { color: #000000; font-style: italic } /* Generic.Output */ +.codehilite .gp { color: #8f5902 } /* Generic.Prompt */ +.codehilite .gs { color: #000000; font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */ +.codehilite .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #204a87; font-weight: bold } /* Keyword.Type */ +.codehilite .ld { color: #000000 } /* Literal.Date */ +.codehilite .m { color: #0000cf; font-weight: bold } /* Literal.Number */ +.codehilite .s { color: #4e9a06 } /* Literal.String */ +.codehilite .na { color: #c4a000 } /* Name.Attribute */ +.codehilite .nb { color: #204a87 } /* Name.Builtin */ +.codehilite .nc { color: #000000 } /* Name.Class */ +.codehilite .no { color: #000000 } /* Name.Constant */ +.codehilite .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */ +.codehilite .ni { color: #ce5c00 } /* Name.Entity */ +.codehilite .ne { color: #cc0000; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #000000 } /* Name.Function */ +.codehilite .nl { color: #f57900 } /* Name.Label */ +.codehilite .nn { color: #000000 } /* Name.Namespace */ +.codehilite .nx { color: #000000 } /* Name.Other */ +.codehilite .py { color: #000000 } /* Name.Property */ +.codehilite .nt { color: #204a87; font-weight: bold } /* Name.Tag */ +.codehilite .nv { color: #000000 } /* Name.Variable */ +.codehilite .ow { color: #204a87; font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */ +.codehilite .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */ +.codehilite .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */ +.codehilite .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */ +.codehilite .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */ +.codehilite .sb { color: #4e9a06 } /* Literal.String.Backtick */ +.codehilite .sc { color: #4e9a06 } /* Literal.String.Char */ +.codehilite .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */ +.codehilite .s2 { color: #4e9a06 } /* Literal.String.Double */ +.codehilite .se { color: #4e9a06 } /* Literal.String.Escape */ +.codehilite .sh { color: #4e9a06 } /* Literal.String.Heredoc */ +.codehilite .si { color: #4e9a06 } /* Literal.String.Interpol */ +.codehilite .sx { color: #4e9a06 } /* Literal.String.Other */ +.codehilite .sr { color: #4e9a06 } /* Literal.String.Regex */ +.codehilite .s1 { color: #4e9a06 } /* Literal.String.Single */ +.codehilite .ss { color: #4e9a06 } /* Literal.String.Symbol */ +.codehilite .bp { color: #3465a4 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #000000 } /* Name.Variable.Class */ +.codehilite .vg { color: #000000 } /* Name.Variable.Global */ +.codehilite .vi { color: #000000 } /* Name.Variable.Instance */ +.codehilite .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/trac.css b/blog/static/blog/css/highlights/trac.css new file mode 100644 index 0000000..c0157cb --- /dev/null +++ b/blog/static/blog/css/highlights/trac.css @@ -0,0 +1,59 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #999988; font-style: italic } /* Comment */ +.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.codehilite .k { font-weight: bold } /* Keyword */ +.codehilite .o { font-weight: bold } /* Operator */ +.codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ +.codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #aa0000 } /* Generic.Error */ +.codehilite .gh { color: #999999 } /* Generic.Heading */ +.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.codehilite .go { color: #888888 } /* Generic.Output */ +.codehilite .gp { color: #555555 } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #aaaaaa } /* Generic.Subheading */ +.codehilite .gt { color: #aa0000 } /* Generic.Traceback */ +.codehilite .kc { font-weight: bold } /* Keyword.Constant */ +.codehilite .kd { font-weight: bold } /* Keyword.Declaration */ +.codehilite .kn { font-weight: bold } /* Keyword.Namespace */ +.codehilite .kp { font-weight: bold } /* Keyword.Pseudo */ +.codehilite .kr { font-weight: bold } /* Keyword.Reserved */ +.codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +.codehilite .m { color: #009999 } /* Literal.Number */ +.codehilite .s { color: #bb8844 } /* Literal.String */ +.codehilite .na { color: #008080 } /* Name.Attribute */ +.codehilite .nb { color: #999999 } /* Name.Builtin */ +.codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */ +.codehilite .no { color: #008080 } /* Name.Constant */ +.codehilite .ni { color: #800080 } /* Name.Entity */ +.codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */ +.codehilite .nn { color: #555555 } /* Name.Namespace */ +.codehilite .nt { color: #000080 } /* Name.Tag */ +.codehilite .nv { color: #008080 } /* Name.Variable */ +.codehilite .ow { font-weight: bold } /* Operator.Word */ +.codehilite .w { color: #bbbbbb } /* Text.Whitespace */ +.codehilite .mf { color: #009999 } /* Literal.Number.Float */ +.codehilite .mh { color: #009999 } /* Literal.Number.Hex */ +.codehilite .mi { color: #009999 } /* Literal.Number.Integer */ +.codehilite .mo { color: #009999 } /* Literal.Number.Oct */ +.codehilite .sb { color: #bb8844 } /* Literal.String.Backtick */ +.codehilite .sc { color: #bb8844 } /* Literal.String.Char */ +.codehilite .sd { color: #bb8844 } /* Literal.String.Doc */ +.codehilite .s2 { color: #bb8844 } /* Literal.String.Double */ +.codehilite .se { color: #bb8844 } /* Literal.String.Escape */ +.codehilite .sh { color: #bb8844 } /* Literal.String.Heredoc */ +.codehilite .si { color: #bb8844 } /* Literal.String.Interpol */ +.codehilite .sx { color: #bb8844 } /* Literal.String.Other */ +.codehilite .sr { color: #808000 } /* Literal.String.Regex */ +.codehilite .s1 { color: #bb8844 } /* Literal.String.Single */ +.codehilite .ss { color: #bb8844 } /* Literal.String.Symbol */ +.codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #008080 } /* Name.Variable.Class */ +.codehilite .vg { color: #008080 } /* Name.Variable.Global */ +.codehilite .vi { color: #008080 } /* Name.Variable.Instance */ +.codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/vim.css b/blog/static/blog/css/highlights/vim.css new file mode 100644 index 0000000..740f437 --- /dev/null +++ b/blog/static/blog/css/highlights/vim.css @@ -0,0 +1,69 @@ +.codehilite .hll { background-color: #222222 } +.codehilite .c { color: #000080 } /* Comment */ +.codehilite .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */ +.codehilite .g { color: #cccccc } /* Generic */ +.codehilite .k { color: #cdcd00 } /* Keyword */ +.codehilite .l { color: #cccccc } /* Literal */ +.codehilite .n { color: #cccccc } /* Name */ +.codehilite .o { color: #3399cc } /* Operator */ +.codehilite .x { color: #cccccc } /* Other */ +.codehilite .p { color: #cccccc } /* Punctuation */ +.codehilite .cm { color: #000080 } /* Comment.Multiline */ +.codehilite .cp { color: #000080 } /* Comment.Preproc */ +.codehilite .c1 { color: #000080 } /* Comment.Single */ +.codehilite .cs { color: #cd0000; font-weight: bold } /* Comment.Special */ +.codehilite .gd { color: #cd0000 } /* Generic.Deleted */ +.codehilite .ge { color: #cccccc; font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #FF0000 } /* Generic.Error */ +.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #00cd00 } /* Generic.Inserted */ +.codehilite .go { color: #808080 } /* Generic.Output */ +.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.codehilite .gt { color: #0040D0 } /* Generic.Traceback */ +.codehilite .kc { color: #cdcd00 } /* Keyword.Constant */ +.codehilite .kd { color: #00cd00 } /* Keyword.Declaration */ +.codehilite .kn { color: #cd00cd } /* Keyword.Namespace */ +.codehilite .kp { color: #cdcd00 } /* Keyword.Pseudo */ +.codehilite .kr { color: #cdcd00 } /* Keyword.Reserved */ +.codehilite .kt { color: #00cd00 } /* Keyword.Type */ +.codehilite .ld { color: #cccccc } /* Literal.Date */ +.codehilite .m { color: #cd00cd } /* Literal.Number */ +.codehilite .s { color: #cd0000 } /* Literal.String */ +.codehilite .na { color: #cccccc } /* Name.Attribute */ +.codehilite .nb { color: #cd00cd } /* Name.Builtin */ +.codehilite .nc { color: #00cdcd } /* Name.Class */ +.codehilite .no { color: #cccccc } /* Name.Constant */ +.codehilite .nd { color: #cccccc } /* Name.Decorator */ +.codehilite .ni { color: #cccccc } /* Name.Entity */ +.codehilite .ne { color: #666699; font-weight: bold } /* Name.Exception */ +.codehilite .nf { color: #cccccc } /* Name.Function */ +.codehilite .nl { color: #cccccc } /* Name.Label */ +.codehilite .nn { color: #cccccc } /* Name.Namespace */ +.codehilite .nx { color: #cccccc } /* Name.Other */ +.codehilite .py { color: #cccccc } /* Name.Property */ +.codehilite .nt { color: #cccccc } /* Name.Tag */ +.codehilite .nv { color: #00cdcd } /* Name.Variable */ +.codehilite .ow { color: #cdcd00 } /* Operator.Word */ +.codehilite .w { color: #cccccc } /* Text.Whitespace */ +.codehilite .mf { color: #cd00cd } /* Literal.Number.Float */ +.codehilite .mh { color: #cd00cd } /* Literal.Number.Hex */ +.codehilite .mi { color: #cd00cd } /* Literal.Number.Integer */ +.codehilite .mo { color: #cd00cd } /* Literal.Number.Oct */ +.codehilite .sb { color: #cd0000 } /* Literal.String.Backtick */ +.codehilite .sc { color: #cd0000 } /* Literal.String.Char */ +.codehilite .sd { color: #cd0000 } /* Literal.String.Doc */ +.codehilite .s2 { color: #cd0000 } /* Literal.String.Double */ +.codehilite .se { color: #cd0000 } /* Literal.String.Escape */ +.codehilite .sh { color: #cd0000 } /* Literal.String.Heredoc */ +.codehilite .si { color: #cd0000 } /* Literal.String.Interpol */ +.codehilite .sx { color: #cd0000 } /* Literal.String.Other */ +.codehilite .sr { color: #cd0000 } /* Literal.String.Regex */ +.codehilite .s1 { color: #cd0000 } /* Literal.String.Single */ +.codehilite .ss { color: #cd0000 } /* Literal.String.Symbol */ +.codehilite .bp { color: #cd00cd } /* Name.Builtin.Pseudo */ +.codehilite .vc { color: #00cdcd } /* Name.Variable.Class */ +.codehilite .vg { color: #00cdcd } /* Name.Variable.Global */ +.codehilite .vi { color: #00cdcd } /* Name.Variable.Instance */ +.codehilite .il { color: #cd00cd } /* Literal.Number.Integer.Long */ diff --git a/blog/static/blog/css/highlights/vs.css b/blog/static/blog/css/highlights/vs.css new file mode 100644 index 0000000..515298f --- /dev/null +++ b/blog/static/blog/css/highlights/vs.css @@ -0,0 +1,33 @@ +.codehilite .hll { background-color: #ffffcc } +.codehilite .c { color: #008000 } /* Comment */ +.codehilite .err { border: 1px solid #FF0000 } /* Error */ +.codehilite .k { color: #0000ff } /* Keyword */ +.codehilite .cm { color: #008000 } /* Comment.Multiline */ +.codehilite .cp { color: #0000ff } /* Comment.Preproc */ +.codehilite .c1 { color: #008000 } /* Comment.Single */ +.codehilite .cs { color: #008000 } /* Comment.Special */ +.codehilite .ge { font-style: italic } /* Generic.Emph */ +.codehilite .gh { font-weight: bold } /* Generic.Heading */ +.codehilite .gp { font-weight: bold } /* Generic.Prompt */ +.codehilite .gs { font-weight: bold } /* Generic.Strong */ +.codehilite .gu { font-weight: bold } /* Generic.Subheading */ +.codehilite .kc { color: #0000ff } /* Keyword.Constant */ +.codehilite .kd { color: #0000ff } /* Keyword.Declaration */ +.codehilite .kn { color: #0000ff } /* Keyword.Namespace */ +.codehilite .kp { color: #0000ff } /* Keyword.Pseudo */ +.codehilite .kr { color: #0000ff } /* Keyword.Reserved */ +.codehilite .kt { color: #2b91af } /* Keyword.Type */ +.codehilite .s { color: #a31515 } /* Literal.String */ +.codehilite .nc { color: #2b91af } /* Name.Class */ +.codehilite .ow { color: #0000ff } /* Operator.Word */ +.codehilite .sb { color: #a31515 } /* Literal.String.Backtick */ +.codehilite .sc { color: #a31515 } /* Literal.String.Char */ +.codehilite .sd { color: #a31515 } /* Literal.String.Doc */ +.codehilite .s2 { color: #a31515 } /* Literal.String.Double */ +.codehilite .se { color: #a31515 } /* Literal.String.Escape */ +.codehilite .sh { color: #a31515 } /* Literal.String.Heredoc */ +.codehilite .si { color: #a31515 } /* Literal.String.Interpol */ +.codehilite .sx { color: #a31515 } /* Literal.String.Other */ +.codehilite .sr { color: #a31515 } /* Literal.String.Regex */ +.codehilite .s1 { color: #a31515 } /* Literal.String.Single */ +.codehilite .ss { color: #a31515 } /* Literal.String.Symbol */ diff --git a/blog/static/blog/css/highlights/zenburn.css b/blog/static/blog/css/highlights/zenburn.css new file mode 100644 index 0000000..f7ca7b0 --- /dev/null +++ b/blog/static/blog/css/highlights/zenburn.css @@ -0,0 +1,71 @@ + +.codehilite code, .codehilite pre{color:#fdce93;background-color:#3f3f3f} +.codehilite .hll{background-color:#222} +.codehilite .c{color:#7f9f7f} +.codehilite .err{color:#e37170;background-color:#3d3535} +.codehilite .g{color:#7f9f7f} +.codehilite .k{color:#f0dfaf} +.codehilite .l{color:#ccc} +.codehilite .n{color:#dcdccc} +.codehilite .o{color:#f0efd0} +.codehilite .x{color:#ccc} +.codehilite .p{color:#41706f} +.codehilite .cm{color:#7f9f7f} +.codehilite .cp{color:#7f9f7f} +.codehilite .c1{color:#7f9f7f} +.codehilite .cs{color:#cd0000;font-weight:bold} +.codehilite .gd{color:#cd0000} +.codehilite .ge{color:#ccc;font-style:italic} +.codehilite .gr{color:red} +.codehilite .gh{color:#dcdccc;font-weight:bold} +.codehilite .gi{color:#00cd00} +.codehilite .go{color:gray} +.codehilite .gp{color:#dcdccc;font-weight:bold} +.codehilite .gs{color:#ccc;font-weight:bold} +.codehilite .gu{color:purple;font-weight:bold} +.codehilite .gt{color:#0040D0} +.codehilite .kc{color:#dca3a3} +.codehilite .kd{color:#ffff86} +.codehilite .kn{color:#dfaf8f;font-weight:bold} +.codehilite .kp{color:#cdcf99} +.codehilite .kr{color:#cdcd00} +.codehilite .kt{color:#00cd00} +.codehilite .ld{color:#cc9393} +.codehilite .m{color:#8cd0d3} +.codehilite .s{color:#cc9393} +.codehilite .na{color:#9ac39f} +.codehilite .nb{color:#efef8f} +.codehilite .nc{color:#efef8f} +.codehilite .no{color:#ccc} +.codehilite .nd{color:#ccc} +.codehilite .ni{color:#c28182} +.codehilite .ne{color:#c3bf9f;font-weight:bold} +.codehilite .nf{color:#efef8f} +.codehilite .nl{color:#ccc} +.codehilite .nn{color:#8fbede} +.codehilite .nx{color:#ccc} +.codehilite .py{color:#ccc} +.codehilite .nt{color:#9ac39f} +.codehilite .nv{color:#dcdccc} +.codehilite .ow{color:#f0efd0} +.codehilite .w{color:#ccc} +.codehilite .mf{color:#8cd0d3} +.codehilite .mh{color:#8cd0d3} +.codehilite .mi{color:#8cd0d3} +.codehilite .mo{color:#8cd0d3} +.codehilite .sb{color:#cc9393} +.codehilite .sc{color:#cc9393} +.codehilite .sd{color:#cc9393} +.codehilite .s2{color:#cc9393} +.codehilite .se{color:#cc9393} +.codehilite .sh{color:#cc9393} +.codehilite .si{color:#cc9393} +.codehilite .sx{color:#cc9393} +.codehilite .sr{color:#cc9393} +.codehilite .s1{color:#cc9393} +.codehilite .ss{color:#cc9393} +.codehilite .bp{color:#efef8f} +.codehilite .vc{color:#efef8f} +.codehilite .vg{color:#dcdccc} +.codehilite .vi{color:#ffffc7} +.codehilite .il{color:#8cd0d3} diff --git a/blog/static/blog/css/pace.css b/blog/static/blog/css/pace.css new file mode 100644 index 0000000..83079d2 --- /dev/null +++ b/blog/static/blog/css/pace.css @@ -0,0 +1,13 @@ +.pace .pace-progress { + background: #000; + position: fixed; + z-index: 2000; + top: 0; + left: 0; + height: 1px; + transition: width 1s; +} + +.pace-inactive { + display: none; +} \ No newline at end of file diff --git a/blog/static/blog/full-width.html b/blog/static/blog/full-width.html new file mode 100644 index 0000000..0e57608 --- /dev/null +++ b/blog/static/blog/full-width.html @@ -0,0 +1,188 @@ + + + + Black & White + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+ + + + + + + +
+
+
+
+
+
+
+
+ +
+
+
+
+ + +
+ + +
+ + + + + diff --git a/blog/static/blog/img/me.jpg b/blog/static/blog/img/me.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28c220d2e83fd3e6dc28dd2972b7473586c2e2b9 GIT binary patch literal 63353 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 fTKw%6)cPDrcxGyVSnc~i`< literal 0 HcmV?d00001 diff --git a/blog/static/blog/index.html b/blog/static/blog/index.html new file mode 100644 index 0000000..381b299 --- /dev/null +++ b/blog/static/blog/index.html @@ -0,0 +1,297 @@ + + + + Black & White + + + + + + + + + + + + + + + + + + + +
+ +
+
Collect from 网页模板
+ + +
+
+
+
+ + + + + + + + + +
+ +
+
+
+ + + +
+ + +
+ + + + + diff --git a/blog/static/blog/js/bootstrap.min.js b/blog/static/blog/js/bootstrap.min.js new file mode 100644 index 0000000..c6d3692 --- /dev/null +++ b/blog/static/blog/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.3.2 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.2",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.2",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.2",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a(this.options.trigger).filter('[href="#'+b.id+'"], [data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.2",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0,trigger:'[data-toggle="collapse"]'},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":a.extend({},e.data(),{trigger:this});c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.2",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('