From a879b3e0d9cf119a840ad3f8d1026b555586947b Mon Sep 17 00:00:00 2001
From: Su Yan
Date: Fri, 19 Apr 2013 05:48:16 -0700
Subject: [PATCH 001/538] Initial commit
---
.gitignore | 1 +
README.md | 4 ++++
2 files changed, 5 insertions(+)
create mode 100644 .gitignore
create mode 100644 README.md
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..57510a2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+_site/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..bfb9000
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+suyan.github.io
+===============
+
+我的博客
\ No newline at end of file
From a780d60f93cf334f0103d9cf6b54214559f4de7a Mon Sep 17 00:00:00 2001
From: Su Yan
Date: Fri, 19 Apr 2013 21:12:24 +0800
Subject: [PATCH 002/538] first post
---
_config.yml | 1 +
_layouts/default.html | 10 ++++++++++
_posts/2013-04-19-hello-world.md | 8 ++++++++
index.html | 13 +++++++++++++
4 files changed, 32 insertions(+)
create mode 100644 _config.yml
create mode 100644 _layouts/default.html
create mode 100644 _posts/2013-04-19-hello-world.md
create mode 100644 index.html
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..5d0975a
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1 @@
+baseurl : /suyan.github.io
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..6b8a15e
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,10 @@
+
+
+
+
+ {{ page.title }}
+
+
+ {{ content }}
+
+
\ No newline at end of file
diff --git a/_posts/2013-04-19-hello-world.md b/_posts/2013-04-19-hello-world.md
new file mode 100644
index 0000000..aa0b637
--- /dev/null
+++ b/_posts/2013-04-19-hello-world.md
@@ -0,0 +1,8 @@
+---
+layout: default
+title: hello world
+---
+
+# test
+
+ trests
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..6e1d668
--- /dev/null
+++ b/index.html
@@ -0,0 +1,13 @@
+---
+layout:default
+title: blog
+---
+
+{{ page.title }}
+最新文章
+
+
+ {% for post in site.posts %}
+ {{ post.date | date_to_string }}
+ {% endfor %}
+
\ No newline at end of file
From a4eefb2b7027c90927453dfe78680c3c305c2107 Mon Sep 17 00:00:00 2001
From: Su Yan
Date: Fri, 19 Apr 2013 21:57:24 +0800
Subject: [PATCH 003/538] test
---
index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.html b/index.html
index 6e1d668..a66304c 100644
--- a/index.html
+++ b/index.html
@@ -8,6 +8,6 @@ {{ page.title }}
{% for post in site.posts %}
- {{ post.date | date_to_string }}
+ {{ post.date | date_to_string }} {{ post.title }}
{% endfor %}
\ No newline at end of file
From 2759ddf4af86631431000941b194e6b7d34ad1a6 Mon Sep 17 00:00:00 2001
From: Su Yan
Date: Sun, 21 Apr 2013 13:49:23 +0800
Subject: [PATCH 004/538] first ok
---
.DS_Store | Bin 0 -> 6148 bytes
_config.yml | 15 +-
_includes/aside.html | 8 +
_includes/footer.html | 5 +
_includes/header.html | 18 +
_includes/navbar.html | 12 +
_layouts/base.html | 16 +
_layouts/page.html | 11 +
_layouts/post.html | 12 +
_posts/aaa/2012-04-20-aaa.md | 9 +
_posts/bbb/2013-04-20-bbb.md | 8 +
_posts/tech/2013-04-20-aaaa.md | 10 +
_posts/test/2013-04-20-hello-world.md | 10 +
index.html | 58 +-
pages/archive.html | 43 +
pages/atom.xml | 27 +
pages/categories.html | 24 +
pages/tags.html | 26 +
public/.DS_Store | Bin 0 -> 6148 bytes
public/css/base.css | 15 +
public/css/bootstrap-responsive.css | 1109 ++++
public/css/bootstrap.css | 6484 +++++++++++++++++++++
public/css/fontawesome-webfont.afm | 268 +
public/css/fontawesome-webfont.eot | Bin 0 -> 112126 bytes
public/css/fontawesome-webfont.ttf | Bin 0 -> 54544 bytes
public/css/fontawesome-webfont.woff | Bin 0 -> 84904 bytes
public/css/fontawesome.css | 519 ++
public/img/glyphicons-halflings-white.png | Bin 0 -> 8777 bytes
public/img/glyphicons-halflings.png | Bin 0 -> 12799 bytes
public/js/bootstrap.js | 2279 ++++++++
public/js/jquery.js | 2 +
sitemap.txt | 11 +
32 files changed, 10989 insertions(+), 10 deletions(-)
create mode 100644 .DS_Store
create mode 100644 _includes/aside.html
create mode 100644 _includes/footer.html
create mode 100644 _includes/header.html
create mode 100644 _includes/navbar.html
create mode 100644 _layouts/base.html
create mode 100644 _layouts/page.html
create mode 100644 _layouts/post.html
create mode 100644 _posts/aaa/2012-04-20-aaa.md
create mode 100644 _posts/bbb/2013-04-20-bbb.md
create mode 100644 _posts/tech/2013-04-20-aaaa.md
create mode 100644 _posts/test/2013-04-20-hello-world.md
create mode 100644 pages/archive.html
create mode 100644 pages/atom.xml
create mode 100644 pages/categories.html
create mode 100644 pages/tags.html
create mode 100644 public/.DS_Store
create mode 100644 public/css/base.css
create mode 100755 public/css/bootstrap-responsive.css
create mode 100755 public/css/bootstrap.css
create mode 100644 public/css/fontawesome-webfont.afm
create mode 100644 public/css/fontawesome-webfont.eot
create mode 100644 public/css/fontawesome-webfont.ttf
create mode 100644 public/css/fontawesome-webfont.woff
create mode 100644 public/css/fontawesome.css
create mode 100755 public/img/glyphicons-halflings-white.png
create mode 100755 public/img/glyphicons-halflings.png
create mode 100755 public/js/bootstrap.js
create mode 100755 public/js/jquery.js
create mode 100644 sitemap.txt
diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..a8e10570b1e8029cc7412b313492948c8ba3fc59
GIT binary patch
literal 6148
zcmeHK%}T>S5T0#oji``|;xTwG(n6^oJcLleqmV)mRx~kU10g9*V!;^63wiWad>&_Z
zH-})(B6bF5zuEcO&3=&m0RZ9T!3e+v00Wg!kkKOKZVh#GGNF)Tgz)HZ(v=@2e#=0A
z(M8|hhZW@DLj=w5|L|8)m}bM_m*{kRJN;b)@n#>fyis8VTjLU&ljK*WM&o3rrxrbtY8b_yR
zm)A4zwRkJv6?+1SmU5`Eh6;_wLSEc;93}BH`s$AYoH)hzJh
znE_^?jRD#pEL1{UW2I1T9oW$Inc_V{613?pL1<~THC75Sf+AEYqAC^oi6K-u`YoMj
zYpfKiau9N697oSwKVF2K9sQO}2VpDZmKk6MnhbPR*QE3R3V)f_M}D(}d&~ec@Xr_!
zy{S8Oa8def{joecYc13VR1(Uo$Us56aS6Z分类
+{% for category in site.categories %}
+ {{ category | first }} ({{ category | last | size }})
+{% endfor %}
+标签
+{% for tag in site.tags %}
+ {{ tag[0] }}({{ tag[1].size }})
+{% endfor %}
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..e7b8132
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,5 @@
+
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..6a99c4a
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,18 @@
+
+{{ page.title }} » Su Yan
+
+{% if page.keywords %}
+
+{% endif %}
+{% if page.description %}
+
+{% endif %}
+
+
+
+
+
+
+
+
+
diff --git a/_includes/navbar.html b/_includes/navbar.html
new file mode 100644
index 0000000..b0eb581
--- /dev/null
+++ b/_includes/navbar.html
@@ -0,0 +1,12 @@
+紫月冰河
+
\ No newline at end of file
diff --git a/_layouts/base.html b/_layouts/base.html
new file mode 100644
index 0000000..0fe89af
--- /dev/null
+++ b/_layouts/base.html
@@ -0,0 +1,16 @@
+
+
+
+ {% include header.html %}
+
+
+
+
+ {% include navbar.html %}
+ {{ content }}
+
+
+
+ {% include footer.html %}
+
+
\ No newline at end of file
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 0000000..bd2558a
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,11 @@
+---
+layout: base
+---
+
+
+ {{ content }}
+
+
+ {% include aside.html %}
+
+
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..dc399ba
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,12 @@
+---
+layout: base
+---
+
+
+
{{ page.title }}
+ {{ content }}
+
+
+ {% include aside.html %}
+
+
diff --git a/_posts/aaa/2012-04-20-aaa.md b/_posts/aaa/2012-04-20-aaa.md
new file mode 100644
index 0000000..830f068
--- /dev/null
+++ b/_posts/aaa/2012-04-20-aaa.md
@@ -0,0 +1,9 @@
+---
+title: aaa
+layout: post
+category: aaa
+description: aaa
+tags: [aaa , aaa1]
+---
+
+### aaa
\ No newline at end of file
diff --git a/_posts/bbb/2013-04-20-bbb.md b/_posts/bbb/2013-04-20-bbb.md
new file mode 100644
index 0000000..d5cc56d
--- /dev/null
+++ b/_posts/bbb/2013-04-20-bbb.md
@@ -0,0 +1,8 @@
+---
+layout: post
+category: bbb
+description: bbb
+tags: bbb
+---
+
+### bbb
\ No newline at end of file
diff --git a/_posts/tech/2013-04-20-aaaa.md b/_posts/tech/2013-04-20-aaaa.md
new file mode 100644
index 0000000..cb95679
--- /dev/null
+++ b/_posts/tech/2013-04-20-aaaa.md
@@ -0,0 +1,10 @@
+---
+layout: post
+title: aaaa
+category: 技术
+description: 这个是技术分类的一个测试
+---
+
+## asdf
+
+### asdfasd
\ No newline at end of file
diff --git a/_posts/test/2013-04-20-hello-world.md b/_posts/test/2013-04-20-hello-world.md
new file mode 100644
index 0000000..6d66080
--- /dev/null
+++ b/_posts/test/2013-04-20-hello-world.md
@@ -0,0 +1,10 @@
+---
+layout: post
+title: 测试
+category: 测试
+description: 这个是测试分类的一个测试
+---
+
+# test
+
+### test1
\ No newline at end of file
diff --git a/index.html b/index.html
index a66304c..af7881a 100644
--- a/index.html
+++ b/index.html
@@ -1,13 +1,53 @@
---
-layout:default
-title: blog
+layout: page
+title: Home
---
+
+ {% for post in paginator.posts %}
+
+ {% endfor %}
+
+
+
+
-
- {% for post in site.posts %}
- {{ post.date | date_to_string }} {{ post.title }}
- {% endfor %}
-
\ No newline at end of file
diff --git a/pages/archive.html b/pages/archive.html
new file mode 100644
index 0000000..19d993d
--- /dev/null
+++ b/pages/archive.html
@@ -0,0 +1,43 @@
+---
+layout: base
+title: 归档
+comments: false
+---
+
+{% for post in site.posts %}
+ {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
+ {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
+ {% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
+ {% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture %}
+
+ {% if forloop.first %}
+ {{this_year}}-{{this_month}}
+
+
+ {% endif %}
+
+ {{ post.date | date: "%Y-%B-%e" }} »
+ {{ post.title }}
+
+
+ {% if forloop.last %}
+
+
+ {% else %}
+ {% if this_year != next_year %}
+
+
+ {{next_year}}-{{next_month}}
+
+
+ {% else %}
+ {% if this_month != next_month %}
+
+
+ {{next_year}}-{{next_month}}
+
+
+ {% endif %}
+ {% endif %}
+ {% endif %}
+{% endfor %}
\ No newline at end of file
diff --git a/pages/atom.xml b/pages/atom.xml
new file mode 100644
index 0000000..bbb0a41
--- /dev/null
+++ b/pages/atom.xml
@@ -0,0 +1,27 @@
+---
+layout: nil
+---
+
+
+
+
+
+
+ {{ site.time | date_to_xmlschema }}
+ {{ site.author.link }}/
+
+
+ {% if site.email %} {% endif %}
+
+ signifox
+
+ {% for post in site.posts limit: 20 %}
+
+
+
+ {{ post.date | date_to_xmlschema }}
+ {{ site.address }}{{ post.id }}
+
+
+ {% endfor %}
+
\ No newline at end of file
diff --git a/pages/categories.html b/pages/categories.html
new file mode 100644
index 0000000..3e48379
--- /dev/null
+++ b/pages/categories.html
@@ -0,0 +1,24 @@
+---
+layout: base
+title: 分类
+comments: false
+---
+
+{% for category in site.categories %}
+ {{ category[0] }}
+
+{% endfor %}
\ No newline at end of file
diff --git a/pages/tags.html b/pages/tags.html
new file mode 100644
index 0000000..a57e7bd
--- /dev/null
+++ b/pages/tags.html
@@ -0,0 +1,26 @@
+---
+layout: base
+title: 标签
+comments: false
+---
+
+
+
+{% for tag in site.tags %}
+ !q(3S)5-7Q@sq5_#q1CH-;Bs
zvB>>!Zai0EF$Is|Bdt^56N(-uaWTDh56ZH8tOot+Se3ngANc9npsKdP+;?aH=;Zuz
z6h4pV8kzL<5d*2}DKc5!M#L114=MpiPzZ#E>=}`W3}_gtbMR
zE~J?m#-W*;$BQ(xL%%ZNLV6atW(8P*RR!9%>Eii+0l&=JNB(LGw^#vI;GZcVJHue;
z!=mVH{joeeYZa6`C}!xK
Fz$ae+Mr{B9
literal 0
HcmV?d00001
diff --git a/public/css/base.css b/public/css/base.css
new file mode 100644
index 0000000..11e20f8
--- /dev/null
+++ b/public/css/base.css
@@ -0,0 +1,15 @@
+html,
+body {height: 100%;}
+#wrap {
+ min-height: 100%;
+ height: auto !important;
+ height: 100%;
+ margin: 0 auto -60px;
+}
+#push,
+#footer {
+ height: 40px;
+}
+#footer {
+ /*background-color: #f5f5f5;*/
+}
diff --git a/public/css/bootstrap-responsive.css b/public/css/bootstrap-responsive.css
new file mode 100755
index 0000000..d892cbe
--- /dev/null
+++ b/public/css/bootstrap-responsive.css
@@ -0,0 +1,1109 @@
+/*!
+ * Bootstrap Responsive v2.3.1
+ *
+ * Copyright 2012 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
+ */
+
+.clearfix {
+ *zoom: 1;
+}
+
+.clearfix:before,
+.clearfix:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.clearfix:after {
+ clear: both;
+}
+
+.hide-text {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0;
+}
+
+.input-block-level {
+ display: block;
+ width: 100%;
+ min-height: 30px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+@-ms-viewport {
+ width: device-width;
+}
+
+.hidden {
+ display: none;
+ visibility: hidden;
+}
+
+.visible-phone {
+ display: none !important;
+}
+
+.visible-tablet {
+ display: none !important;
+}
+
+.hidden-desktop {
+ display: none !important;
+}
+
+.visible-desktop {
+ display: inherit !important;
+}
+
+@media (min-width: 768px) and (max-width: 979px) {
+ .hidden-desktop {
+ display: inherit !important;
+ }
+ .visible-desktop {
+ display: none !important ;
+ }
+ .visible-tablet {
+ display: inherit !important;
+ }
+ .hidden-tablet {
+ display: none !important;
+ }
+}
+
+@media (max-width: 767px) {
+ .hidden-desktop {
+ display: inherit !important;
+ }
+ .visible-desktop {
+ display: none !important;
+ }
+ .visible-phone {
+ display: inherit !important;
+ }
+ .hidden-phone {
+ display: none !important;
+ }
+}
+
+.visible-print {
+ display: none !important;
+}
+
+@media print {
+ .visible-print {
+ display: inherit !important;
+ }
+ .hidden-print {
+ display: none !important;
+ }
+}
+
+/*@media (min-width: 1200px) {
+ .row {
+ margin-left: -30px;
+ *zoom: 1;
+ }
+ .row:before,
+ .row:after {
+ display: table;
+ line-height: 0;
+ content: "";
+ }
+ .row:after {
+ clear: both;
+ }
+ [class*="span"] {
+ float: left;
+ min-height: 1px;
+ margin-left: 30px;
+ }
+ .container,
+ .navbar-static-top .container,
+ .navbar-fixed-top .container,
+ .navbar-fixed-bottom .container {
+ width: 1170px;
+ }
+ .span12 {
+ width: 1170px;
+ }
+ .span11 {
+ width: 1070px;
+ }
+ .span10 {
+ width: 970px;
+ }
+ .span9 {
+ width: 870px;
+ }
+ .span8 {
+ width: 770px;
+ }
+ .span7 {
+ width: 670px;
+ }
+ .span6 {
+ width: 570px;
+ }
+ .span5 {
+ width: 470px;
+ }
+ .span4 {
+ width: 370px;
+ }
+ .span3 {
+ width: 270px;
+ }
+ .span2 {
+ width: 170px;
+ }
+ .span1 {
+ width: 70px;
+ }
+ .offset12 {
+ margin-left: 1230px;
+ }
+ .offset11 {
+ margin-left: 1130px;
+ }
+ .offset10 {
+ margin-left: 1030px;
+ }
+ .offset9 {
+ margin-left: 930px;
+ }
+ .offset8 {
+ margin-left: 830px;
+ }
+ .offset7 {
+ margin-left: 730px;
+ }
+ .offset6 {
+ margin-left: 630px;
+ }
+ .offset5 {
+ margin-left: 530px;
+ }
+ .offset4 {
+ margin-left: 430px;
+ }
+ .offset3 {
+ margin-left: 330px;
+ }
+ .offset2 {
+ margin-left: 230px;
+ }
+ .offset1 {
+ margin-left: 130px;
+ }
+ .row-fluid {
+ width: 100%;
+ *zoom: 1;
+ }
+ .row-fluid:before,
+ .row-fluid:after {
+ display: table;
+ line-height: 0;
+ content: "";
+ }
+ .row-fluid:after {
+ clear: both;
+ }
+ .row-fluid [class*="span"] {
+ display: block;
+ float: left;
+ width: 100%;
+ min-height: 30px;
+ margin-left: 2.564102564102564%;
+ *margin-left: 2.5109110747408616%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+ .row-fluid [class*="span"]:first-child {
+ margin-left: 0;
+ }
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
+ margin-left: 2.564102564102564%;
+ }
+ .row-fluid .span12 {
+ width: 100%;
+ *width: 99.94680851063829%;
+ }
+ .row-fluid .span11 {
+ width: 91.45299145299145%;
+ *width: 91.39979996362975%;
+ }
+ .row-fluid .span10 {
+ width: 82.90598290598291%;
+ *width: 82.8527914166212%;
+ }
+ .row-fluid .span9 {
+ width: 74.35897435897436%;
+ *width: 74.30578286961266%;
+ }
+ .row-fluid .span8 {
+ width: 65.81196581196582%;
+ *width: 65.75877432260411%;
+ }
+ .row-fluid .span7 {
+ width: 57.26495726495726%;
+ *width: 57.21176577559556%;
+ }
+ .row-fluid .span6 {
+ width: 48.717948717948715%;
+ *width: 48.664757228587014%;
+ }
+ .row-fluid .span5 {
+ width: 40.17094017094017%;
+ *width: 40.11774868157847%;
+ }
+ .row-fluid .span4 {
+ width: 31.623931623931625%;
+ *width: 31.570740134569924%;
+ }
+ .row-fluid .span3 {
+ width: 23.076923076923077%;
+ *width: 23.023731587561375%;
+ }
+ .row-fluid .span2 {
+ width: 14.52991452991453%;
+ *width: 14.476723040552828%;
+ }
+ .row-fluid .span1 {
+ width: 5.982905982905983%;
+ *width: 5.929714493544281%;
+ }
+ .row-fluid .offset12 {
+ margin-left: 105.12820512820512%;
+ *margin-left: 105.02182214948171%;
+ }
+ .row-fluid .offset12:first-child {
+ margin-left: 102.56410256410257%;
+ *margin-left: 102.45771958537915%;
+ }
+ .row-fluid .offset11 {
+ margin-left: 96.58119658119658%;
+ *margin-left: 96.47481360247316%;
+ }
+ .row-fluid .offset11:first-child {
+ margin-left: 94.01709401709402%;
+ *margin-left: 93.91071103837061%;
+ }
+ .row-fluid .offset10 {
+ margin-left: 88.03418803418803%;
+ *margin-left: 87.92780505546462%;
+ }
+ .row-fluid .offset10:first-child {
+ margin-left: 85.47008547008548%;
+ *margin-left: 85.36370249136206%;
+ }
+ .row-fluid .offset9 {
+ margin-left: 79.48717948717949%;
+ *margin-left: 79.38079650845607%;
+ }
+ .row-fluid .offset9:first-child {
+ margin-left: 76.92307692307693%;
+ *margin-left: 76.81669394435352%;
+ }
+ .row-fluid .offset8 {
+ margin-left: 70.94017094017094%;
+ *margin-left: 70.83378796144753%;
+ }
+ .row-fluid .offset8:first-child {
+ margin-left: 68.37606837606839%;
+ *margin-left: 68.26968539734497%;
+ }
+ .row-fluid .offset7 {
+ margin-left: 62.393162393162385%;
+ *margin-left: 62.28677941443899%;
+ }
+ .row-fluid .offset7:first-child {
+ margin-left: 59.82905982905982%;
+ *margin-left: 59.72267685033642%;
+ }
+ .row-fluid .offset6 {
+ margin-left: 53.84615384615384%;
+ *margin-left: 53.739770867430444%;
+ }
+ .row-fluid .offset6:first-child {
+ margin-left: 51.28205128205128%;
+ *margin-left: 51.175668303327875%;
+ }
+ .row-fluid .offset5 {
+ margin-left: 45.299145299145295%;
+ *margin-left: 45.1927623204219%;
+ }
+ .row-fluid .offset5:first-child {
+ margin-left: 42.73504273504273%;
+ *margin-left: 42.62865975631933%;
+ }
+ .row-fluid .offset4 {
+ margin-left: 36.75213675213675%;
+ *margin-left: 36.645753773413354%;
+ }
+ .row-fluid .offset4:first-child {
+ margin-left: 34.18803418803419%;
+ *margin-left: 34.081651209310785%;
+ }
+ .row-fluid .offset3 {
+ margin-left: 28.205128205128204%;
+ *margin-left: 28.0987452264048%;
+ }
+ .row-fluid .offset3:first-child {
+ margin-left: 25.641025641025642%;
+ *margin-left: 25.53464266230224%;
+ }
+ .row-fluid .offset2 {
+ margin-left: 19.65811965811966%;
+ *margin-left: 19.551736679396257%;
+ }
+ .row-fluid .offset2:first-child {
+ margin-left: 17.094017094017094%;
+ *margin-left: 16.98763411529369%;
+ }
+ .row-fluid .offset1 {
+ margin-left: 11.11111111111111%;
+ *margin-left: 11.004728132387708%;
+ }
+ .row-fluid .offset1:first-child {
+ margin-left: 8.547008547008547%;
+ *margin-left: 8.440625568285142%;
+ }
+ input,
+ textarea,
+ .uneditable-input {
+ margin-left: 0;
+ }
+ .controls-row [class*="span"] + [class*="span"] {
+ margin-left: 30px;
+ }
+ input.span12,
+ textarea.span12,
+ .uneditable-input.span12 {
+ width: 1156px;
+ }
+ input.span11,
+ textarea.span11,
+ .uneditable-input.span11 {
+ width: 1056px;
+ }
+ input.span10,
+ textarea.span10,
+ .uneditable-input.span10 {
+ width: 956px;
+ }
+ input.span9,
+ textarea.span9,
+ .uneditable-input.span9 {
+ width: 856px;
+ }
+ input.span8,
+ textarea.span8,
+ .uneditable-input.span8 {
+ width: 756px;
+ }
+ input.span7,
+ textarea.span7,
+ .uneditable-input.span7 {
+ width: 656px;
+ }
+ input.span6,
+ textarea.span6,
+ .uneditable-input.span6 {
+ width: 556px;
+ }
+ input.span5,
+ textarea.span5,
+ .uneditable-input.span5 {
+ width: 456px;
+ }
+ input.span4,
+ textarea.span4,
+ .uneditable-input.span4 {
+ width: 356px;
+ }
+ input.span3,
+ textarea.span3,
+ .uneditable-input.span3 {
+ width: 256px;
+ }
+ input.span2,
+ textarea.span2,
+ .uneditable-input.span2 {
+ width: 156px;
+ }
+ input.span1,
+ textarea.span1,
+ .uneditable-input.span1 {
+ width: 56px;
+ }
+ .thumbnails {
+ margin-left: -30px;
+ }
+ .thumbnails > li {
+ margin-left: 30px;
+ }
+ .row-fluid .thumbnails {
+ margin-left: 0;
+ }
+}*/
+
+@media (min-width: 768px) and (max-width: 979px) {
+ .row {
+ margin-left: -20px;
+ *zoom: 1;
+ }
+ .row:before,
+ .row:after {
+ display: table;
+ line-height: 0;
+ content: "";
+ }
+ .row:after {
+ clear: both;
+ }
+ [class*="span"] {
+ float: left;
+ min-height: 1px;
+ margin-left: 20px;
+ }
+ .container,
+ .navbar-static-top .container,
+ .navbar-fixed-top .container,
+ .navbar-fixed-bottom .container {
+ width: 724px;
+ }
+ .span12 {
+ width: 724px;
+ }
+ .span11 {
+ width: 662px;
+ }
+ .span10 {
+ width: 600px;
+ }
+ .span9 {
+ width: 538px;
+ }
+ .span8 {
+ width: 476px;
+ }
+ .span7 {
+ width: 414px;
+ }
+ .span6 {
+ width: 352px;
+ }
+ .span5 {
+ width: 290px;
+ }
+ .span4 {
+ width: 228px;
+ }
+ .span3 {
+ width: 166px;
+ }
+ .span2 {
+ width: 104px;
+ }
+ .span1 {
+ width: 42px;
+ }
+ .offset12 {
+ margin-left: 764px;
+ }
+ .offset11 {
+ margin-left: 702px;
+ }
+ .offset10 {
+ margin-left: 640px;
+ }
+ .offset9 {
+ margin-left: 578px;
+ }
+ .offset8 {
+ margin-left: 516px;
+ }
+ .offset7 {
+ margin-left: 454px;
+ }
+ .offset6 {
+ margin-left: 392px;
+ }
+ .offset5 {
+ margin-left: 330px;
+ }
+ .offset4 {
+ margin-left: 268px;
+ }
+ .offset3 {
+ margin-left: 206px;
+ }
+ .offset2 {
+ margin-left: 144px;
+ }
+ .offset1 {
+ margin-left: 82px;
+ }
+ .row-fluid {
+ width: 100%;
+ *zoom: 1;
+ }
+ .row-fluid:before,
+ .row-fluid:after {
+ display: table;
+ line-height: 0;
+ content: "";
+ }
+ .row-fluid:after {
+ clear: both;
+ }
+ .row-fluid [class*="span"] {
+ display: block;
+ float: left;
+ width: 100%;
+ min-height: 30px;
+ margin-left: 2.7624309392265194%;
+ *margin-left: 2.709239449864817%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+ .row-fluid [class*="span"]:first-child {
+ margin-left: 0;
+ }
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
+ margin-left: 2.7624309392265194%;
+ }
+ .row-fluid .span12 {
+ width: 100%;
+ *width: 99.94680851063829%;
+ }
+ .row-fluid .span11 {
+ width: 91.43646408839778%;
+ *width: 91.38327259903608%;
+ }
+ .row-fluid .span10 {
+ width: 82.87292817679558%;
+ *width: 82.81973668743387%;
+ }
+ .row-fluid .span9 {
+ width: 74.30939226519337%;
+ *width: 74.25620077583166%;
+ }
+ .row-fluid .span8 {
+ width: 65.74585635359117%;
+ *width: 65.69266486422946%;
+ }
+ .row-fluid .span7 {
+ width: 57.18232044198895%;
+ *width: 57.12912895262725%;
+ }
+ .row-fluid .span6 {
+ width: 48.61878453038674%;
+ *width: 48.56559304102504%;
+ }
+ .row-fluid .span5 {
+ width: 40.05524861878453%;
+ *width: 40.00205712942283%;
+ }
+ .row-fluid .span4 {
+ width: 31.491712707182323%;
+ *width: 31.43852121782062%;
+ }
+ .row-fluid .span3 {
+ width: 22.92817679558011%;
+ *width: 22.87498530621841%;
+ }
+ .row-fluid .span2 {
+ width: 14.3646408839779%;
+ *width: 14.311449394616199%;
+ }
+ .row-fluid .span1 {
+ width: 5.801104972375691%;
+ *width: 5.747913483013988%;
+ }
+ .row-fluid .offset12 {
+ margin-left: 105.52486187845304%;
+ *margin-left: 105.41847889972962%;
+ }
+ .row-fluid .offset12:first-child {
+ margin-left: 102.76243093922652%;
+ *margin-left: 102.6560479605031%;
+ }
+ .row-fluid .offset11 {
+ margin-left: 96.96132596685082%;
+ *margin-left: 96.8549429881274%;
+ }
+ .row-fluid .offset11:first-child {
+ margin-left: 94.1988950276243%;
+ *margin-left: 94.09251204890089%;
+ }
+ .row-fluid .offset10 {
+ margin-left: 88.39779005524862%;
+ *margin-left: 88.2914070765252%;
+ }
+ .row-fluid .offset10:first-child {
+ margin-left: 85.6353591160221%;
+ *margin-left: 85.52897613729868%;
+ }
+ .row-fluid .offset9 {
+ margin-left: 79.8342541436464%;
+ *margin-left: 79.72787116492299%;
+ }
+ .row-fluid .offset9:first-child {
+ margin-left: 77.07182320441989%;
+ *margin-left: 76.96544022569647%;
+ }
+ .row-fluid .offset8 {
+ margin-left: 71.2707182320442%;
+ *margin-left: 71.16433525332079%;
+ }
+ .row-fluid .offset8:first-child {
+ margin-left: 68.50828729281768%;
+ *margin-left: 68.40190431409427%;
+ }
+ .row-fluid .offset7 {
+ margin-left: 62.70718232044199%;
+ *margin-left: 62.600799341718584%;
+ }
+ .row-fluid .offset7:first-child {
+ margin-left: 59.94475138121547%;
+ *margin-left: 59.838368402492065%;
+ }
+ .row-fluid .offset6 {
+ margin-left: 54.14364640883978%;
+ *margin-left: 54.037263430116376%;
+ }
+ .row-fluid .offset6:first-child {
+ margin-left: 51.38121546961326%;
+ *margin-left: 51.27483249088986%;
+ }
+ .row-fluid .offset5 {
+ margin-left: 45.58011049723757%;
+ *margin-left: 45.47372751851417%;
+ }
+ .row-fluid .offset5:first-child {
+ margin-left: 42.81767955801105%;
+ *margin-left: 42.71129657928765%;
+ }
+ .row-fluid .offset4 {
+ margin-left: 37.01657458563536%;
+ *margin-left: 36.91019160691196%;
+ }
+ .row-fluid .offset4:first-child {
+ margin-left: 34.25414364640884%;
+ *margin-left: 34.14776066768544%;
+ }
+ .row-fluid .offset3 {
+ margin-left: 28.45303867403315%;
+ *margin-left: 28.346655695309746%;
+ }
+ .row-fluid .offset3:first-child {
+ margin-left: 25.69060773480663%;
+ *margin-left: 25.584224756083227%;
+ }
+ .row-fluid .offset2 {
+ margin-left: 19.88950276243094%;
+ *margin-left: 19.783119783707537%;
+ }
+ .row-fluid .offset2:first-child {
+ margin-left: 17.12707182320442%;
+ *margin-left: 17.02068884448102%;
+ }
+ .row-fluid .offset1 {
+ margin-left: 11.32596685082873%;
+ *margin-left: 11.219583872105325%;
+ }
+ .row-fluid .offset1:first-child {
+ margin-left: 8.56353591160221%;
+ *margin-left: 8.457152932878806%;
+ }
+ input,
+ textarea,
+ .uneditable-input {
+ margin-left: 0;
+ }
+ .controls-row [class*="span"] + [class*="span"] {
+ margin-left: 20px;
+ }
+ input.span12,
+ textarea.span12,
+ .uneditable-input.span12 {
+ width: 710px;
+ }
+ input.span11,
+ textarea.span11,
+ .uneditable-input.span11 {
+ width: 648px;
+ }
+ input.span10,
+ textarea.span10,
+ .uneditable-input.span10 {
+ width: 586px;
+ }
+ input.span9,
+ textarea.span9,
+ .uneditable-input.span9 {
+ width: 524px;
+ }
+ input.span8,
+ textarea.span8,
+ .uneditable-input.span8 {
+ width: 462px;
+ }
+ input.span7,
+ textarea.span7,
+ .uneditable-input.span7 {
+ width: 400px;
+ }
+ input.span6,
+ textarea.span6,
+ .uneditable-input.span6 {
+ width: 338px;
+ }
+ input.span5,
+ textarea.span5,
+ .uneditable-input.span5 {
+ width: 276px;
+ }
+ input.span4,
+ textarea.span4,
+ .uneditable-input.span4 {
+ width: 214px;
+ }
+ input.span3,
+ textarea.span3,
+ .uneditable-input.span3 {
+ width: 152px;
+ }
+ input.span2,
+ textarea.span2,
+ .uneditable-input.span2 {
+ width: 90px;
+ }
+ input.span1,
+ textarea.span1,
+ .uneditable-input.span1 {
+ width: 28px;
+ }
+}
+
+@media (max-width: 767px) {
+ body {
+ padding-right: 20px;
+ padding-left: 20px;
+ }
+ .navbar-fixed-top,
+ .navbar-fixed-bottom,
+ .navbar-static-top {
+ margin-right: -20px;
+ margin-left: -20px;
+ }
+ .container-fluid {
+ padding: 0;
+ }
+ .dl-horizontal dt {
+ float: none;
+ width: auto;
+ clear: none;
+ text-align: left;
+ }
+ .dl-horizontal dd {
+ margin-left: 0;
+ }
+ .container {
+ width: auto;
+ }
+ .row-fluid {
+ width: 100%;
+ }
+ .row,
+ .thumbnails {
+ margin-left: 0;
+ }
+ .thumbnails > li {
+ float: none;
+ margin-left: 0;
+ }
+ [class*="span"],
+ .uneditable-input[class*="span"],
+ .row-fluid [class*="span"] {
+ display: block;
+ float: none;
+ width: 100%;
+ margin-left: 0;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+ .span12,
+ .row-fluid .span12 {
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+ .row-fluid [class*="offset"]:first-child {
+ margin-left: 0;
+ }
+ .input-large,
+ .input-xlarge,
+ .input-xxlarge,
+ input[class*="span"],
+ select[class*="span"],
+ textarea[class*="span"],
+ .uneditable-input {
+ display: block;
+ width: 100%;
+ min-height: 30px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+ .input-prepend input,
+ .input-append input,
+ .input-prepend input[class*="span"],
+ .input-append input[class*="span"] {
+ display: inline-block;
+ width: auto;
+ }
+ .controls-row [class*="span"] + [class*="span"] {
+ margin-left: 0;
+ }
+ .modal {
+ position: fixed;
+ top: 20px;
+ right: 20px;
+ left: 20px;
+ width: auto;
+ margin: 0;
+ }
+ .modal.fade {
+ top: -100px;
+ }
+ .modal.fade.in {
+ top: 20px;
+ }
+}
+
+@media (max-width: 480px) {
+ .nav-collapse {
+ -webkit-transform: translate3d(0, 0, 0);
+ }
+ .page-header h1 small {
+ display: block;
+ line-height: 20px;
+ }
+ input[type="checkbox"],
+ input[type="radio"] {
+ border: 1px solid #ccc;
+ }
+ .form-horizontal .control-label {
+ float: none;
+ width: auto;
+ padding-top: 0;
+ text-align: left;
+ }
+ .form-horizontal .controls {
+ margin-left: 0;
+ }
+ .form-horizontal .control-list {
+ padding-top: 0;
+ }
+ .form-horizontal .form-actions {
+ padding-right: 10px;
+ padding-left: 10px;
+ }
+ .media .pull-left,
+ .media .pull-right {
+ display: block;
+ float: none;
+ margin-bottom: 10px;
+ }
+ .media-object {
+ margin-right: 0;
+ margin-left: 0;
+ }
+ .modal {
+ top: 10px;
+ right: 10px;
+ left: 10px;
+ }
+ .modal-header .close {
+ padding: 10px;
+ margin: -10px;
+ }
+ .carousel-caption {
+ position: static;
+ }
+}
+
+@media (max-width: 979px) {
+ body {
+ padding-top: 0;
+ }
+ .navbar-fixed-top,
+ .navbar-fixed-bottom {
+ position: static;
+ }
+ .navbar-fixed-top {
+ margin-bottom: 20px;
+ }
+ .navbar-fixed-bottom {
+ margin-top: 20px;
+ }
+ .navbar-fixed-top .navbar-inner,
+ .navbar-fixed-bottom .navbar-inner {
+ padding: 5px;
+ }
+ .navbar .container {
+ width: auto;
+ padding: 0;
+ }
+ .navbar .brand {
+ padding-right: 10px;
+ padding-left: 10px;
+ margin: 0 0 0 -5px;
+ }
+ .nav-collapse {
+ clear: both;
+ }
+ .nav-collapse .nav {
+ float: none;
+ margin: 0 0 10px;
+ }
+ .nav-collapse .nav > li {
+ float: none;
+ }
+ .nav-collapse .nav > li > a {
+ margin-bottom: 2px;
+ }
+ .nav-collapse .nav > .divider-vertical {
+ display: none;
+ }
+ .nav-collapse .nav .nav-header {
+ color: #777777;
+ text-shadow: none;
+ }
+ .nav-collapse .nav > li > a,
+ .nav-collapse .dropdown-menu a {
+ padding: 9px 15px;
+ font-weight: bold;
+ color: #777777;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ }
+ .nav-collapse .btn {
+ padding: 4px 10px 4px;
+ font-weight: normal;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ }
+ .nav-collapse .dropdown-menu li + li a {
+ margin-bottom: 2px;
+ }
+ .nav-collapse .nav > li > a:hover,
+ .nav-collapse .nav > li > a:focus,
+ .nav-collapse .dropdown-menu a:hover,
+ .nav-collapse .dropdown-menu a:focus {
+ background-color: #f2f2f2;
+ }
+ .navbar-inverse .nav-collapse .nav > li > a,
+ .navbar-inverse .nav-collapse .dropdown-menu a {
+ color: #999999;
+ }
+ .navbar-inverse .nav-collapse .nav > li > a:hover,
+ .navbar-inverse .nav-collapse .nav > li > a:focus,
+ .navbar-inverse .nav-collapse .dropdown-menu a:hover,
+ .navbar-inverse .nav-collapse .dropdown-menu a:focus {
+ background-color: #111111;
+ }
+ .nav-collapse.in .btn-group {
+ padding: 0;
+ margin-top: 5px;
+ }
+ .nav-collapse .dropdown-menu {
+ position: static;
+ top: auto;
+ left: auto;
+ display: none;
+ float: none;
+ max-width: none;
+ padding: 0;
+ margin: 0 15px;
+ background-color: transparent;
+ border: none;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ }
+ .nav-collapse .open > .dropdown-menu {
+ display: block;
+ }
+ .nav-collapse .dropdown-menu:before,
+ .nav-collapse .dropdown-menu:after {
+ display: none;
+ }
+ .nav-collapse .dropdown-menu .divider {
+ display: none;
+ }
+ .nav-collapse .nav > li > .dropdown-menu:before,
+ .nav-collapse .nav > li > .dropdown-menu:after {
+ display: none;
+ }
+ .nav-collapse .navbar-form,
+ .nav-collapse .navbar-search {
+ float: none;
+ padding: 10px 15px;
+ margin: 10px 0;
+ border-top: 1px solid #f2f2f2;
+ border-bottom: 1px solid #f2f2f2;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ }
+ .navbar-inverse .nav-collapse .navbar-form,
+ .navbar-inverse .nav-collapse .navbar-search {
+ border-top-color: #111111;
+ border-bottom-color: #111111;
+ }
+ .navbar .nav-collapse .nav.pull-right {
+ float: none;
+ margin-left: 0;
+ }
+ .nav-collapse,
+ .nav-collapse.collapse {
+ height: 0;
+ overflow: hidden;
+ }
+ .navbar .btn-navbar {
+ display: block;
+ }
+ .navbar-static .navbar-inner {
+ padding-right: 10px;
+ padding-left: 10px;
+ }
+}
+
+@media (min-width: 980px) {
+ .nav-collapse.collapse {
+ height: auto !important;
+ overflow: visible !important;
+ }
+}
diff --git a/public/css/bootstrap.css b/public/css/bootstrap.css
new file mode 100755
index 0000000..0411848
--- /dev/null
+++ b/public/css/bootstrap.css
@@ -0,0 +1,6484 @@
+/*!
+ * Bootstrap v2.3.0
+ *
+ * Copyright 2012 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
+ */
+
+.clearfix {
+ *zoom: 1;
+}
+
+.clearfix:before,
+.clearfix:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.clearfix:after {
+ clear: both;
+}
+
+.hide-text {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0;
+}
+
+.input-block-level {
+ display: block;
+ width: 100%;
+ min-height: 30px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+nav,
+section {
+ display: block;
+}
+
+audio,
+canvas,
+video {
+ display: inline-block;
+ *display: inline;
+ *zoom: 1;
+}
+
+audio:not([controls]) {
+ display: none;
+}
+
+html {
+ font-size: 100%;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+}
+
+a:focus {
+ outline: thin dotted #333;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+
+a:hover,
+a:active {
+ outline: 0;
+}
+
+sub,
+sup {
+ position: relative;
+ font-size: 75%;
+ line-height: 0;
+ vertical-align: baseline;
+}
+
+sup {
+ top: -0.5em;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+img {
+ width: auto\9;
+ height: auto;
+ max-width: 100%;
+ vertical-align: middle;
+ border: 0;
+ -ms-interpolation-mode: bicubic;
+}
+
+#map_canvas img,
+.google-maps img {
+ max-width: none;
+}
+
+button,
+input,
+select,
+textarea {
+ margin: 0;
+ font-size: 100%;
+ vertical-align: middle;
+}
+
+button,
+input {
+ *overflow: visible;
+ line-height: normal;
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ padding: 0;
+ border: 0;
+}
+
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+ cursor: pointer;
+ -webkit-appearance: button;
+}
+
+label,
+select,
+button,
+input[type="button"],
+input[type="reset"],
+input[type="submit"],
+input[type="radio"],
+input[type="checkbox"] {
+ cursor: pointer;
+}
+
+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-decoration,
+input[type="search"]::-webkit-search-cancel-button {
+ -webkit-appearance: none;
+}
+
+textarea {
+ overflow: auto;
+ vertical-align: top;
+}
+
+@media print {
+ * {
+ color: #000 !important;
+ text-shadow: none !important;
+ background: transparent !important;
+ box-shadow: none !important;
+ }
+ a,
+ a:visited {
+ text-decoration: underline;
+ }
+ a[href]:after {
+ content: " (" attr(href) ")";
+ }
+ abbr[title]:after {
+ content: " (" attr(title) ")";
+ }
+ .ir a:after,
+ a[href^="javascript:"]:after,
+ a[href^="#"]:after {
+ content: "";
+ }
+ pre,
+ blockquote {
+ border: 1px solid #999;
+ page-break-inside: avoid;
+ }
+ thead {
+ display: table-header-group;
+ }
+ tr,
+ img {
+ page-break-inside: avoid;
+ }
+ img {
+ max-width: 100% !important;
+ }
+ @page {
+ margin: 0.5cm;
+ }
+ p,
+ h2,
+ h3 {
+ orphans: 3;
+ widows: 3;
+ }
+ h2,
+ h3 {
+ page-break-after: avoid;
+ }
+}
+
+body {
+ margin: 0;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+ line-height: 20px;
+ color: #555555;
+ background-color: #ffffff;
+}
+
+a {
+ color: #2fa4e7;
+ text-decoration: none;
+}
+
+a:hover,
+a:focus {
+ color: #157ab5;
+ text-decoration: underline;
+}
+
+.img-rounded {
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.img-polaroid {
+ padding: 4px;
+ background-color: #fff;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+}
+
+.img-circle {
+ -webkit-border-radius: 500px;
+ -moz-border-radius: 500px;
+ border-radius: 500px;
+}
+
+.row {
+ margin-left: -20px;
+ *zoom: 1;
+}
+
+.row:before,
+.row:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.row:after {
+ clear: both;
+}
+
+[class*="span"] {
+ float: left;
+ min-height: 1px;
+ margin-left: 20px;
+}
+
+.container,
+.navbar-static-top .container,
+.navbar-fixed-top .container,
+.navbar-fixed-bottom .container {
+ width: 940px;
+}
+
+.span12 {
+ width: 940px;
+}
+
+.span11 {
+ width: 860px;
+}
+
+.span10 {
+ width: 780px;
+}
+
+.span9 {
+ width: 700px;
+}
+
+.span8 {
+ width: 620px;
+}
+
+.span7 {
+ width: 540px;
+}
+
+.span6 {
+ width: 460px;
+}
+
+.span5 {
+ width: 380px;
+}
+
+.span4 {
+ width: 300px;
+}
+
+.span3 {
+ width: 220px;
+}
+
+.span2 {
+ width: 140px;
+}
+
+.span1 {
+ width: 60px;
+}
+
+.offset12 {
+ margin-left: 980px;
+}
+
+.offset11 {
+ margin-left: 900px;
+}
+
+.offset10 {
+ margin-left: 820px;
+}
+
+.offset9 {
+ margin-left: 740px;
+}
+
+.offset8 {
+ margin-left: 660px;
+}
+
+.offset7 {
+ margin-left: 580px;
+}
+
+.offset6 {
+ margin-left: 500px;
+}
+
+.offset5 {
+ margin-left: 420px;
+}
+
+.offset4 {
+ margin-left: 340px;
+}
+
+.offset3 {
+ margin-left: 260px;
+}
+
+.offset2 {
+ margin-left: 180px;
+}
+
+.offset1 {
+ margin-left: 100px;
+}
+
+.row-fluid {
+ width: 100%;
+ *zoom: 1;
+}
+
+.row-fluid:before,
+.row-fluid:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.row-fluid:after {
+ clear: both;
+}
+
+.row-fluid [class*="span"] {
+ display: block;
+ float: left;
+ width: 100%;
+ min-height: 30px;
+ margin-left: 2.127659574468085%;
+ *margin-left: 2.074468085106383%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.row-fluid [class*="span"]:first-child {
+ margin-left: 0;
+}
+
+.row-fluid .controls-row [class*="span"] + [class*="span"] {
+ margin-left: 2.127659574468085%;
+}
+
+.row-fluid .span12 {
+ width: 100%;
+ *width: 99.94680851063829%;
+}
+
+.row-fluid .span11 {
+ width: 91.48936170212765%;
+ *width: 91.43617021276594%;
+}
+
+.row-fluid .span10 {
+ width: 82.97872340425532%;
+ *width: 82.92553191489361%;
+}
+
+.row-fluid .span9 {
+ width: 74.46808510638297%;
+ *width: 74.41489361702126%;
+}
+
+.row-fluid .span8 {
+ width: 65.95744680851064%;
+ *width: 65.90425531914893%;
+}
+
+.row-fluid .span7 {
+ width: 57.44680851063829%;
+ *width: 57.39361702127659%;
+}
+
+.row-fluid .span6 {
+ width: 48.93617021276595%;
+ *width: 48.88297872340425%;
+}
+
+.row-fluid .span5 {
+ width: 40.42553191489362%;
+ *width: 40.37234042553192%;
+}
+
+.row-fluid .span4 {
+ width: 31.914893617021278%;
+ *width: 31.861702127659576%;
+}
+
+.row-fluid .span3 {
+ width: 23.404255319148934%;
+ *width: 23.351063829787233%;
+}
+
+.row-fluid .span2 {
+ width: 14.893617021276595%;
+ *width: 14.840425531914894%;
+}
+
+.row-fluid .span1 {
+ width: 6.382978723404255%;
+ *width: 6.329787234042553%;
+}
+
+.row-fluid .offset12 {
+ margin-left: 104.25531914893617%;
+ *margin-left: 104.14893617021275%;
+}
+
+.row-fluid .offset12:first-child {
+ margin-left: 102.12765957446808%;
+ *margin-left: 102.02127659574467%;
+}
+
+.row-fluid .offset11 {
+ margin-left: 95.74468085106382%;
+ *margin-left: 95.6382978723404%;
+}
+
+.row-fluid .offset11:first-child {
+ margin-left: 93.61702127659574%;
+ *margin-left: 93.51063829787232%;
+}
+
+.row-fluid .offset10 {
+ margin-left: 87.23404255319149%;
+ *margin-left: 87.12765957446807%;
+}
+
+.row-fluid .offset10:first-child {
+ margin-left: 85.1063829787234%;
+ *margin-left: 84.99999999999999%;
+}
+
+.row-fluid .offset9 {
+ margin-left: 78.72340425531914%;
+ *margin-left: 78.61702127659572%;
+}
+
+.row-fluid .offset9:first-child {
+ margin-left: 76.59574468085106%;
+ *margin-left: 76.48936170212764%;
+}
+
+.row-fluid .offset8 {
+ margin-left: 70.2127659574468%;
+ *margin-left: 70.10638297872339%;
+}
+
+.row-fluid .offset8:first-child {
+ margin-left: 68.08510638297872%;
+ *margin-left: 67.9787234042553%;
+}
+
+.row-fluid .offset7 {
+ margin-left: 61.70212765957446%;
+ *margin-left: 61.59574468085106%;
+}
+
+.row-fluid .offset7:first-child {
+ margin-left: 59.574468085106375%;
+ *margin-left: 59.46808510638297%;
+}
+
+.row-fluid .offset6 {
+ margin-left: 53.191489361702125%;
+ *margin-left: 53.085106382978715%;
+}
+
+.row-fluid .offset6:first-child {
+ margin-left: 51.063829787234035%;
+ *margin-left: 50.95744680851063%;
+}
+
+.row-fluid .offset5 {
+ margin-left: 44.68085106382979%;
+ *margin-left: 44.57446808510638%;
+}
+
+.row-fluid .offset5:first-child {
+ margin-left: 42.5531914893617%;
+ *margin-left: 42.4468085106383%;
+}
+
+.row-fluid .offset4 {
+ margin-left: 36.170212765957444%;
+ *margin-left: 36.06382978723405%;
+}
+
+.row-fluid .offset4:first-child {
+ margin-left: 34.04255319148936%;
+ *margin-left: 33.93617021276596%;
+}
+
+.row-fluid .offset3 {
+ margin-left: 27.659574468085104%;
+ *margin-left: 27.5531914893617%;
+}
+
+.row-fluid .offset3:first-child {
+ margin-left: 25.53191489361702%;
+ *margin-left: 25.425531914893618%;
+}
+
+.row-fluid .offset2 {
+ margin-left: 19.148936170212764%;
+ *margin-left: 19.04255319148936%;
+}
+
+.row-fluid .offset2:first-child {
+ margin-left: 17.02127659574468%;
+ *margin-left: 16.914893617021278%;
+}
+
+.row-fluid .offset1 {
+ margin-left: 10.638297872340425%;
+ *margin-left: 10.53191489361702%;
+}
+
+.row-fluid .offset1:first-child {
+ margin-left: 8.51063829787234%;
+ *margin-left: 8.404255319148938%;
+}
+
+[class*="span"].hide,
+.row-fluid [class*="span"].hide {
+ display: none;
+}
+
+[class*="span"].pull-right,
+.row-fluid [class*="span"].pull-right {
+ float: right;
+}
+
+.container {
+ margin-right: auto;
+ margin-left: auto;
+ *zoom: 1;
+}
+
+.container:before,
+.container:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.container:after {
+ clear: both;
+}
+
+.container-fluid {
+ padding-right: 20px;
+ padding-left: 20px;
+ *zoom: 1;
+}
+
+.container-fluid:before,
+.container-fluid:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.container-fluid:after {
+ clear: both;
+}
+
+p {
+ margin: 0 0 10px;
+}
+
+.lead {
+ margin-bottom: 20px;
+ font-size: 21px;
+ font-weight: 200;
+ line-height: 30px;
+}
+
+small {
+ font-size: 85%;
+}
+
+strong {
+ font-weight: bold;
+}
+
+em {
+ font-style: italic;
+}
+
+cite {
+ font-style: normal;
+}
+
+.muted {
+ color: #999999;
+}
+
+a.muted:hover,
+a.muted:focus {
+ color: #808080;
+}
+
+.text-warning {
+ color: #dd5600;
+}
+
+a.text-warning:hover,
+a.text-warning:focus {
+ color: #aa4200;
+}
+
+.text-error {
+ color: #bd4247;
+}
+
+a.text-error:hover,
+a.text-error:focus {
+ color: #983538;
+}
+
+.text-info {
+ color: #178acc;
+}
+
+a.text-info:hover,
+a.text-info:focus {
+ color: #126b9e;
+}
+
+.text-success {
+ color: #669533;
+}
+
+a.text-success:hover,
+a.text-success:focus {
+ color: #4c6f26;
+}
+
+.text-left {
+ text-align: left;
+}
+
+.text-right {
+ text-align: right;
+}
+
+.text-center {
+ text-align: center;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ margin: 10px 0;
+ font-family: 'Telex', sans-serif;
+ font-weight: bold;
+ line-height: 20px;
+ color: #317eac;
+ text-rendering: optimizelegibility;
+}
+
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small {
+ font-weight: normal;
+ line-height: 1;
+ color: #999999;
+}
+
+h1,
+h2,
+h3 {
+ line-height: 40px;
+}
+
+h1 {
+ font-size: 38.5px;
+}
+
+h2 {
+ font-size: 31.5px;
+}
+
+h3 {
+ font-size: 24.5px;
+}
+
+h4 {
+ font-size: 17.5px;
+}
+
+h5 {
+ font-size: 14px;
+}
+
+h6 {
+ font-size: 11.9px;
+}
+
+h1 small {
+ font-size: 24.5px;
+}
+
+h2 small {
+ font-size: 17.5px;
+}
+
+h3 small {
+ font-size: 14px;
+}
+
+h4 small {
+ font-size: 14px;
+}
+
+.page-header {
+ padding-bottom: 9px;
+ margin: 20px 0 30px;
+ border-bottom: 1px solid #f5f5f5;
+}
+
+ul,
+ol {
+ padding: 0;
+ margin: 0 0 10px 25px;
+}
+
+ul ul,
+ul ol,
+ol ol,
+ol ul {
+ margin-bottom: 0;
+}
+
+li {
+ line-height: 20px;
+}
+
+ul.unstyled,
+ol.unstyled {
+ margin-left: 0;
+ list-style: none;
+}
+
+ul.inline,
+ol.inline {
+ margin-left: 0;
+ list-style: none;
+}
+
+ul.inline > li,
+ol.inline > li {
+ display: inline-block;
+ *display: inline;
+ padding-right: 5px;
+ padding-left: 5px;
+ *zoom: 1;
+}
+
+dl {
+ margin-bottom: 20px;
+}
+
+dt,
+dd {
+ line-height: 20px;
+}
+
+dt {
+ font-weight: bold;
+}
+
+dd {
+ margin-left: 10px;
+}
+
+.dl-horizontal {
+ *zoom: 1;
+}
+
+.dl-horizontal:before,
+.dl-horizontal:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.dl-horizontal:after {
+ clear: both;
+}
+
+.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;
+}
+
+hr {
+ margin: 20px 0;
+ border: 0;
+ border-top: 1px solid #f5f5f5;
+ border-bottom: 1px solid #ffffff;
+}
+
+abbr[title],
+abbr[data-original-title] {
+ cursor: help;
+ border-bottom: 1px dotted #999999;
+}
+
+abbr.initialism {
+ font-size: 90%;
+ text-transform: uppercase;
+}
+
+blockquote {
+ padding: 0 0 0 15px;
+ margin: 0 0 20px;
+ border-left: 5px solid #f5f5f5;
+}
+
+blockquote p {
+ margin-bottom: 0;
+ font-size: 17.5px;
+ font-weight: 300;
+ line-height: 1.25;
+}
+
+blockquote small {
+ display: block;
+ line-height: 20px;
+ color: #999999;
+}
+
+blockquote small:before {
+ content: '\2014 \00A0';
+}
+
+blockquote.pull-right {
+ float: right;
+ padding-right: 15px;
+ padding-left: 0;
+ border-right: 5px solid #f5f5f5;
+ border-left: 0;
+}
+
+blockquote.pull-right p,
+blockquote.pull-right small {
+ text-align: right;
+}
+
+blockquote.pull-right small:before {
+ content: '';
+}
+
+blockquote.pull-right small:after {
+ content: '\00A0 \2014';
+}
+
+q:before,
+q:after,
+blockquote:before,
+blockquote:after {
+ content: "";
+}
+
+address {
+ display: block;
+ margin-bottom: 20px;
+ font-style: normal;
+ line-height: 20px;
+}
+
+code,
+pre {
+ padding: 0 3px 2px;
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
+ font-size: 12px;
+ color: #333333;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+code {
+ padding: 2px 4px;
+ color: #d14;
+ white-space: nowrap;
+ background-color: #f7f7f9;
+ border: 1px solid #e1e1e8;
+}
+
+pre {
+ display: block;
+ padding: 9.5px;
+ margin: 0 0 10px;
+ font-size: 13px;
+ line-height: 20px;
+ word-break: break-all;
+ word-wrap: break-word;
+ white-space: pre;
+ white-space: pre-wrap;
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+pre.prettyprint {
+ margin-bottom: 20px;
+}
+
+pre code {
+ padding: 0;
+ color: inherit;
+ white-space: pre;
+ white-space: pre-wrap;
+ background-color: transparent;
+ border: 0;
+}
+
+.pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll;
+}
+
+form {
+ margin: 0 0 20px;
+}
+
+fieldset {
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+legend {
+ display: block;
+ width: 100%;
+ padding: 0;
+ margin-bottom: 20px;
+ font-size: 21px;
+ line-height: 40px;
+ color: #333333;
+ border: 0;
+ border-bottom: 1px solid #e5e5e5;
+}
+
+legend small {
+ font-size: 15px;
+ color: #999999;
+}
+
+label,
+input,
+button,
+select,
+textarea {
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 20px;
+}
+
+input,
+button,
+select,
+textarea {
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+label {
+ display: block;
+ margin-bottom: 5px;
+}
+
+select,
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="date"],
+input[type="month"],
+input[type="time"],
+input[type="week"],
+input[type="number"],
+input[type="email"],
+input[type="url"],
+input[type="search"],
+input[type="tel"],
+input[type="color"],
+.uneditable-input {
+ display: inline-block;
+ height: 20px;
+ padding: 4px 6px;
+ margin-bottom: 10px;
+ font-size: 14px;
+ line-height: 20px;
+ color: #555555;
+ vertical-align: middle;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+input,
+textarea,
+.uneditable-input {
+ width: 206px;
+}
+
+textarea {
+ height: auto;
+}
+
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="date"],
+input[type="month"],
+input[type="time"],
+input[type="week"],
+input[type="number"],
+input[type="email"],
+input[type="url"],
+input[type="search"],
+input[type="tel"],
+input[type="color"],
+.uneditable-input {
+ background-color: #ffffff;
+ border: 1px solid #cccccc;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
+ transition: border linear 0.2s, box-shadow linear 0.2s;
+}
+
+textarea:focus,
+input[type="text"]:focus,
+input[type="password"]:focus,
+input[type="datetime"]:focus,
+input[type="datetime-local"]:focus,
+input[type="date"]:focus,
+input[type="month"]:focus,
+input[type="time"]:focus,
+input[type="week"]:focus,
+input[type="number"]:focus,
+input[type="email"]:focus,
+input[type="url"]:focus,
+input[type="search"]:focus,
+input[type="tel"]:focus,
+input[type="color"]:focus,
+.uneditable-input:focus {
+ border-color: rgba(82, 168, 236, 0.8);
+ outline: 0;
+ outline: thin dotted \9;
+ /* IE6-9 */
+
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
+}
+
+input[type="radio"],
+input[type="checkbox"] {
+ margin: 4px 0 0;
+ margin-top: 1px \9;
+ *margin-top: 0;
+ line-height: normal;
+}
+
+input[type="file"],
+input[type="image"],
+input[type="submit"],
+input[type="reset"],
+input[type="button"],
+input[type="radio"],
+input[type="checkbox"] {
+ width: auto;
+}
+
+select,
+input[type="file"] {
+ height: 30px;
+ /* In IE7, the height of the select element cannot be changed by height, only font-size */
+
+ *margin-top: 4px;
+ /* For IE7, add top margin to align select with labels */
+
+ line-height: 30px;
+}
+
+select {
+ width: 220px;
+ background-color: #ffffff;
+ border: 1px solid #cccccc;
+}
+
+select[multiple],
+select[size] {
+ height: auto;
+}
+
+select:focus,
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+ outline: thin dotted #333;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+
+.uneditable-input,
+.uneditable-textarea {
+ color: #999999;
+ cursor: not-allowed;
+ background-color: #fcfcfc;
+ border-color: #cccccc;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+}
+
+.uneditable-input {
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.uneditable-textarea {
+ width: auto;
+ height: auto;
+}
+
+input:-moz-placeholder,
+textarea:-moz-placeholder {
+ color: #999999;
+}
+
+input:-ms-input-placeholder,
+textarea:-ms-input-placeholder {
+ color: #999999;
+}
+
+input::-webkit-input-placeholder,
+textarea::-webkit-input-placeholder {
+ color: #999999;
+}
+
+.radio,
+.checkbox {
+ min-height: 20px;
+ padding-left: 20px;
+}
+
+.radio input[type="radio"],
+.checkbox input[type="checkbox"] {
+ float: left;
+ margin-left: -20px;
+}
+
+.controls > .radio:first-child,
+.controls > .checkbox:first-child {
+ padding-top: 5px;
+}
+
+.radio.inline,
+.checkbox.inline {
+ display: inline-block;
+ padding-top: 5px;
+ margin-bottom: 0;
+ vertical-align: middle;
+}
+
+.radio.inline + .radio.inline,
+.checkbox.inline + .checkbox.inline {
+ margin-left: 10px;
+}
+
+.input-mini {
+ width: 60px;
+}
+
+.input-small {
+ width: 90px;
+}
+
+.input-medium {
+ width: 150px;
+}
+
+.input-large {
+ width: 210px;
+}
+
+.input-xlarge {
+ width: 270px;
+}
+
+.input-xxlarge {
+ width: 530px;
+}
+
+input[class*="span"],
+select[class*="span"],
+textarea[class*="span"],
+.uneditable-input[class*="span"],
+.row-fluid input[class*="span"],
+.row-fluid select[class*="span"],
+.row-fluid textarea[class*="span"],
+.row-fluid .uneditable-input[class*="span"] {
+ float: none;
+ margin-left: 0;
+}
+
+.input-append input[class*="span"],
+.input-append .uneditable-input[class*="span"],
+.input-prepend input[class*="span"],
+.input-prepend .uneditable-input[class*="span"],
+.row-fluid input[class*="span"],
+.row-fluid select[class*="span"],
+.row-fluid textarea[class*="span"],
+.row-fluid .uneditable-input[class*="span"],
+.row-fluid .input-prepend [class*="span"],
+.row-fluid .input-append [class*="span"] {
+ display: inline-block;
+}
+
+input,
+textarea,
+.uneditable-input {
+ margin-left: 0;
+}
+
+.controls-row [class*="span"] + [class*="span"] {
+ margin-left: 20px;
+}
+
+input.span12,
+textarea.span12,
+.uneditable-input.span12 {
+ width: 926px;
+}
+
+input.span11,
+textarea.span11,
+.uneditable-input.span11 {
+ width: 846px;
+}
+
+input.span10,
+textarea.span10,
+.uneditable-input.span10 {
+ width: 766px;
+}
+
+input.span9,
+textarea.span9,
+.uneditable-input.span9 {
+ width: 686px;
+}
+
+input.span8,
+textarea.span8,
+.uneditable-input.span8 {
+ width: 606px;
+}
+
+input.span7,
+textarea.span7,
+.uneditable-input.span7 {
+ width: 526px;
+}
+
+input.span6,
+textarea.span6,
+.uneditable-input.span6 {
+ width: 446px;
+}
+
+input.span5,
+textarea.span5,
+.uneditable-input.span5 {
+ width: 366px;
+}
+
+input.span4,
+textarea.span4,
+.uneditable-input.span4 {
+ width: 286px;
+}
+
+input.span3,
+textarea.span3,
+.uneditable-input.span3 {
+ width: 206px;
+}
+
+input.span2,
+textarea.span2,
+.uneditable-input.span2 {
+ width: 126px;
+}
+
+input.span1,
+textarea.span1,
+.uneditable-input.span1 {
+ width: 46px;
+}
+
+.controls-row {
+ *zoom: 1;
+}
+
+.controls-row:before,
+.controls-row:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.controls-row:after {
+ clear: both;
+}
+
+.controls-row [class*="span"],
+.row-fluid .controls-row [class*="span"] {
+ float: left;
+}
+
+.controls-row .checkbox[class*="span"],
+.controls-row .radio[class*="span"] {
+ padding-top: 5px;
+}
+
+input[disabled],
+select[disabled],
+textarea[disabled],
+input[readonly],
+select[readonly],
+textarea[readonly] {
+ cursor: not-allowed;
+ background-color: #f5f5f5;
+}
+
+input[type="radio"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"][readonly],
+input[type="checkbox"][readonly] {
+ background-color: transparent;
+}
+
+.control-group.warning .control-label,
+.control-group.warning .help-block,
+.control-group.warning .help-inline {
+ color: #dd5600;
+}
+
+.control-group.warning .checkbox,
+.control-group.warning .radio,
+.control-group.warning input,
+.control-group.warning select,
+.control-group.warning textarea {
+ color: #dd5600;
+}
+
+.control-group.warning input,
+.control-group.warning select,
+.control-group.warning textarea {
+ border-color: #dd5600;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+
+.control-group.warning input:focus,
+.control-group.warning select:focus,
+.control-group.warning textarea:focus {
+ border-color: #aa4200;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff8d44;
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff8d44;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff8d44;
+}
+
+.control-group.warning .input-prepend .add-on,
+.control-group.warning .input-append .add-on {
+ color: #dd5600;
+ background-color: #f1ceab;
+ border-color: #dd5600;
+}
+
+.control-group.error .control-label,
+.control-group.error .help-block,
+.control-group.error .help-inline {
+ color: #bd4247;
+}
+
+.control-group.error .checkbox,
+.control-group.error .radio,
+.control-group.error input,
+.control-group.error select,
+.control-group.error textarea {
+ color: #bd4247;
+}
+
+.control-group.error input,
+.control-group.error select,
+.control-group.error textarea {
+ border-color: #bd4247;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+
+.control-group.error input:focus,
+.control-group.error select:focus,
+.control-group.error textarea:focus {
+ border-color: #983538;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d88e90;
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d88e90;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d88e90;
+}
+
+.control-group.error .input-prepend .add-on,
+.control-group.error .input-append .add-on {
+ color: #bd4247;
+ background-color: #f2bdb1;
+ border-color: #bd4247;
+}
+
+.control-group.success .control-label,
+.control-group.success .help-block,
+.control-group.success .help-inline {
+ color: #669533;
+}
+
+.control-group.success .checkbox,
+.control-group.success .radio,
+.control-group.success input,
+.control-group.success select,
+.control-group.success textarea {
+ color: #669533;
+}
+
+.control-group.success input,
+.control-group.success select,
+.control-group.success textarea {
+ border-color: #669533;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+
+.control-group.success input:focus,
+.control-group.success select:focus,
+.control-group.success textarea:focus {
+ border-color: #4c6f26;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #99ca63;
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #99ca63;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #99ca63;
+}
+
+.control-group.success .input-prepend .add-on,
+.control-group.success .input-append .add-on {
+ color: #669533;
+ background-color: #d5ecbf;
+ border-color: #669533;
+}
+
+.control-group.info .control-label,
+.control-group.info .help-block,
+.control-group.info .help-inline {
+ color: #178acc;
+}
+
+.control-group.info .checkbox,
+.control-group.info .radio,
+.control-group.info input,
+.control-group.info select,
+.control-group.info textarea {
+ color: #178acc;
+}
+
+.control-group.info input,
+.control-group.info select,
+.control-group.info textarea {
+ border-color: #178acc;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+
+.control-group.info input:focus,
+.control-group.info select:focus,
+.control-group.info textarea:focus {
+ border-color: #126b9e;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #5db8ec;
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #5db8ec;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #5db8ec;
+}
+
+.control-group.info .input-prepend .add-on,
+.control-group.info .input-append .add-on {
+ color: #178acc;
+ background-color: #a7dff1;
+ border-color: #178acc;
+}
+
+input:focus:invalid,
+textarea:focus:invalid,
+select:focus:invalid {
+ color: #b94a48;
+ border-color: #ee5f5b;
+}
+
+input:focus:invalid:focus,
+textarea:focus:invalid:focus,
+select:focus:invalid:focus {
+ border-color: #e9322d;
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
+ -moz-box-shadow: 0 0 6px #f8b9b7;
+ box-shadow: 0 0 6px #f8b9b7;
+}
+
+.form-actions {
+ padding: 19px 20px 20px;
+ margin-top: 20px;
+ margin-bottom: 20px;
+ background-color: #f5f5f5;
+ border-top: 1px solid #e5e5e5;
+ *zoom: 1;
+}
+
+.form-actions:before,
+.form-actions:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.form-actions:after {
+ clear: both;
+}
+
+.help-block,
+.help-inline {
+ color: #7b7b7b;
+}
+
+.help-block {
+ display: block;
+ margin-bottom: 10px;
+}
+
+.help-inline {
+ display: inline-block;
+ *display: inline;
+ padding-left: 5px;
+ vertical-align: middle;
+ *zoom: 1;
+}
+
+.input-append,
+.input-prepend {
+ display: inline-block;
+ margin-bottom: 10px;
+ font-size: 0;
+ white-space: nowrap;
+ vertical-align: middle;
+}
+
+.input-append input,
+.input-prepend input,
+.input-append select,
+.input-prepend select,
+.input-append .uneditable-input,
+.input-prepend .uneditable-input,
+.input-append .dropdown-menu,
+.input-prepend .dropdown-menu,
+.input-append .popover,
+.input-prepend .popover {
+ font-size: 14px;
+}
+
+.input-append input,
+.input-prepend input,
+.input-append select,
+.input-prepend select,
+.input-append .uneditable-input,
+.input-prepend .uneditable-input {
+ position: relative;
+ margin-bottom: 0;
+ *margin-left: 0;
+ vertical-align: top;
+ -webkit-border-radius: 0 4px 4px 0;
+ -moz-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+
+.input-append input:focus,
+.input-prepend input:focus,
+.input-append select:focus,
+.input-prepend select:focus,
+.input-append .uneditable-input:focus,
+.input-prepend .uneditable-input:focus {
+ z-index: 2;
+}
+
+.input-append .add-on,
+.input-prepend .add-on {
+ display: inline-block;
+ width: auto;
+ height: 20px;
+ min-width: 16px;
+ padding: 4px 5px;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 20px;
+ text-align: center;
+ text-shadow: 0 1px 0 #ffffff;
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+}
+
+.input-append .add-on,
+.input-prepend .add-on,
+.input-append .btn,
+.input-prepend .btn,
+.input-append .btn-group > .dropdown-toggle,
+.input-prepend .btn-group > .dropdown-toggle {
+ vertical-align: top;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.input-append .active,
+.input-prepend .active {
+ background-color: #bede9c;
+ border-color: #73a839;
+}
+
+.input-prepend .add-on,
+.input-prepend .btn {
+ margin-right: -1px;
+}
+
+.input-prepend .add-on:first-child,
+.input-prepend .btn:first-child {
+ -webkit-border-radius: 4px 0 0 4px;
+ -moz-border-radius: 4px 0 0 4px;
+ border-radius: 4px 0 0 4px;
+}
+
+.input-append input,
+.input-append select,
+.input-append .uneditable-input {
+ -webkit-border-radius: 4px 0 0 4px;
+ -moz-border-radius: 4px 0 0 4px;
+ border-radius: 4px 0 0 4px;
+}
+
+.input-append input + .btn-group .btn:last-child,
+.input-append select + .btn-group .btn:last-child,
+.input-append .uneditable-input + .btn-group .btn:last-child {
+ -webkit-border-radius: 0 4px 4px 0;
+ -moz-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+
+.input-append .add-on,
+.input-append .btn,
+.input-append .btn-group {
+ margin-left: -1px;
+}
+
+.input-append .add-on:last-child,
+.input-append .btn:last-child,
+.input-append .btn-group:last-child > .dropdown-toggle {
+ -webkit-border-radius: 0 4px 4px 0;
+ -moz-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+
+.input-prepend.input-append input,
+.input-prepend.input-append select,
+.input-prepend.input-append .uneditable-input {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.input-prepend.input-append input + .btn-group .btn,
+.input-prepend.input-append select + .btn-group .btn,
+.input-prepend.input-append .uneditable-input + .btn-group .btn {
+ -webkit-border-radius: 0 4px 4px 0;
+ -moz-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+
+.input-prepend.input-append .add-on:first-child,
+.input-prepend.input-append .btn:first-child {
+ margin-right: -1px;
+ -webkit-border-radius: 4px 0 0 4px;
+ -moz-border-radius: 4px 0 0 4px;
+ border-radius: 4px 0 0 4px;
+}
+
+.input-prepend.input-append .add-on:last-child,
+.input-prepend.input-append .btn:last-child {
+ margin-left: -1px;
+ -webkit-border-radius: 0 4px 4px 0;
+ -moz-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+
+.input-prepend.input-append .btn-group:first-child {
+ margin-left: 0;
+}
+
+input.search-query {
+ padding-right: 14px;
+ padding-right: 4px \9;
+ padding-left: 14px;
+ padding-left: 4px \9;
+ /* IE7-8 doesn't have border-radius, so don't indent the padding */
+
+ margin-bottom: 0;
+ -webkit-border-radius: 15px;
+ -moz-border-radius: 15px;
+ border-radius: 15px;
+}
+
+/* Allow for input prepend/append in search forms */
+
+.form-search .input-append .search-query,
+.form-search .input-prepend .search-query {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.form-search .input-append .search-query {
+ -webkit-border-radius: 14px 0 0 14px;
+ -moz-border-radius: 14px 0 0 14px;
+ border-radius: 14px 0 0 14px;
+}
+
+.form-search .input-append .btn {
+ -webkit-border-radius: 0 14px 14px 0;
+ -moz-border-radius: 0 14px 14px 0;
+ border-radius: 0 14px 14px 0;
+}
+
+.form-search .input-prepend .search-query {
+ -webkit-border-radius: 0 14px 14px 0;
+ -moz-border-radius: 0 14px 14px 0;
+ border-radius: 0 14px 14px 0;
+}
+
+.form-search .input-prepend .btn {
+ -webkit-border-radius: 14px 0 0 14px;
+ -moz-border-radius: 14px 0 0 14px;
+ border-radius: 14px 0 0 14px;
+}
+
+.form-search input,
+.form-inline input,
+.form-horizontal input,
+.form-search textarea,
+.form-inline textarea,
+.form-horizontal textarea,
+.form-search select,
+.form-inline select,
+.form-horizontal select,
+.form-search .help-inline,
+.form-inline .help-inline,
+.form-horizontal .help-inline,
+.form-search .uneditable-input,
+.form-inline .uneditable-input,
+.form-horizontal .uneditable-input,
+.form-search .input-prepend,
+.form-inline .input-prepend,
+.form-horizontal .input-prepend,
+.form-search .input-append,
+.form-inline .input-append,
+.form-horizontal .input-append {
+ display: inline-block;
+ *display: inline;
+ margin-bottom: 0;
+ vertical-align: middle;
+ *zoom: 1;
+}
+
+.form-search .hide,
+.form-inline .hide,
+.form-horizontal .hide {
+ display: none;
+}
+
+.form-search label,
+.form-inline label,
+.form-search .btn-group,
+.form-inline .btn-group {
+ display: inline-block;
+}
+
+.form-search .input-append,
+.form-inline .input-append,
+.form-search .input-prepend,
+.form-inline .input-prepend {
+ margin-bottom: 0;
+}
+
+.form-search .radio,
+.form-search .checkbox,
+.form-inline .radio,
+.form-inline .checkbox {
+ padding-left: 0;
+ margin-bottom: 0;
+ vertical-align: middle;
+}
+
+.form-search .radio input[type="radio"],
+.form-search .checkbox input[type="checkbox"],
+.form-inline .radio input[type="radio"],
+.form-inline .checkbox input[type="checkbox"] {
+ float: left;
+ margin-right: 3px;
+ margin-left: 0;
+}
+
+.control-group {
+ margin-bottom: 10px;
+}
+
+legend + .control-group {
+ margin-top: 20px;
+ -webkit-margin-top-collapse: separate;
+}
+
+.form-horizontal .control-group {
+ margin-bottom: 20px;
+ *zoom: 1;
+}
+
+.form-horizontal .control-group:before,
+.form-horizontal .control-group:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.form-horizontal .control-group:after {
+ clear: both;
+}
+
+.form-horizontal .control-label {
+ float: left;
+ width: 160px;
+ padding-top: 5px;
+ text-align: right;
+}
+
+.form-horizontal .controls {
+ *display: inline-block;
+ *padding-left: 20px;
+ margin-left: 180px;
+ *margin-left: 0;
+}
+
+.form-horizontal .controls:first-child {
+ *padding-left: 180px;
+}
+
+.form-horizontal .help-block {
+ margin-bottom: 0;
+}
+
+.form-horizontal input + .help-block,
+.form-horizontal select + .help-block,
+.form-horizontal textarea + .help-block,
+.form-horizontal .uneditable-input + .help-block,
+.form-horizontal .input-prepend + .help-block,
+.form-horizontal .input-append + .help-block {
+ margin-top: 10px;
+}
+
+.form-horizontal .form-actions {
+ padding-left: 180px;
+}
+
+table {
+ max-width: 100%;
+ background-color: transparent;
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+.table {
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+.table th,
+.table td {
+ padding: 8px;
+ line-height: 20px;
+ text-align: left;
+ vertical-align: top;
+ border-top: 1px solid #dddddd;
+}
+
+.table th {
+ font-weight: bold;
+}
+
+.table thead th {
+ vertical-align: bottom;
+}
+
+.table caption + thead tr:first-child th,
+.table caption + thead tr:first-child td,
+.table colgroup + thead tr:first-child th,
+.table colgroup + thead tr:first-child td,
+.table thead:first-child tr:first-child th,
+.table thead:first-child tr:first-child td {
+ border-top: 0;
+}
+
+.table tbody + tbody {
+ border-top: 2px solid #dddddd;
+}
+
+.table .table {
+ background-color: #ffffff;
+}
+
+.table-condensed th,
+.table-condensed td {
+ padding: 4px 5px;
+}
+
+.table-bordered {
+ border: 1px solid #dddddd;
+ border-collapse: separate;
+ *border-collapse: collapse;
+ border-left: 0;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.table-bordered th,
+.table-bordered td {
+ border-left: 1px solid #dddddd;
+}
+
+.table-bordered caption + thead tr:first-child th,
+.table-bordered caption + tbody tr:first-child th,
+.table-bordered caption + tbody tr:first-child td,
+.table-bordered colgroup + thead tr:first-child th,
+.table-bordered colgroup + tbody tr:first-child th,
+.table-bordered colgroup + tbody tr:first-child td,
+.table-bordered thead:first-child tr:first-child th,
+.table-bordered tbody:first-child tr:first-child th,
+.table-bordered tbody:first-child tr:first-child td {
+ border-top: 0;
+}
+
+.table-bordered thead:first-child tr:first-child > th:first-child,
+.table-bordered tbody:first-child tr:first-child > td:first-child,
+.table-bordered tbody:first-child tr:first-child > th:first-child {
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topleft: 4px;
+}
+
+.table-bordered thead:first-child tr:first-child > th:last-child,
+.table-bordered tbody:first-child tr:first-child > td:last-child,
+.table-bordered tbody:first-child tr:first-child > th:last-child {
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-topright: 4px;
+}
+
+.table-bordered thead:last-child tr:last-child > th:first-child,
+.table-bordered tbody:last-child tr:last-child > td:first-child,
+.table-bordered tbody:last-child tr:last-child > th:first-child,
+.table-bordered tfoot:last-child tr:last-child > td:first-child,
+.table-bordered tfoot:last-child tr:last-child > th:first-child {
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+}
+
+.table-bordered thead:last-child tr:last-child > th:last-child,
+.table-bordered tbody:last-child tr:last-child > td:last-child,
+.table-bordered tbody:last-child tr:last-child > th:last-child,
+.table-bordered tfoot:last-child tr:last-child > td:last-child,
+.table-bordered tfoot:last-child tr:last-child > th:last-child {
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+}
+
+.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+}
+
+.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+}
+
+.table-bordered caption + thead tr:first-child th:first-child,
+.table-bordered caption + tbody tr:first-child td:first-child,
+.table-bordered colgroup + thead tr:first-child th:first-child,
+.table-bordered colgroup + tbody tr:first-child td:first-child {
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topleft: 4px;
+}
+
+.table-bordered caption + thead tr:first-child th:last-child,
+.table-bordered caption + tbody tr:first-child td:last-child,
+.table-bordered colgroup + thead tr:first-child th:last-child,
+.table-bordered colgroup + tbody tr:first-child td:last-child {
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-topright: 4px;
+}
+
+.table-striped tbody > tr:nth-child(odd) > td,
+.table-striped tbody > tr:nth-child(odd) > th {
+ background-color: #f9f9f9;
+}
+
+.table-hover tbody tr:hover > td,
+.table-hover tbody tr:hover > th {
+ background-color: #f5f5f5;
+}
+
+table td[class*="span"],
+table th[class*="span"],
+.row-fluid table td[class*="span"],
+.row-fluid table th[class*="span"] {
+ display: table-cell;
+ float: none;
+ margin-left: 0;
+}
+
+.table td.span1,
+.table th.span1 {
+ float: none;
+ width: 44px;
+ margin-left: 0;
+}
+
+.table td.span2,
+.table th.span2 {
+ float: none;
+ width: 124px;
+ margin-left: 0;
+}
+
+.table td.span3,
+.table th.span3 {
+ float: none;
+ width: 204px;
+ margin-left: 0;
+}
+
+.table td.span4,
+.table th.span4 {
+ float: none;
+ width: 284px;
+ margin-left: 0;
+}
+
+.table td.span5,
+.table th.span5 {
+ float: none;
+ width: 364px;
+ margin-left: 0;
+}
+
+.table td.span6,
+.table th.span6 {
+ float: none;
+ width: 444px;
+ margin-left: 0;
+}
+
+.table td.span7,
+.table th.span7 {
+ float: none;
+ width: 524px;
+ margin-left: 0;
+}
+
+.table td.span8,
+.table th.span8 {
+ float: none;
+ width: 604px;
+ margin-left: 0;
+}
+
+.table td.span9,
+.table th.span9 {
+ float: none;
+ width: 684px;
+ margin-left: 0;
+}
+
+.table td.span10,
+.table th.span10 {
+ float: none;
+ width: 764px;
+ margin-left: 0;
+}
+
+.table td.span11,
+.table th.span11 {
+ float: none;
+ width: 844px;
+ margin-left: 0;
+}
+
+.table td.span12,
+.table th.span12 {
+ float: none;
+ width: 924px;
+ margin-left: 0;
+}
+
+.table tbody tr.success > td {
+ background-color: #d5ecbf;
+}
+
+.table tbody tr.error > td {
+ background-color: #f2bdb1;
+}
+
+.table tbody tr.warning > td {
+ background-color: #f1ceab;
+}
+
+.table tbody tr.info > td {
+ background-color: #a7dff1;
+}
+
+.table-hover tbody tr.success:hover > td {
+ background-color: #c8e6ab;
+}
+
+.table-hover tbody tr.error:hover > td {
+ background-color: #eeab9b;
+}
+
+.table-hover tbody tr.warning:hover > td {
+ background-color: #edc195;
+}
+
+.table-hover tbody tr.info:hover > td {
+ background-color: #91d7ee;
+}
+
+[class^="icon-"],
+[class*=" icon-"] {
+ display: inline-block;
+ width: 14px;
+ height: 14px;
+ margin-top: 1px;
+ *margin-right: .3em;
+ line-height: 14px;
+ vertical-align: text-top;
+ background-image: url("../img/glyphicons-halflings.png");
+ background-position: 14px 14px;
+ background-repeat: no-repeat;
+}
+
+/* White icons with optional class, or on hover/focus/active states of certain elements */
+
+.icon-white,
+.nav-pills > .active > a > [class^="icon-"],
+.nav-pills > .active > a > [class*=" icon-"],
+.nav-list > .active > a > [class^="icon-"],
+.nav-list > .active > a > [class*=" icon-"],
+.navbar-inverse .nav > .active > a > [class^="icon-"],
+.navbar-inverse .nav > .active > a > [class*=" icon-"],
+.dropdown-menu > li > a:hover > [class^="icon-"],
+.dropdown-menu > li > a:focus > [class^="icon-"],
+.dropdown-menu > li > a:hover > [class*=" icon-"],
+.dropdown-menu > li > a:focus > [class*=" icon-"],
+.dropdown-menu > .active > a > [class^="icon-"],
+.dropdown-menu > .active > a > [class*=" icon-"],
+.dropdown-submenu:hover > a > [class^="icon-"],
+.dropdown-submenu:focus > a > [class^="icon-"],
+.dropdown-submenu:hover > a > [class*=" icon-"],
+.dropdown-submenu:focus > a > [class*=" icon-"] {
+ background-image: url("../img/glyphicons-halflings-white.png");
+}
+
+.icon-glass {
+ background-position: 0 0;
+}
+
+.icon-music {
+ background-position: -24px 0;
+}
+
+.icon-search {
+ background-position: -48px 0;
+}
+
+.icon-envelope {
+ background-position: -72px 0;
+}
+
+.icon-heart {
+ background-position: -96px 0;
+}
+
+.icon-star {
+ background-position: -120px 0;
+}
+
+.icon-star-empty {
+ background-position: -144px 0;
+}
+
+.icon-user {
+ background-position: -168px 0;
+}
+
+.icon-film {
+ background-position: -192px 0;
+}
+
+.icon-th-large {
+ background-position: -216px 0;
+}
+
+.icon-th {
+ background-position: -240px 0;
+}
+
+.icon-th-list {
+ background-position: -264px 0;
+}
+
+.icon-ok {
+ background-position: -288px 0;
+}
+
+.icon-remove {
+ background-position: -312px 0;
+}
+
+.icon-zoom-in {
+ background-position: -336px 0;
+}
+
+.icon-zoom-out {
+ background-position: -360px 0;
+}
+
+.icon-off {
+ background-position: -384px 0;
+}
+
+.icon-signal {
+ background-position: -408px 0;
+}
+
+.icon-cog {
+ background-position: -432px 0;
+}
+
+.icon-trash {
+ background-position: -456px 0;
+}
+
+.icon-home {
+ background-position: 0 -24px;
+}
+
+.icon-file {
+ background-position: -24px -24px;
+}
+
+.icon-time {
+ background-position: -48px -24px;
+}
+
+.icon-road {
+ background-position: -72px -24px;
+}
+
+.icon-download-alt {
+ background-position: -96px -24px;
+}
+
+.icon-download {
+ background-position: -120px -24px;
+}
+
+.icon-upload {
+ background-position: -144px -24px;
+}
+
+.icon-inbox {
+ background-position: -168px -24px;
+}
+
+.icon-play-circle {
+ background-position: -192px -24px;
+}
+
+.icon-repeat {
+ background-position: -216px -24px;
+}
+
+.icon-refresh {
+ background-position: -240px -24px;
+}
+
+.icon-list-alt {
+ background-position: -264px -24px;
+}
+
+.icon-lock {
+ background-position: -287px -24px;
+}
+
+.icon-flag {
+ background-position: -312px -24px;
+}
+
+.icon-headphones {
+ background-position: -336px -24px;
+}
+
+.icon-volume-off {
+ background-position: -360px -24px;
+}
+
+.icon-volume-down {
+ background-position: -384px -24px;
+}
+
+.icon-volume-up {
+ background-position: -408px -24px;
+}
+
+.icon-qrcode {
+ background-position: -432px -24px;
+}
+
+.icon-barcode {
+ background-position: -456px -24px;
+}
+
+.icon-tag {
+ background-position: 0 -48px;
+}
+
+.icon-tags {
+ background-position: -25px -48px;
+}
+
+.icon-book {
+ background-position: -48px -48px;
+}
+
+.icon-bookmark {
+ background-position: -72px -48px;
+}
+
+.icon-print {
+ background-position: -96px -48px;
+}
+
+.icon-camera {
+ background-position: -120px -48px;
+}
+
+.icon-font {
+ background-position: -144px -48px;
+}
+
+.icon-bold {
+ background-position: -167px -48px;
+}
+
+.icon-italic {
+ background-position: -192px -48px;
+}
+
+.icon-text-height {
+ background-position: -216px -48px;
+}
+
+.icon-text-width {
+ background-position: -240px -48px;
+}
+
+.icon-align-left {
+ background-position: -264px -48px;
+}
+
+.icon-align-center {
+ background-position: -288px -48px;
+}
+
+.icon-align-right {
+ background-position: -312px -48px;
+}
+
+.icon-align-justify {
+ background-position: -336px -48px;
+}
+
+.icon-list {
+ background-position: -360px -48px;
+}
+
+.icon-indent-left {
+ background-position: -384px -48px;
+}
+
+.icon-indent-right {
+ background-position: -408px -48px;
+}
+
+.icon-facetime-video {
+ background-position: -432px -48px;
+}
+
+.icon-picture {
+ background-position: -456px -48px;
+}
+
+.icon-pencil {
+ background-position: 0 -72px;
+}
+
+.icon-map-marker {
+ background-position: -24px -72px;
+}
+
+.icon-adjust {
+ background-position: -48px -72px;
+}
+
+.icon-tint {
+ background-position: -72px -72px;
+}
+
+.icon-edit {
+ background-position: -96px -72px;
+}
+
+.icon-share {
+ background-position: -120px -72px;
+}
+
+.icon-check {
+ background-position: -144px -72px;
+}
+
+.icon-move {
+ background-position: -168px -72px;
+}
+
+.icon-step-backward {
+ background-position: -192px -72px;
+}
+
+.icon-fast-backward {
+ background-position: -216px -72px;
+}
+
+.icon-backward {
+ background-position: -240px -72px;
+}
+
+.icon-play {
+ background-position: -264px -72px;
+}
+
+.icon-pause {
+ background-position: -288px -72px;
+}
+
+.icon-stop {
+ background-position: -312px -72px;
+}
+
+.icon-forward {
+ background-position: -336px -72px;
+}
+
+.icon-fast-forward {
+ background-position: -360px -72px;
+}
+
+.icon-step-forward {
+ background-position: -384px -72px;
+}
+
+.icon-eject {
+ background-position: -408px -72px;
+}
+
+.icon-chevron-left {
+ background-position: -432px -72px;
+}
+
+.icon-chevron-right {
+ background-position: -456px -72px;
+}
+
+.icon-plus-sign {
+ background-position: 0 -96px;
+}
+
+.icon-minus-sign {
+ background-position: -24px -96px;
+}
+
+.icon-remove-sign {
+ background-position: -48px -96px;
+}
+
+.icon-ok-sign {
+ background-position: -72px -96px;
+}
+
+.icon-question-sign {
+ background-position: -96px -96px;
+}
+
+.icon-info-sign {
+ background-position: -120px -96px;
+}
+
+.icon-screenshot {
+ background-position: -144px -96px;
+}
+
+.icon-remove-circle {
+ background-position: -168px -96px;
+}
+
+.icon-ok-circle {
+ background-position: -192px -96px;
+}
+
+.icon-ban-circle {
+ background-position: -216px -96px;
+}
+
+.icon-arrow-left {
+ background-position: -240px -96px;
+}
+
+.icon-arrow-right {
+ background-position: -264px -96px;
+}
+
+.icon-arrow-up {
+ background-position: -289px -96px;
+}
+
+.icon-arrow-down {
+ background-position: -312px -96px;
+}
+
+.icon-share-alt {
+ background-position: -336px -96px;
+}
+
+.icon-resize-full {
+ background-position: -360px -96px;
+}
+
+.icon-resize-small {
+ background-position: -384px -96px;
+}
+
+.icon-plus {
+ background-position: -408px -96px;
+}
+
+.icon-minus {
+ background-position: -433px -96px;
+}
+
+.icon-asterisk {
+ background-position: -456px -96px;
+}
+
+.icon-exclamation-sign {
+ background-position: 0 -120px;
+}
+
+.icon-gift {
+ background-position: -24px -120px;
+}
+
+.icon-leaf {
+ background-position: -48px -120px;
+}
+
+.icon-fire {
+ background-position: -72px -120px;
+}
+
+.icon-eye-open {
+ background-position: -96px -120px;
+}
+
+.icon-eye-close {
+ background-position: -120px -120px;
+}
+
+.icon-warning-sign {
+ background-position: -144px -120px;
+}
+
+.icon-plane {
+ background-position: -168px -120px;
+}
+
+.icon-calendar {
+ background-position: -192px -120px;
+}
+
+.icon-random {
+ width: 16px;
+ background-position: -216px -120px;
+}
+
+.icon-comment {
+ background-position: -240px -120px;
+}
+
+.icon-magnet {
+ background-position: -264px -120px;
+}
+
+.icon-chevron-up {
+ background-position: -288px -120px;
+}
+
+.icon-chevron-down {
+ background-position: -313px -119px;
+}
+
+.icon-retweet {
+ background-position: -336px -120px;
+}
+
+.icon-shopping-cart {
+ background-position: -360px -120px;
+}
+
+.icon-folder-close {
+ width: 16px;
+ background-position: -384px -120px;
+}
+
+.icon-folder-open {
+ width: 16px;
+ background-position: -408px -120px;
+}
+
+.icon-resize-vertical {
+ background-position: -432px -119px;
+}
+
+.icon-resize-horizontal {
+ background-position: -456px -118px;
+}
+
+.icon-hdd {
+ background-position: 0 -144px;
+}
+
+.icon-bullhorn {
+ background-position: -24px -144px;
+}
+
+.icon-bell {
+ background-position: -48px -144px;
+}
+
+.icon-certificate {
+ background-position: -72px -144px;
+}
+
+.icon-thumbs-up {
+ background-position: -96px -144px;
+}
+
+.icon-thumbs-down {
+ background-position: -120px -144px;
+}
+
+.icon-hand-right {
+ background-position: -144px -144px;
+}
+
+.icon-hand-left {
+ background-position: -168px -144px;
+}
+
+.icon-hand-up {
+ background-position: -192px -144px;
+}
+
+.icon-hand-down {
+ background-position: -216px -144px;
+}
+
+.icon-circle-arrow-right {
+ background-position: -240px -144px;
+}
+
+.icon-circle-arrow-left {
+ background-position: -264px -144px;
+}
+
+.icon-circle-arrow-up {
+ background-position: -288px -144px;
+}
+
+.icon-circle-arrow-down {
+ background-position: -312px -144px;
+}
+
+.icon-globe {
+ background-position: -336px -144px;
+}
+
+.icon-wrench {
+ background-position: -360px -144px;
+}
+
+.icon-tasks {
+ background-position: -384px -144px;
+}
+
+.icon-filter {
+ background-position: -408px -144px;
+}
+
+.icon-briefcase {
+ background-position: -432px -144px;
+}
+
+.icon-fullscreen {
+ background-position: -456px -144px;
+}
+
+.dropup,
+.dropdown {
+ position: relative;
+}
+
+.dropdown-toggle {
+ *margin-bottom: -3px;
+}
+
+.dropdown-toggle:active,
+.open .dropdown-toggle {
+ outline: 0;
+}
+
+.caret {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ vertical-align: top;
+ border-top: 4px solid #000000;
+ border-right: 4px solid transparent;
+ border-left: 4px solid transparent;
+ content: "";
+}
+
+.dropdown .caret {
+ margin-top: 8px;
+ margin-left: 2px;
+}
+
+.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;
+ list-style: none;
+ background-color: #ffffff;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ *border-right-width: 2px;
+ *border-bottom-width: 2px;
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ -webkit-background-clip: padding-box;
+ -moz-background-clip: padding;
+ background-clip: padding-box;
+}
+
+.dropdown-menu.pull-right {
+ right: 0;
+ left: auto;
+}
+
+.dropdown-menu .divider {
+ *width: 100%;
+ height: 1px;
+ margin: 9px 1px;
+ *margin: -5px 0 5px;
+ overflow: hidden;
+ background-color: #e5e5e5;
+ border-bottom: 1px solid #ffffff;
+}
+
+.dropdown-menu > li > a {
+ display: block;
+ padding: 3px 20px;
+ clear: both;
+ font-weight: normal;
+ line-height: 20px;
+ color: #333333;
+ white-space: nowrap;
+}
+
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus,
+.dropdown-submenu:hover > a,
+.dropdown-submenu:focus > a {
+ color: #ffffff;
+ text-decoration: none;
+ background-color: #27a0e5;
+ background-image: -moz-linear-gradient(top, #2fa4e7, #1a99e2);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2fa4e7), to(#1a99e2));
+ background-image: -webkit-linear-gradient(top, #2fa4e7, #1a99e2);
+ background-image: -o-linear-gradient(top, #2fa4e7, #1a99e2);
+ background-image: linear-gradient(to bottom, #2fa4e7, #1a99e2);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2fa4e7', endColorstr='#ff1a99e2', GradientType=0);
+}
+
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+ color: #ffffff;
+ text-decoration: none;
+ background-color: #27a0e5;
+ background-image: -moz-linear-gradient(top, #2fa4e7, #1a99e2);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2fa4e7), to(#1a99e2));
+ background-image: -webkit-linear-gradient(top, #2fa4e7, #1a99e2);
+ background-image: -o-linear-gradient(top, #2fa4e7, #1a99e2);
+ background-image: linear-gradient(to bottom, #2fa4e7, #1a99e2);
+ background-repeat: repeat-x;
+ outline: 0;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2fa4e7', endColorstr='#ff1a99e2', GradientType=0);
+}
+
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ color: #999999;
+}
+
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ text-decoration: none;
+ cursor: default;
+ background-color: transparent;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.open {
+ *z-index: 1000;
+}
+
+.open > .dropdown-menu {
+ display: block;
+}
+
+.pull-right > .dropdown-menu {
+ right: 0;
+ left: auto;
+}
+
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+ border-top: 0;
+ border-bottom: 4px solid #000000;
+ content: "";
+}
+
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+ top: auto;
+ bottom: 100%;
+ margin-bottom: 1px;
+}
+
+.dropdown-submenu {
+ position: relative;
+}
+
+.dropdown-submenu > .dropdown-menu {
+ top: 0;
+ left: 100%;
+ margin-top: -6px;
+ margin-left: -1px;
+ -webkit-border-radius: 0 6px 6px 6px;
+ -moz-border-radius: 0 6px 6px 6px;
+ border-radius: 0 6px 6px 6px;
+}
+
+.dropdown-submenu:hover > .dropdown-menu {
+ display: block;
+}
+
+.dropup .dropdown-submenu > .dropdown-menu {
+ top: auto;
+ bottom: 0;
+ margin-top: 0;
+ margin-bottom: -2px;
+ -webkit-border-radius: 5px 5px 5px 0;
+ -moz-border-radius: 5px 5px 5px 0;
+ border-radius: 5px 5px 5px 0;
+}
+
+.dropdown-submenu > a:after {
+ display: block;
+ float: right;
+ width: 0;
+ height: 0;
+ margin-top: 5px;
+ margin-right: -10px;
+ border-color: transparent;
+ border-left-color: #cccccc;
+ border-style: solid;
+ border-width: 5px 0 5px 5px;
+ content: " ";
+}
+
+.dropdown-submenu:hover > a:after {
+ border-left-color: #ffffff;
+}
+
+.dropdown-submenu.pull-left {
+ float: none;
+}
+
+.dropdown-submenu.pull-left > .dropdown-menu {
+ left: -100%;
+ margin-left: 10px;
+ -webkit-border-radius: 6px 0 6px 6px;
+ -moz-border-radius: 6px 0 6px 6px;
+ border-radius: 6px 0 6px 6px;
+}
+
+.dropdown .dropdown-menu .nav-header {
+ padding-right: 20px;
+ padding-left: 20px;
+}
+
+.typeahead {
+ z-index: 1051;
+ margin-top: 2px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.well {
+ min-height: 20px;
+ padding: 19px;
+ margin-bottom: 20px;
+ background-color: #f5f5f5;
+ border: 1px solid #e3e3e3;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+}
+
+.well blockquote {
+ border-color: #ddd;
+ border-color: rgba(0, 0, 0, 0.15);
+}
+
+.well-large {
+ padding: 24px;
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.well-small {
+ padding: 9px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.fade {
+ opacity: 0;
+ -webkit-transition: opacity 0.15s linear;
+ -moz-transition: opacity 0.15s linear;
+ -o-transition: opacity 0.15s linear;
+ transition: opacity 0.15s linear;
+}
+
+.fade.in {
+ opacity: 1;
+}
+
+.collapse {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ -webkit-transition: height 0.35s ease;
+ -moz-transition: height 0.35s ease;
+ -o-transition: height 0.35s ease;
+ transition: height 0.35s ease;
+}
+
+.collapse.in {
+ height: auto;
+}
+
+.close {
+ float: right;
+ font-size: 20px;
+ font-weight: bold;
+ line-height: 20px;
+ color: #000000;
+ text-shadow: 0 1px 0 #ffffff;
+ opacity: 0.2;
+ filter: alpha(opacity=20);
+}
+
+.close:hover,
+.close:focus {
+ color: #000000;
+ text-decoration: none;
+ cursor: pointer;
+ opacity: 0.4;
+ filter: alpha(opacity=40);
+}
+
+button.close {
+ padding: 0;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
+ -webkit-appearance: none;
+}
+
+.btn {
+ display: inline-block;
+ *display: inline;
+ padding: 4px 12px;
+ margin-bottom: 0;
+ *margin-left: .3em;
+ font-size: 14px;
+ line-height: 20px;
+ color: #333333;
+ text-align: center;
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
+ vertical-align: middle;
+ cursor: pointer;
+ background-color: #f5f5f5;
+ *background-color: #e6e6e6;
+ background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
+ background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
+ background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
+ background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
+ background-repeat: repeat-x;
+ border: 1px solid #cccccc;
+ *border: 0;
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ border-bottom-color: #b3b3b3;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ *zoom: 1;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.btn:hover,
+.btn:focus,
+.btn:active,
+.btn.active,
+.btn.disabled,
+.btn[disabled] {
+ color: #333333;
+ background-color: #e6e6e6;
+ *background-color: #d9d9d9;
+}
+
+.btn:active,
+.btn.active {
+ background-color: #cccccc \9;
+}
+
+.btn:first-child {
+ *margin-left: 0;
+}
+
+.btn:hover,
+.btn:focus {
+ color: #333333;
+ text-decoration: none;
+ background-position: 0 -15px;
+ -webkit-transition: background-position 0.1s linear;
+ -moz-transition: background-position 0.1s linear;
+ -o-transition: background-position 0.1s linear;
+ transition: background-position 0.1s linear;
+}
+
+.btn:focus {
+ outline: thin dotted #333;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+
+.btn.active,
+.btn:active {
+ background-image: none;
+ outline: 0;
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.btn.disabled,
+.btn[disabled] {
+ cursor: default;
+ background-image: none;
+ opacity: 0.65;
+ filter: alpha(opacity=65);
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-large {
+ padding: 11px 19px;
+ font-size: 17.5px;
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.btn-large [class^="icon-"],
+.btn-large [class*=" icon-"] {
+ margin-top: 4px;
+}
+
+.btn-small {
+ padding: 2px 10px;
+ font-size: 11.9px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.btn-small [class^="icon-"],
+.btn-small [class*=" icon-"] {
+ margin-top: 0;
+}
+
+.btn-mini [class^="icon-"],
+.btn-mini [class*=" icon-"] {
+ margin-top: -1px;
+}
+
+.btn-mini {
+ padding: 0 6px;
+ font-size: 10.5px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.btn-block {
+ display: block;
+ width: 100%;
+ padding-right: 0;
+ padding-left: 0;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.btn-block + .btn-block {
+ margin-top: 5px;
+}
+
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+ width: 100%;
+}
+
+.btn-primary.active,
+.btn-warning.active,
+.btn-danger.active,
+.btn-success.active,
+.btn-info.active,
+.btn-inverse.active {
+ color: rgba(255, 255, 255, 0.75);
+}
+
+.btn-primary {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #2f92e7;
+ *background-color: #2f76e7;
+ background-image: -moz-linear-gradient(top, #2fa4e7, #2f76e7);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2fa4e7), to(#2f76e7));
+ background-image: -webkit-linear-gradient(top, #2fa4e7, #2f76e7);
+ background-image: -o-linear-gradient(top, #2fa4e7, #2f76e7);
+ background-image: linear-gradient(to bottom, #2fa4e7, #2f76e7);
+ background-repeat: repeat-x;
+ border-color: #2f76e7 #2f76e7 #1553b5;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2fa4e7', endColorstr='#ff2f76e7', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary:active,
+.btn-primary.active,
+.btn-primary.disabled,
+.btn-primary[disabled] {
+ color: #ffffff;
+ background-color: #2f76e7;
+ *background-color: #1a67e2;
+}
+
+.btn-primary:active,
+.btn-primary.active {
+ background-color: #175dcc \9;
+}
+
+.btn-warning {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #dd5600;
+ *background-color: #dd5600;
+ background-image: -moz-linear-gradient(top, #dd5600, #dd5600);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dd5600), to(#dd5600));
+ background-image: -webkit-linear-gradient(top, #dd5600, #dd5600);
+ background-image: -o-linear-gradient(top, #dd5600, #dd5600);
+ background-image: linear-gradient(to bottom, #dd5600, #dd5600);
+ background-repeat: repeat-x;
+ border-color: #dd5600 #dd5600 #913800;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd5600', endColorstr='#ffdd5600', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-warning:hover,
+.btn-warning:focus,
+.btn-warning:active,
+.btn-warning.active,
+.btn-warning.disabled,
+.btn-warning[disabled] {
+ color: #ffffff;
+ background-color: #dd5600;
+ *background-color: #c44c00;
+}
+
+.btn-warning:active,
+.btn-warning.active {
+ background-color: #aa4200 \9;
+}
+
+.btn-danger {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #c32627;
+ *background-color: #bd362f;
+ background-image: -moz-linear-gradient(top, #c71c22, #bd362f);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c71c22), to(#bd362f));
+ background-image: -webkit-linear-gradient(top, #c71c22, #bd362f);
+ background-image: -o-linear-gradient(top, #c71c22, #bd362f);
+ background-image: linear-gradient(to bottom, #c71c22, #bd362f);
+ background-repeat: repeat-x;
+ border-color: #bd362f #bd362f #802420;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc71c22', endColorstr='#ffbd362f', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-danger:hover,
+.btn-danger:focus,
+.btn-danger:active,
+.btn-danger.active,
+.btn-danger.disabled,
+.btn-danger[disabled] {
+ color: #ffffff;
+ background-color: #bd362f;
+ *background-color: #a9302a;
+}
+
+.btn-danger:active,
+.btn-danger.active {
+ background-color: #942a25 \9;
+}
+
+.btn-success {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #65a643;
+ *background-color: #51a351;
+ background-image: -moz-linear-gradient(top, #73a839, #51a351);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#73a839), to(#51a351));
+ background-image: -webkit-linear-gradient(top, #73a839, #51a351);
+ background-image: -o-linear-gradient(top, #73a839, #51a351);
+ background-image: linear-gradient(to bottom, #73a839, #51a351);
+ background-repeat: repeat-x;
+ border-color: #51a351 #51a351 #387038;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff73a839', endColorstr='#ff51a351', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-success:hover,
+.btn-success:focus,
+.btn-success:active,
+.btn-success.active,
+.btn-success.disabled,
+.btn-success[disabled] {
+ color: #ffffff;
+ background-color: #51a351;
+ *background-color: #499249;
+}
+
+.btn-success:active,
+.btn-success.active {
+ background-color: #408140 \9;
+}
+
+.btn-info {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #6d76b3;
+ *background-color: #2f96b4;
+ background-image: -moz-linear-gradient(top, #9760b3, #2f96b4);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9760b3), to(#2f96b4));
+ background-image: -webkit-linear-gradient(top, #9760b3, #2f96b4);
+ background-image: -o-linear-gradient(top, #9760b3, #2f96b4);
+ background-image: linear-gradient(to bottom, #9760b3, #2f96b4);
+ background-repeat: repeat-x;
+ border-color: #2f96b4 #2f96b4 #1f6377;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9760b3', endColorstr='#ff2f96b4', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-info:hover,
+.btn-info:focus,
+.btn-info:active,
+.btn-info.active,
+.btn-info.disabled,
+.btn-info[disabled] {
+ color: #ffffff;
+ background-color: #2f96b4;
+ *background-color: #2a85a0;
+}
+
+.btn-info:active,
+.btn-info.active {
+ background-color: #24748c \9;
+}
+
+.btn-inverse {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #0f3253;
+ *background-color: #222222;
+ background-image: -moz-linear-gradient(top, #033c73, #222222);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#033c73), to(#222222));
+ background-image: -webkit-linear-gradient(top, #033c73, #222222);
+ background-image: -o-linear-gradient(top, #033c73, #222222);
+ background-image: linear-gradient(to bottom, #033c73, #222222);
+ background-repeat: repeat-x;
+ border-color: #222222 #222222 #000000;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff033c73', endColorstr='#ff222222', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-inverse:hover,
+.btn-inverse:focus,
+.btn-inverse:active,
+.btn-inverse.active,
+.btn-inverse.disabled,
+.btn-inverse[disabled] {
+ color: #ffffff;
+ background-color: #222222;
+ *background-color: #151515;
+}
+
+.btn-inverse:active,
+.btn-inverse.active {
+ background-color: #080808 \9;
+}
+
+button.btn,
+input[type="submit"].btn {
+ *padding-top: 3px;
+ *padding-bottom: 3px;
+}
+
+button.btn::-moz-focus-inner,
+input[type="submit"].btn::-moz-focus-inner {
+ padding: 0;
+ border: 0;
+}
+
+button.btn.btn-large,
+input[type="submit"].btn.btn-large {
+ *padding-top: 7px;
+ *padding-bottom: 7px;
+}
+
+button.btn.btn-small,
+input[type="submit"].btn.btn-small {
+ *padding-top: 3px;
+ *padding-bottom: 3px;
+}
+
+button.btn.btn-mini,
+input[type="submit"].btn.btn-mini {
+ *padding-top: 1px;
+ *padding-bottom: 1px;
+}
+
+.btn-link,
+.btn-link:active,
+.btn-link[disabled] {
+ background-color: transparent;
+ background-image: none;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-link {
+ color: #2fa4e7;
+ cursor: pointer;
+ border-color: transparent;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.btn-link:hover,
+.btn-link:focus {
+ color: #157ab5;
+ text-decoration: underline;
+ background-color: transparent;
+}
+
+.btn-link[disabled]:hover,
+.btn-link[disabled]:focus {
+ color: #333333;
+ text-decoration: none;
+}
+
+.btn-group {
+ position: relative;
+ display: inline-block;
+ *display: inline;
+ *margin-left: .3em;
+ font-size: 0;
+ white-space: nowrap;
+ vertical-align: middle;
+ *zoom: 1;
+}
+
+.btn-group:first-child {
+ *margin-left: 0;
+}
+
+.btn-group + .btn-group {
+ margin-left: 5px;
+}
+
+.btn-toolbar {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ font-size: 0;
+}
+
+.btn-toolbar > .btn + .btn,
+.btn-toolbar > .btn-group + .btn,
+.btn-toolbar > .btn + .btn-group {
+ margin-left: 5px;
+}
+
+.btn-group > .btn {
+ position: relative;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.btn-group > .btn + .btn {
+ margin-left: -1px;
+}
+
+.btn-group > .btn,
+.btn-group > .dropdown-menu,
+.btn-group > .popover {
+ font-size: 14px;
+}
+
+.btn-group > .btn-mini {
+ font-size: 10.5px;
+}
+
+.btn-group > .btn-small {
+ font-size: 11.9px;
+}
+
+.btn-group > .btn-large {
+ font-size: 17.5px;
+}
+
+.btn-group > .btn:first-child {
+ margin-left: 0;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -moz-border-radius-topleft: 4px;
+}
+
+.btn-group > .btn:last-child,
+.btn-group > .dropdown-toggle {
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -moz-border-radius-bottomright: 4px;
+}
+
+.btn-group > .btn.large:first-child {
+ margin-left: 0;
+ -webkit-border-bottom-left-radius: 6px;
+ border-bottom-left-radius: 6px;
+ -webkit-border-top-left-radius: 6px;
+ border-top-left-radius: 6px;
+ -moz-border-radius-bottomleft: 6px;
+ -moz-border-radius-topleft: 6px;
+}
+
+.btn-group > .btn.large:last-child,
+.btn-group > .large.dropdown-toggle {
+ -webkit-border-top-right-radius: 6px;
+ border-top-right-radius: 6px;
+ -webkit-border-bottom-right-radius: 6px;
+ border-bottom-right-radius: 6px;
+ -moz-border-radius-topright: 6px;
+ -moz-border-radius-bottomright: 6px;
+}
+
+.btn-group > .btn:hover,
+.btn-group > .btn:focus,
+.btn-group > .btn:active,
+.btn-group > .btn.active {
+ z-index: 2;
+}
+
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+ outline: 0;
+}
+
+.btn-group > .btn + .dropdown-toggle {
+ *padding-top: 5px;
+ padding-right: 8px;
+ *padding-bottom: 5px;
+ padding-left: 8px;
+ -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.btn-group > .btn-mini + .dropdown-toggle {
+ *padding-top: 2px;
+ padding-right: 5px;
+ *padding-bottom: 2px;
+ padding-left: 5px;
+}
+
+.btn-group > .btn-small + .dropdown-toggle {
+ *padding-top: 5px;
+ *padding-bottom: 4px;
+}
+
+.btn-group > .btn-large + .dropdown-toggle {
+ *padding-top: 7px;
+ padding-right: 12px;
+ *padding-bottom: 7px;
+ padding-left: 12px;
+}
+
+.btn-group.open .dropdown-toggle {
+ background-image: none;
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.btn-group.open .btn.dropdown-toggle {
+ background-color: #e6e6e6;
+}
+
+.btn-group.open .btn-primary.dropdown-toggle {
+ background-color: #2f76e7;
+}
+
+.btn-group.open .btn-warning.dropdown-toggle {
+ background-color: #dd5600;
+}
+
+.btn-group.open .btn-danger.dropdown-toggle {
+ background-color: #bd362f;
+}
+
+.btn-group.open .btn-success.dropdown-toggle {
+ background-color: #51a351;
+}
+
+.btn-group.open .btn-info.dropdown-toggle {
+ background-color: #2f96b4;
+}
+
+.btn-group.open .btn-inverse.dropdown-toggle {
+ background-color: #222222;
+}
+
+.btn .caret {
+ margin-top: 8px;
+ margin-left: 0;
+}
+
+.btn-large .caret {
+ margin-top: 6px;
+}
+
+.btn-large .caret {
+ border-top-width: 5px;
+ border-right-width: 5px;
+ border-left-width: 5px;
+}
+
+.btn-mini .caret,
+.btn-small .caret {
+ margin-top: 8px;
+}
+
+.dropup .btn-large .caret {
+ border-bottom-width: 5px;
+}
+
+.btn-primary .caret,
+.btn-warning .caret,
+.btn-danger .caret,
+.btn-info .caret,
+.btn-success .caret,
+.btn-inverse .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.btn-group-vertical {
+ display: inline-block;
+ *display: inline;
+ /* IE7 inline-block hack */
+
+ *zoom: 1;
+}
+
+.btn-group-vertical > .btn {
+ display: block;
+ float: none;
+ max-width: 100%;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.btn-group-vertical > .btn + .btn {
+ margin-top: -1px;
+ margin-left: 0;
+}
+
+.btn-group-vertical > .btn:first-child {
+ -webkit-border-radius: 4px 4px 0 0;
+ -moz-border-radius: 4px 4px 0 0;
+ border-radius: 4px 4px 0 0;
+}
+
+.btn-group-vertical > .btn:last-child {
+ -webkit-border-radius: 0 0 4px 4px;
+ -moz-border-radius: 0 0 4px 4px;
+ border-radius: 0 0 4px 4px;
+}
+
+.btn-group-vertical > .btn-large:first-child {
+ -webkit-border-radius: 6px 6px 0 0;
+ -moz-border-radius: 6px 6px 0 0;
+ border-radius: 6px 6px 0 0;
+}
+
+.btn-group-vertical > .btn-large:last-child {
+ -webkit-border-radius: 0 0 6px 6px;
+ -moz-border-radius: 0 0 6px 6px;
+ border-radius: 0 0 6px 6px;
+}
+
+.alert {
+ padding: 8px 35px 8px 14px;
+ margin-bottom: 20px;
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+ background-color: #f1ceab;
+ border: 1px solid #efb99e;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.alert,
+.alert h4 {
+ color: #dd5600;
+}
+
+.alert h4 {
+ margin: 0;
+}
+
+.alert .close {
+ position: relative;
+ top: -2px;
+ right: -21px;
+ line-height: 20px;
+}
+
+.alert-success {
+ color: #669533;
+ background-color: #d5ecbf;
+ border-color: #d2e6ab;
+}
+
+.alert-success h4 {
+ color: #669533;
+}
+
+.alert-danger,
+.alert-error {
+ color: #bd4247;
+ background-color: #f2bdb1;
+ border-color: #f0a5a4;
+}
+
+.alert-danger h4,
+.alert-error h4 {
+ color: #bd4247;
+}
+
+.alert-info {
+ color: #178acc;
+ background-color: #a7dff1;
+ border-color: #88e4ec;
+}
+
+.alert-info h4 {
+ color: #178acc;
+}
+
+.alert-block {
+ padding-top: 14px;
+ padding-bottom: 14px;
+}
+
+.alert-block > p,
+.alert-block > ul {
+ margin-bottom: 0;
+}
+
+.alert-block p + p {
+ margin-top: 5px;
+}
+
+.nav {
+ margin-bottom: 20px;
+ margin-left: 0;
+ list-style: none;
+}
+
+.nav > li > a {
+ display: block;
+}
+
+.nav > li > a:hover,
+.nav > li > a:focus {
+ text-decoration: none;
+ background-color: #f5f5f5;
+}
+
+.nav > li > a > img {
+ max-width: none;
+}
+
+.nav > .pull-right {
+ float: right;
+}
+
+.nav-header {
+ display: block;
+ padding: 3px 15px;
+ font-size: 11px;
+ font-weight: bold;
+ line-height: 20px;
+ color: #999999;
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+ text-transform: uppercase;
+}
+
+.nav li + .nav-header {
+ margin-top: 9px;
+}
+
+.nav-list {
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-bottom: 0;
+}
+
+.nav-list > li > a,
+.nav-list .nav-header {
+ margin-right: -15px;
+ margin-left: -15px;
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+}
+
+.nav-list > li > a {
+ padding: 3px 15px;
+}
+
+.nav-list > .active > a,
+.nav-list > .active > a:hover,
+.nav-list > .active > a:focus {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
+ background-color: #2fa4e7;
+}
+
+.nav-list [class^="icon-"],
+.nav-list [class*=" icon-"] {
+ margin-right: 2px;
+}
+
+.nav-list .divider {
+ *width: 100%;
+ height: 1px;
+ margin: 9px 1px;
+ *margin: -5px 0 5px;
+ overflow: hidden;
+ background-color: #e5e5e5;
+ border-bottom: 1px solid #ffffff;
+}
+
+.nav-tabs,
+.nav-pills {
+ *zoom: 1;
+}
+
+.nav-tabs:before,
+.nav-pills:before,
+.nav-tabs:after,
+.nav-pills:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.nav-tabs:after,
+.nav-pills:after {
+ clear: both;
+}
+
+.nav-tabs > li,
+.nav-pills > li {
+ float: left;
+}
+
+.nav-tabs > li > a,
+.nav-pills > li > a {
+ padding-right: 12px;
+ padding-left: 12px;
+ margin-right: 2px;
+ line-height: 14px;
+}
+
+.nav-tabs {
+ border-bottom: 1px solid #ddd;
+}
+
+.nav-tabs > li {
+ margin-bottom: -1px;
+}
+
+.nav-tabs > li > a {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ line-height: 20px;
+ border: 1px solid transparent;
+ -webkit-border-radius: 4px 4px 0 0;
+ -moz-border-radius: 4px 4px 0 0;
+ border-radius: 4px 4px 0 0;
+}
+
+.nav-tabs > li > a:hover,
+.nav-tabs > li > a:focus {
+ border-color: #f5f5f5 #f5f5f5 #dddddd;
+}
+
+.nav-tabs > .active > a,
+.nav-tabs > .active > a:hover,
+.nav-tabs > .active > a:focus {
+ color: #555555;
+ cursor: default;
+ background-color: #ffffff;
+ border: 1px solid #ddd;
+ border-bottom-color: transparent;
+}
+
+.nav-pills > li > a {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ margin-top: 2px;
+ margin-bottom: 2px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+}
+
+.nav-pills > .active > a,
+.nav-pills > .active > a:hover,
+.nav-pills > .active > a:focus {
+ color: #ffffff;
+ background-color: #2fa4e7;
+}
+
+.nav-stacked > li {
+ float: none;
+}
+
+.nav-stacked > li > a {
+ margin-right: 0;
+}
+
+.nav-tabs.nav-stacked {
+ border-bottom: 0;
+}
+
+.nav-tabs.nav-stacked > li > a {
+ border: 1px solid #ddd;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.nav-tabs.nav-stacked > li:first-child > a {
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -moz-border-radius-topleft: 4px;
+}
+
+.nav-tabs.nav-stacked > li:last-child > a {
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -moz-border-radius-bottomleft: 4px;
+}
+
+.nav-tabs.nav-stacked > li > a:hover,
+.nav-tabs.nav-stacked > li > a:focus {
+ z-index: 2;
+ border-color: #ddd;
+}
+
+.nav-pills.nav-stacked > li > a {
+ margin-bottom: 3px;
+}
+
+.nav-pills.nav-stacked > li:last-child > a {
+ margin-bottom: 1px;
+}
+
+.nav-tabs .dropdown-menu {
+ -webkit-border-radius: 0 0 6px 6px;
+ -moz-border-radius: 0 0 6px 6px;
+ border-radius: 0 0 6px 6px;
+}
+
+.nav-pills .dropdown-menu {
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.nav .dropdown-toggle .caret {
+ margin-top: 6px;
+ border-top-color: #2fa4e7;
+ border-bottom-color: #2fa4e7;
+}
+
+.nav .dropdown-toggle:hover .caret,
+.nav .dropdown-toggle:focus .caret {
+ border-top-color: #157ab5;
+ border-bottom-color: #157ab5;
+}
+
+/* move down carets for tabs */
+
+.nav-tabs .dropdown-toggle .caret {
+ margin-top: 8px;
+}
+
+.nav .active .dropdown-toggle .caret {
+ border-top-color: #fff;
+ border-bottom-color: #fff;
+}
+
+.nav-tabs .active .dropdown-toggle .caret {
+ border-top-color: #555555;
+ border-bottom-color: #555555;
+}
+
+.nav > .dropdown.active > a:hover,
+.nav > .dropdown.active > a:focus {
+ cursor: pointer;
+}
+
+.nav-tabs .open .dropdown-toggle,
+.nav-pills .open .dropdown-toggle,
+.nav > li.dropdown.open.active > a:hover,
+.nav > li.dropdown.open.active > a:focus {
+ color: #ffffff;
+ background-color: #999999;
+ border-color: #999999;
+}
+
+.nav li.dropdown.open .caret,
+.nav li.dropdown.open.active .caret,
+.nav li.dropdown.open a:hover .caret,
+.nav li.dropdown.open a:focus .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+ opacity: 1;
+ filter: alpha(opacity=100);
+}
+
+.tabs-stacked .open > a:hover,
+.tabs-stacked .open > a:focus {
+ border-color: #999999;
+}
+
+.tabbable {
+ *zoom: 1;
+}
+
+.tabbable:before,
+.tabbable:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.tabbable:after {
+ clear: both;
+}
+
+.tab-content {
+ overflow: auto;
+}
+
+.tabs-below > .nav-tabs,
+.tabs-right > .nav-tabs,
+.tabs-left > .nav-tabs {
+ border-bottom: 0;
+}
+
+.tab-content > .tab-pane,
+.pill-content > .pill-pane {
+ display: none;
+}
+
+.tab-content > .active,
+.pill-content > .active {
+ display: block;
+}
+
+.tabs-below > .nav-tabs {
+ border-top: 1px solid #ddd;
+}
+
+.tabs-below > .nav-tabs > li {
+ margin-top: -1px;
+ margin-bottom: 0;
+}
+
+.tabs-below > .nav-tabs > li > a {
+ -webkit-border-radius: 0 0 4px 4px;
+ -moz-border-radius: 0 0 4px 4px;
+ border-radius: 0 0 4px 4px;
+}
+
+.tabs-below > .nav-tabs > li > a:hover,
+.tabs-below > .nav-tabs > li > a:focus {
+ border-top-color: #ddd;
+ border-bottom-color: transparent;
+}
+
+.tabs-below > .nav-tabs > .active > a,
+.tabs-below > .nav-tabs > .active > a:hover,
+.tabs-below > .nav-tabs > .active > a:focus {
+ border-color: transparent #ddd #ddd #ddd;
+}
+
+.tabs-left > .nav-tabs > li,
+.tabs-right > .nav-tabs > li {
+ float: none;
+}
+
+.tabs-left > .nav-tabs > li > a,
+.tabs-right > .nav-tabs > li > a {
+ min-width: 74px;
+ margin-right: 0;
+ margin-bottom: 3px;
+}
+
+.tabs-left > .nav-tabs {
+ float: left;
+ margin-right: 19px;
+ border-right: 1px solid #ddd;
+}
+
+.tabs-left > .nav-tabs > li > a {
+ margin-right: -1px;
+ -webkit-border-radius: 4px 0 0 4px;
+ -moz-border-radius: 4px 0 0 4px;
+ border-radius: 4px 0 0 4px;
+}
+
+.tabs-left > .nav-tabs > li > a:hover,
+.tabs-left > .nav-tabs > li > a:focus {
+ border-color: #f5f5f5 #dddddd #f5f5f5 #f5f5f5;
+}
+
+.tabs-left > .nav-tabs .active > a,
+.tabs-left > .nav-tabs .active > a:hover,
+.tabs-left > .nav-tabs .active > a:focus {
+ border-color: #ddd transparent #ddd #ddd;
+ *border-right-color: #ffffff;
+}
+
+.tabs-right > .nav-tabs {
+ float: right;
+ margin-left: 19px;
+ border-left: 1px solid #ddd;
+}
+
+.tabs-right > .nav-tabs > li > a {
+ margin-left: -1px;
+ -webkit-border-radius: 0 4px 4px 0;
+ -moz-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+
+.tabs-right > .nav-tabs > li > a:hover,
+.tabs-right > .nav-tabs > li > a:focus {
+ border-color: #f5f5f5 #f5f5f5 #f5f5f5 #dddddd;
+}
+
+.tabs-right > .nav-tabs .active > a,
+.tabs-right > .nav-tabs .active > a:hover,
+.tabs-right > .nav-tabs .active > a:focus {
+ border-color: #ddd #ddd #ddd transparent;
+ *border-left-color: #ffffff;
+}
+
+.nav > .disabled > a {
+ color: #999999;
+}
+
+.nav > .disabled > a:hover,
+.nav > .disabled > a:focus {
+ text-decoration: none;
+ cursor: default;
+ background-color: transparent;
+}
+
+.navbar {
+ *position: relative;
+ *z-index: 2;
+ margin-bottom: 20px;
+ overflow: visible;
+}
+
+.navbar-inner {
+ min-height: 40px;
+ padding-right: 20px;
+ padding-left: 20px;
+ background-color: #45aeea;
+ background-image: -moz-linear-gradient(top, #54b4eb, #2fa4e7);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#54b4eb), to(#2fa4e7));
+ background-image: -webkit-linear-gradient(top, #54b4eb, #2fa4e7);
+ background-image: -o-linear-gradient(top, #54b4eb, #2fa4e7);
+ background-image: linear-gradient(to bottom, #54b4eb, #2fa4e7);
+ background-repeat: repeat-x;
+ border: 1px solid #1990d5;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff54b4eb', endColorstr='#ff2fa4e7', GradientType=0);
+ *zoom: 1;
+ -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
+ -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
+}
+
+.navbar-inner:before,
+.navbar-inner:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.navbar-inner:after {
+ clear: both;
+}
+
+.navbar .container {
+ width: auto;
+}
+
+.nav-collapse.collapse {
+ height: auto;
+ overflow: visible;
+}
+
+.navbar .brand {
+ display: block;
+ float: left;
+ padding: 15px 20px 15px;
+ margin-left: -20px;
+ font-size: 20px;
+ font-weight: 200;
+ color: #ffffff;
+ text-shadow: 0 1px 0 #54b4eb;
+}
+
+.navbar .brand:hover,
+.navbar .brand:focus {
+ text-decoration: none;
+}
+
+.navbar-text {
+ margin-bottom: 0;
+ line-height: 50px;
+ color: #f5f5f5;
+}
+
+.navbar-link {
+ color: #ffffff;
+}
+
+.navbar-link:hover,
+.navbar-link:focus {
+ color: #ffffff;
+}
+
+.navbar .divider-vertical {
+ height: 50px;
+ margin: 0 9px;
+ border-right: 1px solid #54b4eb;
+ border-left: 1px solid #2fa4e7;
+}
+
+.navbar .btn,
+.navbar .btn-group {
+ margin-top: 10px;
+}
+
+.navbar .btn-group .btn,
+.navbar .input-prepend .btn,
+.navbar .input-append .btn,
+.navbar .input-prepend .btn-group,
+.navbar .input-append .btn-group {
+ margin-top: 0;
+}
+
+.navbar-form {
+ margin-bottom: 0;
+ *zoom: 1;
+}
+
+.navbar-form:before,
+.navbar-form:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.navbar-form:after {
+ clear: both;
+}
+
+.navbar-form input,
+.navbar-form select,
+.navbar-form .radio,
+.navbar-form .checkbox {
+ margin-top: 10px;
+}
+
+.navbar-form input,
+.navbar-form select,
+.navbar-form .btn {
+ display: inline-block;
+ margin-bottom: 0;
+}
+
+.navbar-form input[type="image"],
+.navbar-form input[type="checkbox"],
+.navbar-form input[type="radio"] {
+ margin-top: 3px;
+}
+
+.navbar-form .input-append,
+.navbar-form .input-prepend {
+ margin-top: 5px;
+ white-space: nowrap;
+}
+
+.navbar-form .input-append input,
+.navbar-form .input-prepend input {
+ margin-top: 0;
+}
+
+.navbar-search {
+ position: relative;
+ float: left;
+ margin-top: 10px;
+ margin-bottom: 0;
+}
+
+.navbar-search .search-query {
+ padding: 4px 14px;
+ margin-bottom: 0;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 13px;
+ font-weight: normal;
+ line-height: 1;
+ -webkit-border-radius: 15px;
+ -moz-border-radius: 15px;
+ border-radius: 15px;
+}
+
+.navbar-static-top {
+ position: static;
+ margin-bottom: 0;
+}
+
+.navbar-static-top .navbar-inner {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+ position: fixed;
+ right: 0;
+ left: 0;
+ z-index: 1030;
+ margin-bottom: 0;
+}
+
+.navbar-fixed-top .navbar-inner,
+.navbar-static-top .navbar-inner {
+ border-width: 0 0 1px;
+}
+
+.navbar-fixed-bottom .navbar-inner {
+ border-width: 1px 0 0;
+}
+
+.navbar-fixed-top .navbar-inner,
+.navbar-fixed-bottom .navbar-inner {
+ padding-right: 0;
+ padding-left: 0;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+
+.navbar-static-top .container,
+.navbar-fixed-top .container,
+.navbar-fixed-bottom .container {
+ width: 940px;
+}
+
+.navbar-fixed-top {
+ top: 0;
+}
+
+.navbar-fixed-top .navbar-inner,
+.navbar-static-top .navbar-inner {
+ -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
+}
+
+.navbar-fixed-bottom {
+ bottom: 0;
+}
+
+.navbar-fixed-bottom .navbar-inner {
+ -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
+}
+
+.navbar .nav {
+ position: relative;
+ left: 0;
+ display: block;
+ float: left;
+ margin: 0 10px 0 0;
+}
+
+.navbar .nav.pull-right {
+ float: right;
+ margin-right: 0;
+}
+
+.navbar .nav > li {
+ float: left;
+}
+
+.navbar .nav > li > a {
+ float: none;
+ padding: 15px 15px 15px;
+ color: #ffffff;
+ text-decoration: none;
+ text-shadow: 0 1px 0 #54b4eb;
+}
+
+.navbar .nav .dropdown-toggle .caret {
+ margin-top: 8px;
+}
+
+.navbar .nav > li > a:focus,
+.navbar .nav > li > a:hover {
+ color: #ffffff;
+ text-decoration: none;
+ background-color: #1684c2;
+}
+
+.navbar .nav > .active > a,
+.navbar .nav > .active > a:hover,
+.navbar .nav > .active > a:focus {
+ color: #ffffff;
+ text-decoration: none;
+ background-color: #1684c2;
+ -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
+ -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
+ box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
+}
+
+.navbar .btn-navbar {
+ display: none;
+ float: right;
+ padding: 7px 10px;
+ margin-right: 5px;
+ margin-left: 5px;
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #2fa3e6;
+ *background-color: #1a99e2;
+ background-image: -moz-linear-gradient(top, #3daae9, #1a99e2);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3daae9), to(#1a99e2));
+ background-image: -webkit-linear-gradient(top, #3daae9, #1a99e2);
+ background-image: -o-linear-gradient(top, #3daae9, #1a99e2);
+ background-image: linear-gradient(to bottom, #3daae9, #1a99e2);
+ background-repeat: repeat-x;
+ border-color: #1a99e2 #1a99e2 #126b9e;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3daae9', endColorstr='#ff1a99e2', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
+}
+
+.navbar .btn-navbar:hover,
+.navbar .btn-navbar:focus,
+.navbar .btn-navbar:active,
+.navbar .btn-navbar.active,
+.navbar .btn-navbar.disabled,
+.navbar .btn-navbar[disabled] {
+ color: #ffffff;
+ background-color: #1a99e2;
+ *background-color: #178acc;
+}
+
+.navbar .btn-navbar:active,
+.navbar .btn-navbar.active {
+ background-color: #157ab5 \9;
+}
+
+.navbar .btn-navbar .icon-bar {
+ display: block;
+ width: 18px;
+ height: 2px;
+ background-color: #f5f5f5;
+ -webkit-border-radius: 1px;
+ -moz-border-radius: 1px;
+ border-radius: 1px;
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
+}
+
+.btn-navbar .icon-bar + .icon-bar {
+ margin-top: 3px;
+}
+
+.navbar .nav > li > .dropdown-menu:before {
+ position: absolute;
+ top: -7px;
+ left: 9px;
+ display: inline-block;
+ border-right: 7px solid transparent;
+ border-bottom: 7px solid #ccc;
+ border-left: 7px solid transparent;
+ border-bottom-color: rgba(0, 0, 0, 0.2);
+ content: '';
+}
+
+.navbar .nav > li > .dropdown-menu:after {
+ position: absolute;
+ top: -6px;
+ left: 10px;
+ display: inline-block;
+ border-right: 6px solid transparent;
+ border-bottom: 6px solid #ffffff;
+ border-left: 6px solid transparent;
+ content: '';
+}
+
+.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
+ top: auto;
+ bottom: -7px;
+ border-top: 7px solid #ccc;
+ border-bottom: 0;
+ border-top-color: rgba(0, 0, 0, 0.2);
+}
+
+.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
+ top: auto;
+ bottom: -6px;
+ border-top: 6px solid #ffffff;
+ border-bottom: 0;
+}
+
+.navbar .nav li.dropdown > a:hover .caret,
+.navbar .nav li.dropdown > a:focus .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.navbar .nav li.dropdown.open > .dropdown-toggle,
+.navbar .nav li.dropdown.active > .dropdown-toggle,
+.navbar .nav li.dropdown.open.active > .dropdown-toggle {
+ color: #ffffff;
+ background-color: #1684c2;
+}
+
+.navbar .nav li.dropdown > .dropdown-toggle .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
+.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
+.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.navbar .pull-right > li > .dropdown-menu,
+.navbar .nav > li > .dropdown-menu.pull-right {
+ right: 0;
+ left: auto;
+}
+
+.navbar .pull-right > li > .dropdown-menu:before,
+.navbar .nav > li > .dropdown-menu.pull-right:before {
+ right: 12px;
+ left: auto;
+}
+
+.navbar .pull-right > li > .dropdown-menu:after,
+.navbar .nav > li > .dropdown-menu.pull-right:after {
+ right: 13px;
+ left: auto;
+}
+
+.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
+.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
+ right: 100%;
+ left: auto;
+ margin-right: -1px;
+ margin-left: 0;
+ -webkit-border-radius: 6px 0 6px 6px;
+ -moz-border-radius: 6px 0 6px 6px;
+ border-radius: 6px 0 6px 6px;
+}
+
+.navbar-inverse .navbar-inner {
+ background-color: #034482;
+ background-image: -moz-linear-gradient(top, #04498c, #033c73);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#04498c), to(#033c73));
+ background-image: -webkit-linear-gradient(top, #04498c, #033c73);
+ background-image: -o-linear-gradient(top, #04498c, #033c73);
+ background-image: linear-gradient(to bottom, #04498c, #033c73);
+ background-repeat: repeat-x;
+ border-color: #033464;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff04498c', endColorstr='#ff033c73', GradientType=0);
+}
+
+.navbar-inverse .brand,
+.navbar-inverse .nav > li > a {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+
+.navbar-inverse .brand:hover,
+.navbar-inverse .nav > li > a:hover,
+.navbar-inverse .brand:focus,
+.navbar-inverse .nav > li > a:focus {
+ color: #ffffff;
+}
+
+.navbar-inverse .brand {
+ color: #ffffff;
+}
+
+.navbar-inverse .navbar-text {
+ color: #ffffff;
+}
+
+.navbar-inverse .nav > li > a:focus,
+.navbar-inverse .nav > li > a:hover {
+ color: #ffffff;
+ background-color: #022c55;
+}
+
+.navbar-inverse .nav .active > a,
+.navbar-inverse .nav .active > a:hover,
+.navbar-inverse .nav .active > a:focus {
+ color: #ffffff;
+ background-color: #022c55;
+}
+
+.navbar-inverse .navbar-link {
+ color: #ffffff;
+}
+
+.navbar-inverse .navbar-link:hover,
+.navbar-inverse .navbar-link:focus {
+ color: #ffffff;
+}
+
+.navbar-inverse .divider-vertical {
+ border-right-color: #04498c;
+ border-left-color: #033c73;
+}
+
+.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
+.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
+.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
+ color: #ffffff;
+ background-color: #022c55;
+}
+
+.navbar-inverse .nav li.dropdown > a:hover .caret,
+.navbar-inverse .nav li.dropdown > a:focus .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
+.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
+.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
+ border-top-color: #ffffff;
+ border-bottom-color: #ffffff;
+}
+
+.navbar-inverse .navbar-search .search-query {
+ color: #ffffff;
+ background-color: #ffffff;
+ border-color: #033c73;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
+ -webkit-transition: none;
+ -moz-transition: none;
+ -o-transition: none;
+ transition: none;
+}
+
+.navbar-inverse .navbar-search .search-query:-moz-placeholder {
+ color: #999999;
+}
+
+.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
+ color: #999999;
+}
+
+.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
+ color: #999999;
+}
+
+.navbar-inverse .navbar-search .search-query:focus,
+.navbar-inverse .navbar-search .search-query.focused {
+ padding: 5px 15px;
+ color: #333333;
+ text-shadow: 0 1px 0 #ffffff;
+ background-color: #ffffff;
+ border: 0;
+ outline: 0;
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
+}
+
+.navbar-inverse .btn-navbar {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #033769;
+ *background-color: #022f5a;
+ background-image: -moz-linear-gradient(top, #033c73, #022f5a);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#033c73), to(#022f5a));
+ background-image: -webkit-linear-gradient(top, #033c73, #022f5a);
+ background-image: -o-linear-gradient(top, #033c73, #022f5a);
+ background-image: linear-gradient(to bottom, #033c73, #022f5a);
+ background-repeat: repeat-x;
+ border-color: #022f5a #022f5a #000810;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff033c73', endColorstr='#ff022f5a', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.navbar-inverse .btn-navbar:hover,
+.navbar-inverse .btn-navbar:focus,
+.navbar-inverse .btn-navbar:active,
+.navbar-inverse .btn-navbar.active,
+.navbar-inverse .btn-navbar.disabled,
+.navbar-inverse .btn-navbar[disabled] {
+ color: #ffffff;
+ background-color: #022f5a;
+ *background-color: #022241;
+}
+
+.navbar-inverse .btn-navbar:active,
+.navbar-inverse .btn-navbar.active {
+ background-color: #011528 \9;
+}
+
+.breadcrumb {
+ padding: 8px 15px;
+ margin: 0 0 20px;
+ list-style: none;
+ background-color: #f5f5f5;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.breadcrumb > li {
+ display: inline-block;
+ *display: inline;
+ text-shadow: 0 1px 0 #ffffff;
+ *zoom: 1;
+}
+
+.breadcrumb > li > .divider {
+ padding: 0 5px;
+ color: #ccc;
+}
+
+.breadcrumb > .active {
+ color: #999999;
+}
+
+.pagination {
+ margin: 20px 0;
+}
+
+.pagination ul {
+ display: inline-block;
+ *display: inline;
+ margin-bottom: 0;
+ margin-left: 0;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ *zoom: 1;
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.pagination ul > li {
+ display: inline;
+}
+
+.pagination ul > li > a,
+.pagination ul > li > span {
+ float: left;
+ padding: 4px 12px;
+ line-height: 20px;
+ text-decoration: none;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ border-left-width: 0;
+}
+
+.pagination ul > li > a:hover,
+.pagination ul > li > a:focus,
+.pagination ul > .active > a,
+.pagination ul > .active > span {
+ background-color: #f5f5f5;
+}
+
+.pagination ul > .active > a,
+.pagination ul > .active > span {
+ color: #999999;
+ cursor: default;
+}
+
+.pagination ul > .disabled > span,
+.pagination ul > .disabled > a,
+.pagination ul > .disabled > a:hover,
+.pagination ul > .disabled > a:focus {
+ color: #999999;
+ cursor: default;
+ background-color: transparent;
+}
+
+.pagination ul > li:first-child > a,
+.pagination ul > li:first-child > span {
+ border-left-width: 1px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -moz-border-radius-topleft: 4px;
+}
+
+.pagination ul > li:last-child > a,
+.pagination ul > li:last-child > span {
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ -moz-border-radius-bottomright: 4px;
+}
+
+.pagination-centered {
+ text-align: center;
+}
+
+.pagination-right {
+ text-align: right;
+}
+
+.pagination-large ul > li > a,
+.pagination-large ul > li > span {
+ padding: 11px 19px;
+ font-size: 17.5px;
+}
+
+.pagination-large ul > li:first-child > a,
+.pagination-large ul > li:first-child > span {
+ -webkit-border-bottom-left-radius: 6px;
+ border-bottom-left-radius: 6px;
+ -webkit-border-top-left-radius: 6px;
+ border-top-left-radius: 6px;
+ -moz-border-radius-bottomleft: 6px;
+ -moz-border-radius-topleft: 6px;
+}
+
+.pagination-large ul > li:last-child > a,
+.pagination-large ul > li:last-child > span {
+ -webkit-border-top-right-radius: 6px;
+ border-top-right-radius: 6px;
+ -webkit-border-bottom-right-radius: 6px;
+ border-bottom-right-radius: 6px;
+ -moz-border-radius-topright: 6px;
+ -moz-border-radius-bottomright: 6px;
+}
+
+.pagination-mini ul > li:first-child > a,
+.pagination-small ul > li:first-child > a,
+.pagination-mini ul > li:first-child > span,
+.pagination-small ul > li:first-child > span {
+ -webkit-border-bottom-left-radius: 3px;
+ border-bottom-left-radius: 3px;
+ -webkit-border-top-left-radius: 3px;
+ border-top-left-radius: 3px;
+ -moz-border-radius-bottomleft: 3px;
+ -moz-border-radius-topleft: 3px;
+}
+
+.pagination-mini ul > li:last-child > a,
+.pagination-small ul > li:last-child > a,
+.pagination-mini ul > li:last-child > span,
+.pagination-small ul > li:last-child > span {
+ -webkit-border-top-right-radius: 3px;
+ border-top-right-radius: 3px;
+ -webkit-border-bottom-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ -moz-border-radius-topright: 3px;
+ -moz-border-radius-bottomright: 3px;
+}
+
+.pagination-small ul > li > a,
+.pagination-small ul > li > span {
+ padding: 2px 10px;
+ font-size: 11.9px;
+}
+
+.pagination-mini ul > li > a,
+.pagination-mini ul > li > span {
+ padding: 0 6px;
+ font-size: 10.5px;
+}
+
+.pager {
+ margin: 20px 0;
+ text-align: center;
+ list-style: none;
+ *zoom: 1;
+}
+
+.pager:before,
+.pager:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.pager:after {
+ clear: both;
+}
+
+.pager li {
+ display: inline;
+}
+
+.pager li > a,
+.pager li > span {
+ display: inline-block;
+ padding: 5px 14px;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ -webkit-border-radius: 15px;
+ -moz-border-radius: 15px;
+ border-radius: 15px;
+}
+
+.pager li > a:hover,
+.pager li > a:focus {
+ text-decoration: none;
+ background-color: #f5f5f5;
+}
+
+.pager .next > a,
+.pager .next > span {
+ float: right;
+}
+
+.pager .previous > a,
+.pager .previous > span {
+ float: left;
+}
+
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > span {
+ color: #999999;
+ cursor: default;
+ background-color: #fff;
+}
+
+.modal-backdrop {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1040;
+ background-color: #000000;
+}
+
+.modal-backdrop.fade {
+ opacity: 0;
+}
+
+.modal-backdrop,
+.modal-backdrop.fade.in {
+ opacity: 0.8;
+ filter: alpha(opacity=80);
+}
+
+.modal {
+ position: fixed;
+ top: 10%;
+ left: 50%;
+ z-index: 1050;
+ width: 560px;
+ margin-left: -280px;
+ background-color: #ffffff;
+ border: 1px solid #999;
+ border: 1px solid rgba(0, 0, 0, 0.3);
+ *border: 1px solid #999;
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+ outline: none;
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
+ -webkit-background-clip: padding-box;
+ -moz-background-clip: padding-box;
+ background-clip: padding-box;
+}
+
+.modal.fade {
+ top: -25%;
+ -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
+ -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
+ -o-transition: opacity 0.3s linear, top 0.3s ease-out;
+ transition: opacity 0.3s linear, top 0.3s ease-out;
+}
+
+.modal.fade.in {
+ top: 10%;
+}
+
+.modal-header {
+ padding: 9px 15px;
+ border-bottom: 1px solid #eee;
+}
+
+.modal-header .close {
+ margin-top: 2px;
+}
+
+.modal-header h3 {
+ margin: 0;
+ line-height: 30px;
+}
+
+.modal-body {
+ position: relative;
+ max-height: 400px;
+ padding: 15px;
+ overflow-y: auto;
+}
+
+.modal-form {
+ margin-bottom: 0;
+}
+
+.modal-footer {
+ padding: 14px 15px 15px;
+ margin-bottom: 0;
+ text-align: right;
+ background-color: #f5f5f5;
+ border-top: 1px solid #ddd;
+ -webkit-border-radius: 0 0 6px 6px;
+ -moz-border-radius: 0 0 6px 6px;
+ border-radius: 0 0 6px 6px;
+ *zoom: 1;
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
+ box-shadow: inset 0 1px 0 #ffffff;
+}
+
+.modal-footer:before,
+.modal-footer:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.modal-footer:after {
+ clear: both;
+}
+
+.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;
+}
+
+.tooltip {
+ position: absolute;
+ z-index: 1020;
+ display: block;
+ font-size: 11px;
+ line-height: 1.4;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ visibility: visible;
+}
+
+.tooltip.in {
+ opacity: 0.8;
+ filter: alpha(opacity=80);
+}
+
+.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: 8px;
+ color: #ffffff;
+ text-align: center;
+ text-decoration: none;
+ background-color: #000000;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ 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-top-color: #000000;
+ border-width: 5px 5px 0;
+}
+
+.tooltip.right .tooltip-arrow {
+ top: 50%;
+ left: 0;
+ margin-top: -5px;
+ border-right-color: #000000;
+ border-width: 5px 5px 5px 0;
+}
+
+.tooltip.left .tooltip-arrow {
+ top: 50%;
+ right: 0;
+ margin-top: -5px;
+ border-left-color: #000000;
+ border-width: 5px 0 5px 5px;
+}
+
+.tooltip.bottom .tooltip-arrow {
+ top: 0;
+ left: 50%;
+ margin-left: -5px;
+ border-bottom-color: #000000;
+ border-width: 0 5px 5px;
+}
+
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1010;
+ display: none;
+ max-width: 276px;
+ padding: 1px;
+ text-align: left;
+ white-space: normal;
+ background-color: #ffffff;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ -webkit-background-clip: padding-box;
+ -moz-background-clip: padding;
+ background-clip: padding-box;
+}
+
+.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;
+ font-weight: normal;
+ line-height: 18px;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+
+.popover-title:empty {
+ display: none;
+}
+
+.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 {
+ border-width: 10px;
+ content: "";
+}
+
+.popover.top .arrow {
+ bottom: -11px;
+ left: 50%;
+ margin-left: -11px;
+ border-top-color: #999;
+ border-top-color: rgba(0, 0, 0, 0.25);
+ border-bottom-width: 0;
+}
+
+.popover.top .arrow:after {
+ bottom: 1px;
+ margin-left: -10px;
+ border-top-color: #ffffff;
+ 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, 0.25);
+ border-left-width: 0;
+}
+
+.popover.right .arrow:after {
+ bottom: -10px;
+ left: 1px;
+ border-right-color: #ffffff;
+ border-left-width: 0;
+}
+
+.popover.bottom .arrow {
+ top: -11px;
+ left: 50%;
+ margin-left: -11px;
+ border-bottom-color: #999;
+ border-bottom-color: rgba(0, 0, 0, 0.25);
+ border-top-width: 0;
+}
+
+.popover.bottom .arrow:after {
+ top: 1px;
+ margin-left: -10px;
+ border-bottom-color: #ffffff;
+ border-top-width: 0;
+}
+
+.popover.left .arrow {
+ top: 50%;
+ right: -11px;
+ margin-top: -11px;
+ border-left-color: #999;
+ border-left-color: rgba(0, 0, 0, 0.25);
+ border-right-width: 0;
+}
+
+.popover.left .arrow:after {
+ right: 1px;
+ bottom: -10px;
+ border-left-color: #ffffff;
+ border-right-width: 0;
+}
+
+.thumbnails {
+ margin-left: -20px;
+ list-style: none;
+ *zoom: 1;
+}
+
+.thumbnails:before,
+.thumbnails:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.thumbnails:after {
+ clear: both;
+}
+
+.row-fluid .thumbnails {
+ margin-left: 0;
+}
+
+.thumbnails > li {
+ float: left;
+ margin-bottom: 20px;
+ margin-left: 20px;
+}
+
+.thumbnail {
+ display: block;
+ padding: 4px;
+ line-height: 20px;
+ border: 1px solid #ddd;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
+ -webkit-transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+ transition: all 0.2s ease-in-out;
+}
+
+a.thumbnail:hover,
+a.thumbnail:focus {
+ border-color: #2fa4e7;
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
+}
+
+.thumbnail > img {
+ display: block;
+ max-width: 100%;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.thumbnail .caption {
+ padding: 9px;
+ color: #555555;
+}
+
+.media,
+.media-body {
+ overflow: hidden;
+ *overflow: visible;
+ zoom: 1;
+}
+
+.media,
+.media .media {
+ margin-top: 15px;
+}
+
+.media:first-child {
+ margin-top: 0;
+}
+
+.media-object {
+ display: block;
+}
+
+.media-heading {
+ margin: 0 0 5px;
+}
+
+.media > .pull-left {
+ margin-right: 10px;
+}
+
+.media > .pull-right {
+ margin-left: 10px;
+}
+
+.media-list {
+ margin-left: 0;
+ list-style: none;
+}
+
+.label,
+.badge {
+ display: inline-block;
+ padding: 2px 4px;
+ font-size: 11.844px;
+ font-weight: bold;
+ line-height: 14px;
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ white-space: nowrap;
+ vertical-align: baseline;
+ background-color: #999999;
+}
+
+.label {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.badge {
+ padding-right: 9px;
+ padding-left: 9px;
+ -webkit-border-radius: 9px;
+ -moz-border-radius: 9px;
+ border-radius: 9px;
+}
+
+.label:empty,
+.badge:empty {
+ display: none;
+}
+
+a.label:hover,
+a.label:focus,
+a.badge:hover,
+a.badge:focus {
+ color: #ffffff;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+.label-important,
+.badge-important {
+ background-color: #bd4247;
+}
+
+.label-important[href],
+.badge-important[href] {
+ background-color: #983538;
+}
+
+.label-warning,
+.badge-warning {
+ background-color: #dd5600;
+}
+
+.label-warning[href],
+.badge-warning[href] {
+ background-color: #aa4200;
+}
+
+.label-success,
+.badge-success {
+ background-color: #669533;
+}
+
+.label-success[href],
+.badge-success[href] {
+ background-color: #4c6f26;
+}
+
+.label-info,
+.badge-info {
+ background-color: #178acc;
+}
+
+.label-info[href],
+.badge-info[href] {
+ background-color: #126b9e;
+}
+
+.label-inverse,
+.badge-inverse {
+ background-color: #333333;
+}
+
+.label-inverse[href],
+.badge-inverse[href] {
+ background-color: #1a1a1a;
+}
+
+.btn .label,
+.btn .badge {
+ position: relative;
+ top: -1px;
+}
+
+.btn-mini .label,
+.btn-mini .badge {
+ top: 0;
+}
+
+@-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
+}
+
+@-moz-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
+}
+
+@-ms-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
+}
+
+@-o-keyframes progress-bar-stripes {
+ from {
+ background-position: 0 0;
+ }
+ to {
+ background-position: 40px 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: #f7f7f7;
+ background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
+ background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
+ background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
+ background-repeat: repeat-x;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+}
+
+.progress .bar {
+ float: left;
+ width: 0;
+ height: 100%;
+ font-size: 12px;
+ color: #ffffff;
+ text-align: center;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #0e90d2;
+ background-image: -moz-linear-gradient(top, #149bdf, #0480be);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
+ background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
+ background-image: -o-linear-gradient(top, #149bdf, #0480be);
+ background-image: linear-gradient(to bottom, #149bdf, #0480be);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-transition: width 0.6s ease;
+ -moz-transition: width 0.6s ease;
+ -o-transition: width 0.6s ease;
+ transition: width 0.6s ease;
+}
+
+.progress .bar + .bar {
+ -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+}
+
+.progress-striped .bar {
+ background-color: #149bdf;
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ -webkit-background-size: 40px 40px;
+ -moz-background-size: 40px 40px;
+ -o-background-size: 40px 40px;
+ background-size: 40px 40px;
+}
+
+.progress.active .bar {
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
+ -moz-animation: progress-bar-stripes 2s linear infinite;
+ -ms-animation: progress-bar-stripes 2s linear infinite;
+ -o-animation: progress-bar-stripes 2s linear infinite;
+ animation: progress-bar-stripes 2s linear infinite;
+}
+
+.progress-danger .bar,
+.progress .bar-danger {
+ background-color: #dd514c;
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
+ background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
+}
+
+.progress-danger.progress-striped .bar,
+.progress-striped .bar-danger {
+ background-color: #ee5f5b;
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+
+.progress-success .bar,
+.progress .bar-success {
+ background-color: #5eb95e;
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
+ background-image: linear-gradient(to bottom, #62c462, #57a957);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
+}
+
+.progress-success.progress-striped .bar,
+.progress-striped .bar-success {
+ background-color: #62c462;
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+
+.progress-info .bar,
+.progress .bar-info {
+ background-color: #4bb1cf;
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
+ background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
+}
+
+.progress-info.progress-striped .bar,
+.progress-striped .bar-info {
+ background-color: #5bc0de;
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+
+.progress-warning .bar,
+.progress .bar-warning {
+ background-color: #f16e1a;
+ background-image: -moz-linear-gradient(top, #ff7d2b, #dd5600);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff7d2b), to(#dd5600));
+ background-image: -webkit-linear-gradient(top, #ff7d2b, #dd5600);
+ background-image: -o-linear-gradient(top, #ff7d2b, #dd5600);
+ background-image: linear-gradient(to bottom, #ff7d2b, #dd5600);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff7d2b', endColorstr='#ffdd5600', GradientType=0);
+}
+
+.progress-warning.progress-striped .bar,
+.progress-striped .bar-warning {
+ background-color: #ff7d2b;
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+
+.accordion {
+ margin-bottom: 20px;
+}
+
+.accordion-group {
+ margin-bottom: 2px;
+ border: 1px solid #e5e5e5;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.accordion-heading {
+ border-bottom: 0;
+}
+
+.accordion-heading .accordion-toggle {
+ display: block;
+ padding: 8px 15px;
+}
+
+.accordion-toggle {
+ cursor: pointer;
+}
+
+.accordion-inner {
+ padding: 9px 15px;
+ border-top: 1px solid #e5e5e5;
+}
+
+.carousel {
+ position: relative;
+ margin-bottom: 20px;
+ line-height: 1;
+}
+
+.carousel-inner {
+ position: relative;
+ width: 100%;
+ overflow: hidden;
+}
+
+.carousel-inner > .item {
+ position: relative;
+ display: none;
+ -webkit-transition: 0.6s ease-in-out left;
+ -moz-transition: 0.6s ease-in-out left;
+ -o-transition: 0.6s ease-in-out left;
+ transition: 0.6s ease-in-out left;
+}
+
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+ display: block;
+ line-height: 1;
+}
+
+.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: 40%;
+ left: 15px;
+ width: 40px;
+ height: 40px;
+ margin-top: -20px;
+ font-size: 60px;
+ font-weight: 100;
+ line-height: 30px;
+ color: #ffffff;
+ text-align: center;
+ background: #222222;
+ border: 3px solid #ffffff;
+ -webkit-border-radius: 23px;
+ -moz-border-radius: 23px;
+ border-radius: 23px;
+ opacity: 0.5;
+ filter: alpha(opacity=50);
+}
+
+.carousel-control.right {
+ right: 15px;
+ left: auto;
+}
+
+.carousel-control:hover,
+.carousel-control:focus {
+ color: #ffffff;
+ text-decoration: none;
+ opacity: 0.9;
+ filter: alpha(opacity=90);
+}
+
+.carousel-indicators {
+ position: absolute;
+ top: 15px;
+ right: 15px;
+ z-index: 5;
+ margin: 0;
+ list-style: none;
+}
+
+.carousel-indicators li {
+ display: block;
+ float: left;
+ width: 10px;
+ height: 10px;
+ margin-left: 5px;
+ text-indent: -999px;
+ background-color: #ccc;
+ background-color: rgba(255, 255, 255, 0.25);
+ border-radius: 5px;
+}
+
+.carousel-indicators .active {
+ background-color: #fff;
+}
+
+.carousel-caption {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 15px;
+ background: #333333;
+ background: rgba(0, 0, 0, 0.75);
+}
+
+.carousel-caption h4,
+.carousel-caption p {
+ line-height: 20px;
+ color: #ffffff;
+}
+
+.carousel-caption h4 {
+ margin: 0 0 5px;
+}
+
+.carousel-caption p {
+ margin-bottom: 0;
+}
+
+.hero-unit {
+ padding: 60px;
+ margin-bottom: 30px;
+ font-size: 18px;
+ font-weight: 200;
+ line-height: 30px;
+ color: inherit;
+ background-color: #f5f5f5;
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.hero-unit h1 {
+ margin-bottom: 0;
+ font-size: 60px;
+ line-height: 1;
+ letter-spacing: -1px;
+ color: inherit;
+}
+
+.hero-unit li {
+ line-height: 30px;
+}
+
+.pull-right {
+ float: right;
+}
+
+.pull-left {
+ float: left;
+}
+
+.hide {
+ display: none;
+}
+
+.show {
+ display: block;
+}
+
+.invisible {
+ visibility: hidden;
+}
+
+.affix {
+ position: fixed;
+}
+
+.navbar .brand {
+ padding: 10px 20px 10px;
+ font-family: 'Telex', sans-serif;
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
+}
+
+.navbar li {
+ line-height: 20px;
+}
+
+.navbar .nav > li > a {
+ padding: 10px 10px 10px;
+ font-family: 'Telex', sans-serif;
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
+}
+
+.navbar .search-query {
+ line-height: normal;
+ border: 1px solid #178acc;
+}
+
+.navbar .navbar-text {
+ padding: 19px 10px 18px;
+ line-height: 13px;
+ color: rgba(0, 0, 0, 0.5);
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
+}
+
+.navbar-inverse .navbar-search .search-query {
+ color: #555555;
+}
+
+@media (max-width: 979px) {
+ .navbar .nav-collapse .nav li > a {
+ font-family: 'Telex', sans-serif;
+ font-weight: normal;
+ color: #ffffff;
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
+ }
+ .navbar .nav-collapse .nav li > a:hover {
+ background-color: #2B7CAC;
+ }
+ .navbar .nav-collapse .nav .active > a {
+ background-color: #2B7CAC;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ }
+ .navbar .nav-collapse .dropdown-menu li > a:hover,
+ .navbar .nav-collapse .dropdown-menu li > a:focus,
+ .navbar .nav-collapse .dropdown-submenu:hover > a {
+ background-image: none;
+ }
+ .navbar .nav-collapse .navbar-form,
+ .navbar .nav-collapse .navbar-search {
+ border: none;
+ }
+ .navbar .nav-collapse .nav-header {
+ color: #2B7CAC;
+ }
+ .navbar-inverse .nav-collapse .nav li > a {
+ color: #ffffff;
+ }
+ .navbar-inverse .nav-collapse .nav li > a:hover {
+ background-color: rgba(0, 0, 0, 0.1);
+ }
+ .navbar-inverse .nav-collapse .nav .active > a,
+ .navbar-inverse .nav-collapse .nav > li > a:hover,
+ .navbar-inverse .nav-collapse .dropdown-menu a:hover {
+ background-color: rgba(0, 0, 0, 0.1) !important;
+ }
+}
+
+div.subnav {
+ font-family: 'Telex', sans-serif;
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
+}
+
+div.subnav-fixed {
+ top: 51px;
+}
+
+.btn {
+ background-color: #ffffff;
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(5%, #ffffff), to(#ffffff));
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 5%, #ffffff);
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 5%, #ffffff);
+ background-image: -o-linear-gradient(#ffffff, #ffffff 5%, #ffffff);
+ background-image: linear-gradient(#ffffff, #ffffff 5%, #ffffff);
+ background-repeat: no-repeat;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.btn:hover {
+ background-position: 0 0;
+}
+
+.btn-primary {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #3daae9;
+ *background-color: #2fa4e7;
+ background-image: -moz-linear-gradient(top, #46aeea, #2fa4e7);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#46aeea), to(#2fa4e7));
+ background-image: -webkit-linear-gradient(top, #46aeea, #2fa4e7);
+ background-image: -o-linear-gradient(top, #46aeea, #2fa4e7);
+ background-image: linear-gradient(to bottom, #46aeea, #2fa4e7);
+ background-repeat: repeat-x;
+ border-color: #2fa4e7 #2fa4e7 #157ab5;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff46aeea', endColorstr='#ff2fa4e7', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary:active,
+.btn-primary.active,
+.btn-primary.disabled,
+.btn-primary[disabled] {
+ color: #ffffff;
+ background-color: #2fa4e7;
+ *background-color: #1a99e2;
+}
+
+.btn-primary:active,
+.btn-primary.active {
+ background-color: #178acc \9;
+}
+
+.btn-info {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #9e6ab8;
+ *background-color: #9760b3;
+ background-image: -moz-linear-gradient(top, #a271bb, #9760b3);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#a271bb), to(#9760b3));
+ background-image: -webkit-linear-gradient(top, #a271bb, #9760b3);
+ background-image: -o-linear-gradient(top, #a271bb, #9760b3);
+ background-image: linear-gradient(to bottom, #a271bb, #9760b3);
+ background-repeat: repeat-x;
+ border-color: #9760b3 #9760b3 #6f4086;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa271bb', endColorstr='#ff9760b3', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-info:hover,
+.btn-info:focus,
+.btn-info:active,
+.btn-info.active,
+.btn-info.disabled,
+.btn-info[disabled] {
+ color: #ffffff;
+ background-color: #9760b3;
+ *background-color: #8b51a9;
+}
+
+.btn-info:active,
+.btn-info.active {
+ background-color: #7d4898 \9;
+}
+
+.btn-success {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #7bb33d;
+ *background-color: #73a839;
+ background-image: -moz-linear-gradient(top, #80bb3f, #73a839);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#80bb3f), to(#73a839));
+ background-image: -webkit-linear-gradient(top, #80bb3f, #73a839);
+ background-image: -o-linear-gradient(top, #80bb3f, #73a839);
+ background-image: linear-gradient(to bottom, #80bb3f, #73a839);
+ background-repeat: repeat-x;
+ border-color: #73a839 #73a839 #4c6f26;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff80bb3f', endColorstr='#ff73a839', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-success:hover,
+.btn-success:focus,
+.btn-success:active,
+.btn-success.active,
+.btn-success.disabled,
+.btn-success[disabled] {
+ color: #ffffff;
+ background-color: #73a839;
+ *background-color: #669533;
+}
+
+.btn-success:active,
+.btn-success.active {
+ background-color: #59822c \9;
+}
+
+.btn-warning {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #ec5c00;
+ *background-color: #dd5600;
+ background-image: -moz-linear-gradient(top, #f76000, #dd5600);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f76000), to(#dd5600));
+ background-image: -webkit-linear-gradient(top, #f76000, #dd5600);
+ background-image: -o-linear-gradient(top, #f76000, #dd5600);
+ background-image: linear-gradient(to bottom, #f76000, #dd5600);
+ background-repeat: repeat-x;
+ border-color: #dd5600 #dd5600 #913800;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff76000', endColorstr='#ffdd5600', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-warning:hover,
+.btn-warning:focus,
+.btn-warning:active,
+.btn-warning.active,
+.btn-warning.disabled,
+.btn-warning[disabled] {
+ color: #ffffff;
+ background-color: #dd5600;
+ *background-color: #c44c00;
+}
+
+.btn-warning:active,
+.btn-warning.active {
+ background-color: #aa4200 \9;
+}
+
+.btn-danger {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #d41e24;
+ *background-color: #c71c22;
+ background-image: -moz-linear-gradient(top, #dd1f26, #c71c22);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dd1f26), to(#c71c22));
+ background-image: -webkit-linear-gradient(top, #dd1f26, #c71c22);
+ background-image: -o-linear-gradient(top, #dd1f26, #c71c22);
+ background-image: linear-gradient(to bottom, #dd1f26, #c71c22);
+ background-repeat: repeat-x;
+ border-color: #c71c22 #c71c22 #841317;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd1f26', endColorstr='#ffc71c22', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-danger:hover,
+.btn-danger:focus,
+.btn-danger:active,
+.btn-danger.active,
+.btn-danger.disabled,
+.btn-danger[disabled] {
+ color: #ffffff;
+ background-color: #c71c22;
+ *background-color: #b1191e;
+}
+
+.btn-danger:active,
+.btn-danger.active {
+ background-color: #9a161a \9;
+}
+
+.btn-inverse {
+ color: #ffffff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+ background-color: #034482;
+ *background-color: #033c73;
+ background-image: -moz-linear-gradient(top, #04498c, #033c73);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#04498c), to(#033c73));
+ background-image: -webkit-linear-gradient(top, #04498c, #033c73);
+ background-image: -o-linear-gradient(top, #04498c, #033c73);
+ background-image: linear-gradient(to bottom, #04498c, #033c73);
+ background-repeat: repeat-x;
+ border-color: #033c73 #033c73 #011528;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff04498c', endColorstr='#ff033c73', GradientType=0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+}
+
+.btn-inverse:hover,
+.btn-inverse:focus,
+.btn-inverse:active,
+.btn-inverse.active,
+.btn-inverse.disabled,
+.btn-inverse[disabled] {
+ color: #ffffff;
+ background-color: #033c73;
+ *background-color: #022f5a;
+}
+
+.btn-inverse:active,
+.btn-inverse.active {
+ background-color: #022241 \9;
+}
+
+i[class^="icon-"] {
+ opacity: 0.8;
+}
+
+.pull-right {
+ float: right;
+}
+
+.pull-left {
+ float: left;
+}
+
+.hide {
+ display: none;
+}
+
+.show {
+ display: block;
+}
+
+.invisible {
+ visibility: hidden;
+}
+
+.affix {
+ position: fixed;
+}
\ No newline at end of file
diff --git a/public/css/fontawesome-webfont.afm b/public/css/fontawesome-webfont.afm
new file mode 100644
index 0000000..f9077ca
--- /dev/null
+++ b/public/css/fontawesome-webfont.afm
@@ -0,0 +1,268 @@
+StartFontMetrics 2.0
+Comment Generated by FontForge 20110222
+Comment Creation Date: Sat Apr 20 23:34:00 2013
+FontName fontawesome
+FullName fontawesome
+FamilyName fontawesome
+Weight Book
+Notice (Created by root with FontForge 2.0 (http://fontforge.sf.net))
+ItalicAngle 0
+IsFixedPitch false
+UnderlinePosition -170.667
+UnderlineThickness 85.3333
+Version 001.000
+EncodingScheme ISO10646-1
+FontBBox -1 -151 1125 900
+Descender -2147483648
+StartCharMetrics 249
+C -1 ; WX 1049 ; N glass ; B 54 -150 996 825 ;
+C -1 ; WX 899 ; N music ; B 0 -150 900 825 ;
+C -1 ; WX 974 ; N search ; B 0 -150 975 825 ;
+C -1 ; WX 1049 ; N envelope ; B 0 -75 1050 750 ;
+C -1 ; WX 1049 ; N heart ; B 0 -75 1050 825 ;
+C -1 ; WX 974 ; N star ; B 0 -49 975 882 ;
+C -1 ; WX 974 ; N star-empty ; B 0 -49 975 882 ;
+C -1 ; WX 824 ; N user ; B 0 -75 825 825 ;
+C -1 ; WX 1124 ; N film ; B 0 -150 1125 825 ;
+C -1 ; WX 974 ; N th-large ; B 0 0 975 825 ;
+C -1 ; WX 1049 ; N th ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N th-list ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N ok ; B 70 8 979 705 ;
+C -1 ; WX 824 ; N remove ; B 64 -11 761 686 ;
+C -1 ; WX 974 ; N zoom-in ; B 0 -150 975 825 ;
+C -1 ; WX 974 ; N zoom-out ; B 0 -150 975 825 ;
+C -1 ; WX 899 ; N off ; B 0 -75 900 900 ;
+C -1 ; WX 1049 ; N signal ; B 0 -75 1050 825 ;
+C -1 ; WX 899 ; N cog ; B 0 -75 900 825 ;
+C -1 ; WX 824 ; N trash ; B 0 -75 825 825 ;
+C -1 ; WX 974 ; N home ; B 15 0 960 752 ;
+C -1 ; WX 749 ; N file ; B 0 -75 750 825 ;
+C -1 ; WX 899 ; N time ; B 0 -75 900 825 ;
+C -1 ; WX 1124 ; N road ; B 29 0 1096 750 ;
+C -1 ; WX 974 ; N download-alt ; B 0 -75 975 750 ;
+C -1 ; WX 899 ; N download ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N upload ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N inbox ; B 0 0 900 750 ;
+C -1 ; WX 899 ; N play-circle ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N repeat ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N refresh ; B 0 -75 900 825 ;
+C -1 ; WX 1049 ; N list-alt ; B 0 0 1050 825 ;
+C -1 ; WX 674 ; N lock ; B 0 0 675 825 ;
+C -1 ; WX 1049 ; N flag ; B 37 -75 1050 825 ;
+C -1 ; WX 974 ; N headphones ; B 0 0 975 825 ;
+C -1 ; WX 449 ; N volume-off ; B 0 18 450 732 ;
+C -1 ; WX 674 ; N volume-down ; B 0 18 675 732 ;
+C -1 ; WX 974 ; N volume-up ; B 0 -42 975 792 ;
+C -1 ; WX 824 ; N qrcode ; B 0 0 825 825 ;
+C -1 ; WX 1049 ; N barcode ; B 0 -75 1050 825 ;
+C -1 ; WX 899 ; N tag ; B 0 -63 888 825 ;
+C -1 ; WX 1124 ; N tags ; B 0 -63 1113 825 ;
+C -1 ; WX 974 ; N book ; B -1 -75 976 825 ;
+C -1 ; WX 749 ; N bookmark ; B 0 -62 750 825 ;
+C -1 ; WX 974 ; N print ; B 0 -75 975 825 ;
+C -1 ; WX 1124 ; N camera ; B 0 -75 1125 900 ;
+C -1 ; WX 974 ; N font ; B 0 -75 975 825 ;
+C -1 ; WX 824 ; N bold ; B 0 -75 825 825 ;
+C -1 ; WX 599 ; N italic ; B 0 -75 600 825 ;
+C -1 ; WX 1049 ; N text-height ; B 0 -75 1048 825 ;
+C -1 ; WX 899 ; N text-width ; B 0 -74 900 825 ;
+C -1 ; WX 1049 ; N align-left ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N align-center ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N align-right ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N align-justify ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N list ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N indent-left ; B 0 0 1050 825 ;
+C -1 ; WX 1049 ; N indent-right ; B 0 0 1050 825 ;
+C -1 ; WX 1124 ; N facetime-video ; B 0 0 1125 751 ;
+C -1 ; WX 1124 ; N picture ; B 0 -75 1125 825 ;
+C -1 ; WX 899 ; N pencil ; B 0 -75 888 813 ;
+C -1 ; WX 599 ; N map-marker ; B 0 -75 600 825 ;
+C -1 ; WX 899 ; N adjust ; B 0 -75 900 825 ;
+C -1 ; WX 599 ; N tint ; B 0 0 600 863 ;
+C -1 ; WX 1049 ; N edit ; B 0 0 1046 825 ;
+C -1 ; WX 974 ; N share ; B 0 0 975 900 ;
+C -1 ; WX 974 ; N check ; B 0 0 975 825 ;
+C -1 ; WX 1049 ; N move ; B 0 -150 1050 900 ;
+C -1 ; WX 599 ; N step-backward ; B 0 -76 600 826 ;
+C -1 ; WX 1049 ; N fast-backward ; B 0 -76 1050 826 ;
+C -1 ; WX 974 ; N backward ; B 71 -76 975 826 ;
+C -1 ; WX 824 ; N play ; B 0 -80 825 830 ;
+C -1 ; WX 899 ; N pause ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N stop ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N forward ; B 0 -76 904 826 ;
+C -1 ; WX 1049 ; N fast-forward ; B 0 -76 1050 826 ;
+C -1 ; WX 599 ; N step-forward ; B 0 -76 600 826 ;
+C -1 ; WX 900 ; N eject ; B -1 0 902 754 ;
+C -1 ; WX 674 ; N chevron-left ; B 31 -44 607 869 ;
+C -1 ; WX 674 ; N chevron-right ; B 68 -44 644 869 ;
+C -1 ; WX 899 ; N plus-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N minus-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N remove-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N ok-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N question-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N info-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N screenshot ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N remove-circle ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N ok-circle ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N ban-circle ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N arrow-left ; B 37 -119 900 794 ;
+C -1 ; WX 899 ; N arrow-right ; B 0 -119 863 794 ;
+C -1 ; WX 974 ; N arrow-up ; B 31 -75 944 788 ;
+C -1 ; WX 974 ; N arrow-down ; B 31 -44 944 825 ;
+C -1 ; WX 1049 ; N share-alt ; B 0 -75 1050 863 ;
+C -1 ; WX 899 ; N resize-full ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N resize-small ; B 7 -68 893 818 ;
+C -1 ; WX 824 ; N plus ; B 0 0 825 825 ;
+C -1 ; WX 824 ; N minus ; B 0 299 825 525 ;
+C -1 ; WX 974 ; N asterisk ; B 69 -75 906 825 ;
+C -1 ; WX 899 ; N exclamation-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N gift ; B 0 0 900 788 ;
+C -1 ; WX 1049 ; N leaf ; B 0 0 1050 825 ;
+C -1 ; WX 824 ; N fire ; B 0 -150 825 900 ;
+C -1 ; WX 1049 ; N eye-open ; B 0 0 1050 675 ;
+C -1 ; WX 1049 ; N eye-close ; B 0 -57 1050 732 ;
+C -1 ; WX 1049 ; N warning-sign ; B -1 -75 1051 900 ;
+C -1 ; WX 824 ; N plane ; B 0 0 819 819 ;
+C -1 ; WX 974 ; N calendar ; B 0 -150 975 900 ;
+C -1 ; WX 1049 ; N random ; B 0 -57 1050 882 ;
+C -1 ; WX 1049 ; N comment ; B 0 -151 1050 750 ;
+C -1 ; WX 899 ; N magnet ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N chevron-up ; B 31 68 944 644 ;
+C -1 ; WX 974 ; N chevron-down ; B 31 31 944 607 ;
+C -1 ; WX 1124 ; N retweet ; B 0 -1 1125 675 ;
+C -1 ; WX 974 ; N shopping-cart ; B 0 -75 975 750 ;
+C -1 ; WX 974 ; N folder-close ; B 0 0 975 825 ;
+C -1 ; WX 1124 ; N folder-open ; B 0 0 1101 825 ;
+C -1 ; WX 449 ; N resize-vertical ; B 37 -150 413 900 ;
+C -1 ; WX 1049 ; N resize-horizontal ; B 0 187 1050 563 ;
+C -1 ; WX 1124 ; N bar-chart ; B 0 -75 1125 825 ;
+C -1 ; WX 899 ; N twitter-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N facebook-sign ; B 0 -75 900 825 ;
+C -1 ; WX 1049 ; N camera-retro ; B 0 -75 1050 825 ;
+C -1 ; WX 1049 ; N key ; B 0 -108 986 825 ;
+C -1 ; WX 1124 ; N cogs ; B 0 -142 1125 891 ;
+C -1 ; WX 1049 ; N comments ; B 0 -76 1050 750 ;
+C -1 ; WX 899 ; N thumbs-up ; B 0 -75 900 900 ;
+C -1 ; WX 899 ; N thumbs-down ; B 0 -150 900 825 ;
+C -1 ; WX 524 ; N star-half ; B 0 -49 488 882 ;
+C -1 ; WX 1049 ; N heart-empty ; B 0 -75 1050 825 ;
+C -1 ; WX 974 ; N signout ; B 0 0 919 750 ;
+C -1 ; WX 899 ; N linkedin-sign ; B 0 -75 900 825 ;
+C -1 ; WX 674 ; N pushpin ; B 0 -150 675 825 ;
+C -1 ; WX 1049 ; N external-link ; B 0 0 1050 900 ;
+C -1 ; WX 899 ; N signin ; B 0 0 900 750 ;
+C -1 ; WX 974 ; N trophy ; B 0 -75 975 825 ;
+C -1 ; WX 899 ; N github-sign ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N upload-alt ; B 0 -75 975 788 ;
+C -1 ; WX 899 ; N lemon ; B 0 -75 900 825 ;
+C -1 ; WX 824 ; N phone ; B 0 0 825 825 ;
+C -1 ; WX 974 ; N check-empty ; B 0 0 825 825 ;
+C -1 ; WX 749 ; N bookmark-empty ; B 0 -62 750 825 ;
+C -1 ; WX 899 ; N phone-sign ; B 0 -75 900 825 ;
+C -1 ; WX 1124 ; N twitter ; B 0 -75 1099 825 ;
+C -1 ; WX 449 ; N facebook ; B 0 -75 451 825 ;
+C -1 ; WX 899 ; N github ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N unlock ; B 0 0 975 825 ;
+C -1 ; WX 1124 ; N credit-card ; B 0 -75 1125 825 ;
+C -1 ; WX 824 ; N rss ; B 0 0 825 825 ;
+C -1 ; WX 899 ; N hdd ; B 0 0 900 750 ;
+C -1 ; WX 1049 ; N bullhorn ; B 0 -76 1050 825 ;
+C -1 ; WX 974 ; N bell ; B 0 -150 975 900 ;
+C -1 ; WX 899 ; N certificate ; B -1 -76 901 826 ;
+C -1 ; WX 1049 ; N hand-right ; B 0 -75 1050 825 ;
+C -1 ; WX 1049 ; N hand-left ; B 0 -75 1050 825 ;
+C -1 ; WX 899 ; N hand-up ; B 0 -150 900 900 ;
+C -1 ; WX 899 ; N hand-down ; B 0 -150 900 900 ;
+C -1 ; WX 899 ; N circle-arrow-left ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N circle-arrow-right ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N circle-arrow-up ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N circle-arrow-down ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N globe ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N wrench ; B 12 -138 974 825 ;
+C -1 ; WX 1049 ; N tasks ; B 0 0 1050 825 ;
+C -1 ; WX 824 ; N filter ; B -1 -75 826 750 ;
+C -1 ; WX 1049 ; N briefcase ; B 0 -75 1050 825 ;
+C -1 ; WX 899 ; N fullscreen ; B 0 -75 900 825 ;
+C -1 ; WX 1124 ; N group ; B 0 -150 1125 900 ;
+C -1 ; WX 974 ; N link ; B 9 -66 966 891 ;
+C -1 ; WX 1124 ; N cloud ; B 0 0 1125 825 ;
+C -1 ; WX 974 ; N beaker ; B 59 -75 915 825 ;
+C -1 ; WX 1049 ; N cut ; B -1 -75 1050 750 ;
+C -1 ; WX 1049 ; N copy ; B 0 -150 1050 900 ;
+C -1 ; WX 824 ; N paper-clip ; B 2 -73 823 823 ;
+C -1 ; WX 899 ; N save ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N sign-blank ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N reorder ; B 0 0 900 750 ;
+C -1 ; WX 1049 ; N list-ul ; B 0 -38 1050 788 ;
+C -1 ; WX 1049 ; N list-ol ; B 8 -150 1050 895 ;
+C -1 ; WX 1049 ; N strikethrough ; B 0 -75 1050 825 ;
+C -1 ; WX 899 ; N underline ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N table ; B 0 0 975 825 ;
+C -1 ; WX 974 ; N magic ; B 15 -60 975 900 ;
+C -1 ; WX 1049 ; N truck ; B 37 -75 1050 750 ;
+C -1 ; WX 899 ; N pinterest ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N pinterest-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N google-plus-sign ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N google-plus ; B 0 -150 975 825 ;
+C -1 ; WX 1124 ; N money ; B 0 0 1125 750 ;
+C -1 ; WX 599 ; N caret-down ; B 0 187 600 525 ;
+C -1 ; WX 599 ; N caret-up ; B 0 149 600 488 ;
+C -1 ; WX 374 ; N caret-left ; B 37 74 375 675 ;
+C -1 ; WX 374 ; N caret-right ; B 0 74 338 675 ;
+C -1 ; WX 974 ; N columns ; B 0 -75 975 825 ;
+C -1 ; WX 599 ; N sort ; B 0 -38 600 788 ;
+C -1 ; WX 599 ; N sort-down ; B 0 -38 600 300 ;
+C -1 ; WX 599 ; N sort-up ; B 0 449 600 788 ;
+C -1 ; WX 1049 ; N envelope-alt ; B 0 -75 1050 750 ;
+C -1 ; WX 807 ; N linkedin ; B 0 0 808 804 ;
+C -1 ; WX 899 ; N undo ; B 0 -75 900 825 ;
+C -1 ; WX 1049 ; N legal ; B 23 -138 1038 877 ;
+C -1 ; WX 1049 ; N dashboard ; B 0 -75 1050 750 ;
+C -1 ; WX 1049 ; N comment-alt ; B 0 -150 1050 750 ;
+C -1 ; WX 1049 ; N comments-alt ; B 0 -76 1050 750 ;
+C -1 ; WX 524 ; N bolt ; B -1 -150 525 825 ;
+C -1 ; WX 1049 ; N sitemap ; B 0 -75 1050 825 ;
+C -1 ; WX 974 ; N umbrella ; B -1 -75 975 863 ;
+C -1 ; WX 1049 ; N paste ; B 0 -150 1050 900 ;
+C -1 ; WX 599 ; N lightbulb ; B 0 -75 600 825 ;
+C -1 ; WX 1049 ; N exchange ; B 0 -57 1050 732 ;
+C -1 ; WX 1124 ; N cloud-download ; B 0 0 1125 825 ;
+C -1 ; WX 1124 ; N cloud-upload ; B 0 0 1125 825 ;
+C -1 ; WX 824 ; N user-md ; B 0 -75 825 825 ;
+C -1 ; WX 824 ; N stethoscope ; B 0 -75 825 825 ;
+C -1 ; WX 1049 ; N suitcase ; B 0 -75 1050 825 ;
+C -1 ; WX 974 ; N bell-alt ; B 0 -150 975 900 ;
+C -1 ; WX 1124 ; N coffee ; B 0 -75 1088 750 ;
+C -1 ; WX 824 ; N food ; B 0 -150 825 900 ;
+C -1 ; WX 749 ; N file-alt ; B 0 -75 750 825 ;
+C -1 ; WX 824 ; N building ; B 0 -150 825 900 ;
+C -1 ; WX 824 ; N hospital ; B 0 -150 825 900 ;
+C -1 ; WX 1124 ; N ambulance ; B 37 -75 1125 825 ;
+C -1 ; WX 1049 ; N medkit ; B 0 -75 1050 825 ;
+C -1 ; WX 1124 ; N fighter-jet ; B 0 74 1125 750 ;
+C -1 ; WX 974 ; N beer ; B 37 0 975 825 ;
+C -1 ; WX 899 ; N h-sign ; B 0 -75 900 825 ;
+C -1 ; WX 899 ; N plus-sign-alt ; B 0 -75 900 825 ;
+C -1 ; WX 599 ; N double-angle-left ; B 26 45 593 630 ;
+C -1 ; WX 599 ; N double-angle-right ; B 7 45 574 630 ;
+C -1 ; WX 674 ; N double-angle-up ; B 45 82 630 649 ;
+C -1 ; WX 674 ; N double-angle-down ; B 45 101 630 668 ;
+C -1 ; WX 374 ; N angle-left ; B 26 45 368 630 ;
+C -1 ; WX 374 ; N angle-right ; B 7 45 349 630 ;
+C -1 ; WX 674 ; N angle-up ; B 45 157 630 499 ;
+C -1 ; WX 674 ; N angle-down ; B 45 176 630 518 ;
+C -1 ; WX 1124 ; N desktop ; B 0 -75 1125 900 ;
+C -1 ; WX 1124 ; N laptop ; B 0 0 1125 750 ;
+C -1 ; WX 674 ; N tablet ; B 0 0 675 825 ;
+C -1 ; WX 449 ; N mobile-phone ; B 0 0 450 750 ;
+C -1 ; WX 899 ; N circle-blank ; B 0 -75 900 825 ;
+C -1 ; WX 974 ; N quote-left ; B 0 0 975 825 ;
+C -1 ; WX 974 ; N quote-right ; B 0 0 975 825 ;
+C -1 ; WX 918 ; N spinner ; B 0 -75 900 863 ;
+C -1 ; WX 899 ; N circle ; B 0 -75 900 825 ;
+C -1 ; WX 1049 ; N reply ; B 0 -75 1050 863 ;
+C -1 ; WX 974 ; N github-alt ; B 0 -75 975 750 ;
+C -1 ; WX 974 ; N folder-close-alt ; B 0 0 975 825 ;
+C -1 ; WX 1124 ; N folder-open-alt ; B 0 0 1119 825 ;
+EndCharMetrics
+EndFontMetrics
diff --git a/public/css/fontawesome-webfont.eot b/public/css/fontawesome-webfont.eot
new file mode 100644
index 0000000000000000000000000000000000000000..84eb0940e370fecc66c2810817606dd519ec0d2b
GIT binary patch
literal 112126
zcmafaV{~Rsw{2|Od17^pj&0jX$F^2{{<+JN=Cb>pT5LE9pA{1ne9DObh@fW=>`nPKLh&
z21e$;eE$O4I&cCUY;B!j$b@X|+#SqK&73#^|H>E}0Swl>@k%JDCCgktb^FU}_9t
zqWdf7zrX>MW=>9aob>en=r;KWLg#2gXJhO{1w;0)&1hL@nf@N@-?VgpqhiK3#twf4
z{%eo_!py+P$iT$J^#5d}|4T_GVq+v^Yi(_8zQ
zXAEEj7#W-V$6Q9=$-&$WpvCY{Az9g3*_oID4FA0U*Iegs<&11?tla<4Qd#}K7X0g6
z|LMp7W)&2)bpv?PG686rSbqW-IsR6dk(HSZ;QilO~}N|5PMlV`2+n{44Pv
zZ*Z}mhwoc}T#sJFyzeNCT23CguhcSOsjQ@jL)Y;1F
zU+1O#$H#x4_kW`FtX%r%fBiDpqFscw=y>ruramz
z+wcF5nLCP_yBQnFn>!hr0ZjC*9F6~-P_Z#GcCa$HF_yP=H2v^6rfF$E|&>Dw6T
zI~e`%z&{omIy*T0CHR+lf7kx!+{FB^d}CubV?!7}5TH6>pfOjOHZ)cTJ{NFvUh!E)
z)I|Mt%l8AZugjpzB=V70@oBgBp*%|*>zN0lUz0DxN*G21M&6(Bu+|^b60)z_u0gwhe@%&
zl`F9unFHF!2)7j>RmHZFk3~ujUZ8}2Yao^NXM#du@k5&0CM#Z+W}R69n56>h_sZ${
zCSc-XE&YlGoCui;BFmj(yi>yb=|Xv1i%gT|Mb&CS%CmWA+`CnN!zUWO$ML(=@s8<{
z8*5wbJ{M!j6O7B@FEOAFe#AK_XD2(deYRhB;>Co;N71L)ukPS4BOyy%(=iYl8IpOQ
z*IY_F*&xyoxdHo_B@tLuhGy0YJj^KGf9LwIedhraO?Nc-bf^SODKBUS!N|4>{T49r
zs37WU)(r%3xxpT_kkH!_=VF`P`(MNRI35yNrj|${RV2@SYdB8wIG?uDoEAF0HrF(1
z2XX9IxM6r)haBOP
zzZH8#dmpKG!GCheBk8mQjm>W+{DAEq9zHg_*zhV?J^<$k&-rFfuRi_c0~jrMV@O_h
zi2pY6nbgN}&g>SZj8WkdO5fp|D>l8;Tp(|sOSL=X${XkjH<$}hmeLP8%v1dZ{X-gz
zP9>9(*~Pv6!Bx4M(jQFuUB`FjWUXdTq*0MpU|ENW^Nj2TLbL({5|?o{Bc)@ZB3an6mr#GqB!0cVzWALfD*GyQHwPZA$=1+2t}#I
z0AWVAGWO(<+Y~M_9+iz|HtT&jIWASWJwPTyHpX)|Xci8lk}Y}W&~mjMcbhX$#_RE<
zfV%&6+{AbG+@_a9Zh3F!XTZ|b#F8S+O@p03g!dSsC!IE-*-tlyUr-G%>#2zCkH4=*
z4s#XW!uIl_zUCHj5i@zc~DoW7TZzS
zuYn_DC}kF^qBN5aL8N}0DuxG_dtD-eEK(KnF0%>hrXyu-k{l>wHbT=;9MpQs!ydYzU5}rkM@D=Dv*42ddamt$a;MRS$#A=%
ztpbKHKeI(AkBMtW;(yQQiYyWv2vW>{FHeuF?k>OFV(-!!v(Z{CU&R>z!0CDqAjahT
zD07)73iCN2a*9%|Fu;-!`eDCFM)x*Ou9>7t^(S6Ph{_2P3te(68h*z#PzMzpDO$)wcz!i!0E??30X^$OGxPWhgXg@kbBk|W#vsAA-
zO`(B|9A@c(`x(sVJ+VMO5EfrrzCcwv?bzOz(kbgL+cECC3=G`1p%clpb#th
zrNSuxV@nreQe%RdPi;chQhcC-Vmo#dg+kvyir
zm~$6Q78ZD{(^6?)Wtr_y5Zd;Bm&+XQNYQr+bo~O<
z1xSPOa&93w3e7gFC>3&@??m}sFryi`d4eV4A@|Kgs+L5r%32qZPTwYbAeM?^8t()A
zN^S;_VRk>1SMsCUN~I&@I7Wm>q^^5^f<;OFFATnRLA*Id-6PKAp((tRA;UUUUHRH|
z9gJDx59|H9?q3MdCTb1-^|uca7Yj+{zg7<07>XlW<&)C9`aFh^7mY$hvH=m_jQ2RN
zf(5$>?maVR*_~XZk^%8anm^DsB>);a6ED*<{0Gu+N3w~uJ0&@h0+X}Tg{b(yzhCy}
z6<-Ysw(j$RirVpB
zj5|D2FZW5_knU+c7##gHX&F{XJPF>8qR(ZRV}1SIA-H9~2)!AN?KRq}l`s~;D?
za(XU(&@0C5@QcrW5yJ9!vp$D7+K=07T*}A0(j^k=)wj^I#2db(sEIj
zT&y2M(fHvyfBcpGx^_+yLHU3X2WCoTih#HlDeE6uZR)EfNh_skp~I8iRM@7rZ6x|3
zHuV9_7cuu~h8RAq*FPK~7MWOa+u?n0gp+@4@7M`JzSw^;0k}1g8*C9GVBXQSLJ!Mz
z$%uZyow#Q-&{e_-wN`kOs6WRogIXezY9_&`n8A3iE^^7V#>@?!-rHm$~|IVz?lSSXs~0j%tH71eavIRu^xW)9rYVdPnsOK4e6D
zB_@K&YjVC8A`amA7>>mH)V7uNubt!V)O_q8?CyRMA`8n#9{SHPfR2g6MeSsp2GN6s
z+OtiHTPG9aqf>ghoNWfcKQsO2R8&|iPI
zPt^R}$f$k0WOK9zacMhxOX|W9Gni~_S2aoAsvtW<~lR|cs@pn2&T+9foO0N?0EytP3>0N=5?R3
zs7#e!Yk7tIZcA<#Z;W&&tb362Q{|u`Yd4GLiQ7ay(0FzowCX$FAq}tlc{dfA!@#{G
zIX+VH=>x+qX33#cm^)QSS9#^b%bQ#X@=1-o{$#&bjvU1n8m13^n4+r!R-gE8$kd4|
zxs%57K5?d=y|R_aDX}F#%wdN15AyU$NV3N<~^s`
zFK9mEn;r$sAdvw#Y=`$}cXIGxhRJr>5$_+c!b$XVK(W+?4l(3fWS&wd&lFJT-&~d}
z^s^%}AvL$DQcwG{0?$_#N@=sbf$|MJ<*&eCpHR5KhnlN=I69sw%9`RLYU{8*`S$I7gaHFlK?C$^(4?>BgoSVwA`tAyXOs>OtpL>M;
zuC?$b;~R8y_qfv(+F6`>+(|Gm#GO^kiSPEGNa(E~#nhfcOR}YN2}z)o!n(iEa63ur
z5^jS;-9d$O>?B}bZ^A-6s^2mgPG%%KHZAEnffJPtsgX|QTRjB=$yxxokdX5~xvPbh
zRqMQFl9LTu3b7Hk#U2*gDa$)UvD)7{dt*-&hCfh`Z`_oumX-vDkY8$_On7PR~rZo2-)W!sb_rUXl<;ei22RZC=S+gM>t`H9{
zh_cMwaVd6+NYHmoCLVftX*_`U;N^);Tv^%UGy}6rXRee0t?0Ednm(&B?Xrw;lj5Gl7!QqB;EJJnl8)
z6#Ia>mozmD;_3gBn*dPg=y$DJJ`8ZRuf6jMu%&y!
zsdN2VRq80mEN&H=X);D6njYI}Y^@#?ykrz2I+<@QF(+DF)5YR%+4b!{9Npedrk0l(
znU2<8G#n$H(|Qv)rHi{FP3Og=M_A(0*Zz^T&l-6aU5#~x5
zH)`YtO>4DFQ1^UdiPV9oPadM51L%4=(bJLk%f3}dJ#uO;HY{hd+w&lH&jmJBhwo$(
zsR8o~wa)#}qW)`#l*!7S5Dq1jS%OvTw+4;>k!$Jo^iQG~X8EkHFvl~|zGLnOR^pt*
zV-hPFgqNBZ2Z{R0K+8?t45%p!)ujYy6C$-mEWOF=AVf+!+YU#Y+!px)^FXY=PDiV%Lmn^
z1Do)5<+dp}dy#wz%peT)6rdFr%6_gdyEF)Szhd!u2!
zr?ngY4E03GX=&!LFpb0^4Pb)mgZfArermWdFN(GM^6ho)_1YpsT0iJQAE@WC>{NLn
zP9@Q5VaI*)JxEkaL0j>DgX->Xw>8+o@9=zs#&*2FEZVbvOKFW*u@?%JAMo?6mIiM2Q79l_nhxi~kf!R9RZ6D^%{1og^=<7e7pHb*$;MX>f=_
z&?ES%JHnVcZ*-@IO4I^t0CW`KQI&Xvwi)1o&F*<$7VNtmYLVfs?GahgnXN({IV~1<
zBMh?lE`q2r=a@u8HCbVXuiuuKqtGekFS5mMF0`A1$AY6&VmIQM+r5n^FU6}&ZiuvT
z`X&f7C)7QnoCJZi8VUl9DKweUdFid^&W?NV9f6mN3w$hc&*Ba#)ks%?D5k@6#7|G=
zXi=si$NOOAa1^{Dm7|T_s1{lDJ2e5dV9cHiH_wB)HGH#x620fn*12}G`X(xn|D>z2a!)J3YOq26^A2D6$Js?%MHSv|n4NvR
z7b016gu8cVJgcd$gJYn0f(BpwDyhxSz-R_vYxS*S4d!bR6%c0=?O2Vkq_cP-yK
zfb+&WuG5?s(+Vsmr*sUC)E5Lkk<}NG?TOe{VMA3?=ug2ZjMP=y6freMGl_SNHIH5u
zp{Bl$Kjv3%X!jO_eWks26IGP|`WZ#`3Qw7N?5o=d-23LGDzRGWljV74DhpR%)l%-#
zk20#5QK*z0ThhFI%&kO)s}a9{MQl0a*II7X=v>3Cik+T=jh+j9^_?VuI(|tC)M>vz
zr-e}^=kl%j=12IXWLxt!e6}dFf_Fk>N%G>S-gu5a8Q@OzjJmLci4}DP5>m$ZjVUzc
zjf~o6T{J)y-rejp-*YVgfTRbuNy+o0rSI3=5%eFyK(IH~%kBvY?JJQQACcKE|qk
zypS=$x91_42c5z*@<+m<&a7m{Bzn>K~4E9v*6
zOJqU7)S~@Txhlk$fNj^&URI6vQG2Z}p+4TRU8@!$Dhi+!2SyEx@a!R%c_-l@*Ejv>
z6hyCVQ?}n>U66a-5GQEaGOZL%>=vi}IJ>|hl+Vi?I*i9vs#>D*-n#r<8eP%58sE}@
z2~^34GJ$KDqqX&!Vz;B;qs8iVp0`u34aeYsQQmkR-*l7->AR3K!x*PPX
zX$LNmO5*(CbM}w11nIHn#jC*%HgB(@?HDozOO*H6?QLn8C%@BcUZ@fa23tonLSTk)
zaK;v;Fjo3J4L4XlERvMLB1e4n_xE%;6(AAsAyr%dFjPZC80?WK(hA9U@kBwY{Mjn@
zzY`;toyqRZ^x-yw6rNk$godKT}BL!rYpfK^ui~UDgSWJ@bu8%rtPJR;S!2g)Z$9VOQi*#20_+@-o=tfMfv%(2
z_b#jUQhZzf-HKDB8yfq_f4nl&A_q%YKDySdIGfT0`Lqas0K46^bbZ*+wT-3V`+*O!
z&X_PFPa)-GvcXCPOI2>B?q1|Qu-?>}JC}hBmwnO1X65NAp$gX`lM(+x6y>@hyA(yS
z8JdIaJ=6z2&8}h?m0u&mw0*=N&jn>BNGF3$Lw`nsG0sPWASk@AE@pWP7mT}Bl3+M(
zFSuzJs;S5oB`ksUo9vB}k#)KTxNl3FXEbLk%Qg;GHJUYkZHG!~NK&{SBdHe;-)j5`
zR!2%`TFUZ<17E^X{&M+D5iiYNc1WR8r!+~3x(@v?1I0F_sdX8>j-ODxv$kp|F)*s{t-2xOLE_CxsPp=442sv}
z&p0Z|0mGkjq~a`f5CMi4DE7O2#XkyUk;+wg7Ec5AyQnuN7qowVv6t5RT^~_x7Rq@P
z^wOsK6s6V3PLsjO9@3ZswJ#;=xjny95W-N2F1USRP9Vb$O#A$*&9c^vGlKTem$~!e
zbf`CbN1<%BhG-^?RsU6@io#udxZvmY2eW7Q`|8hb_u*+0U?)@Hdbn@6PeUT7OBA=v;%u6MYGjc@Ex3
z>S;jvahucSp)QulECt6%#8?9AArW6)Xw0?(PWTqjUF~vSoh2XnO9-0VHbv^0Jhdd=
zm-rUaF+p3Pk0uL+sCdgCtSilg&Y1dkC5sO)9|Xf|ogE};*dUO``bKh>v3xo^=!d!9
z!bk3I+ZKD|(H8Oe5$Bt?t4wO_I3!h0iAi3m3ii$xrom5;`zL5Owy{39Gc5d}ePfP?
zh2QMf(=kNtP%Xws4)T27trnqsv}T<{v<@<|@!$&rA>1z_0VPPs>TU#AStedjt|5li
zK!bUS7~xL+K4%BkeBk3H*koujvcY}GljJCa?FV1@J(KH1za&xpG@JD54D(g_kPSlt
ztSaz&o?o3B4vkI~E)^8I>6>~f-QGUb)Dw_oG1I?^vkZ_o&}Z
zR3W0GW2humu8^y+bxhn48Fb2V-Jkrg{aq5tGNW5js
zBDnwT2yNFlgfWMXsv3_r$9U$}(9XN)=RcVx;49g71pbQ5m5kO=ItKe%&!Er8gIxpY^98ROqZ|=;XUUfBx|v={LNd(mf|6JG{fI
z4ewwI5kA+8LBrJvs&&OWiVLgk>BYvi{4Rydv>W`ex0^4?)-k3n?f7dbw62WnOAVow
zsI=3vRei;>*vBaw{Tu&`8)sd6QzD%!610}kRgCBl(+%W7Pp}#kAp!w-5>R(x6j8?p8y%T3EcT2J!B>A5~d4oTt@;8F00*G+dk2
zIR*v5RNdtoWD}IGK=3Be3s)qip8Z;jvaMiDcBo3os#mZ}+1DSzg&UJj4%yQ9ZhC3#
z?~qTTeoe;`IiJ+NqqC>mq5pGFA-K>hNDvXYVI7n~nl7G$)1)-VYBQInTNE
zBO+`M+$n@7r_8fi0BE9Bq)Pv5sd4hCQHkPJyYfC9RqtBu7g=2!&<@Pu&VzKD(M#US)g8&+KR)hqk5)SByhwe2~QQ36H+#sy9u*wG=S
zsW(qyGpj@fITe#oLog&lz*%2n;uDz@ESJ8SSU#X$B9}Chr!QEelJq-N{n{3D_c|dsE*Ac&uvGO^U_GbcaJh18^-YHlIk)CV`MLB4_h%*gfoZxepdZ3c
zZGES5J61Z<`RJfEy`ssi0P=6?P(+aycTq1E#BXN2@`K-7qkooN3GmEubB7xmoF8;4
zoucn8We(gV&r|7hf_@@&M{r1m6vL0xfymk4?cbM^f_lf+PRX`3V-cT@K-0zLmPe&r
zsTqK?c%jJ<;FWrll1pP%>+#?%5Rc6Jt~uOdl%XU2$c4|f)6P(E
z<$-fW%5dY-xn#E9v9Sw8I5Sbdnt2)PDV{7L0VSiG%_YupCsm#;z
zI>55r!z{R8KOQ(>CmZ*gDNW|5^-)xOF#eNK(9Uk;d2e|X+RfDc%cuFGEOB7}q=R1B
zChfN{oJt_vRJ2xrToeMMM5ZLT;^{fN^vLoVx1NX!*+$@k2lfdPnzG9fZXVt|n{&5-
zrQOSigKikyA&At-4~-fP!*|3!Bs7KM4D?+zI}IX*I#N2u&O?r}KXUhepBf)RwNPp+
z2&Fmd30Yi?B;ln8-R?}!ts?TFx9bd#9S!}q+P?7F!X;-
zao@6P^qu-E3fdOq#RRA7MP{eOi9aaZk0T}$hxdYs^o}B7_im|%+-xAuR{7LQ0!<98
zR8(P5FS;oyP>x`BKoSGcmpFBVK>A{oX#svX%)_F^H?e2oj$^HRU2Gb`or!8I
zSYu|`YaTEbM6@(|5z5HKWHb#mvvno;TS?Da)XFAAT0Dv6Tsf-qpDY`h!v?Do(1lORgKd~|=aXzO#*6|HoD(kv!sq|-(j)g56Kh{eH~$22Ys
zDjaRdaJjuinJ?C(A5P95lrKVShRyzZIFSuG?jH_s{RLuW0JG@DOl2A2GoZg}NYm@6
z8$tWU8@E4eRnY)OaN35+ZLFUNOGZNz^6mU=)|m*}liH#B?WqI&g-aXVo}~PZC5VR*iFRxpB^Amg#SsS({$
zzWkWz7s6V71(9)|*GE0NcCRjGK#Rt+;Mr|ZQt?CEFv+9Wn>H*(I6TYjv*W9RIjuD>
zL5qBIHhiwUrqS!KM~wbpMek}Xe(1$m3FK`Cvd9W@uj
zaqOgJ5Tl8Tfr`MP`~U|)geijLXOeX#&LKU;8?RPCJTTpql<5}<#;#p4lI}=JS0bdG
zm=(Hw)U=0rkjyw#NezDS)mhB1(~I`h>$*eSpBUeyU#HJHBORdO;~0h)*T#<>7dGOw
zP7kg~a(t)EKhh?cViSdF%iaQ3xaVA7`TPPVv*m4E2dM2)RH}V{btwVDQnNT9(8!0p
z^Uu~2$?7_4W!&~E!|{~`H}v;d3!v^UtCXJIH5Q9fYQu_9FCEC*{-8#n^ld5y20PDm
z&TlQhcSACpmf*y<3N+`T=h)Et9q*gjAI$`n)k?=)YtQO8hX6-ypK)uz4g7%|l#VCL
zq-?e%u9U2@l*0Bp2=`kzF`K2Oik^d$DyHsVnKo|f?^8C*%?@iAkg%G#xhR|`l7~iX
zc8to8xKV-BUvS-DX9L$>2*$*A{*H~LZXUJmv3fTZb{~z#hH+8pKQ)%%K5Y1!(MCKhUg98J1#)`U`?
zOsK=3xhyt#;J`f;wB|NkiYlNgHXI@;3=kjW#GM2SZ9#6BLyjRCbN9-FX5ns!ZOQpZ
z$Wp850?a%>f!bmG=0aP9Y$)#TU3vo}vz$ThcDPnT5)1~&an+!PyV)O?U8eea$SwV6
zsHM&UK3|E@Q!G*=LCGE#o2E=%*w!uig#tx=k-G8kb2hp2OmUBEo=1uNq
zwR)4ogXHP!ZpFIw?-D)nh%}tp7u{D8+e-HsS7X)paV;&iLs)E)nQ~_|i5y^EFS3|V
zDYgp|Njsy#g3O)Aq$#L0ARZ3-mT=EMQrnPzPCCHX8>*wi8vZ)xQa6&S_PVm{eH9LP
zh{{lL`hHzwmu$0d|06)lO<~=d27|dO%r}dsv#haBBi)ZKGa=_hYG0-kw4X`l4_~NW
z&coR?XgE2pQxIQu@(YpOhe)kQ8*8Y=2Q*sj@j0EQQzDp
z)e5eEYVqKsfP71!!}V9piLc|2V3iTlw{&BIqWxSHWp>(=;JUXzmK#o@Ht2hxuBvDy
z`H;AkvUOCk8I3?T)xc`X>WTqnkQ5BQF&cGI{>(&B
zWQwQI;|aHkRbTZF0;<>gpH5^5AO=QfmdN#4(7%2iu7PdVaRH}wQ#i)W!$tCi}FaVYTd2PMxBUPQ*j;2TMb@n
zVf%Kb(GuQM#Ke(;
zJTR&zv|pOEy-|xwFauc_?8!e4EYiz;EUo@}#d1n2Cx|Z-GkGZ^E>=>*ug13~rGIr@
z>~DR@$-?9ZOZCUEsiTrI=y)7mLLQ&vlzCG5Ho-M$i9cU0%
zg!ugoQ}ljBkGX&NDypQ4Qn2JRkzXkbI#^2rz|pUit~E{yT`7dStbbILWSxQ#{`E}=*L=sX~ZIm2)~{n(E7|&
z^XX1_&$*7keL~47aqCn```_f5NpgziAT8dMb?=0rBZkToaz#Dk+#l{5pa5E#%34HN
zZ&v@h&SL>}Hpg?7fgY*ntUzqrX0^xP@iMw`r3PCUi(U(6U521^r1^W|IukBX#@Zc1cYmN_>9hwAwI?Xxn-S(hNxams=h;mzKMF^k$snYNpH?I1N9imINhpg0
zTSD9>Pn!FgM&5_3Fpda(mbgKfK1zI|k}&!T0?6*`Y2bzoDP7F&YL<00&kg0L`%L5J
zY--@Ij{S~0XY!lz)Y%n7_(B%8F%MkPX@-*CD`Z0z_!0HIb3=1`-(5S}E?`oBpdS~t
zc7HFq-J`;SP_}^0X~#lQyEyRJdGw?)reqtZAVY&YEwo}xKc-Z)$TC}q@U3JHgqhJ_
z&8{hT!7K*LRg9)s8GM7MO+)^X^>)>G+v&a#c$%2YaUPf<@3>b*^jG%LXsMMFcwZky
zYv>MJfrD&E{2fw&6weg3Z*DLO
zq2pFU;=QGISuiAwc~<^wwX~yQ_jIjc+T+Q0yFAuqP@qoVp~U&(^#+ca*Xm9c)o|$|
z?^JsLGi1rSI?kmd)h)|Eqe(gZu`5k6dsI3F5J_`%tP--V(fsUaLl0G$)$N)^*JN@)
zs?+J3l)p-G{sPti^Ehm+Pbl~c{7YWs4|dFU1^Se8F)8(JnBVKjJf^=7cncA5=r{vH
zs-!xYpL1W$fi@Q(PvKTOfnB*-|0A1Kn?X+#vW5z
zBUYRDQC%LBGlq(a!DVl`ak39ee7q2!*C`DKyb{T*CoFE^=N(iOol3t!B3?`}7*ECUrIznBs0sNsNpNBZ#5l{k
zBzR=n%(WJ7_Z9I#NbBeA1dj>kafiDE;O_QYqYdFi=_Ms(yz;G*9dTH+0>zZXJb;DW
zH|A+UBroSDCbvMHOa-etKa5fpg`EX$d39!-(58pjC(#*9?MJdC8dzsbAedCnbF{eeD|*ajx|
zIJjl1UO!#G;u!)a6~05Tp18s_KQN`mM^YFqqfn)lOht3IJ@GeCWBoqnCP39@KEmXE
zi$>)%xNXMmJ=#Y9&t~!#gNS1pM~PHfZT2Mc%0fjz+rAj1w?n!R9LypIFkx``5uTCJ-{n
zlz!1X&~r;5=jg{C#wsAGGxeBKTh>Rx7a{4#n~b-_PPt5Y$9qn)5YI10pyddwq=sl&
z;c7YCj-15?{*ckk)rEuD@hplo{ksZP>vwab<
zW31E&f}z*tZd9G7dsm}|`A~cU#04Vcwg%JqpgPKQtB3b2@}t25QX
zz^VE&lyR~*bLrntG`coyn_`o2TQ%WJosnQ)Fbao)Et{#{D2OcZ3Ii5>&iTDw(2%}*
zZfS6CA{8iKr4eM!sZE_HP2u%(N-bw7p0S89wVdBi0+{j}9lBk+2od`W;i|@+@r#ID
zD0^;HPR%mm2V?0UERtPaph5d;M8DbKm3KAWy>i%F;h+0?roUABH)uoQweCQkdZ%~-
z6yrkN6+Lo3>0+Dk#L|=F9>Aa2_!#9{P4VRA!95)#yww&m1X3s&&v_WjIQnT=UR&Ic
zRu>DR208795qoQ%pww*%8Yh?`hD+pCrsXzrh;F|&S?t*{AmrXRHBF(~j5xu~&MdIS
zE@YH{`57zWRK`+3)Pi?jLvX)?*l-i4?xw!SqA>|yF-7;mA9I1^R!~bsg=Sra3z4Ce
z0I`l9{6rz}@DVXLxC!j|DOX5`d{CM6@KKb&-MvedWWb4RW)-AMq6pO|ubSV;9yUwO
zBKRS681u$MewL-%R8)GK!MXQL5?SI#y0k@6$M>R1bg8;z?ZT8K?9gRvBLPBWyT`K#
zM<iS%f4Z+Eq2{Oy0~Z#dHaO!)(xqIH=9WUPyp$Jj;74X2G}FT{a;Nj)ZD!N^*v
zf?+#Kp(<-sdN6QJ!t2IeEO-z_nPy1oEg
zozz@!k$rkuw5fb|I!qh-0gm~}1v#MVOZuSz8qQGjRj3y;?p4WUJ(?bjcgOTvNjK(Q
z3u_``76#!$_r%x?P#9V51LANECtMJ8W~CQOOVWRIY-A2_>5h1aMHw(N
zTayPz$bCMlp83dN%Y7uzIxb{P8_|bUY)afhGco1v3se-I;46GJP+PH6$Wu5vMu7T?_Db|rJF#9y=ESVdYoDNjcSs4>+L})}I
z4H82EIS=b0&b5Ai3qtsU+v`E&oRB|B<{iBqA6)BUCPuFefws65D)lWcQ-C#G<-YrO
zx@XMl*+0H$g=hafkfqwa+P<+m`m-FV_SE&GNlkPs*{R&|l6l7YhB(aZEl~O5bwfl1^EBV}}AK4!Mj$}AjCak8G=A)jszlF_vC7ZdDQ`OwO38=tDN=3if
zIi~idsTi3_qddW4jc^K7?Q8okTDZC*M?I4)S}vQOpRoz*t~z*OL*=7;l4Qf!r>^<`z}apNKbFfyeYw8B4L_
z+2`V9Akp7LWiuacr|hesQ>qu?IWVUdUAOV`L6Y5tg=s
zB%JFj-zNPKrhJ%P+8)e}kiDRcomQm*gP5czy!#q_dBc6zqw^N=D(YFyK97oqdwd_m{x?%Gg#iB7lxDZ}@G4U&0p
z_25PR+&wBTyi5(7?ZS1mj|{G_$-8hAZIrXYD9VCpw9bx7pz_aXjn3P6o``92CjfQn
zW@#+ElN@YqaOF(&Py{_CvT*aK*&s-e#j~Z{s#KWC;j_V+d1?H`#DmYz)Xt~2lfoGm
zIMDLaL*P8nenFDI0t{l|1wzzGKm>PuO%=Gq_DKgO^bPVYT0)=0MJ@~kdpjPjQ?
zE-Bjksgh%2r2EggR9e&*dfuK873&_IwOA;q4aQLonFK7;5%o3E--s{=d>yw8KP^Kv
z&$dRpf$0J`nOO^bqWHd2Ec!u%L!*UQGVg`ve#EvzX8SFM`Se$pFwh1|e{*fQh^32l
zMtDJa2j;r?HWq6wwDzS58O+-q^4PS$^@5H-PTs4n==`zfsPcMWn5U*?Z~iqpOKL$1)2E**Vz0PPxznG;0V4sO
zp=K0YLMiLz#p<-TF^k1O1?dG>9Bm*T5bMn(2K=(tnOXe|-8PBOOBCyPJE`8MIQm7mdy>i|b(CMrOF`p8*_`UrQFZ@7|aDOI3Iie2qPtmm&
zUcMg_0`{Iimxh&stM8HJq#I*sgGxqX=sQ^X8;xJ4Yz>puJ~EQ(N6l3Ror_>tdM#JJ
z42P4vTxc*elMILqSfUp6tSgCmR{dQgW6RhPwfCF}Tcm(hz5e)^efykBb~#{j90pvm0d;Ar_})3zWq)q!n;Y$s
zb=(Uxs@u47R^iw{sl_f#X_3$EN$~4m4mG2lt%dst2;E`io`C#dJ#-0_tfKZ?G?SK>
zsm6;&rMACw7it!m&k8lxGnr&f+=d*Z=}o5Pp$}fQO34cb53?PYC+|2qiArWvXa-v@
z7~Wdal>+(%@YKRIh(`R%JFeAeUR)!z0Zfc@mixYsNyG5K9e~u3cmDCTd7hmJ;az4Q
z;Ri~G0kwRnS5i#zP;PPiwPD{xUgaKo!
zw{N!t!=uIl1E66JC_&l!f#UjyGXW)q2zt09ie_^n;#VR`8kq5UIgxKQLYz-=I3A53
zWnc%G6gw*cU>bRG!0Qpp`qZ9m$J+5u=H(Vg#975GbkxGtY2}N=2?>*=yu!S+fIqgq%VkQZYhDvS*x`C&;J(Zcs3&iEzJfZt{z+F2mRjbSQHlKPZfIk81
zU9J#3zet|XW^t}GYliq@h)0Y1MD`FYofN9MP{K#T_lio4$A(QJ+{>fRQxt$@xN{us
z13Bl>sK@u@ojtP7UusJ1i4ETg#PVNKH
zHAi0_6=
z`-VO-m?)SR%~xrrel0g)Rp;#Z!zV!K1@A>E>v#IG(0gx10FBB
zfHj_Mi7q-qEn~olUFA_CFl=v_G02p-FC^f)TEccg5zknu)eV|ZcWNE0Mclq*a{~dO
zY!nyGl%T^SowhaBcm%eAeEe_5-nshGeg
zCHhjLWPtVv-xZv=cWyezj;GlF_>hgS(Ck9<>$5}-E@s`&y!LWhe=dM7#wP{xg66jL
z)X47G3sQL4GR1AS;DVt2^$+tc4L3jU_rz4?XtwgzCp&uXBC5Fr)MQ)rDxo=E1PTo`
z5%?o~+l0EC7plsxHUg9Qif{WqK{QiAf#hKs!*z-~qKSz
zyyP?Cq9pVL_CQNGLBc3Jz;d8(G@?DhU%nTlKzL41R7?j|$umQjWXb9ByOUDY$Qbek
zvg1#MA$yXoEm8(e9^%Yg1|{h*wIbq|-2Y-Fn9jjQ0>{8|Wl+tN<)ZSD+K1+?kS)Xl
zk|$~lVYHGRHp&g{<9Dzr${X|7<%nPOLsSLV|HO=bTONKyZgcxtZ!15vZ|K*ycf1-a
zsXITaM2_OGwF(KcRC_|!8}S+XUmyj4TAB9>+EYT%&Lt~iu}~I-HMh=V0Z3HAR3emz
zLib!I67nby)1}%*E{IQnf2FkEhvkO9C(1@k`F{o5)ja9`Stiss5EdXJizMj(JvD4u
zq_vA5=BjD_Da{4{h;uN}yVP8?E`5=Z?P8j7cZNqxS)7c!5OoNO|Ke$XO~0PgUVv5N
z>P0**RZNaDVO-_PP{~r*{l?e(F02PU$&~oJmxEe{)ERxRiriiRtk$~+_MEH?rM
zwOE!ugUT6R_U$`sUbffaHA;e9Jqn5vwAS|l3#c&gy-+`x37R}$6@
zem}2sIU$FnIOJYi;&@Jzezr5_7upxUDix#~R74~E_eN6LpR>iDT36W&q2vh_2V3KM
z!XGH`%VhjK+G_@ZzhEEdz@8x=SqME!cKZ5wZN4~aP4f(c5%z_e%zp!HG0T3D4l63H
z|x8BfzMxcVoKuo5CPl0D#Oc6=QkR;kZJ_Aj5Hf;Og|nDjmHj7quTrD2=WgIP6Ky&es95m>qpgj~+u>1=5ATv=M-_UA
z0#>5o;-4{tPS2jUSyuKN|2{6q9R7vj)o~#i>riovNoN;TdeukA$}Ln5Y=BkZ4?eXM
zsGu4KgLT?AGNiatd2Jjy46d5x3S{P`lt}K18!L^%p?WIT3hq2Gf45xY!G_#V6f!L`
z?%F;7E}tTigc%Rhtv|TCku~X_?u#~zw(nY0_4_zRkC@y;o81xhjtG*44AGo+z)))K
z;#%kXeup-*5whk*c45DzvLS77xe{6yH0I~$Hw7HW9epVt+J{V^3B>e92)!T7@c$g2
z@5tnnMe^g+iGm{L4HM+e4byU{P}(W4CN8gemSuZK-|qof+aPU#87wD0{kdMi6UV47VkARCH=Fqq-OWK^>m?96GQoN`AQSJN?B7w0vc|G9hd1oxb
z6wwRhfAV&?-#dCuE(RH-l~I{QVjf_MPr^oVbRdN~c{*;am4svDNC77MUv#D#fG+6l
zwADWT6ptzL$UZ@6fJSlk-=%kXKP;bU=U6Bp`*bzXVO7JONm&MHBM|+|adb=(gC{(8
zQ6C-qLM|t7C$#X6TTHT(+{MpUt)A)i+yX=kUX#X&?lW+cCM(Y&q)E(Ius`rCh6A}+
zHapUps%?shoL~u$Ah+JcVYv=)WOM86)QZCK}tDFO&6ezN$#xN_REW0Ay{1&_^$p1A}KVP_jykBW=VQr
zgTg5m5>{;K&Ov^wk7LHdr%D-~IH-U&>!{6Q{Ep`vG4CtwE6^W4fd7cmML7?}y}AOJ
zMd6uf(&3HLZVuqvgpeZsXDY7xwn4z23&oO6y*=h{)Mnyl@|#kDn_t>>l1$HZzImWf
z=e#iGwka1Ra)lDC^KkCp{@hO#V}5b#DYMzye8t#3_6Fo1UjQ&?s5cz(T^XrRt%DD|
zOp;t)&HLcn0!p)j`~s^PSY86K`ZRABP;@c2qaWJ%ixWk20pIeeW!|ue&e8R9Pv?c2
zGK0)7RB9{NwZT}%Yf}#DNJ%Fbl*z$A(7sm9o-pHk-Kv*0SF!#K|E{i*=-rB!G8HI!&ZM~
zDO3R9A*pCdLU{PwbqkkspDil9YP`{R(3SAN)lBL5UlX_2jno!*&)#TS?b=m
zREjLp>Q{m3EYy5^U^yfhwhd2R{f2(c&Zl#bSqwG!Inf%O+9S;;#EHqb3{oj4(yp6R
zf#Ep5e@)=O6z>P_!-j(%dZ~2o2~y==);<-_#f!K-B@oiY6Q6W7W(u$qc?QsnCycq-
zut0j)TIdBJ$=sz#<~l!BKRfjaWyh(f3$xO1_=9xlS-sBg_!7dS>&cswQ$GEn()3X3
zl-di&hx4eH(OJ0Qwhj89=Gi0_Gmli_%=#q_F2@3G578;k@bf7A>Txuqs#r40jN)cskg;5wVQRr
z22PKXI*}^6p%zrpm7f=um!s^|$Jf;k{{rV2;|ejj7>lQ7Tiz+>Jn{LTYYjg{>1k$6
zIj9Gok32-hY6-_r?MRLfDrxX>yd1^%4W*3!ct;ZBY|E9L`=sZdc<^rQch+G)l^PYt
z6t7Q;MK4)ypWJetH`;{IPZVj}#!SY*jkN+^!l*-bgKb_Rtv7ZK*GET=E)hG`SuO(f
zMd|sSOpNae4M&JD25^73UcoD?;U~02i?L!Oq_R$6bAc(xj~nn
z3FC;>-Ciz*BxTyPOd5CLqiyl9d2A6qA{8sktel8^HOE|koLthN=at$Mx>sD%VNCO*
zcsj1kpxxUPinjQoShP{EcZu`?wOGUqle!+U^%~!WqDApXLvaJ`OY`YvG*pW5xWKgh
z;97DMNvuYPX8yI6Rt|Tjq&I`bq*hfD*6fuF7K0rhA=^bAtPh2&n@UwG5_m!U>~jkP
z?;N>PR-XJHW&y`LaYe3^bj@33$m;j5;!Q&-_CYos=y*JSF
z1pOSNd2r|e^ZYH$wnfO>fZw<9=E4tFZ<))~I}#X@7LLAmjw5+peK6=rPYbN?~_)Pp4Hj!g)s*?
zQN^FLRw)7@Qz2@kzJmi}#owmsognBSTYQ*>NSVF2?%pWU0eL2A-sQ&G;J*22$&!-K
zGz5kTnHTS-pJct$RRJd^euVF}m6*Yh2@Ac@p0W3ziElS<1XS7VD8e`N)y86*1SicX
zU~5=-e!R+%J>R+gX7Sx_suWl80f4$51~8qSEyskAhSuDH&u8V^wXFjq-ZrO8HS{Rz
zPIjHmAi_e}-Ni
zDF;bMJwG+>si&{rtzAnX&c?EzA59@t@W`G_b0S|*x_$lMK#|3D>}nF7KAqhTiuyGWvI>uDjYOzhPbG76SBk<3UKzGUKritXm-PBBu`OY8
zy-Ci9z(u!eB8SjiWm>&LaIU(IHFIyy9`YObrCIaANq;MM(Y?qfS|I|`aXE8FHU0RZ
z>*U?ndnguZMY&Ld;rl#V5x|7OHUeoJ_qhN@{(JEMW5T}j-llSqkEEG3ql6eR5?}zn
zfj%AD>$)R~3-@~oDcO=nvbP#zPG_K+H`8z@4Yv4Bz~XmhlT#wQM!+M51VF!f!i<9m
zjTwY#H1MzV?8ySoxALsV7|2-2o~8B1`7V~OqSC&g@eECp)NdPp6X_RM?O*3PA6tPV-DA(Jl!t-Kr*QVRrd8ay(UAOEjFqFA--AkIIhjXST-)4N
zD_|!;;=t<&xTq8nrCqTZCI7_2F;|aZC#k4fnJi_-G4K1Hpt^dDLBm0S%cv3`25aJKEa?M
zpan+Y^AF8SG`8oe`QPLpfkc#+X&~xmq?=(^&t4C8EjMe>N{Hd)*8SRK&DSLB5O9hz
z7a=%!EpHd+p5vI)d^pu~v@lLzMtE3-lX0ag4G@e?BL?RG<(_inbG5b
zGl0^!ZnY{JVcJM9i<7NY@zQ+1EIt(JX704pXlo68fEZ(p+z0NHHL3iz%KHyHK4}yT
z`QST8txScu8-86KZqevYAn|HDPX=yGih~!0NDPugPeO$zxNhAomCl{6-4Gfc5;XZx
zy=s>%!P#H0N-M<%E}>BQ9JI!2yWCyV9BJYYLfU>@yv|2^!9TMjUsC9pHSvuL$$R4puR{Mw%I|N5)%g*(@gq4W+cF3{f0hFLT%(&5kMaLst#IH
zggQbj(5jZ!XK{LIhS+CmOxG+oxg|+l!I{NpPk#03>YtZGC;oAdcZ-n$p9zDE)!gH~
zsdqhSBy10dkW%?i9WS|qM$G@?$h#}X9YU$?o6sL?nzkiLg&>iNY6s-Y2!`5=tZ)AK
zCDO6~=YUUwoK5KNt8@nqw2OP?t_wp!!-d*c&X;h{-@yJa7v{xhi-&WXsu_mUd0->y
z^NH7XQ~o>(G(ZWn-D+Ry7|ft&4MzU>N8<_0R%yE&NodtSVcGBGMQQS(JmbHYiw8Ij
zQa1pWxySCVXOOL(3JN8x_^T8|7#>5ZH`!*SgMV!}1}jc5ut94k4R;A1m;41*{Z<#pzQk!_E8HuaayeFp
zYctNUscR%KMCP?&7tb-1h@
z3|b0AM3`zHi0{>kMKMcG0^(WpMp==4+q^M1`OVMiQ*x)t6)??)Sjih%#fwq0rXsN4
z3ASuEuDHsVJY&e&)AW7S?`)34SJ1>ICNSf2vtIlh5~0iIr!JWBYz?S8Q0>7IIoEMP
ze}(wtHM`vaBN%`O1B+wPx@Hq+{Jx3MF}ZrcQ69?8fG6+;>+vV)qi&0h`#@VSplabc
z*`Qkqc7$qCW;wihz561hBp}*AYYz`OM2kZNLV{_dOH@J34FAe?R1RvJLXOBg`gh<8
z1D$|;;K0`MHi10%bj6w>fhc_ecpCJMrqlZI^P0uOHGW9TGWlah1d&;4I?q}Eb*zTm0ApQ^i_i~c{R_|Zu$c(04hteqoG=_F8ZM06OBa)V6Il)GuES5B1-NXl3;R+tfhiB
zEl7~*>-J%+k-PfqVKoR2pZ*sS*v}|wS3r45SkTccRG1)hE=AOfb>9#=;6+}`gw}+d
zF#DQMy>|hvi$bh8Zh}=Pg`d$SpfDm#87`ZZowlzE21tQ@&~J0g_{;Yu#p&yCo3-TG
zaUG|TNFx3)y$SxS6P!L~G7R#XO!6#-(gce%XkJ~0yo#B|sQRncuHbh954@mqb(
zFM`wCoLaFZO(btdFY05xNe&(>!{7Llb%CAV)J_A012D-zgWs}rV+a08rU>#NVrI8g
z^3j}UO%#PNfX{6-6YGw=-M?JK1e=o2dXxeN=6TbF2o
zTj;BC8W?N;%%B;j5;!Q&-_Cr#{4C+0#FHypTg
zaZl4wCwjPnzYcVlc6S-sihgs*xIWCFk^dT4bcZz`Gx_k=A+s1d%pM3>U>4%;P$xu`AfT!=rBlYzz;JL$hr&;TwL3&{KvJeBuNv$peE276Ns2!=^ai
z5p72=P4z${K@3D99Qg^-eqTNnOQ+L&2VjLfADTG|8Qr7S`z3{mb~ZueSLjz?31zvD
zpMCBu&XCUB*+d5HCQyVv?wI34`9Fx-6;{Y-pDYmuouYD|yT&Fg%a!1o2`jKNBB{XE
z#H@O#vQ0~*3~PHPn7?%~;Hc87QySw5#}5|?v$_Jv^xVGV);)`5XVU>+ep({0y08gZ
zT$zwl5fJ0yGgqDHs^|#Fm8ZZ^TRqsDNyIgD?Gc#wQ(Ad;cK$X$H^{2NxfJO;7s`dX
zD`W{BF^9rT9>1N@w=w0~crr#n-73pia
zKR*}O(ow9`7D#IHg}Dn_>2RCIRO{jwWO6cLd!HiIGZ?@y_;hZC;dB88(p2
zsv7F9b`%0|@St5&`!o(y5Hhtzes0mu;Sa~K@TwXMC+y?B&&Ys>PyUMszXG;4+el2x
zga<*v9i{9C<7PFAwf`ugU;mfyA1CPv(({hFhwEy2@4K=6S)7Fqh5P5{&$Z`mC!Ec=
z1x;es{oSSy8F_nDRqo(aMTZX36OoCoQ=
z98d2@#7=FoQIf+@kpNrWKO0q5%<%n+7wRbz4o}pNq-bA_$Zad|>i(J)9c5*e$ODT@
zDN4QYlDrfzz#gi_k?Z4jtM2h1cZj~qA;
zv+AGz^2aSGQ{F4xrIR>@W6-wdL6LN36GPI1^f=#k=!%)TEpmNpL1G*xwK~Bn5jMD-
z#ZT`w9#je5eBB28s1D-pl7RS(HwvlFFb5
zTYJ~k^^}5|3Qa{_ptb1dnZ4>KRe6Z(-GoU3#j`fl4#gmG5!R~%8RHXm4;TgWXhhlB
zj%i~R^X9lE<8u&jcPXHwKQY4ShiT9^OQa&IaG(m(VqtFyK%1^pOPx*`d5tsMNUDnK
zEfxi~TUAi>Q8Dc~m`uQ#u58?!nXqx3kpJECOgDMt=|Amt=x8VHE}CNLyAbB1|ijP@0G`EujkuU()N(C;9VizC6ET(
z7Yq;fd0-Un4rky%pR6WQBV7_s*2<+sZ7I{zAo@U@YR>Aee6awrnK(lc)G|--kU_W%ZH05Ir64N0&>ZXhqcPM&Ex3!S4O9N4R5gjgX2gyY$H_3F*xB}
zv;Rd)TFD>}SQFOk-+A#k1*aa=4_C6GJWq@4{Y!{ID(E^OWNilM_%YJl$#PcwLD^ePL;|H2hze0bjIu`|
zzjvDmQ)$GW*%8zBPhB$I#zl<1$ST3$;!p1>g%MJA>=DGVkt{c61AbQ@&|?rHpFPa1
zVZn8wmIOXBIK6sJhDb~HtrX;ii(*RE4*6NLMq<^H-{DPU6e7AETlXP{Otw#e(V
zO=zi-8NrfXpc^+#M5+y+yqIyn`3*E$Zna@-5OLN^d^t6m$4CqmxW`-m1f8nY((y5(32;Ir1qggvdhJyHV!fR>BaCYl78&wjO7uR
zU1;=S?hmX%J=5IA=pJ;m;Bh^X`_4HyUktYun8gfm=&z60oP8BbD1x9dqH+=@C3E_T
zO03VZh_&A5dymb-*_x*kTa5nG1gH8l?
zVeXBp*5lL`ti2M1q)?DvAB`hH~Y9jszPJzp2pkp+}d{#cZ{n!)C7Tyl%wJ~vOZDe
zGHtxDDgq}iHM9!?{*^-AopJP)BP1eCw>iKy;^(2O^E_8%o1-#9f407-=P!u=ZDhEEW?y
zbe-Tf+aSzElrka-IGP}l8pqPvlmPh1VetHXCEZ%j;@g;!RRqDB){#7axua11%PCYW
zE-6b7-&Nmhahg7i^Bi3eJfY!Wa^wbWe2?vOck>;e
z#e1sF*}8B9M7)JLg9tIEzDqm8VE9E;Vf
zUr_SXarm9yaCdi@dHn=8bs|pT47MIqO9zQ8hZ><96*mM3SnEGm+-!<9kqnntx{Ud8
z@b~vUxtUA$1?Y!A51imFxWvw-N~c2=K!nV>ZRfaUkm7^wmmNm2s!ewx)ss1$EBBKh
zJ{w7uW8iG0Rqs%53D}B({%_CJ<0ly%aC#~wOr**iXDxHWBZ98V&t{pNz}bTA>fu7C
zSPg4Nb|F2bzFiWw3K0G6fbZ965e&k%AA-&%4g|B^`wNU
z$)A@6Aazxg%eK>az~!naeZtt!C-kqEJ>Mfr84qbK5xn#~iZsq1QKNA=#8k1JD;w*J
z2j<_-vRVW}53_blWH9i>#FkKb#gp==1yJM6R||N4S$z#8heW*@xs(1lJ}IpKXhEb~
zmP`b$?)sy&l5hjYl8(0&tioKdBBEGp{Ud$}wD@pV?byi*%dKd+Nhh
z92(`CTVE{@O_bVMDsMJn4DrY1H3KtRBhf>sU;gD(>mg68M#@*83?T+aX>>i+1Yp4R
z#T8e2(yaWGFM=E>bZl1#f(4(QkWdv@Hy|7L7vU71&c`f6IXuqUOVf?S;>eGwmMP-V
z>7PVBgxof(Dv05(ITnD`5Hl4_-uP^4F}+Ph3i3!H8AwsvOQ&_wVG0&+Y<_c^holzs
zTrwZV&C+@%6Yr-&Ebe2)t&ST#-hDbcDK^%p;yJMTMLtrn#o84LZu=2hPVPe{nfm1F
zYqT`9y9|t@DZ2s`k;>bY&59**Q>O-!B62vhh@q?n?tj%<(ICp#s`4N?C;ADh5jpjo
zM)7sBa7;0UQecl@%qrRa{}<7v!_eHdbIDo1cbNBg>|L)FEfJ~8giiz&imkX_Np1jr
zrecWuCFyFM+So*pQYViaDsK!J`v9eUB;em-&gq!rjuv7zCY_C=~VDv;mlpS>n2K*OR
zC6T-SE}l3#zhe`G-KKU3mInTSfqQ2f?1Yd1O==TL{X0T_xvJI(?AA{b#*LBdNctXR
zpbT=orzVMX(DKoV*NerF|C9W_Z386%QQAQ?$U;UT#|I4Gr?E}^_Li8bR>Du#Ou5Y*
z?hn4sZ$wy#N;9e-Tfs6JDO7(vHCb*~%h**0=UNS+~p=9VA=vMuPIXdI#CfL(s3WZ?Ut(~uv
zh6U8)2*=KoYKdGQgphlcqWs>xLw#d+rbzvxHOyd1IVs0a<%DpnXh=cw5K~*WTNJXS
zDHml3nd>iez0q?o%CEe+db9D<#!h_f6={`G@kkc`^^pIXFE3i25RJVkJv$T!oYEGi
z#g5f}A(B*8m#s*txU^{=o_|bF*?4yAMb#JkZ?H7?`kD_cnk8JoUzzWnofmW3&o>8{}d(lgoYuag4xw}2)V10H2q_qkL^zihR;5V!!#Dt5;SDUsY<&7~7
zGm_3HU{pp|V0~wZXqngyU*0cmDGsj+&IBmL@@OBt6A{#qQm<$mDD~!WPlIZ)MA%Kz;5W#Cj6BmM|~tQz|Xvuy)NWr8Q2wAqSAtNY*4^
z`qozb6@)EmP5K*`DIRUqSDB8nu-cp*%+NAy_{tFY+@JdiLyKvqg1=LR(aBUU?M_k06V-Oa;cZbvb0<
zOaEnrW~sz#yzp2y9iw&B4CnsjCHhx+9<;0f5&Reu{p1NnR3CzI3NB7ZE?-#~E0Oi4aXt^12W&PuZA^6rz@09vy^PLNW#N^%Jw+=WNbh8i@{UAerQXC}@Z%~v
z$GpT5;wq&+TfE~OZ)r|8oiQ#dV77cV)RTj;^iwuPATQfxWu0Jd}!$!34I#ZXM#7nP5EV@Lm%cT&=n}W^f8oHmhjQ@1J}t>QceOWNlN9BN;t*fY|W658Uctjz`H34
z4tNZ8Pj?TF0b#9sH^2t>t7N#{MaR%pZ-S7IE>8c4^`{_5BM}koA$-b-)mi+XMb5xa
zh+*7b{ZTnqGB2Ct?=y*f`Zate1DML-Lw}`qE;{+pcsKdpewG41EN=_-?aV0c+iv3e-
zZrdGd?;?fke&iJ1?e4aMY-@OzcGhB@nbtZ>8
zU8KLIL`fArMAGMDuPx+*TZfZ?4p(9${ev%UerW!ZQuktXdVj{2_Wost#cY#^lixC&
z*NE4t$)rm%kwOpRggU8W-0){@2DV0YAl(MVG_qgIQFhS{QEpS8`ATNu5kI-uG6=12
zD-$0C{6tCCR9{b!l1+KJ89s#xnlg1_(?0=%2UT11Yg?WVks12Nqm^ODLtk85gS9EF&kNH1g#`Op4Ljt#K8Sbb$MN2RXfW8vbR>g+K@81^-$*YDR9Mp
zjkDolZ#AG(9xcD{fdr$b#h%)*7%XS*1-8!*rkYYr>j3OjiQf1rtQIR(&{g^L)>9%%
z>FDwx`^n@yuhxT$^X_5azZ7Q6=U!*>v&I8R*kG3pXyb-vQ&qfdK}bi+m~2`U>ZnMF
zPOkotH}P*l>$CCjgZk+owP0gl;0Jr(7k@iR48(si74*%Nhdt?1urt;|RTXNrJgY5Y
z-cBFd{8rGNycriBr5R^UFjXVdJ_9}*D)IK1?p^1r6tKf0m#a)FF4HH5t$oViUa@
zW~0Ao)8=Y{qKE_Nemmow&{!Pn65;-yC)~eXhD`8v2#jSHcAH}fI@*7JVyn=5rw?qx
zz8@u{EnD8+m=DMej2
z-~-0+*{r9BAD;_QZVht>Zlgs?9O1~`m^6h?@|2N9*)VcFNb7K|$Bt+$c}&tbx_TB-
zZXS!TbLF0q(zN3%N;d_n6LDSNn60oLIx(NA(o{Z`fD#`WZHpjo(q_V?#zy6ipmz*c
zT(v}>q&|62>t1s|xYD*Snm>gfc|`=je0A>9DR{7h=(Y=UX#nCL(9rj7r~RZ&qIjT7
zt5c$c$cWIYM<}J*>QY#%*ALE%mJEwmdGXUU5A-kCHo3@CqiIjS!wM&tv>j~BE+2AR
z>zQdi%Buv>tY29dVRB!(Mb%?1aE%d1RH4?xo&aCUckHtlFH&C88l{pmj?787a4rVi
zd^aT#&i6I9(DL-s3ACU*-_Wk8hE!In<6{5d28*}0V11?oFgk
zan=yDRKZ4sNfk1_tOe6D1(gp~u=s?-wzkG=fFO2M=7V-5Z)&ASANFnQw9~a|SnO8<
z&634vD2(P%6J9WneP{*q5PMP5dC?KJ0W-7CPfnB&?o-vuYRbGvC%G3ce0gqCL4b~mJ
zxsPS5F@sALvJOf|67&;z1!yJ6Q}}Ow%I4#O%G_2}BSqGch}#p}X<_deWFo_%=Bg{K
zO=QmGB=Gm?pSYZe)hkYI4?@x%dbn$z*@CM$o@fH9U10~=Au%qcsf&Xtfq)zLXj9Xw
zq2+jkvNXiF-t4fi-V*=LlJus7J4`GTFR}sc?+|vbjYG||+RLqaK`I!j+~&_k>WI5*
zunMNv#DFp)p_s>Bv6$=v5+_p6d!*P#tuu5D02OpI?(X0KZC7y;AnMKg@7XBBSZ)
z@+{H&cv%>;7ZZmK8|9y^QT!7LBSd;vX!oPB+M81Um7bsVeWDQ_retr%ZQ^89h`iW!
zi!L)`)pPUeLCclhz9_nbU{DX!ij<$0t15!K*OQZ$HgozE(|%(f
zaP3~WL#0l=crz%BeOM`7j@~dbUn(qWQ_K-mmcs8Je>67m27lGvh&xr}RmPd}G1ZS%
zt!AG+jZY>qS$&w)2hw)IUk6|AZ05{g@8B?j&nc!0q~5MS`so9Ht&W9`=ZVG+xjG?IUK3d
zo+_Sm>WyJeR5cy}sv*%4u2rHg)20N9G=-9HK)NEmnkgn|Pe(n=W(8hN$eQw#SzN#PZ1y$?|!jOuT)-p41O3^rWP3
z17h%@Zk0-+s0?Pad@4p`|J#%MdZegPP*7i!Z4hkhGgA~rhdqaAnC~A$YnAboeO3*%
z=L^I=v}tt9+k>($7QO1@E!1Z%gKPBaergwgT>H6teIwt28&7=nrfRPqmjOZwXtr1O
zE8%5)rhmkh*N1(Go;5qE1_t2(9}x$PhnHR6=^h1kH(=~EzpTqFUcvKd3gLk+fveC*
z3BjTGD6%5HUYH5#U1`E@_PVJExH;=LrPKDgl7e{}0@}Pl)$z*n&2v@8_f@x@x+B76
za$$22@r+0lld1F+Br3O2OiBCpAdej>?kp
z2fPrEoR$i{>YXE%u-AeH#=oZGW!|NyUrK>%o6$K~_fzMve$Rq0n
z_ViU<6ZhTwuJmC7Q`Fg}i>AMhPRc_sOUA-t@YI;;4gp;+DM0O6Z0Zr2-+PYcC$18@
zni2JA!Xtye>pL5$o=(o1o*(RKKwqHV0BI;F4b`)sFkG2L61Wg|I9^JOcPKAJxhk
zqJ&X@pN;*ZvyiGx0J=B$Q+;bi@%q0(8Cp{7cyp{v|ZYS(09>NR83PUhs
zI0X(rbeYiF)_-N$#%SvYDxPo*i|STaN;z{(DLk}+(a%I)>{J%mTt^ZdZ8FeybK)V$
zbx@o>DX%Y)7QQxekX08(C;59`T!`WFzi2c-O)OJO<7W0=z!_-sk
z*$&$ER0hj|s3IW2E{9{wLo8X=Yl==dA?+y{YF`zQXfuSwwJfAyI)bWg7&YlEw)wW|3Cd?sB9A!GZz{n6)8z
zjwG(ra3(O-{Q1Qk&Ls|Zg+h0`O90+E;}e4GFQw(S44@U8y&krv&AC_8U?4h`A6}`k
z?!hSN=NU~@ce-1&7bPmRNg=Q1Uh-Z?TjHk!qAxXQti{JV7`k=TkedqmM=p@0D{n#S
z`0HeL@0hJ6=En~3|4u0c6wLMz{$CCm6}duRGYSnCD#yJ$2Zd=PjKf-_MxVMe#;6hh
zzLg>gX(4%-4%r0LPqyBuefR%*sK>F~h9YZ}Z)ie_Umn2$WA-0woJreel&%=aI(+%x
z7SaeTSW}HFc+`E$+r(aR-7<59J5g3?MP)2Z%e$vd)u)wud=F*9g!^;FVBF;BNREY3$%0H^)A3L_t(Iy%0vn(
zbFCj3nE&Y_%8G7Gp8<4D0trGae_s14j%h;%4VJ_DH#LNMLk3hOp)
zSwc*y-v!D*p2t|h9Jr0<{RTNxKH(@v#$8oFnfmAk?;qqukFe2lOl{pXAMMN)iOePw
zyZ=6x#SXTXZD2(OhWdK?GR$?)#x()ds!g^ckbm?>tfZ*9_YrwV>*
zZMRmp-?(
zZm@{BrWM#~7sTGOimCN$s#Q<8Vf@Sh5%r;&T0T6hmfC9iAw^eP@0gW|hcm?ZUB);8
z2%TWR(>wI@NyMf?>`{+z*$}inhz*>@Jt~Brv*}tc8@&0J@L4!K?lYRAJsT+z9r{aNVbEg8y^KM*tT%c?H3V>jf(U?1$L2wM`?}s
z^%f#^;;POQJ3eR-rZfG+b_0xI-7Z{1m)^K7R$x+zWT;y>%5?VI2)CKVmT3XC%DbMU
zC=H)!-OuJY%iC?uCr9^NkCGPCf_YdH)%u
zb2teHRH&Q~%xypeO}!o?_~ljb6Qi~u*_FMK9CLZo;$zERNMATwC52+=tM4i$vL>@n
z5!?dv$zOY|ePtpt?<|Xw$p)t-0c>;TF5-mF!0lEa?uQ?ShBDinrp^QzOlt!qN*(IR
zvl+G1MYKL`fQxK0DXW(s;Lc+Zo7dbogCX84S0(YeE++DJDR8yA8$MR9ijBasL01T#
zQj(ZiwFAtdql_UnYJDbo-@RDhWQn{c>oI!7mU}xmJJ~T2*BAe0n~XG0!OFn!4&+12
z?RodLU|1&x=Clrd`xJicG#}WA_OAN
z$4C@)$H%}T)!Hk5;YS0b`)~w5MeFx-(ak`t0w;C#Su>>qEF^GI`~r_>mRS9G9u+!J
zgE9eQdz(WO4U>v6O5%1=#qjR~ykl228vF5{wDbUj%k6zo8e6#ys~FY<%9O36FSYC?
zRK%g?@X<>wjJm6y_K!7+WZ7e!U?U1VVE#c*;MukJVHNISHSn$S2f~03e*E~$)JKSd
zYCCh`oY#l7L>Kfahf5M)3%)EaLtmwpN?iqdc3OgG0^c}-Yb}FI6c%W6Cc}RZZ;VK@
z<8G3M*d8)B?Ang(p}yPG*d-^8;N7d1)Y>_F;bj#Ep}~xc2emBe6xrI}hd{D#=;u$z
zBa5$GM(_-k8~vO|6;~>qG-O-50t)4ch(k
zHvS+3qP6!>B8%)iR@RDGmdLDEirIXKJ6o#SI|-)*75~7TOhsBDC`;B9((r5=<*lf%
z)lO#b8bo)dH|>yFO66;6-&7EL_`ia4fw^Er<>bu<#5+lkkClY)L>rzg^j*)NX5wWV
zYdCzBUEh_GlHVAC+!#xU)(bbrYcFmhVeir8;_9P$z^KDtKuaa57AM$8Ra@mujZq2p
z9o4teRYD-gjwo`7bU#X{fz2W$nmyDw^KW7AmmAUkIB8(>AC306##$ze=|={bmbC5S#;w!`eRwM{FJs-*+n}Tm*f{
z;!aEQ&O;pLYiV@wK!dnqzEnBHEHpi@rL4`wyV*g0arhugZ3u&=s%AsrNjtIJKh%^~
zcbf`BZ92C|+@Jr>i+DPG&9&$#gw}Id|aN?C8Z)GsL4t}kCel$zO@(7
zdS(hFu6dB)KM(>rQB{$$7U#7B^`3~hAGSEpc`@i!>*STiuk<44QvXfMQ8(-CdT~ov
zXB!j(gMLnCNY$=?I8s*o`z~N*HrvqE0>9Z>!$7GH2uCJv9GY4vj*giQDBHa9F#O2!m%RJ*`l@xG@q}gbdlJKbv}DOUz9Vt
zJ6-K0B%4Ic_O%&zlKTZLRKoO$p#SWkBOH$X8;SNIQcX%dvzlHXp5)RSbw^0@&irIq
zjWjB`pZ*y=bL5fAjwX&5v<_g`_n~pXYG>xJDg?r*QTS~;wD(R~KhsRxIjrB8-#jgY
z!%0O8V<5VEGdvu4o4SR?aYpv+D?ZCm=mo707W1v;mVXlnja^zAPS@(1vt|#Tc}<8}{g5uf@I6max7C=3-TU3T(4l5{
za7o##z-53Eq$;q|1a7&IoH+ypj#x^x#F*nMnp-Q)!3~xiP?>(sjsU3l(oV$-KYfU`
z2C_#*d_T_$qwAN^xJpLvLYvVh98d~o=jU{tBjgIa=QMj&RJo|}0gWf(5yLbh>;{CD0=<%ooQQX?$
zAlT#x;kHBkY%FZm>OyJ(BkkmOmh6QC*}2?vfGG(my6J}_TnO|^Jlx^&R30JkNB+P6
zrRY{zJWb-wKTBdHjp4nIo58$7M)*L=JDr%$?7%8(Tu>C$tyxk6p8hzLV7CswIng={
z9Eu)V4qqA$4wR&_-J5krfGw~*w@!QtQOK(uE8~OruvuIfjKe_Y%r3q@Sox?pSeZzO
zxFUz)q3Dx#u~psxzxmJN2Q5tSrW=EbYzx&g|1$Pb*FNbGHoFcOl`>g1%dOjsf<#k(
zho9;~wdxAXTsStRoQ=I`L3I@(Tc(yLI~E0-IE7BU9eAX~9}_OG$WB`&Y5<82;1gJ&
z%Y~%~50Ku+d{OUO+NJ_5ix|mInR>Yuu8x|v)_5g*55(0fhjF5!f*PPQ2-K7j2i};sp=0)!F)q3`S+_1P*e}wF(I|%+bWTW6oAxy>(Y@L`xc^B&Bhu^c
z`bhLJF=!hNowZus1?SyBP2*
z=O4!p3NnW#G&35%4d1!w#!lQguwWlNrVg~y3n{q4+c$j@ZN#Q4GU{+`W7tJ&Z1NZS
zY`Ie-QK8ZVal$P-7BReQo{f})(IXvUWb#GK`_HUP%xX*_~m
zoFOy~z!PfC#qkRy7rExHHKa++WDg*`#{beN=*BZ0Q|t}IWdwM*gJ`{il(tBF#1KD{
zX{GDqh3;=&%Q;fQ**N#Zf;CcEC-tW)>2Mty6^^)sZX
zr$B=ECn(p`xTDgFsw@=v{6Mhk!djYJc^x0GDUB{)VQ%N*YH$+1C@$(2L(LXn8WOeO
zAw_A(V-1gq<^5D0w%njvk^R
zx{Zenuq+>P#pEH6knj|^%)Zv8o(Gzon*%?lAGe+;QFqqFMDLnYIZHIh&Ep2IREdy5
zlVosy*A3xLu*(T#d|0}-+pK(>9bqm(>0ZeIu}|FDQHxmJG9Rk5Hgqh{9VWr4n*k^Grpkpy53K8pP&t^s^BbwdTt%{wgLG%;+vnBs8RPBd_lajE%(!
zm#vz6EGm=21OfyJafLXRRh{I(CtFe4$9F{w3Bn+++RDj6wHu~@V?7ShH=-u*o2qCE
zIT~Od5~@lTq=O|uBOoG9&)8TuAV$*5A~&k(dk2ySaD)}bXyQv8^fnHVzI(te+blEU
zSnYu@oY-G)QjIBxUx+)7gHJ#eu`w
ziJCEg`kPF0lWx+Vub#3r1*DL9!E>O$?e?SJO0vbZoE}%H+?O2(+vxFi^_UX~g7D)|
z^*Ziu0t?_WnOY8#L)TM*w>#1h*j9*$trRo^@_?!%1dl`E!`WLD%P(#mpM0V8dZ&{V
z4%E2)0@N`A%&?8?+tMDQz()cd7UflaNYv2LEv)T#eu?ZidP$(iKw*|X_
zEt%C9`xK1|uGW+a|D_w#)A%?~2ZY&5?9|I^nWVj&VhqZ1d$PXfyc
z6bAejFAqGjXm8wQAPw4Z3fp&xo?*`%Ok5Y2Vf)^tXE)Hlo*N(l)>JifN^hU
zy~D1g3{~f`>ES3)V6I_`0Nxs&DIeeSzWt4N-m1b2P9E1xQRCqV4^rR&SIp;rP2e6+hsl#W;K=`TEY)uPQ7gxT!SP&`QyV
z{&KIo4*;u34nc1IJ@@vkUTQj`Q(}dpKqtGgd6Shut0;%KOHJSJ8mNn#u?f|S_2h_E
zH^q&TJ;e$CJHhNVOYcMmSs|5fi+9FL^=4j=cqEbt%CcKE&MM7VI;%wcuLL?d&h*u|
z{{!3H$8#9FADl3d${5E4!RE?)jTl9M*3w+L(S}(SmS6|3bI+22nw3?CR6!t`
zgehBejcLl+sjHLfpV>NOHj;sWs;>d8bjrw7aNOhk(I`{3j^24*rXf{{Q-1ESUQ-?P
z?9z(Ne9%3Lc+s#mO#r0*2%XXbA*Vi5w0eud0o{qiV2B91q0K#C>OT~PyuNoEs%(+OV#OVQ{wg&tftCucIE7Hm#=9f;B4?qFHp1Eawa^|
zH#NgH_z7*|&kz+-c0G-~n3h7dgjq&1KO}L1J@wWqIF~sYUlc}mpbXWGsJV-GA+&Ep
z^ukNY*&XGDT4S(Q6o8+-9cjEp4P}}%pZW<|3%Nf`oN;8s61I7+`w_@jY)Hy`$&yG&
zY#4GBccSfwPrcUCoX&drOImH})tjJleo};>m?OXPopOP=*7tK)R~naL^X|S#eCPaE
z8#MMhc^CG!B-cD8{@Oz9vMOxAHHM-2O*BNze@<4ACg91uSgBs?iEr6kK|Z>TH>hrY
ziZv1;FwOmF&`xl1Pc_Fwf0Q)l+^3ut`N~2@X;+i0slZljT`o_)J~*B+#wosBBFb;J
z7ic+a-W4+qED*)MG+wY(%-;R(rFdc>6T{PY!SF>JsB%2fkT?~)1ScuZClUPKLDrYX
z{e!56maXH%5k(u;be`8%VbfK*J#aS-}h
zv(ldMHBST2EDf(On!7WJ9%U`*V97V$-zlS|H7_+8Y@uUFY}%7*$*6aHLq;u$oUfS%JOLXX#8YsVSs=
zjbAme%}R^`)mx(wuL!JLf>?9YEuc>w*3?X!HQEF1^I8wA3%Ze8dTVNtQ7%i{S2N;G
z`p)Z6G=MzA^IzI#(Pts9Z1}2nOIHBxAc(jZ>vdvC;F@Uf2w$#Re=#IjrO1bK$FS@Ey+U8S##D&%Cj;5+Ji8BD1NPi<0QB^?+<0;%QJ{{Xp?76D&L1^np
zYK2gg8JLK?YuaHVSyJT~M1Q%?`uE*cw&~ys>)}V$SNE5j{Whq{DGT(dbI=;a{ck;=
z$y5mqQ;ZR7QJ541t(N8JrlEcT=b6srA#&e1H=^Z@gdF9Dr#}HL^`KC(2$SPuPe6f5
z1fxy;f#^_BpSCBlS
z_cs226v3o*7{Z73gXz$xJ{+Qx?pkeYho-lX=sZem=bOz&XYG;dxT0NrXNJ24=t{^y
z#PNNfMuBg9(*cQgGdbE?Q#O2+1=$UZU&y`zdVL#!7%;O3Oam_@$QJ9fEH
z!-2MGRXdDObP>$_bq?8Y|(e;#gEa2aP8*BWjON2S$)HCPF5
z?0+Lutv>#zTuXH*S!UUGJjQG0YnJ#~Cu(zViK;%(>E&0L4>;)WxD@pqX9!Y0o5|V_
zs|`hLCEid=#S{`YpD6s5a*sd26Rq4;$6kz__QI-terzya7_l+4y)5!icuYJzkGWU_
zmiFp-H{sBiB9oK}#~XV^nvk_LNnGL$B$7pA5<^hTv)TkhhpsW@K(TmFhna=y%1+y?
zNcPeGPG?Qj3tSqel$3JVBkB6Chw>Gy@)h*3xBtUzQRVmG#{<7nuJaJO0qfa{_4Hss
z-A6pg=utZ8Bfo`AeEJf->kuL4%eo+_fH&JF#%N`QKw=?~c{D#pSOpXUJ84SeG>8|~
z*?Fme6G^jd-#HVBu*4-{Wf+)EF;sAI@7Q$Gs6Q2sZm1uCMDXsktLC56)*-&uL9|z|
zm*yq=cto0&R+M`dPAquMVP#&Wy5PC<`qTbJ1C3&}NxPK}*4gk!0q@<~S9R?g-TM@C
z`Rv6g4DO-H=FI|c0rLmzcESggW-g!Zp@^!vJKsr&hNhaO7Ue1VSb!4zC
zG$?z7*@`LK%Um>8k{e`21`mQ7G+#f0yz5RmeXuQg2SH5wGMVe?8zF5Pbo(ih{h#=9
zJ~CjjfN375cwe~-{i?(^i~?`wX&Fz*9TqS-u)5(433k3Itde+oY2!%Qw2~6vj{lW#
z2e554OfAFr3L7qx_aNqvt1ZyB~ZuYD5fB@0b9qAsc{2mxl
zzr%;;#n11t0lRQ=mD>-kpcY#LwN3*Ae2c1PV3{`g2pA56Dp{@*5VAf1cMg{8H0I>ix7(N)$QoaNC~$K7s33R27eVRw
zKeBM%gy0ndcz#Y}m~6N&^%M9g@kNkgZ*7QwC(4lnv76F^QX2_#2m5C)vL|LN(i|e=
z8ffd7$77saU0Z+Q*!nQe^$Q1
z4)h>~YE^A41!G$~+NJ_7rIy?I4di`)|C1Hf?^a^V3hcER8Lt!6E_3dths?CE_-T!B
z(Hlt%zDuuUc!MOv%pzd%hS~0==P_bR0!6upYR5OAoqHq3?i8I1`XL?(TnR-W3rl?68X9RXEwwWY^J8vW~>rtNmJlft{hI8u@18rCl)cF-zXoPryE)
zN-r78Jsmw$UaAeTR{zIKLK~&pB#V_SPg-;s
z5G#Br7~velpK%>i_-eX<36$N2uD&7>(ED`m?^4>8kBJfgm#5p6c@6PAN5YT!=T30k
z!Ft$b+D*__vMOerl!XB*8`c1V*I~Jp`7SzvfGJnf@-i=3{}E|FDMrT}gGGp3FJsbg
zin=xei4C`+^+abKs0<~c2jlw1V+34k0;Rjcp9N{CqxWt%SCd4)Hh*Vl0!)%CUmmug
zDcD^F-&C5KcFVE7ETGGzH!b?QssnU4I6{4>qvahsC(3FDloHA60`gr7bq%0=5o
za=PQo!UhBjp#%bG9?oDeM6d0%6HWECp@#5WOx}##Zd(C*PUoHla@Ibyq)>8$AVdy5
z7q!t>5&%R50(Se&J3|(R*)trz)>;eAw~)<_!(AdE3$!@kTtE&rc^o(Y9^cbXeGBW;
z8j480!~SX_^IkONNQZ6*UfA9Vcaa3!0GEiJ^(CS`7yycX%ed)
zj6R5&64WsXRFpOFead6H!ih~$dCb#&V9ff*;;O3STnzfCK=%$;#qwJ{{b>M}T8hLl
z@kM5VG~}&x9xC{bmH?`-x`unn_sr-14p_x!0tUae7VMdWouKk8=%u)SkC4j8dUm6_
zzpd-v;_Q>Jl)|n9PsFt)-F3Y4xEQ1s=#1D+tSivPRn+t?p#;-pY%pBLP|j1g*5G+x
zybV={@SYGNlm5N&BSYDAqk?@D>hK28H~Hel7jV^!u`SmH^q!F-BavZQ`4MaO?fqcH
z?!>k3x?58WlRd1ZHZEuzAcq#EuZZ}YCqpuP)-1!D2icNK9TQkA*G{sW1(j8N*r(Aa
z%bhd=L?e`|yo#MlVKM54!LUHj3|L=a{0xHClPRoeHGeaBWkWWi5%=R8Suc3u7~du}
z<8H#m-Zy9R&549ysV?|TjivO*jgFYV&+6&owASXU>$(ahos5v2bE{M(L4l^K2B2vSOVG+hEx?g}$w)Izl@lS0!@%p(3~cOko%%hD8Pd@CGe$*=fl
zp*dBzA!oCzZ3%A^oqgz;)jWnMi*G+2*zBy!wy0+JuZdQ;wC#C%w_EG=E_-U+c%V|I
z$72$4<93u5e?B|GE>&|kI#dU4<_jVfA0Cpq^6t527NRK7ttxMt0xQ#4PfwZ*ukTv2
z^GOlnXenKCa60A02kf;iolc03Vw!*WTRX1h?7~K&)%@@tiu0DXVKFNpkCV=&cBC&)
z6ot_uojyP%;`>@8D1}9u(TY+A59|n@qgu-q(iLN}+5a3XJ!3C5?@^7EfWK@%oIW6$
zE&s%QF8$JwF^F?0n=#%|g4gclu<*eGsk~eiS7e(%w7f6<%Zy4Vfz$6jZn*=1z)oh=
z-zNVjytKpD)T=FA0@2{7Vbp`>L5kT@lN;9|dVjfHFKRn72&7WSFqdF~K8(UH_Ot$-
zSGeUp<{H9)!)OK@e31FMe{!vrESW@-=Zh0{Iyp8CIg?MRA<8qj^4lFx|3V2jEw!EQ
z>x_kT24_7_`NVG^C|7RJGw0f-TL;*V>>H=<^YiAA3ljGwbsuB?$NZaKD3qt|*z+uI_xh2x{i8c<;2*
z!DnEFlaM~
zx~)iSAQ*`u`-m{Ce|Q^DoRBQ{zJa~AJ5dvz7nY)wIwlHk<0zZ(BxZQW<>$L`3WX%z
z)_9s6;t}w=AYOV@VO;*b9#p%5i(5i@)>+PgS^){q#p=H+NdO^~pGADHtKIJ@ovSoM
z1CCBGTMuPcGn}Nud6li)SxJ}$?uC(WRSk@47nrLKgN11Vg2dg!p?Qk1
zQMPTOy|`{~3TD8(DZ$Fr?MlzTaMrf_BMRT8(x#tT4R8KkG?8R7#6h(PX7ak<#aq_f
zs3x@n(l@^?Y^7b@^l9MZmxE13w=Mc=Bo8Hb4-~w%XB4tJL2IcdRZJIm4i_nlV(+j8
z*5TC=%+TE^?`KEHwdyPJ1LCI`@y1ZampP$DJ(J4M4-DJq5KX;P-#wm-)j7!SWz?ER
zkO+)LaFni5KRP4-nfLQpVw_(oVcYbyma?Xt^OjdXdfoloL(jIby;fiHzZgb>{j-9Y
z=EWqqYMq;Vvmx0uM*7m@mZ3Pm5yt7mxJ@kw`)+}c6r|H>>=WWA3$kxlE^kVG&Pp70>qj=Aa(8gsaxGWrU_m(iRp
z=rLbySk#}S^U+@FYqHNti48x1`PWGvgugBel6T>ilj?fFEb`73P_0=UnjVh_KrqmE
zJtc$Iw$Ij5SJ`3H@D5Kkj(*YQRN*}Du~tl@)#Q8N0Q!6#O?|`gy>Uy
zl17huhF~~wiVaDTvB$QYceIbDdwD(@94hd(%2B=T`}@@Ppl~>bGpBHBPLeRUBOQvk
zh&6u7k~|ND=bV!YKBQ@PR_XZ4)WZ
z7c+;~5Op@~6tGG7p8F|k^`(g~+6xH*=`J4=s#2ly_M<(EbC3#*csR)YoRlAKhLuT@
zCjXXAAUb$GF?WkQbtEzeM`6{^`ar(+Wq2fJyTA*4WVAPks*W2gw268GD8nWf%F!
zdrNnhUwrI`PthAb3&uQadje6Xv%ZS8PmB-Y!)ocYhh0D>LwZK%jG>)mX8Tv1(H9QFv5@7o^p>%_@U!E)~HY1P#;)4(e2`pbBiQe4Z_P%pvna(l}H
zRWao$oen7j=N|YPoDKtZET@2v_jr~!CKc1v#;MSe4|PIO(<$$dM`+u3L+&^mMK&^vad-2Jv_hX?UP0o=%X
z28HyiSlFJ3r#~Mc*@~Qj+ovZlPe+wlrRd$D3ne$MFAaJce2Bm01?r2v{szL@8*|MF
z8%XPY8{xKGQxaGPs~xZOA&4+65SQFQvNxv-Qxn3zqQbal>B40kDx^jKaawnf9y=6g
zbLDaTW9%FOgst_K(7DYxJ7ok!LPi@E%`e1ab}$&a*a}{3-pXp@DH$ah7|U8+B^Gt2
z5gD_>vOwV*IV2meGcoIUCIT{B`NFa5x3ZM586aJ{d}+lg@z6ccDH2cio<2J*7NKXS
z&h3QFPb?vooX}9Z7(a6w{Y5gRICHyP{p(?k5{PLF!-Cv5WgT*LAd%aiYp0_cI)j6H
z1*(=NnT^+-+Y7xi)?M*a<~Yd!fBXSP^&iK9Jo9Zird7)o!hao7jUNm)jTY|cKgD9%
z3DobPGf-|_$wc9Ace>U32`k8QYBYmlW4SH32X#+qgZov2`WPBo386dhM!r%Xhm9Ot
z`e`_}dQbvkdNa#z2zA>f%_O7pebV}B#
zGU@exdyT(2v=f~E_BH?Z2aDmQ5#-#E5Q1yOS~i?6bp%d|PqQlEOcGFj03AjfZ{OP1
zP6?DeCoBUEDgFp4l@-GIhTa8_hRC*df8?#XngI2#d*j;i4|mZG)8$gX*DmnlLM`f<
zZ@QMu5ADuWmXa1DQgMon^M|V#c56|5*+54y#4Cb9Zp99K=Mnwst<=gklYi7M7eXHG
ziWb2xP=OxVVa}dX4MKWygx2{AW$PhohCSOc&*eN91BUXUP+};O7e&*_M3?%7wp5-#
z26Nf!(%2S0rMAMIe634mOUHQ}5yJ-x?kQ
z*d{w+NH8CKtno`B;c36X$T=U6g=Pz>4G_#%Ml4Su4v+Z|AIEr2b^$
zb?m>HC>{Por)nC%Y4bmD4!cU)Oat}Jw&phr7F3%q;9
z5E{d`$r2$hUBqoBbYm?_p%x!|F<
zrW<4X10~J6ycg#G8rT+I{?B{i5$%yQJEM+A4ok%{G^i_vlSNNYtmN#yrE0!7T{^Jx
zaL3deeM!KmkRk{w!5(g52!Y9-^gPpBg6{ePr#T$cHY!zO`)Ry`q!@C9haNo
zxIxRik-0zJYEzQmcA7BHT0T-LB9ljuJda3&q_C_+=#2Q(ZpfR>)J4wmE;gxhi(B%!=v%rs
zMYJdFo7qNzIFh)V&pzXQ+NO1?
z8=Ifv=}2YpU4W~^2iX{0#yI5F3B51^ekQ5PJe?*VXBKx+y1kqbCaf}&?5f{6O+1%L
z1NnMGPu#eOzZeU;;V3?Ck}`?$xI-7+p|w1@7HSN{$LVfa4K^rjH8tm6KHNC&1ZR|u
z8oBoFV3rKV3&*nE;IgE*0Vh+_T*51&vpMBo9pvJG{F>H$ntb_Aw4LlCy)2NyXWZF_
zuJc7PNh6Q~eu25973P`Dnif=wPi<|*VVDDas(XNQt@USBuh2CbXK%I%!smkK^u*=@
z#<07ZcwI>-pl