From 738c89afef695c5d431d6b1d8f2441703c893bbb Mon Sep 17 00:00:00 2001 From: agusmakmun Date: Mon, 18 Apr 2016 18:42:56 +0700 Subject: [PATCH] Pertamax --- LICENSE | 4 +- _config.yml | 9 + _layouts/default.html | 62 +++++++ _layouts/post.html | 9 + _posts/2013-12-23-ruby-json.markdown | 41 +++++ ...2013-12-23-welcome-to-simply-grey.markdown | 64 +++++++ css/bootstrap-theme.min.css | 7 + css/bootstrap.min.css | 7 + css/main.css | 159 ++++++++++++++++++ css/syntax.css | 59 +++++++ img/logo.jpg | Bin 0 -> 51852 bytes index.html | 12 ++ js/bootstrap.min.js | 6 + readme.md | 3 + test.html | 65 +++++++ 15 files changed, 505 insertions(+), 2 deletions(-) create mode 100644 _config.yml create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html create mode 100644 _posts/2013-12-23-ruby-json.markdown create mode 100644 _posts/2013-12-23-welcome-to-simply-grey.markdown create mode 100755 css/bootstrap-theme.min.css create mode 100755 css/bootstrap.min.css create mode 100755 css/main.css create mode 100644 css/syntax.css create mode 100644 img/logo.jpg create mode 100644 index.html create mode 100755 js/bootstrap.min.js create mode 100644 readme.md create mode 100755 test.html diff --git a/LICENSE b/LICENSE index 03a1688..0678d63 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016 agus makmun +Copyright (c) 2016 Agus Makmun Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..b3642cc --- /dev/null +++ b/_config.yml @@ -0,0 +1,9 @@ +name: Agus Makmun +markdown: redcarpet +pygments: true +github: https://github.com/agusmakmun +about: I am an independent developer from the sunny UK. I dabble in Ruby, play in C and I'm an avid systems administrator. +urls: + - text: github + url: https://github.com/agusmakmun +baseurl: '/agusmakmun.github.io' diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..fdf0653 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,62 @@ + + + + + + {% if page.title %} {{ page.title }} {% else %} {{ site.name }} {% endif %} + + + + + + + + + + + + + + + +
+ +
+

{{ site.name }}

+
+ + navigation
+ home
+ {% for i in site.urls %} + {{ i.text }}
+ {% endfor %} + + {% if site.about %} +
+ about
+ {{ site.about }} +
+ {% endif %} +
+ +
+ + {{ content }} + + +
+ +
+ + + + + + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..6e7b946 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,9 @@ +--- +layout: default +--- +

{{ page.title }}

+{{ page.date | date_to_string }} + +
+
{{ content }}
+
diff --git a/_posts/2013-12-23-ruby-json.markdown b/_posts/2013-12-23-ruby-json.markdown new file mode 100644 index 0000000..2a4a20a --- /dev/null +++ b/_posts/2013-12-23-ruby-json.markdown @@ -0,0 +1,41 @@ +--- +layout: post +title: "Parsing JSON with Ruby" +date: 2013-12-23 00:18:23 +categories: ruby +--- +Parsing JSON with Ruby is actually extremely easy. All you have to do is have the json gem installed (`gem install json`) and call the `JSON.parse` method on the JSON data to convert it to ruby hashes. If you look at this small program here, you can see how I have implemented parsing JSON in Ruby. + +{% highlight ruby %} +#!/usr/bin/env ruby + +require 'json' +require 'net/http' +require 'libnotify' + +def parsejson + file = "http://api.openweathermap.org/data/2.5/find?q=London&mode=json" + response = Net::HTTP.get_response(URI.parse(file)) + weatherjson = response.body + actual = JSON.parse(weatherjson) + + # check for errors + if actual.has_key? 'Error' + raise "error with the url" + end + + results = [] + + actual["list"].each do |listitem| + weather = listitem["weather"] + weather.each do |weath| + results.push(weath["description"]) + end + main = listitem["main"] + temp = main["temp"] - 273.15 + results.push ("%.2f" % temp) + end + + return results +end +{% endhighlight %} diff --git a/_posts/2013-12-23-welcome-to-simply-grey.markdown b/_posts/2013-12-23-welcome-to-simply-grey.markdown new file mode 100644 index 0000000..44c0104 --- /dev/null +++ b/_posts/2013-12-23-welcome-to-simply-grey.markdown @@ -0,0 +1,64 @@ +--- +layout: post +title: "Welcome to Simply Grey" +date: 2013-12-23 00:18:23 +categories: simplygrey +--- +SimplyGrey is a simple, easy to use theme for Jekyll that compromises of mainly grey colours. A lot of people enjoy the simplistic look of grey and also find it easier to read. + +## Why use Simply Grey? +There are lots of reasons why I think you should use Simply Grey but I will list the main ones that I believe are more of benefit to you, the user. + ++ Easy to use and setup - Jekyll has a huge range of documentation to get you started writing posts and the Simply Grey theme makes your blog look beautiful. ++ Easy configuration - I developed this theme in order to be as customisable as possible. If you want to add more links to the navigation bar, all you have to do is edit the _config.yaml file and the `urls` part of it. ++ You can change it - After being released with the MIT license (like Jekyll itself) you are free to change and basically do anything you want to this theme provided you keep the copyright notice in the files and distribute the license with it. + +## Jekyll +Jekyll is a static site generator developed in ruby that generates websites from markdown and many other formats. The benefit of this is that you can have a highly customisable blog where you can generate posts by writing easy markdown code whilst still retaining the small memory imprint that Jekyll has. + +### Code Snippets +Code Snippets are one of the main reasons why I love Jekyll and I think you will too. All code snippets become highlighted with great colours when you write the code in markdown. Here is an example of highlighted Ruby code in a weather application that I have made. +{% highlight ruby %} +#!/usr/bin/env ruby + +require 'json' +require 'net/http' +require 'libnotify' + +def parsejson + file = "http://api.openweathermap.org/data/2.5/find?q=London&mode=json" + response = Net::HTTP.get_response(URI.parse(file)) + weatherjson = response.body + actual = JSON.parse(weatherjson) + + # check for errors + if actual.has_key? 'Error' + raise "error with the url" + end + + results = [] + + actual["list"].each do |listitem| + weather = listitem["weather"] + weather.each do |weath| + results.push(weath["description"]) + end + main = listitem["main"] + temp = main["temp"] - 273.15 + results.push ("%.2f" % temp) + end + + return results +end + +def notify(summary) + Libnotify.show(:body => "Current temperature is: #{summary[1]} degrees celsius.\nCurrent description of conditions: #{summary[0]}", :summary => "Weather Update", :timeout => 10) +end + +notify(parsejson()) +{% endhighlight %} + +Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. + +[jekyll-gh]: https://github.com/mojombo/jekyll +[jekyll]: http://jekyllrb.com diff --git a/css/bootstrap-theme.min.css b/css/bootstrap-theme.min.css new file mode 100755 index 0000000..ba4bd28 --- /dev/null +++ b/css/bootstrap-theme.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.1.1 (http://getbootstrap.com) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#2b669a}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-color:#357ebd}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);border-color:#3278b3}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0)}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} \ No newline at end of file diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css new file mode 100755 index 0000000..679272d --- /dev/null +++ b/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.1.1 (http://getbootstrap.com) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!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) ")"}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}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.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 col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;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{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{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:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/css/main.css b/css/main.css new file mode 100755 index 0000000..f295d4c --- /dev/null +++ b/css/main.css @@ -0,0 +1,159 @@ +/** + * ////////////// + * Master styling + * ////////////// + */ +body { + color: #424242; +} + +@media (min-width: 768px) { + .container { + max-width: 730px; + } +} +/** + * ////////////////////////// + * Font and link declarations + * ////////////////////////// + */ +span.time { + color: #ADADAD; + margin-bottom: 5px; + font-size: 11px; +} + +h1 { + font-weight: normal; + color: #696969; + margin-bottom: 10px; +} + +h2 { + font-weight: normal; + margin-bottom: 5px; + color: #666666; + border-bottom: 1px solid #E6E6E6; +} + +h3 { + font-weight: normal; + margin-bottom: 5px; + color: #666666; + text-decoration: underline; +} + +a, a:link, a:active { + text-decoration: none; + color: #8C8C8C; +} + +a:hover { + color: #B3B3B3; + text-decoration: underline; +} + +/** + * ///////////////// + * Container element + * ///////////////// + */ +div#container { + width: 700px; + margin: auto; +} + +/** + * ////////////////////////////////// + * Right aka content column formatting + * ////////////////////////////////// + */ +div.right { + width: 500px; + float: left; +} + +div.content { + border-top: 1px solid #E6E6E6; + margin-top: 5px; + padding-top: 5px; +} + +div.content pre { + background: #333333; + padding: 5px; + color: #FFF; + overflow-x: auto; + font-family: Menlo, Monaco, Consolas, 'Courier New', monospace; + font-size: 12px; +} + +div.content .highlight { + background: #333333; +} + +footer { + border-top: 1px solid #E6E6E6; + width: 100%; + height: 10px; + margin-top: 10px; + padding-top: 10px; + color: #C2C2C2; + font-size: 11px; + bottom: 0; + padding-bottom: 10px; +} + +footer div#github { + text-align: right; +} + +div.right h1 { + margin-bottom: -2px; +} + +div.right ul { + list-style: none; + margin-left: 0; + padding: 0; +} + +div.right ul li { + margin-top: 5px; + margin-left: 0; + padding: 0; +} + +div.right .post ul { + list-style: square; + margin-left: 15px; +} + +/** + * /////////////////////////////////// + * Left column aka nav bar formatting + * /////////////////////////////////// + */ +div.col-sm-3 { + margin-top: 100px; + font-size: 11px; + color: #666; +} + +div.col-sm-3 strong { + font-size: 16px; + color: #4A4A4A; + font-weight: normal; +} + +div.col-sm-3 div#about { + margin-top: 10px; + color: #8C8C8C; +} + +div.col-sm-3 img#about { + -webkit-border-radius: 150px; + margin-bottom: 10px; + margin-left: auto; + margin-right: auto; +} diff --git a/css/syntax.css b/css/syntax.css new file mode 100644 index 0000000..62eedce --- /dev/null +++ b/css/syntax.css @@ -0,0 +1,59 @@ +.highlight .hll { background-color: #49483e } +.highlight .c { color: #75715e } /* Comment */ +.highlight .err { color: #960050; background-color: #1e0010 } /* Error */ +.highlight .k { color: #66d9ef } /* Keyword */ +.highlight .l { color: #ae81ff } /* Literal */ +.highlight .n { color: #f8f8f2 } /* Name */ +.highlight .o { color: #f92672 } /* Operator */ +.highlight .p { color: #f8f8f2 } /* Punctuation */ +.highlight .cm { color: #75715e } /* Comment.Multiline */ +.highlight .cp { color: #75715e } /* Comment.Preproc */ +.highlight .c1 { color: #75715e } /* Comment.Single */ +.highlight .cs { color: #75715e } /* Comment.Special */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .kc { color: #66d9ef } /* Keyword.Constant */ +.highlight .kd { color: #66d9ef } /* Keyword.Declaration */ +.highlight .kn { color: #f92672 } /* Keyword.Namespace */ +.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */ +.highlight .kr { color: #66d9ef } /* Keyword.Reserved */ +.highlight .kt { color: #66d9ef } /* Keyword.Type */ +.highlight .ld { color: #e6db74 } /* Literal.Date */ +.highlight .m { color: #ae81ff } /* Literal.Number */ +.highlight .s { color: #e6db74 } /* Literal.String */ +.highlight .na { color: #a6e22e } /* Name.Attribute */ +.highlight .nb { color: #f8f8f2 } /* Name.Builtin */ +.highlight .nc { color: #a6e22e } /* Name.Class */ +.highlight .no { color: #66d9ef } /* Name.Constant */ +.highlight .nd { color: #a6e22e } /* Name.Decorator */ +.highlight .ni { color: #f8f8f2 } /* Name.Entity */ +.highlight .ne { color: #a6e22e } /* Name.Exception */ +.highlight .nf { color: #a6e22e } /* Name.Function */ +.highlight .nl { color: #f8f8f2 } /* Name.Label */ +.highlight .nn { color: #f8f8f2 } /* Name.Namespace */ +.highlight .nx { color: #a6e22e } /* Name.Other */ +.highlight .py { color: #f8f8f2 } /* Name.Property */ +.highlight .nt { color: #f92672 } /* Name.Tag */ +.highlight .nv { color: #f8f8f2 } /* Name.Variable */ +.highlight .ow { color: #f92672 } /* Operator.Word */ +.highlight .w { color: #f8f8f2 } /* Text.Whitespace */ +.highlight .mf { color: #ae81ff } /* Literal.Number.Float */ +.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */ +.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */ +.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */ +.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */ +.highlight .sc { color: #e6db74 } /* Literal.String.Char */ +.highlight .sd { color: #e6db74 } /* Literal.String.Doc */ +.highlight .s2 { color: #e6db74 } /* Literal.String.Double */ +.highlight .se { color: #ae81ff } /* Literal.String.Escape */ +.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */ +.highlight .si { color: #e6db74 } /* Literal.String.Interpol */ +.highlight .sx { color: #e6db74 } /* Literal.String.Other */ +.highlight .sr { color: #e6db74 } /* Literal.String.Regex */ +.highlight .s1 { color: #e6db74 } /* Literal.String.Single */ +.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */ +.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */ +.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */ +.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */ +.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */ diff --git a/img/logo.jpg b/img/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96cb96019ce8167e012f194ae3adb1fa7c8ee887 GIT binary patch literal 51852 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®6 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 n{{YvbiY?R@ +

Blog Posts

+
    + {% for post in site.posts %} +
  • {{ post.date | date_to_string }} » {{ post.title }}
  • + {% endfor %} +
+ diff --git a/js/bootstrap.min.js b/js/bootstrap.min.js new file mode 100755 index 0000000..b04a0e8 --- /dev/null +++ b/js/bootstrap.min.js @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.1.1 (http://getbootstrap.com) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.isLoading=!1};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",f.resetText||d.data("resetText",d[e]()),d[e](f[b]||this.options[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},b.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}if(e.hasClass("active"))return this.sliding=!1;var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});return this.$element.trigger(j),j.isDefaultPrevented()?void 0:(this.sliding=!0,f&&this.pause(),this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")?(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")),f&&this.cycle(),this)};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("collapse in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);!e&&f.toggle&&"show"==c&&(c=!c),e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(b){a(d).remove(),a(e).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(a(c).is("body")?window:c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);{var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})}},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);if(g&&b<=e[0])return g!=(a=f[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parentsUntil(this.options.target,".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=this.pinnedOffset=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(b.RESET).addClass("affix");var a=this.$window.scrollTop(),c=this.$element.offset();return this.pinnedOffset=c.top-a},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"top"==this.affixed&&(e.top+=d),"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top(this.$element)),"function"==typeof h&&(h=f.bottom(this.$element));var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;if(this.affixed!==i){this.unpin&&this.$element.css("top","");var j="affix"+(i?"-"+i:""),k=a.Event(j+".bs.affix");this.$element.trigger(k),k.isDefaultPrevented()||(this.affixed=i,this.unpin="bottom"==i?this.getPinnedOffset():null,this.$element.removeClass(b.RESET).addClass(j).trigger(a.Event(j.replace("affix","affixed"))),"bottom"==i&&this.$element.offset({top:c-h-this.$element.height()}))}}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery); \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..437b61e --- /dev/null +++ b/readme.md @@ -0,0 +1,3 @@ +> This project forking from [A simple grey theme for Jekyll](https://github.com/liamsymonds/simplygrey-jekyll) + +Our Stack Problems \ No newline at end of file diff --git a/test.html b/test.html new file mode 100755 index 0000000..37bab4b --- /dev/null +++ b/test.html @@ -0,0 +1,65 @@ + + + + + + {% if page.title %} {{ page.title }} {% else %} {{ site.name }} {% endif %} + + + + + + + + + + + + + + + +
+ +
+

Simply Grey

+
+ + navigation
+ home
+ {{ i.text }}
+ {{ i.text }}
+ +
+ about
+ about me lalala +
+
+ +
+ +

Title

+ 34 Dec + +
+
This is the main content lalallalalalallalalalalalThis is the main content lalallalalalallalalalalalThis is the main content lalallalalalalalalalThis is the main content lalallalalalallalalalalalThis is the main content lalallalalalallalalalalalThis is the main content lalallalalalallalalalalalThis is the main content lalallalallalallalalalalal
+
+ + + +
+ +
+ + + + + + +