diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 00000000..c300aaca
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,24 @@
+{
+ "env": {
+ "browser": true,
+ "es6": true,
+ "node": true
+ },
+ "parser": "@typescript-eslint/parser",
+ "plugins": ["@typescript-eslint"],
+ "extends": "google",
+ "globals": {
+ "Atomics": "readonly",
+ "SharedArrayBuffer": "readonly"
+ },
+ "parserOptions": {
+ "ecmaVersion": 2018,
+ "sourceType": "module"
+ },
+ "rules": {
+ "indent": ["error", 4],
+ "semi": ["error", "never"],
+ "brace-style": 0,
+ "max-len": 0
+ }
+}
diff --git a/.travis.yml b/.travis.yml
index a6c8f557..49f6342d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,3 @@
language: node_js
-sudo: false
-node_js:
- - "stable"
+sudo: false
+node_js: lts/*
diff --git a/Procfile b/Procfile
index 489b2700..2be5f808 100644
--- a/Procfile
+++ b/Procfile
@@ -1 +1 @@
-web: node server.js
+web: yarn start
diff --git a/README.md b/README.md
index d1fd7d48..f93ec6d6 100644
--- a/README.md
+++ b/README.md
@@ -65,9 +65,7 @@ You can also use an array to hold multiple copyright holders:
Which will be formatted as:
-```
-Remy Sharp (http://remysharp.com) and Richie Bendall (https://richienb.github.io)
-```
+ Remy Sharp (http://remysharp.com) and Richie Bendall (https://richienb.github.io)
### url
diff --git a/licenses/ISC.ejs b/licenses/ISC.ejs
new file mode 100644
index 00000000..4b1b8695
--- /dev/null
+++ b/licenses/ISC.ejs
@@ -0,0 +1,27 @@
+
+
+
+<% include components/header %>
+
+
+
+ <%- gravatar %>
+ The ISC License (ISC)
+ Copyright © <%= info %>
+
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+ <% include components/footer %>
+
+
+
diff --git a/LICENSE.html b/licenses/MIT.ejs
similarity index 50%
rename from LICENSE.html
rename to licenses/MIT.ejs
index 53b9a84a..f29c83a1 100644
--- a/LICENSE.html
+++ b/licenses/MIT.ejs
@@ -1,49 +1,13 @@
-
- MIT License
-
-
-
-
-
-
-
+<% include components/header %>
- {{{gravatar}}}
+ <%- gravatar %>
The MIT License (MIT)
- Copyright © {{info}}
+ Copyright © <%= info %>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
@@ -63,9 +27,7 @@
The MIT License (MIT)
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-
+ <% include components/footer %>
diff --git a/licenses/components/footer.ejs b/licenses/components/footer.ejs
new file mode 100644
index 00000000..414ecfd1
--- /dev/null
+++ b/licenses/components/footer.ejs
@@ -0,0 +1,3 @@
+
diff --git a/licenses/components/header.ejs b/licenses/components/header.ejs
new file mode 100644
index 00000000..ab5dbb4f
--- /dev/null
+++ b/licenses/components/header.ejs
@@ -0,0 +1,37 @@
+
+ MIT License
+
+
+
+
+
+
+
diff --git a/package.json b/package.json
index 1fdd0ab9..150f800f 100644
--- a/package.json
+++ b/package.json
@@ -1,36 +1,44 @@
{
- "author": "Remy Sharp (http://remysharp.com/)",
- "name": "mit-licence",
- "description": "Hosted MIT License with details controlled through this repo",
- "version": "1.0.0",
- "repository": {
- "type": "git",
- "url": "git@github.com:remy/mit-license.git"
- },
- "scripts": {
- "start": "node server.js",
- "dev": "nodemon server.js",
- "test": "node test.js"
- },
- "bugs": {
- "url": "https://github.com/remy/mit-license/issues"
- },
- "license": "SEE LICENSE IN LICENSE",
- "dependencies": {
- "compression": "^1.7.4",
- "dayjs": "^1.8.14",
- "express": "^4.17.1",
- "express-res-html": "^0.2.3",
- "humanize-list": "^1.0.1",
- "md5": "^2.2.1",
- "mustache": "^3.0.1",
- "mustache-express": "^1.2.8"
- },
- "devDependencies": {
- "@types/bluebird": "^3.5.27",
- "@types/compression": "^0.0.36",
- "@types/express": "^4.16.1",
- "@types/md5": "^2.1.33",
- "nodemon": "^1.19.1"
- }
+ "author": "Remy Sharp (http://remysharp.com/)",
+ "name": "mit-licence",
+ "description": "Hosted MIT License with details controlled through this repo",
+ "version": "1.0.0",
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:remy/mit-license.git"
+ },
+ "scripts": {
+ "start": "tsc server.ts && node server.js",
+ "dev": "ts-node-dev --respawn --transpileOnly server.ts",
+ "test": "node test.js",
+ "lint": "eslint . --color --fix"
+ },
+ "bugs": {
+ "url": "https://github.com/remy/mit-license/issues"
+ },
+ "license": "SEE LICENSE IN LICENSE",
+ "dependencies": {
+ "compression": "^1.7.4",
+ "dayjs": "^1.8.14",
+ "ejs": "^2.6.1",
+ "express": "^4.17.1",
+ "express-minify": "^1.0.0",
+ "humanize-list": "^1.0.1",
+ "is-number": "^7.0.0",
+ "md5": "^2.2.1",
+ "tmp": "^0.1.0",
+ "typescript": "^3.4.5"
+ },
+ "devDependencies": {
+ "@types/compression": "^0.0.36",
+ "@types/express": "^4.16.1",
+ "@types/express-minify": "^0.1.34",
+ "@types/is-number": "^3.0.1",
+ "@types/md5": "^2.1.33",
+ "@types/tmp": "^0.1.0",
+ "@typescript-eslint/eslint-plugin": "^1.9.0",
+ "eslint": "^5.16.0",
+ "eslint-config-google": "^0.13.0",
+ "ts-node-dev": "^1.0.0-pre.39"
+ }
}
diff --git a/server.js b/server.js
index 63671470..fc1bef22 100644
--- a/server.js
+++ b/server.js
@@ -1,66 +1,68 @@
-const express = require('express')
-const path = require('path')
-const fs = require('fs')
-const PORT = process.env.PORT || 80
-const mustache = require('mustache')
-const compression = require('compression')
-const dayjs = require('dayjs')
-const md5 = require('md5')
-const humanizeList = require('humanize-list')
-
-// Read License file
-const template = fs.readFileSync('LICENSE.html', "utf8")
-mustache.parse(template);
-
+var express = require('express');
+var path = require('path');
+var fs = require('fs');
+var PORT = process.env.PORT || 80;
+var compression = require('compression');
+var dayjs = require('dayjs');
+var md5 = require('md5');
+var humanizeList = require('humanize-list');
+var minify = require('express-minify');
// Prepare application
-const app = express()
-app.use(compression())
-app.use(require('express-res-html'))
-
+var app = express();
+app.use(compression());
+app.use(minify({
+ cache: require('tmp').dirSync().name
+}));
+app.set('view engine', 'ejs');
+// Setup static files
+app.use('/themes', express.static('themes'));
+app.use('/users', express.static('users'));
+app.use('/favicon.ico', express.static(__dirname + '/favicon.ico'));
// Setup useful variables
-const year = dayjs().year()
-
-// Any theme request
-app.get('/themes/:file', (req, res) => res.sendFile(path.join(__dirname, 'themes', req.params.file)))
-
-// Any user request
-app.get('/users/:file', (req, res) => res.sendFile(path.join(__dirname, 'users', req.params.file)))
-
+var yearNow = dayjs().year();
+// HTTP POST API
+app.post('/', function (req, res) {
+ res.end();
+});
// Any other HTTP GET request
-app.get('*', (req, res) => {
+app.get('*', function (req, res) {
// Get user id (example: 'rem.mit-license.org/@2019' -> 'rem')
- const id = req.hostname.split('.')[0]
-
+ var id = req.hostname.split('.')[0];
+ // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019'])
+ var params = req.path.split('/');
+ params.shift();
+ //
+ var year = yearNow;
// Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json')
- fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data) => {
+ fs.readFile(path.join('users', id + ".json"), 'utf8', function (err, data) {
+ var info, theme, gravatar;
// If error opening
if (err) {
if (err.code === 'ENOENT') {
// File not found
- info = `${year} `
- theme = `default`
- gravatar = ``
- } else {
- // Other error
- res.status(500).end()
+ info = year + " ";
+ theme = 'default';
+ gravatar = '';
+ }
+ else {
+ // Other error
+ res.status(500).end();
}
- } else {
- // No error
- const user = JSON.parse(data)
- info = `${year} ${typeof user.copyright === "string" ? user.copyright : humanizeList(user.copyright)}`
- theme = user.theme || "default"
- gravatar = user.gravatar ? ` ` : ``
}
-
+ else {
+ // No error
+ var user = JSON.parse(data);
+ info = year + " " + (typeof user.copyright === 'string' ? user.copyright : humanizeList(user.copyright));
+ theme = user.theme || 'default';
+ gravatar = user.gravatar ? " " : '';
+ }
// Parse the options specified in the URL
- res.set('Content-Type', 'text/html');
- res.send(new Buffer.from(mustache.render(template, {
- info,
- theme,
- gravatar
- })));
+ res.render(path.join(__dirname, 'licenses', 'MIT.ejs'), {
+ info: info,
+ theme: theme,
+ gravatar: gravatar
+ });
});
-})
-
+});
// Start listening for HTTP requests
-app.listen(PORT)
+app.listen(PORT);
diff --git a/server.ts b/server.ts
new file mode 100644
index 00000000..f6fd9cd6
--- /dev/null
+++ b/server.ts
@@ -0,0 +1,99 @@
+import express from 'express'
+import path from 'path'
+import fs from 'fs'
+const PORT = process.env.PORT || 80
+import compression from 'compression'
+import dayjs from 'dayjs'
+import md5 from 'md5'
+import humanizeList from 'humanize-list'
+import minify from 'express-minify'
+import isNumber from 'is-number'
+
+// Prepare application
+const app = express()
+app.use(compression())
+app.use(minify({
+ cache: require('tmp').dirSync().name,
+}))
+app.set('view engine', 'ejs')
+
+// Setup static files
+app.use('/themes', express.static('themes'))
+app.use('/users', express.static('users'))
+app.use('/favicon.ico', express.static(__dirname + '/favicon.ico'))
+
+// Setup useful variables
+const yearNow = dayjs().year()
+
+// HTTP POST API
+app.post('/', (_req, res) => {
+ res.end()
+})
+
+// Any other HTTP GET request
+app.get('*', (req, res) => {
+ // Get user id (example: 'rem.mit-license.org/@2019' -> 'rem')
+ const id = req.hostname.split('.')[0]
+
+ // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019'])
+ const params = req.path.split('/')
+ params.shift()
+
+ // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json')
+ fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data: string) => {
+ let name: string, theme: string, gravatar: string
+ const user = JSON.parse(data || "{}")
+ // If error opening
+ if (err) {
+ if (err.code === 'ENOENT') {
+ // File not found
+ name = ""
+ theme = 'default'
+ gravatar = ''
+ } else {
+ // Other error
+ res.status(500).end()
+ return;
+ }
+ } else {
+ // No error
+ name = typeof user.copyright === 'string' ? user.copyright : humanizeList(user.copyright)
+ theme = user.theme || 'default'
+ gravatar = user.gravatar ? ` ` : ''
+ }
+
+ const year = (() => {
+ // rem.mit-license.org/@2019
+ const customYear = params.find(val => val.startsWith("@"))
+
+ // rem.mit-license.org/2019
+ const fromYear = params.find(val => !isNaN(parseInt(val.replace("-", ""))))
+
+ // If current year
+ if (customYear) return customYear.replace(/[@-]/g, "")
+
+ // If from year
+ if (fromYear) {
+ // If from year is same as current
+ if (parseInt(fromYear) === yearNow) return yearNow
+
+ return `${fromYear.replace("-", "")}-${yearNow.toString().replace("-", "")}`
+ }
+
+ return yearNow
+ })()
+
+ const customLicense = params.find(val => val.startsWith("+"))
+ const license = customLicense ? customLicense.replace("+", "") : user.license || `${"MIT"}.ejs`
+
+ // Parse the options specified in the URL
+ res.render(path.join(__dirname, 'licenses', license), {
+ info: `${year} ${name}`,
+ theme,
+ gravatar,
+ })
+ })
+})
+
+// Start listening for HTTP requests
+app.listen(PORT)
diff --git a/test.js b/test.js
index 852c2c96..7f9408fc 100644
--- a/test.js
+++ b/test.js
@@ -1,13 +1,13 @@
#!/bin/env node
-var fs = require('fs');
-var users = fs.readdirSync('users');
-users.forEach(function (user) {
- try {
- var content = fs.readFileSync('users/' + user).toString();
- JSON.parse(content);
- } catch (e) {
- console.error('Invalid JSON in file: ' + user);
- process.exit(1);
- }
-});
+const fs = require('fs')
+const users = fs.readdirSync('users')
+users.forEach(function(user) {
+ try {
+ const content = fs.readFileSync('users/' + user).toString()
+ JSON.parse(content)
+ } catch (e) {
+ console.error('Invalid JSON in file: ' + user)
+ process.exit(1)
+ }
+})
diff --git a/themes/8bits-monochrome-amber.css b/themes/8bits-monochrome-amber.css
index d4a970bc..86968e61 100644
--- a/themes/8bits-monochrome-amber.css
+++ b/themes/8bits-monochrome-amber.css
@@ -1,101 +1,122 @@
/* 8bit theme v1.0.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */
/* MIT License https://jorge-matricali.mit-license.org/ */
@import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323');
+
body {
- font-family: 'PT Mono', monospace;
- padding: .4em;
- font-size: 1.1em;
- background: #000;
- color: #ffbf00;
+ font-family: 'PT Mono', monospace;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #000;
+ color: #ffbf00;
}
+
a:link,
a:visited {
- text-decoration: none;
- color: #ffbf00;
+ text-decoration: none;
+ color: #ffbf00;
}
+
article {
- display: block;
- margin: 1em;
- position: relative;
- max-width: 800px;
- margin: 10px auto 0;
-}
-article h1 {
- color: #ffbf00;
- width: 100%;
- margin: 0 auto;
- padding-top: 1.5em;
- font-size: 3em;
-}
-article h1,
-article h1 + p {
- font-family: 'VT323', monospace;
- padding-left: 6%;
-}
-article h1 + p {
- margin-top: 0;
- margin-bottom: 3em;
-}
-article h1 + p a:link,
-article h1 + p a:visited {
- color: #ffbf00;
-}
-article p {
- padding: 0 2em;
- text-align: justify;
-}
-article p:last-child {
- padding-bottom: 1.8em;
- font-size: 0.9em;
-}
-footer {
- margin: 0 auto;
- font-size: .8em;
- text-align: center;
-}
-#gravatar {
- display: block;
- float: right;
-}
-@media (min-width: 750px) {
- #gravatar {
- position: absolute;
- top: 4em;
- right: 3em;
- }
- #gravatar + h1 + p + p {
- padding-top: 2em;
- }
- h1 + p {
- padding-right: 6em;
- }
- h1 + p + p {
- padding-top: 0.8em;
- }
-}
-@media (max-width: 750px) {
- body {
- font-size: 14px;
- }
- #gravatar {
+ display: block;
+ margin: 1em;
position: relative;
- top: 4em;
- right: 2em;
- }
- article h1 + p {
- padding-bottom: 1em;
- }
- article h1 + p + p {
- padding-top: 0.8em;
- }
- footer {
- padding-bottom: 4em;
- }
+ max-width: 800px;
+ margin: 10px auto 0;
}
+
+article h1 {
+ color: #ffbf00;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 1.5em;
+ font-size: 3em;
+}
+
+article h1,
+article h1+p {
+ font-family: 'VT323', monospace;
+ padding-left: 6%;
+}
+
+article h1+p {
+ margin-top: 0;
+ margin-bottom: 3em;
+}
+
+article h1+p a:link,
+article h1+p a:visited {
+ color: #ffbf00;
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify;
+}
+
+article p:last-child {
+ padding-bottom: 1.8em;
+ font-size: 0.9em;
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center;
+}
+
+#gravatar {
+ display: block;
+ float: right;
+}
+
+@media (min-width: 750px) {
+ #gravatar {
+ position: absolute;
+ top: 4em;
+ right: 3em;
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em;
+ }
+
+ h1+p {
+ padding-right: 6em;
+ }
+
+ h1+p+p {
+ padding-top: 0.8em;
+ }
+}
+
+@media (max-width: 750px) {
+ body {
+ font-size: 14px;
+ }
+
+ #gravatar {
+ position: relative;
+ top: 4em;
+ right: 2em;
+ }
+
+ article h1+p {
+ padding-bottom: 1em;
+ }
+
+ article h1+p+p {
+ padding-top: 0.8em;
+ }
+
+ footer {
+ padding-bottom: 4em;
+ }
+}
+
img {
- -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
- -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
- -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
- -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
- filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
+ -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
+ -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
+ -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
+ -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
+ filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10);
}
diff --git a/themes/8bits-monochrome-blue-white.css b/themes/8bits-monochrome-blue-white.css
index 2fe544e0..578dafc7 100644
--- a/themes/8bits-monochrome-blue-white.css
+++ b/themes/8bits-monochrome-blue-white.css
@@ -1,101 +1,122 @@
/* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */
/* MIT License https://jorge-matricali.mit-license.org/ */
@import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323');
+
body {
- font-family: 'PT Mono', monospace;
- padding: .4em;
- font-size: 1.1em;
- background: #00f;
- color: #fff;
+ font-family: 'PT Mono', monospace;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #00f;
+ color: #fff;
}
+
a:link,
a:visited {
- text-decoration: none;
- color: #fff;
+ text-decoration: none;
+ color: #fff;
}
+
article {
- display: block;
- margin: 1em;
- position: relative;
- max-width: 800px;
- margin: 10px auto 0;
-}
-article h1 {
- color: #fff;
- width: 100%;
- margin: 0 auto;
- padding-top: 1.5em;
- font-size: 3em;
-}
-article h1,
-article h1 + p {
- font-family: 'VT323', monospace;
- padding-left: 6%;
-}
-article h1 + p {
- margin-top: 0;
- margin-bottom: 3em;
-}
-article h1 + p a:link,
-article h1 + p a:visited {
- color: #fff;
-}
-article p {
- padding: 0 2em;
- text-align: justify;
-}
-article p:last-child {
- padding-bottom: 1.8em;
- font-size: 0.9em;
-}
-footer {
- margin: 0 auto;
- font-size: .8em;
- text-align: center;
-}
-#gravatar {
- display: block;
- float: right;
-}
-@media (min-width: 750px) {
- #gravatar {
- position: absolute;
- top: 4em;
- right: 3em;
- }
- #gravatar + h1 + p + p {
- padding-top: 2em;
- }
- h1 + p {
- padding-right: 6em;
- }
- h1 + p + p {
- padding-top: 0.8em;
- }
-}
-@media (max-width: 750px) {
- body {
- font-size: 14px;
- }
- #gravatar {
+ display: block;
+ margin: 1em;
position: relative;
- top: 4em;
- right: 2em;
- }
- article h1 + p {
- padding-bottom: 1em;
- }
- article h1 + p + p {
- padding-top: 0.8em;
- }
- footer {
- padding-bottom: 4em;
- }
+ max-width: 800px;
+ margin: 10px auto 0;
}
+
+article h1 {
+ color: #fff;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 1.5em;
+ font-size: 3em;
+}
+
+article h1,
+article h1+p {
+ font-family: 'VT323', monospace;
+ padding-left: 6%;
+}
+
+article h1+p {
+ margin-top: 0;
+ margin-bottom: 3em;
+}
+
+article h1+p a:link,
+article h1+p a:visited {
+ color: #fff;
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify;
+}
+
+article p:last-child {
+ padding-bottom: 1.8em;
+ font-size: 0.9em;
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center;
+}
+
+#gravatar {
+ display: block;
+ float: right;
+}
+
+@media (min-width: 750px) {
+ #gravatar {
+ position: absolute;
+ top: 4em;
+ right: 3em;
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em;
+ }
+
+ h1+p {
+ padding-right: 6em;
+ }
+
+ h1+p+p {
+ padding-top: 0.8em;
+ }
+}
+
+@media (max-width: 750px) {
+ body {
+ font-size: 14px;
+ }
+
+ #gravatar {
+ position: relative;
+ top: 4em;
+ right: 2em;
+ }
+
+ article h1+p {
+ padding-bottom: 1em;
+ }
+
+ article h1+p+p {
+ padding-top: 0.8em;
+ }
+
+ footer {
+ padding-bottom: 4em;
+ }
+}
+
img {
- -webkit-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
- -moz-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
- -ms-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
- -o-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
- filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
+ -webkit-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
+ -moz-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
+ -ms-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
+ -o-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
+ filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
}
diff --git a/themes/8bits-monochrome-green.css b/themes/8bits-monochrome-green.css
index 285b6277..940dfd82 100644
--- a/themes/8bits-monochrome-green.css
+++ b/themes/8bits-monochrome-green.css
@@ -1,101 +1,122 @@
/* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */
/* MIT License https://jorge-matricali.mit-license.org/ */
@import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323');
+
body {
- font-family: 'PT Mono', monospace;
- padding: .4em;
- font-size: 1.1em;
- background: #000;
- color: #0f0;
+ font-family: 'PT Mono', monospace;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #000;
+ color: #0f0;
}
+
a:link,
a:visited {
- text-decoration: none;
- color: #0f0;
+ text-decoration: none;
+ color: #0f0;
}
+
article {
- display: block;
- margin: 1em;
- position: relative;
- max-width: 800px;
- margin: 10px auto 0;
-}
-article h1 {
- color: #0f0;
- width: 100%;
- margin: 0 auto;
- padding-top: 1.5em;
- font-size: 3em;
-}
-article h1,
-article h1 + p {
- font-family: 'VT323', monospace;
- padding-left: 6%;
-}
-article h1 + p {
- margin-top: 0;
- margin-bottom: 3em;
-}
-article h1 + p a:link,
-article h1 + p a:visited {
- color: #0f0;
-}
-article p {
- padding: 0 2em;
- text-align: justify;
-}
-article p:last-child {
- padding-bottom: 1.8em;
- font-size: 0.9em;
-}
-footer {
- margin: 0 auto;
- font-size: .8em;
- text-align: center;
-}
-#gravatar {
- display: block;
- float: right;
-}
-@media (min-width: 750px) {
- #gravatar {
- position: absolute;
- top: 4em;
- right: 3em;
- }
- #gravatar + h1 + p + p {
- padding-top: 2em;
- }
- h1 + p {
- padding-right: 6em;
- }
- h1 + p + p {
- padding-top: 0.8em;
- }
-}
-@media (max-width: 750px) {
- body {
- font-size: 14px;
- }
- #gravatar {
+ display: block;
+ margin: 1em;
position: relative;
- top: 4em;
- right: 2em;
- }
- article h1 + p {
- padding-bottom: 1em;
- }
- article h1 + p + p {
- padding-top: 0.8em;
- }
- footer {
- padding-bottom: 4em;
- }
+ max-width: 800px;
+ margin: 10px auto 0;
}
+
+article h1 {
+ color: #0f0;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 1.5em;
+ font-size: 3em;
+}
+
+article h1,
+article h1+p {
+ font-family: 'VT323', monospace;
+ padding-left: 6%;
+}
+
+article h1+p {
+ margin-top: 0;
+ margin-bottom: 3em;
+}
+
+article h1+p a:link,
+article h1+p a:visited {
+ color: #0f0;
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify;
+}
+
+article p:last-child {
+ padding-bottom: 1.8em;
+ font-size: 0.9em;
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center;
+}
+
+#gravatar {
+ display: block;
+ float: right;
+}
+
+@media (min-width: 750px) {
+ #gravatar {
+ position: absolute;
+ top: 4em;
+ right: 3em;
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em;
+ }
+
+ h1+p {
+ padding-right: 6em;
+ }
+
+ h1+p+p {
+ padding-top: 0.8em;
+ }
+}
+
+@media (max-width: 750px) {
+ body {
+ font-size: 14px;
+ }
+
+ #gravatar {
+ position: relative;
+ top: 4em;
+ right: 2em;
+ }
+
+ article h1+p {
+ padding-bottom: 1em;
+ }
+
+ article h1+p+p {
+ padding-top: 0.8em;
+ }
+
+ footer {
+ padding-bottom: 4em;
+ }
+}
+
img {
- -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
- -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
- -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
- -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
- filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
+ -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
+ -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
+ -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
+ -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
+ filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg);
}
diff --git a/themes/8bits-monochrome-white.css b/themes/8bits-monochrome-white.css
index 8b9b3d3a..1a4b1a70 100644
--- a/themes/8bits-monochrome-white.css
+++ b/themes/8bits-monochrome-white.css
@@ -1,101 +1,122 @@
/* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */
/* MIT License https://jorge-matricali.mit-license.org/ */
@import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323');
+
body {
- font-family: 'PT Mono', monospace;
- padding: .4em;
- font-size: 1.1em;
- background: #fff;
- color: #000;
+ font-family: 'PT Mono', monospace;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #fff;
+ color: #000;
}
+
a:link,
a:visited {
- text-decoration: none;
- color: #000;
+ text-decoration: none;
+ color: #000;
}
+
article {
- display: block;
- margin: 1em;
- position: relative;
- max-width: 800px;
- margin: 10px auto 0;
-}
-article h1 {
- color: #000;
- width: 100%;
- margin: 0 auto;
- padding-top: 1.5em;
- font-size: 3em;
-}
-article h1,
-article h1 + p {
- font-family: 'VT323', monospace;
- padding-left: 6%;
-}
-article h1 + p {
- margin-top: 0;
- margin-bottom: 3em;
-}
-article h1 + p a:link,
-article h1 + p a:visited {
- color: #000;
-}
-article p {
- padding: 0 2em;
- text-align: justify;
-}
-article p:last-child {
- padding-bottom: 1.8em;
- font-size: 0.9em;
-}
-footer {
- margin: 0 auto;
- font-size: .8em;
- text-align: center;
-}
-#gravatar {
- display: block;
- float: right;
-}
-@media (min-width: 750px) {
- #gravatar {
- position: absolute;
- top: 4em;
- right: 3em;
- }
- #gravatar + h1 + p + p {
- padding-top: 2em;
- }
- h1 + p {
- padding-right: 6em;
- }
- h1 + p + p {
- padding-top: 0.8em;
- }
-}
-@media (max-width: 750px) {
- body {
- font-size: 14px;
- }
- #gravatar {
+ display: block;
+ margin: 1em;
position: relative;
- top: 4em;
- right: 2em;
- }
- article h1 + p {
- padding-bottom: 1em;
- }
- article h1 + p + p {
- padding-top: 0.8em;
- }
- footer {
- padding-bottom: 4em;
- }
+ max-width: 800px;
+ margin: 10px auto 0;
}
+
+article h1 {
+ color: #000;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 1.5em;
+ font-size: 3em;
+}
+
+article h1,
+article h1+p {
+ font-family: 'VT323', monospace;
+ padding-left: 6%;
+}
+
+article h1+p {
+ margin-top: 0;
+ margin-bottom: 3em;
+}
+
+article h1+p a:link,
+article h1+p a:visited {
+ color: #000;
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify;
+}
+
+article p:last-child {
+ padding-bottom: 1.8em;
+ font-size: 0.9em;
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center;
+}
+
+#gravatar {
+ display: block;
+ float: right;
+}
+
+@media (min-width: 750px) {
+ #gravatar {
+ position: absolute;
+ top: 4em;
+ right: 3em;
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em;
+ }
+
+ h1+p {
+ padding-right: 6em;
+ }
+
+ h1+p+p {
+ padding-top: 0.8em;
+ }
+}
+
+@media (max-width: 750px) {
+ body {
+ font-size: 14px;
+ }
+
+ #gravatar {
+ position: relative;
+ top: 4em;
+ right: 2em;
+ }
+
+ article h1+p {
+ padding-bottom: 1em;
+ }
+
+ article h1+p+p {
+ padding-top: 0.8em;
+ }
+
+ footer {
+ padding-bottom: 4em;
+ }
+}
+
img {
- -webkit-filter: contrast(700%) grayscale(100%) saturate(100);
- -moz-filter: contrast(700%) grayscale(100%) saturate(100);
- -ms-filter: contrast(700%) grayscale(100%) saturate(100);
- -o-filter: contrast(700%) grayscale(100%) saturate(100);
- filter: contrast(700%) grayscale(100%) saturate(100);
+ -webkit-filter: contrast(700%) grayscale(100%) saturate(100);
+ -moz-filter: contrast(700%) grayscale(100%) saturate(100);
+ -ms-filter: contrast(700%) grayscale(100%) saturate(100);
+ -o-filter: contrast(700%) grayscale(100%) saturate(100);
+ filter: contrast(700%) grayscale(100%) saturate(100);
}
diff --git a/themes/8bits-monochrome.css b/themes/8bits-monochrome.css
index 73b3dae6..09e35b79 100644
--- a/themes/8bits-monochrome.css
+++ b/themes/8bits-monochrome.css
@@ -1,101 +1,122 @@
/* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */
/* MIT License https://jorge-matricali.mit-license.org/ */
@import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323');
+
body {
- font-family: 'PT Mono', monospace;
- padding: .4em;
- font-size: 1.1em;
- background: #000;
- color: #fff;
+ font-family: 'PT Mono', monospace;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #000;
+ color: #fff;
}
+
a:link,
a:visited {
- text-decoration: none;
- color: #fff;
+ text-decoration: none;
+ color: #fff;
}
+
article {
- display: block;
- margin: 1em;
- position: relative;
- max-width: 800px;
- margin: 10px auto 0;
-}
-article h1 {
- color: #fff;
- width: 100%;
- margin: 0 auto;
- padding-top: 1.5em;
- font-size: 3em;
-}
-article h1,
-article h1 + p {
- font-family: 'VT323', monospace;
- padding-left: 6%;
-}
-article h1 + p {
- margin-top: 0;
- margin-bottom: 3em;
-}
-article h1 + p a:link,
-article h1 + p a:visited {
- color: #fff;
-}
-article p {
- padding: 0 2em;
- text-align: justify;
-}
-article p:last-child {
- padding-bottom: 1.8em;
- font-size: 0.9em;
-}
-footer {
- margin: 0 auto;
- font-size: .8em;
- text-align: center;
-}
-#gravatar {
- display: block;
- float: right;
-}
-@media (min-width: 750px) {
- #gravatar {
- position: absolute;
- top: 4em;
- right: 3em;
- }
- #gravatar + h1 + p + p {
- padding-top: 2em;
- }
- h1 + p {
- padding-right: 6em;
- }
- h1 + p + p {
- padding-top: 0.8em;
- }
-}
-@media (max-width: 750px) {
- body {
- font-size: 14px;
- }
- #gravatar {
+ display: block;
+ margin: 1em;
position: relative;
- top: 4em;
- right: 2em;
- }
- article h1 + p {
- padding-bottom: 1em;
- }
- article h1 + p + p {
- padding-top: 0.8em;
- }
- footer {
- padding-bottom: 4em;
- }
+ max-width: 800px;
+ margin: 10px auto 0;
}
+
+article h1 {
+ color: #fff;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 1.5em;
+ font-size: 3em;
+}
+
+article h1,
+article h1+p {
+ font-family: 'VT323', monospace;
+ padding-left: 6%;
+}
+
+article h1+p {
+ margin-top: 0;
+ margin-bottom: 3em;
+}
+
+article h1+p a:link,
+article h1+p a:visited {
+ color: #fff;
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify;
+}
+
+article p:last-child {
+ padding-bottom: 1.8em;
+ font-size: 0.9em;
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center;
+}
+
+#gravatar {
+ display: block;
+ float: right;
+}
+
+@media (min-width: 750px) {
+ #gravatar {
+ position: absolute;
+ top: 4em;
+ right: 3em;
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em;
+ }
+
+ h1+p {
+ padding-right: 6em;
+ }
+
+ h1+p+p {
+ padding-top: 0.8em;
+ }
+}
+
+@media (max-width: 750px) {
+ body {
+ font-size: 14px;
+ }
+
+ #gravatar {
+ position: relative;
+ top: 4em;
+ right: 2em;
+ }
+
+ article h1+p {
+ padding-bottom: 1em;
+ }
+
+ article h1+p+p {
+ padding-top: 0.8em;
+ }
+
+ footer {
+ padding-bottom: 4em;
+ }
+}
+
img {
- -webkit-filter: contrast(700%) grayscale(100%) saturate(100);
- -moz-filter: contrast(700%) grayscale(100%) saturate(100);
- -ms-filter: contrast(700%) grayscale(100%) saturate(100);
- -o-filter: contrast(700%) grayscale(100%) saturate(100);
- filter: contrast(700%) grayscale(100%) saturate(100);
+ -webkit-filter: contrast(700%) grayscale(100%) saturate(100);
+ -moz-filter: contrast(700%) grayscale(100%) saturate(100);
+ -ms-filter: contrast(700%) grayscale(100%) saturate(100);
+ -o-filter: contrast(700%) grayscale(100%) saturate(100);
+ filter: contrast(700%) grayscale(100%) saturate(100);
}
diff --git a/themes/afterdark.css b/themes/afterdark.css
index a20079f4..dac33bb1 100644
--- a/themes/afterdark.css
+++ b/themes/afterdark.css
@@ -1,12 +1,66 @@
-body {margin:0; padding: 50px;background: #242f3a;font: 16px/28px "Garamond",serif; color: #94979e;}
-article, footer { display:block; max-width:720px; margin:0 auto; }
-article { padding:28px;}
-footer { padding:0 28px; text-align:center; }
-h1 { margin:0; font-size: 24px; line-height: 32px;color:#d7721a}
-a, a:visited { color:#577446; padding:4px; text-decoration:none; }
-a:active, a:hover { color:#5dd912; }
-a img { position: absolute; top: 0; right: 0; border: 0; }
-:-moz-any-link:focus {background:#bc4a46;}
-::selection {background:#bc4a46;}
-::-moz-selection {background:#bc4a46;}
-#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; }
\ No newline at end of file
+body {
+ margin: 0;
+ padding: 50px;
+ background: #242f3a;
+ font: 16px/28px "Garamond", serif;
+ color: #94979e;
+}
+
+article, footer {
+ display: block;
+ max-width: 720px;
+ margin: 0 auto;
+}
+
+article {
+ padding: 28px;
+}
+
+footer {
+ padding: 0 28px;
+ text-align: center;
+}
+
+h1 {
+ margin: 0;
+ font-size: 24px;
+ line-height: 32px;
+ color: #d7721a
+}
+
+a, a:visited {
+ color: #577446;
+ padding: 4px;
+ text-decoration: none;
+}
+
+a:active, a:hover {
+ color: #5dd912;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: 0;
+}
+
+:-moz-any-link:focus {
+ background: #bc4a46;
+}
+
+::selection {
+ background: #bc4a46;
+}
+
+::-moz-selection {
+ background: #bc4a46;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ margin-bottom: 1em;
+ margin-left: 1em;
+ border: 1px solid #ddd;
+}
diff --git a/themes/black-beauty.css b/themes/black-beauty.css
index acd47a85..837d966f 100644
--- a/themes/black-beauty.css
+++ b/themes/black-beauty.css
@@ -1,63 +1,63 @@
@import url(https://fonts.googleapis.com/css?family=Lato:300);
html {
- font-size: 16px;
- background-color: #1a1a1a;
+ font-size: 16px;
+ background-color: #1a1a1a;
}
body {
- font-family: "Lato", Helvetica, Arial, sans-serif;
- font-size: 1.3em;
- font-weight: 300;
- color: #CCC;
+ font-family: "Lato", Helvetica, Arial, sans-serif;
+ font-size: 1.3em;
+ font-weight: 300;
+ color: #CCC;
}
article, footer {
- max-width: 877px;
- margin: 0 auto;
- text-align: center;
+ max-width: 877px;
+ margin: 0 auto;
+ text-align: center;
}
article {
- margin-top: 1em;
- background-color: #2a2a2a;
- padding: 1em;
- text-align: center;
- position: relative;
+ margin-top: 1em;
+ background-color: #2a2a2a;
+ padding: 1em;
+ text-align: center;
+ position: relative;
}
article p {
- text-align: left;
+ text-align: left;
}
article p:first-of-type {
- text-align: center;
- font-size: .8em;
+ text-align: center;
+ font-size: .8em;
}
article p:last-of-type {
- border-left: 3px solid #CCC;
- padding-left: 15px;
+ border-left: 3px solid #CCC;
+ padding-left: 15px;
}
#gravatar {
- width: 70px;
- border-radius: 35px;
- display: block;
- margin: 0 auto;
- position: absolute;
- right: -6px;
- bottom: -20px;
+ width: 70px;
+ border-radius: 35px;
+ display: block;
+ margin: 0 auto;
+ position: absolute;
+ right: -6px;
+ bottom: -20px;
}
h1 {
- font-size: 1.5em;
- font-weight: 300;
- text-transform: uppercase;
- display: inline-block;
- padding-bottom: 12px;
- border-bottom: 2px dashed #CCC;
- margin: 0;
+ font-size: 1.5em;
+ font-weight: 300;
+ text-transform: uppercase;
+ display: inline-block;
+ padding-bottom: 12px;
+ border-bottom: 2px dashed #CCC;
+ margin: 0;
}
a {
@@ -67,20 +67,19 @@ a {
}
a:hover, a:focus, a:active {
- color: white;
+ color: white;
}
@media (min-width: 640px) {
- h1 {
- font-size: 2.4em;
- }
+ h1 {
+ font-size: 2.4em;
+ }
- body {
- font-size: 1.4em;
- }
+ body {
+ font-size: 1.4em;
+ }
- article p:first-of-type {
- font-size: 1em;
- }
+ article p:first-of-type {
+ font-size: 1em;
+ }
}
-
diff --git a/themes/blackwood.css b/themes/blackwood.css
index 9427ff34..1c8600d0 100644
--- a/themes/blackwood.css
+++ b/themes/blackwood.css
@@ -1,41 +1,166 @@
@import url(https://fonts.googleapis.com/css?family=Lustria);
-body { background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent; font-family: 'Lustria', serif; font-weight: 400; margin: 0 auto; max-width: 450px; padding-top: 70px; position: relative; width: 80%; font-size: 0.9em; }
-
-article { display:block; max-width:720px; margin:0 auto; }
-article { background-color: #FFFFFF; border: 12px solid #3A3A3A; border-radius: 10px 10px 10px 10px; max-width: 450px; padding: 0 15px; width: 80%; }
-h1 { width: 84%; font-size: 1.6em; }
-article p:nth-of-type(1) { font-size: 1.2em; color: red; }
-footer { margin: 0 auto; max-width: 450px; position: absolute; top: 90px; width: 80%; right:0; }
-footer p { zoom: 1; background-color: #FFFFFF; -moz-box-shadow: 1px 1px 3px #989898; -webkit-box-shadow: 1px 1px 3px #989898; -moz-box-shadow: 1px 1px 3px #989898; box-shadow: 1px 1px 3px #989898; font-size: 0.9em ; max-width: 318px; padding: 4px 7px; position: absolute; right: -106px; top: 0;
- -webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */
--moz-transform: rotate(34.5deg); /* FF3.5+ */
--o-transform: rotate(34.5deg); /* Opera 10.5 */
--ms-transform: rotate(40deg); /* IE9 */
-transform: rotate(34.5deg);}
-footer p:before { background-color: #999999; -moz-box-shadow: 1px 1px 2px #000000; -webkit-box-shadow: 1px 1px 2px #000000; box-shadow: 1px 1px 2px #000000; content: ""; display: block; height: 30px; left: 0; opacity: 0.5; position: absolute; top: -13px; width: 7px;
--webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */
--moz-transform: rotate(34.5deg); /* FF3.5+ */
--o-transform: rotate(34.5deg); /* Opera 10.5 */
--ms-transform: rotate(34.5deg); /* IE9 */
-transform: rotate(34.5deg);
-zoom: 1; }
-footer p:after { background-color: #999999; box-shadow: 1px 1px 2px #000000; content: ""; height: 30px; opacity: 0.5; position: absolute; right: 0; width: 7px;
--webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */
--moz-transform: rotate(34.5deg); /* FF3.5+ */
--o-transform: rotate(34.5deg); /* Opera 10.5 */
--ms-transform: rotate(34.5deg); /* IE9 */
-transform: rotate(34.5deg);
-zoom:1; }
-footer a { text-decoration: none;}
-a, a:visited { color: #F00; border-bottom: 1px dotted #F5D5CD; }
-a:active, a:hover { border-bottom: 1px dotted #F00; }
-/* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */
-*+html footer p { position: static; background: none; }
-*+html footer { position: static; background-color: #fff; margin-top: 10px; }
-@media \0screen {
- footer p:before, footer p:after { display: none; }
- footer p { position: static; background: none; }
- footer { position: static; background-color: #fff; }
+body {
+ background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent;
+ font-family: 'Lustria', serif;
+ font-weight: 400;
+ margin: 0 auto;
+ max-width: 450px;
+ padding-top: 70px;
+ position: relative;
+ width: 80%;
+ font-size: 0.9em;
+}
+
+article {
+ display: block;
+ max-width: 720px;
+ margin: 0 auto;
+}
+
+article {
+ background-color: #FFFFFF;
+ border: 12px solid #3A3A3A;
+ border-radius: 10px 10px 10px 10px;
+ max-width: 450px;
+ padding: 0 15px;
+ width: 80%;
+}
+
+h1 {
+ width: 84%;
+ font-size: 1.6em;
+}
+
+article p:nth-of-type(1) {
+ font-size: 1.2em;
+ color: red;
+}
+
+footer {
+ margin: 0 auto;
+ max-width: 450px;
+ position: absolute;
+ top: 90px;
+ width: 80%;
+ right: 0;
+}
+
+footer p {
+ zoom: 1;
+ background-color: #FFFFFF;
+ -moz-box-shadow: 1px 1px 3px #989898;
+ -webkit-box-shadow: 1px 1px 3px #989898;
+ -moz-box-shadow: 1px 1px 3px #989898;
+ box-shadow: 1px 1px 3px #989898;
+ font-size: 0.9em;
+ max-width: 318px;
+ padding: 4px 7px;
+ position: absolute;
+ right: -106px;
+ top: 0;
+ -webkit-transform: rotate(34.5deg);
+ /* Saf3.1+, Chrome */
+ -moz-transform: rotate(34.5deg);
+ /* FF3.5+ */
+ -o-transform: rotate(34.5deg);
+ /* Opera 10.5 */
+ -ms-transform: rotate(40deg);
+ /* IE9 */
+ transform: rotate(34.5deg);
+}
+
+footer p:before {
+ background-color: #999999;
+ -moz-box-shadow: 1px 1px 2px #000000;
+ -webkit-box-shadow: 1px 1px 2px #000000;
+ box-shadow: 1px 1px 2px #000000;
+ content: "";
+ display: block;
+ height: 30px;
+ left: 0;
+ opacity: 0.5;
+ position: absolute;
+ top: -13px;
+ width: 7px;
+ -webkit-transform: rotate(34.5deg);
+ /* Saf3.1+, Chrome */
+ -moz-transform: rotate(34.5deg);
+ /* FF3.5+ */
+ -o-transform: rotate(34.5deg);
+ /* Opera 10.5 */
+ -ms-transform: rotate(34.5deg);
+ /* IE9 */
+ transform: rotate(34.5deg);
+ zoom: 1;
+}
+
+footer p:after {
+ background-color: #999999;
+ box-shadow: 1px 1px 2px #000000;
+ content: "";
+ height: 30px;
+ opacity: 0.5;
+ position: absolute;
+ right: 0;
+ width: 7px;
+ -webkit-transform: rotate(34.5deg);
+ /* Saf3.1+, Chrome */
+ -moz-transform: rotate(34.5deg);
+ /* FF3.5+ */
+ -o-transform: rotate(34.5deg);
+ /* Opera 10.5 */
+ -ms-transform: rotate(34.5deg);
+ /* IE9 */
+ transform: rotate(34.5deg);
+ zoom: 1;
+}
+
+footer a {
+ text-decoration: none;
+}
+
+a, a:visited {
+ color: #F00;
+ border-bottom: 1px dotted #F5D5CD;
+}
+
+a:active, a:hover {
+ border-bottom: 1px dotted #F00;
+}
+
+/* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */
+*+html footer p {
+ position: static;
+ background: none;
+}
+
+*+html footer {
+ position: static;
+ background-color: #fff;
+ margin-top: 10px;
+}
+
+@media \0screen {
+ footer p:before, footer p:after {
+ display: none;
+ }
+
+ footer p {
+ position: static;
+ background: none;
+ }
+
+ footer {
+ position: static;
+ background-color: #fff;
+ }
+}
+
+#gravatar {
+ position: relative;
+ float: left;
+ margin-top: 1em;
+ margin-right: 1em;
+ border: 1px solid #ddd;
}
-#gravatar { position: relative; float: left; margin-top: 1em; margin-right: 1em; border: 1px solid #ddd; }
diff --git a/themes/cherry-white.css b/themes/cherry-white.css
index b3b23421..2211116b 100644
--- a/themes/cherry-white.css
+++ b/themes/cherry-white.css
@@ -1,19 +1,128 @@
@import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700);
-body { color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;}
-article, footer { display:block; max-width:720px; margin:0 auto; }
-article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666; padding: 45px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; margin-top: 28px; border-left: 1px solid #F7F7F7;}
-h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: -22px; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; }
-h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; }
-h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; }
-article p:nth-of-type(1) {font-size: 24px;}
-a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; }
-a:active, a:hover { color:#710257; }
-a img { position: absolute; top: 0; right: 0; border: 0; }
-:-moz-any-link:focus {color:#bc4a46;}
-::selection {color:#bc4a46;}
-::-moz-selection {color:#bc4a46; }
-footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; border-top: 1px solid #F5F5F5; }
-footer a { padding: 10px; }
-footer p { font-size: 16px; margin: 0; padding: 0;}
-#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -2.3em; z-index: 1; border-radius: 10px; }
\ No newline at end of file
+body {
+ color: #94979E;
+ font: 16px/28px 'Alegreya', "Garamond", serif;
+ margin: 0;
+ padding: 0 50px;
+}
+
+article, footer {
+ display: block;
+ max-width: 720px;
+ margin: 0 auto;
+}
+
+article {
+ background: repeat scroll 0 0 #FFFFFF;
+ border-bottom: 4px solid #FF3366;
+ border-right: 3px solid #FF6666;
+ padding: 45px 28px 28px;
+ position: relative;
+ -webkit-border-radius: 0px 0 10px 10px;
+ -moz-border-radius: 0px 0 10px 10px;
+ border-radius: 0px 0 10px 10px;
+ margin-top: 28px;
+ border-left: 1px solid #F7F7F7;
+}
+
+h1 {
+ background: none repeat scroll 0 0 #FF3366;
+ color: #FFFFFF;
+ font-size: 24px;
+ left: -12px;
+ line-height: 32px;
+ padding: 10px 0 10px 13px;
+ position: absolute;
+ top: -22px;
+ width: 100%;
+ display: block;
+ -moz-box-shadow: 2px 7px 0px -3px #CCCCCC;
+ -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC;
+ box-shadow: 2px 7px 0px -3px #CCCCCC;
+}
+
+h1:after {
+ background-color: #AD0431;
+ border-radius: 0 0 0 32px;
+ content: "";
+ height: 7px;
+ left: 3px;
+ position: absolute;
+ top: 52px;
+ width: 7px;
+}
+
+h1:before {
+ background-color: #D01B4B;
+ content: "";
+ height: 11px;
+ left: 0;
+ position: absolute;
+ top: 52px;
+ width: 11px;
+ -webkit-border-radius: 0 0 0 32px;
+ -moz-border-radius: 0 0 0 32px;
+ border-radius: 0 0 0 32px;
+}
+
+article p:nth-of-type(1) {
+ font-size: 24px;
+}
+
+a, a:visited {
+ color: #3A3A3A;
+ padding: 4px 4px 0 4px;
+ text-decoration: none;
+}
+
+a:active, a:hover {
+ color: #710257;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: 0;
+}
+
+:-moz-any-link:focus {
+ color: #bc4a46;
+}
+
+::selection {
+ color: #bc4a46;
+}
+
+::-moz-selection {
+ color: #bc4a46;
+}
+
+footer {
+ background-color: #FFFFFF;
+ border-bottom: 3px solid #FF3366;
+ margin-top: 10px;
+ padding: 4px 28px;
+ text-align: center;
+ border-top: 1px solid #F5F5F5;
+}
+
+footer a {
+ padding: 10px;
+}
+
+footer p {
+ font-size: 16px;
+ margin: 0;
+ padding: 0;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ border: 3px solid #CCCCCC;
+ top: -2.3em;
+ z-index: 1;
+ border-radius: 10px;
+}
diff --git a/themes/cherry.css b/themes/cherry.css
index f9c00996..6dc6f661 100644
--- a/themes/cherry.css
+++ b/themes/cherry.css
@@ -1,19 +1,126 @@
@import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700);
-body { background: url("cherry.png") repeat scroll 0 0 transparent; color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;}
-article, footer { display:block; max-width:720px; margin:0 auto; }
-article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666;padding: 74px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; }
-h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: 0; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; }
-h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; }
-h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; }
-article p:nth-of-type(1) {font-size: 24px;}
-a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; }
-a:active, a:hover { color:#710257; }
-a img { position: absolute; top: 0; right: 0; border: 0; }
-:-moz-any-link:focus {color:#bc4a46;}
-::selection {color:#bc4a46;}
-::-moz-selection {color:#bc4a46; }
-footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; }
-footer a { padding: 10px; }
-footer p { font-size: 16px; margin: 0; padding: 0;}
-#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -4.3em; z-index: 1; border-radius: 10px; }
\ No newline at end of file
+body {
+ background: url("cherry.png") repeat scroll 0 0 transparent;
+ color: #94979E;
+ font: 16px/28px 'Alegreya', "Garamond", serif;
+ margin: 0;
+ padding: 0 50px;
+}
+
+article, footer {
+ display: block;
+ max-width: 720px;
+ margin: 0 auto;
+}
+
+article {
+ background: repeat scroll 0 0 #FFFFFF;
+ border-bottom: 4px solid #FF3366;
+ border-right: 3px solid #FF6666;
+ padding: 74px 28px 28px;
+ position: relative;
+ -webkit-border-radius: 0px 0 10px 10px;
+ -moz-border-radius: 0px 0 10px 10px;
+ border-radius: 0px 0 10px 10px;
+}
+
+h1 {
+ background: none repeat scroll 0 0 #FF3366;
+ color: #FFFFFF;
+ font-size: 24px;
+ left: -12px;
+ line-height: 32px;
+ padding: 10px 0 10px 13px;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ display: block;
+ -moz-box-shadow: 2px 7px 0px -3px #CCCCCC;
+ -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC;
+ box-shadow: 2px 7px 0px -3px #CCCCCC;
+}
+
+h1:after {
+ background-color: #AD0431;
+ border-radius: 0 0 0 32px;
+ content: "";
+ height: 7px;
+ left: 3px;
+ position: absolute;
+ top: 52px;
+ width: 7px;
+}
+
+h1:before {
+ background-color: #D01B4B;
+ content: "";
+ height: 11px;
+ left: 0;
+ position: absolute;
+ top: 52px;
+ width: 11px;
+ -webkit-border-radius: 0 0 0 32px;
+ -moz-border-radius: 0 0 0 32px;
+ border-radius: 0 0 0 32px;
+}
+
+article p:nth-of-type(1) {
+ font-size: 24px;
+}
+
+a, a:visited {
+ color: #3A3A3A;
+ padding: 4px 4px 0 4px;
+ text-decoration: none;
+}
+
+a:active, a:hover {
+ color: #710257;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: 0;
+}
+
+:-moz-any-link:focus {
+ color: #bc4a46;
+}
+
+::selection {
+ color: #bc4a46;
+}
+
+::-moz-selection {
+ color: #bc4a46;
+}
+
+footer {
+ background-color: #FFFFFF;
+ border-bottom: 3px solid #FF3366;
+ margin-top: 10px;
+ padding: 4px 28px;
+ text-align: center;
+}
+
+footer a {
+ padding: 10px;
+}
+
+footer p {
+ font-size: 16px;
+ margin: 0;
+ padding: 0;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ border: 3px solid #CCCCCC;
+ top: -4.3em;
+ z-index: 1;
+ border-radius: 10px;
+}
diff --git a/themes/default-dark.css b/themes/default-dark.css
index 58b45393..47cf5ee5 100644
--- a/themes/default-dark.css
+++ b/themes/default-dark.css
@@ -1,20 +1,100 @@
@import url(https://fonts.googleapis.com/css?family=Inconsolata);
-html { background: #1a1a1a; }
-body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; color: #999;}
-article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; }
-article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #505050 #373737 #373737 #505050; padding: 2em; background: #2a2a2a; }
-h1 { margin-top: 0; }
-article p:first-of-type { margin-top: 1.6em; }
-article p:last-child { margin-bottom: 0; }
-footer { margin: 0em auto 2em auto; text-align: center; }
-footer a { color: #666; text-shadow: 0 1px 1px #999; text-decoration:none; font-size:.8em; padding: 1em; }
+
+html {
+ background: #1a1a1a;
+}
+
+body {
+ margin: 0;
+ font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
+ font-size: 1.2em;
+ line-height: 1.2em;
+ color: #999;
+}
+
+article, footer {
+ display: block;
+ min-width: 360px;
+ max-width: 900px;
+ width: 80%;
+}
+
+article {
+ margin: 2.5em auto 0 auto;
+ border: 1px solid;
+ border-color: #505050 #373737 #373737 #505050;
+ padding: 2em;
+ background: #2a2a2a;
+}
+
+h1 {
+ margin-top: 0;
+}
+
+article p:first-of-type {
+ margin-top: 1.6em;
+}
+
+article p:last-child {
+ margin-bottom: 0;
+}
+
+footer {
+ margin: 0em auto 2em auto;
+ text-align: center;
+}
+
+footer a {
+ color: #666;
+ text-shadow: 0 1px 1px #999;
+ text-decoration: none;
+ font-size: .8em;
+ padding: 1em;
+}
+
/*footer a:before{content: "â¦"; font-size:1.5em; padding-right:.2em; } */
-footer a:hover, footer a:focus { color: white; }
-h1 {font-weight:normal; display:inline; border-bottom:1px solid #999; padding:0 0 3px 0; line-height: 36px; }
-a { color:#0520cf; text-decoration:none;}
-a:hover, a:focus { color:#2844FA; }
-a:active { color:white; }
-:-moz-any-link:focus {color:#000; border:0;}
-::selection {background:#ccc;}
-::-moz-selection {background:#ccc;}
-#gravatar{position:relative;float:right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #999;}
\ No newline at end of file
+footer a:hover, footer a:focus {
+ color: white;
+}
+
+h1 {
+ font-weight: normal;
+ display: inline;
+ border-bottom: 1px solid #999;
+ padding: 0 0 3px 0;
+ line-height: 36px;
+}
+
+a {
+ color: #0520cf;
+ text-decoration: none;
+}
+
+a:hover, a:focus {
+ color: #2844FA;
+}
+
+a:active {
+ color: white;
+}
+
+:-moz-any-link:focus {
+ color: #000;
+ border: 0;
+}
+
+::selection {
+ background: #ccc;
+}
+
+::-moz-selection {
+ background: #ccc;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ margin-bottom: 1em;
+ margin-left: 1em;
+ border: 1px solid #999;
+}
diff --git a/themes/default.css b/themes/default.css
index c95cd86c..fb575c14 100644
--- a/themes/default.css
+++ b/themes/default.css
@@ -1,22 +1,109 @@
@import url(https://fonts.googleapis.com/css?family=Inconsolata);
-html { background: #eee; }
-body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; }
-article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; }
-article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #ddd #aaa #aaa #ddd; padding: 2em; background: #fff; }
-h1 { margin-top: 0; }
-article p:first-of-type { margin-top: 1.6em; }
-article p:last-child { margin-bottom: 0; }
-footer { margin: 0em auto 2em auto; text-align: center; }
-footer a { color: #666; text-shadow: 0 1px 1px #fff; text-decoration:none; font-size:.8em; padding: 1em; }
-/*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */
-footer a:hover, footer a:focus { color: #111; }
-h1 {font-weight:normal; display:inline; border-bottom:1px solid black; padding:0 0 3px 0; line-height: 36px; }
-a { color:#2844FA; text-decoration:none;}
-a:hover, a:focus { color:#1B29A4; }
-a:active { color:#000; }
-:-moz-any-link:focus {color:#000; border:0;}
-::selection {background:#ccc;}
-::-moz-selection {background:#ccc;}
-#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; }
-@media all and (max-width: 500px) { article {padding:1em;} body {font-size:1em;} }
+html {
+ background: #eee;
+}
+
+body {
+ margin: 0;
+ font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
+ font-size: 1.2em;
+ line-height: 1.2em;
+}
+
+article, footer {
+ display: block;
+ min-width: 360px;
+ max-width: 900px;
+ width: 80%;
+}
+
+article {
+ margin: 2.5em auto 0 auto;
+ border: 1px solid;
+ border-color: #ddd #aaa #aaa #ddd;
+ padding: 2em;
+ background: #fff;
+}
+
+h1 {
+ margin-top: 0;
+}
+
+article p:first-of-type {
+ margin-top: 1.6em;
+}
+
+article p:last-child {
+ margin-bottom: 0;
+}
+
+footer {
+ margin: 0em auto 2em auto;
+ text-align: center;
+}
+
+footer a {
+ color: #666;
+ text-shadow: 0 1px 1px #fff;
+ text-decoration: none;
+ font-size: .8em;
+ padding: 1em;
+}
+
+/*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */
+footer a:hover, footer a:focus {
+ color: #111;
+}
+
+h1 {
+ font-weight: normal;
+ display: inline;
+ border-bottom: 1px solid black;
+ padding: 0 0 3px 0;
+ line-height: 36px;
+}
+
+a {
+ color: #2844FA;
+ text-decoration: none;
+}
+
+a:hover, a:focus {
+ color: #1B29A4;
+}
+
+a:active {
+ color: #000;
+}
+
+:-moz-any-link:focus {
+ color: #000;
+ border: 0;
+}
+
+::selection {
+ background: #ccc;
+}
+
+::-moz-selection {
+ background: #ccc;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ margin-bottom: 1em;
+ margin-left: 1em;
+ border: 1px solid #ddd;
+}
+
+@media all and (max-width: 500px) {
+ article {
+ padding: 1em;
+ }
+
+ body {
+ font-size: 1em;
+ }
+}
diff --git a/themes/double-windsor.css b/themes/double-windsor.css
index cc5b8642..48db1e6a 100644
--- a/themes/double-windsor.css
+++ b/themes/double-windsor.css
@@ -1,75 +1,75 @@
@import url(https://fonts.googleapis.com/css?family=Lora:400,400italic);
body {
- font-family: Lora, Constantia, Georgia, serif;
- padding: 8px;
- line-height: 1.6em;
- color: #444;
+ font-family: Lora, Constantia, Georgia, serif;
+ padding: 8px;
+ line-height: 1.6em;
+ color: #444;
}
article {
- max-width: 660px;
- margin: 10px auto 0;
- text-align: justify;
+ max-width: 660px;
+ margin: 10px auto 0;
+ text-align: justify;
}
h1 {
- font-weight: 400;
- text-align: center;
- font-variant: small-caps;
- letter-spacing: 0.25em;
- font-size: 1.9em;
- border-bottom: 1px solid #EEE;
- padding-bottom: 0.8em;
- margin-bottom: 5px;
- line-height: 1.1em;
+ font-weight: 400;
+ text-align: center;
+ font-variant: small-caps;
+ letter-spacing: 0.25em;
+ font-size: 1.9em;
+ border-bottom: 1px solid #EEE;
+ padding-bottom: 0.8em;
+ margin-bottom: 5px;
+ line-height: 1.1em;
}
article p:nth-of-type(1) {
- border-top: 1px solid #EEE;
- margin-top: 0;
- padding-top: 1.2em;
- font-style: italic;
- text-align: center;
- font-size: 1.05em;
+ border-top: 1px solid #EEE;
+ margin-top: 0;
+ padding-top: 1.2em;
+ font-style: italic;
+ text-align: center;
+ font-size: 1.05em;
}
article p:last-child {
- padding-bottom: 1.3em;
- margin-bottom: 0.0em;
- border-bottom: 1px solid #EEE;
- font-size: 0.95em;
+ padding-bottom: 1.3em;
+ margin-bottom: 0.0em;
+ border-bottom: 1px solid #EEE;
+ font-size: 0.95em;
}
a {
- padding: 0.1em;
+ padding: 0.1em;
}
a:link,
a:visited {
- text-decoration: none;
- color: #C53;
- border-bottom: 1px dotted;
+ text-decoration: none;
+ color: #C53;
+ border-bottom: 1px dotted;
}
a:hover {
- background: #D64;
- color: white;
- border: none;
+ background: #D64;
+ color: white;
+ border: none;
}
a:active {
- background: #920;
+ background: #920;
}
footer {
- border-top: 1px solid #EEE;
- font-size: 0.8em;
- text-align: center;
- max-width: 660px;
- margin: 0 auto;
- margin-top: 5px;
- font-style: italic;
+ border-top: 1px solid #EEE;
+ font-size: 0.8em;
+ text-align: center;
+ max-width: 660px;
+ margin: 0 auto;
+ margin-top: 5px;
+ font-style: italic;
}
#gravatar {
@@ -77,4 +77,4 @@ footer {
position: relative;
float: right;
top: -1.7em;
-}
\ No newline at end of file
+}
diff --git a/themes/dusk.css b/themes/dusk.css
index 46c0c190..c8dde6a1 100644
--- a/themes/dusk.css
+++ b/themes/dusk.css
@@ -1,133 +1,132 @@
/* Dusk theme v1.0.0 by @georapbox */
-
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400);
*::selection {
- background: #de5833;
- color: #eff7ff;
+ background: #de5833;
+ color: #eff7ff;
}
*::-moz-selection {
- background: #de5833;
- color: #eff7ff;
+ background: #de5833;
+ color: #eff7ff;
}
* {
- margin: 0;
- padding: 0;
+ margin: 0;
+ padding: 0;
}
body {
- font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
- font-size: 1.1em;
- background: #272b35;
- color: #67778a;
- margin: 86px 0;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
+ font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
+ font-size: 1.1em;
+ background: #272b35;
+ color: #67778a;
+ margin: 86px 0;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
}
a:link, a:visited, a:hover {
- position: relative;
- text-decoration: none;
- color: #de5833;
- -webkit-transition: color 0.3s ease-in-out;
- transition: color 0.3s ease-in-out;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
+ position: relative;
+ text-decoration: none;
+ color: #de5833;
+ -webkit-transition: color 0.3s ease-in-out;
+ transition: color 0.3s ease-in-out;
+ -webkit-transform: scaleX(0);
+ transform: scaleX(0);
}
a:hover {
- color: #eff7ff;
+ color: #eff7ff;
}
a:before {
- content: " ";
- position: absolute;
- width: 100%;
- height: 2px;
- bottom: 0;
- left: 0;
- background-color: #de5833;
- visibility: hidden;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- -webkit-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
+ content: " ";
+ position: absolute;
+ width: 100%;
+ height: 2px;
+ bottom: 0;
+ left: 0;
+ background-color: #de5833;
+ visibility: hidden;
+ -webkit-transform: scaleX(0);
+ transform: scaleX(0);
+ -webkit-transition: all 0.3s ease-in-out;
+ transition: all 0.3s ease-in-out;
}
a:hover:before {
- visibility: visible;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
+ visibility: visible;
+ -webkit-transform: scaleX(1);
+ transform: scaleX(1);
}
article {
- display: block;
- margin: 1.0em;
- position: relative;
- margin: 0 auto;
+ display: block;
+ margin: 1.0em;
+ position: relative;
+ margin: 0 auto;
}
article h1 {
- margin: 0;
- padding: 60px 0.4em 0 0.4em;
- color: #eff7ff;
- font-size: 2.0em;
- font-weight: 300;
- text-align: center;
- background: #1F222A;
+ margin: 0;
+ padding: 60px 0.4em 0 0.4em;
+ color: #eff7ff;
+ font-size: 2.0em;
+ font-weight: 300;
+ text-align: center;
+ background: #1F222A;
}
-article h1 + p {
- max-width: 100%;
- margin-top: 0;
- padding-top: 0.1em;
- padding-bottom: 60px;
- font-size: 1.0em;
- text-align: center;
- background: #1F222A;
+article h1+p {
+ max-width: 100%;
+ margin-top: 0;
+ padding-top: 0.1em;
+ padding-bottom: 60px;
+ font-size: 1.0em;
+ text-align: center;
+ background: #1F222A;
}
-article h1 + p + p {
- margin-top: 1.6em;
+article h1+p+p {
+ margin-top: 1.6em;
}
article p {
- padding: 0 1.4em;
- text-align: justify;
- line-height: 1.5;
- max-width: 960px;
- margin: 1.0em auto;
+ padding: 0 1.4em;
+ text-align: justify;
+ line-height: 1.5;
+ max-width: 960px;
+ margin: 1.0em auto;
}
article p:last-child {
- padding-bottom: 1.8em;
- font-size: 0.9em;
+ padding-bottom: 1.8em;
+ font-size: 0.9em;
}
footer {
- margin: 0 auto;
- font-size: 0.8em;
- text-align: center;
+ margin: 0 auto;
+ font-size: 0.8em;
+ text-align: center;
}
footer p {
- padding: 0 1.4em;
+ padding: 0 1.4em;
}
#gravatar {
- display: block;
- position: absolute;
- top: -43px;
- left: 50%;
- margin-left: -43px;
- border-radius: 100%;
- border: 3px solid #272b35;
+ display: block;
+ position: absolute;
+ top: -43px;
+ left: 50%;
+ margin-left: -43px;
+ border-radius: 100%;
+ border: 3px solid #272b35;
}
@media (max-width: 750px) {
- article h1 + p {
- font-size: 0.8em;
- }
+ article h1+p {
+ font-size: 0.8em;
+ }
}
diff --git a/themes/eula-modern.css b/themes/eula-modern.css
index ae1e0c6a..f08c6ab4 100644
--- a/themes/eula-modern.css
+++ b/themes/eula-modern.css
@@ -1,135 +1,137 @@
/*author: lo sauer, 2013 - https://github.com/lsauer, @sauerlo */
* {
- scrollbar-base-color: white;
- scrollbar-track-color: white;
- scrollbar-darkshadow-color: white;
- scrollbar-3dlight-color: white;
- scrollbar-arrow-color: #757778;
- scrollbar-shadow-color: #bec1c4;
- scrollbar-highlight-color: #bec1c4;
+ scrollbar-base-color: white;
+ scrollbar-track-color: white;
+ scrollbar-darkshadow-color: white;
+ scrollbar-3dlight-color: white;
+ scrollbar-arrow-color: #757778;
+ scrollbar-shadow-color: #bec1c4;
+ scrollbar-highlight-color: #bec1c4;
}
::-webkit-scrollbar {
- width: 8px;
- height: 8px;
+ width: 8px;
+ height: 8px;
}
::-webkit-scrollbar-thumb {
- background: #888;
- border-radius: 8px;
- border:1px solid rgba(0,0,0,0.3);
- box-shadow: -3px -3px 6px rgba(180,180,160,.5) inset, 3px 3px 3px rgba(226,226,225,.5) inset;
+ background: #888;
+ border-radius: 8px;
+ border: 1px solid rgba(0, 0, 0, 0.3);
+ box-shadow: -3px -3px 6px rgba(180, 180, 160, .5) inset, 3px 3px 3px rgba(226, 226, 225, .5) inset;
}
::-webkit-scrollbar-track {
- background:#fbfbfb;
- box-shadow: 3px 3px 10px rgba(0,0,0,.25) inset;
+ background: #fbfbfb;
+ box-shadow: 3px 3px 10px rgba(0, 0, 0, .25) inset;
}
body {
- font-family: Segoe UI, 'SegoeUIWF',Arial,sans-serif;
- padding: 10px;
- line-height: 1.5em;
+ font-family: Segoe UI, 'SegoeUIWF', Arial, sans-serif;
+ padding: 10px;
+ line-height: 1.5em;
}
article {
- position: relative;
- color: #444;
- max-width: 700px;
- margin: 10px auto 0px;
- text-align: justify;
+ position: relative;
+ color: #444;
+ max-width: 700px;
+ margin: 10px auto 0px;
+ text-align: justify;
}
@media (max-device-height: 699px) {
- article {
- max-width: none !important;
- margin: 8px 8px !important;
- }
+ article {
+ max-width: none !important;
+ margin: 8px 8px !important;
+ }
}
h1 {
- font-size: 3.7em;
- line-height: 1.3em;
- font-family: Segoe UI Light,'SegoeUILightWF',Arial,sans-serif;
- color: #000;
- padding: 0px;
- font-weight: normal;
- clear: both;
- margin: .2em auto .4em;
- margin-right: 100px; /* allow for avatar */
+ font-size: 3.7em;
+ line-height: 1.3em;
+ font-family: Segoe UI Light, 'SegoeUILightWF', Arial, sans-serif;
+ color: #000;
+ padding: 0px;
+ font-weight: normal;
+ clear: both;
+ margin: .2em auto .4em;
+ margin-right: 100px;
+ /* allow for avatar */
}
-article p:nth-of-type(1) { background: #666;
- color: white;
- border: none;
- border-top: 1px solid #eee;
- margin-top: 0;
- padding: .3em .3em;
- font-style: normal;
- text-align: center;
- font-size: 0.95em;
+article p:nth-of-type(1) {
+ background: #666;
+ color: white;
+ border: none;
+ border-top: 1px solid #eee;
+ margin-top: 0;
+ padding: .3em .3em;
+ font-style: normal;
+ text-align: center;
+ font-size: 0.95em;
}
article p:last-child {
- line-height: 26px;
- padding-left: 15px;
- border-width: 0px 0px 0px 3px;
- border-style: solid;
- padding-bottom: 1.3em;
- margin-bottom: 0.0em;
- font-size: 0.9em;
+ line-height: 26px;
+ padding-left: 15px;
+ border-width: 0px 0px 0px 3px;
+ border-style: solid;
+ padding-bottom: 1.3em;
+ margin-bottom: 0.0em;
+ font-size: 0.9em;
}
a {
- padding: 0.1em;
+ padding: 0.1em;
}
a:link,
a:visited {
- text-decoration: none;
- color: #666;
- border: none;
- transition: all 1s;
- padding: 1px;
+ text-decoration: none;
+ color: #666;
+ border: none;
+ transition: all 1s;
+ padding: 1px;
}
a:hover {
- background: #666;
- color: white;
- border: none;
- transition: all 1s;
+ background: #666;
+ color: white;
+ border: none;
+ transition: all 1s;
}
article a:link,
article a:visited {
- color: #fff;
- background: #666;
+ color: #fff;
+ background: #666;
}
a:active {
- background: #999;
+ background: #999;
}
footer {
- border-top: 1px solid #eee;
- font-size: 0.8em;
- text-align: center;
- max-width: 660px;
- margin: 0 auto;
- margin-top: 5px;
- font-style: italic;
+ border-top: 1px solid #eee;
+ font-size: 0.8em;
+ text-align: center;
+ max-width: 660px;
+ margin: 0 auto;
+ margin-top: 5px;
+ font-style: italic;
}
footer a:link,
footer a:visited {
- color:#ccc;
+ color: #ccc;
}
#gravatar {
- position: absolute;
- right: 0;
- border: 3px solid #ccc;
- // top: 4.5em;
- z-index: 1;
- border-radius: 10px;
+ position: absolute;
+ right: 0;
+ border: 3px solid #ccc;
+ // top: 4.5em;
+ z-index: 1;
+ border-radius: 10px;
}
diff --git a/themes/flesch.css b/themes/flesch.css
index ecec83a7..1b7858f4 100644
--- a/themes/flesch.css
+++ b/themes/flesch.css
@@ -1,13 +1,55 @@
body {
- margin:0; padding: 50px;
+ margin: 0;
+ padding: 50px;
background: #fff url(/themes/flesch.png);
- font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; color: #252519;
+ font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
+ color: #252519;
+}
+
+article, footer {
+ display: block;
+ max-width: 720px;
+ margin: 0;
+}
+
+article {
+ padding: 28px;
+ background: #fff;
+ border: 1px solid #ccc;
+}
+
+footer {
+ padding: 0 28px;
+ text-align: center;
+}
+
+h1 {
+ margin: 0;
+ font-size: 24px;
+ line-height: 32px;
+}
+
+a, a:visited {
+ color: #105cb6;
+ padding: 4px;
+ text-decoration: none;
+}
+
+a:active, a:hover {
+ color: #003;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: 0;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ margin-bottom: 1em;
+ margin-left: 1em;
+ border: 1px solid #ddd;
}
-article, footer { display:block; max-width:720px; margin:0; }
-article { padding:28px; background:#fff; border:1px solid #ccc; }
-footer { padding:0 28px; text-align:center; }
-h1 { margin:0; font-size: 24px; line-height: 32px;}
-a, a:visited { color:#105cb6; padding:4px; text-decoration:none; }
-a:active, a:hover { color:#003; }
-a img { position: absolute; top: 0; right: 0; border: 0; }
-#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; }
\ No newline at end of file
diff --git a/themes/friendly.css b/themes/friendly.css
index 775c22d3..cb6cb482 100644
--- a/themes/friendly.css
+++ b/themes/friendly.css
@@ -1,77 +1,76 @@
@import url(https://fonts.googleapis.com/css?family=Lato:300);
html {
- font-size: 16px;
- background-color: #f7f7f7;
+ font-size: 16px;
+ background-color: #f7f7f7;
}
body {
- font-family: "Lato", Helvetica, Arial, sans-serif;
- font-size: 1.3em;
- font-weight: 300;
- color: #333;
+ font-family: "Lato", Helvetica, Arial, sans-serif;
+ font-size: 1.3em;
+ font-weight: 300;
+ color: #333;
}
article, footer {
- max-width: 877px;
- margin: 0 auto;
- text-align: center;
+ max-width: 877px;
+ margin: 0 auto;
+ text-align: center;
}
article {
- margin-top: 1em;
- padding: 1em;
- text-align: center;
- position: relative;
+ margin-top: 1em;
+ padding: 1em;
+ text-align: center;
+ position: relative;
}
article p {
- text-align: left;
+ text-align: left;
}
article p:first-of-type {
- text-align: center;
- font-size: .8em;
-
+ text-align: center;
+ font-size: .8em;
}
article p:last-of-type {
- border-left: 3px solid #333;
- padding-left: 15px;
+ border-left: 3px solid #333;
+ padding-left: 15px;
}
#gravatar {
- width: 70px;
- border-radius: 35px;
- display: block;
- margin: 0 auto;
- position: absolute;
- bottom: -3em;
- left: 0;
+ width: 70px;
+ border-radius: 35px;
+ display: block;
+ margin: 0 auto;
+ position: absolute;
+ bottom: -3em;
+ left: 0;
}
h1 {
- font-size: 1.5em;
- font-weight: 300;
- text-transform: uppercase;
- display: inline-block;
- padding-bottom: 12px;
- border-bottom: 2px dashed #d9d9d9;
- margin: 0;
+ font-size: 1.5em;
+ font-weight: 300;
+ text-transform: uppercase;
+ display: inline-block;
+ padding-bottom: 12px;
+ border-bottom: 2px dashed #d9d9d9;
+ margin: 0;
}
footer {
- background: #dadada;
- border-radius: 5px;
+ background: #dadada;
+ border-radius: 5px;
}
footer p {
- text-align: left;
- padding-left: 80px;
+ text-align: left;
+ padding-left: 80px;
}
footer p a {
- color: #333;
+ color: #333;
}
a {
@@ -81,19 +80,19 @@ a {
}
a:hover, a:focus, a:active {
- color: black;
+ color: black;
}
@media (min-width: 640px) {
- h1 {
- font-size: 2.4em;
- }
+ h1 {
+ font-size: 2.4em;
+ }
- body {
- font-size: 1.4em;
- }
+ body {
+ font-size: 1.4em;
+ }
- article p:first-of-type {
- font-size: 1em;
- }
+ article p:first-of-type {
+ font-size: 1em;
+ }
}
diff --git a/themes/hacker.css b/themes/hacker.css
index 523904f3..bbc5314b 100644
--- a/themes/hacker.css
+++ b/themes/hacker.css
@@ -1,965 +1,7019 @@
+html {
+ font-family: sans-serif;
+ -ms-text-size-adjust: 100%;
+ -webkit-text-size-adjust: 100%
+}
-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,menu,nav,section,summary{display:block}
-audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
-audio:not([controls]){display:none;height:0}
-[hidden],template{display:none}
-a{background-color:transparent}
-a:active,a:hover{outline:0}
-abbr[title]{border-bottom:1px dotted}
-b,strong{font-weight:bold}
-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:-0.5em}
-sub{bottom:-0.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 #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
-legend{border:0;padding:0}
-textarea{overflow:auto}
-optgroup{font-weight:bold}
-table{border-collapse:collapse;border-spacing:0}
-td,th{padding:0}
-@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} a[href^="#"]:after,a[href^="javascript:"]: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} .btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important} .label{border:1px solid #000} .table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important} .table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;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,.glyphicon-eur:before{content:"\20ac"}
-.glyphicon-minus:before{content:"\2212"}
-.glyphicon-cloud:before{content:"\2601"}
-.glyphicon-envelope:before{content:"\2709"}
-.glyphicon-pencil:before{content:"\270f"}
-.glyphicon-glass:before{content:"\e001"}
-.glyphicon-music:before{content:"\e002"}
-.glyphicon-search:before{content:"\e003"}
-.glyphicon-heart:before{content:"\e005"}
-.glyphicon-star:before{content:"\e006"}
-.glyphicon-star-empty:before{content:"\e007"}
-.glyphicon-user:before{content:"\e008"}
-.glyphicon-film:before{content:"\e009"}
-.glyphicon-th-large:before{content:"\e010"}
-.glyphicon-th:before{content:"\e011"}
-.glyphicon-th-list:before{content:"\e012"}
-.glyphicon-ok:before{content:"\e013"}
-.glyphicon-remove:before{content:"\e014"}
-.glyphicon-zoom-in:before{content:"\e015"}
-.glyphicon-zoom-out:before{content:"\e016"}
-.glyphicon-off:before{content:"\e017"}
-.glyphicon-signal:before{content:"\e018"}
-.glyphicon-cog:before{content:"\e019"}
-.glyphicon-trash:before{content:"\e020"}
-.glyphicon-home:before{content:"\e021"}
-.glyphicon-file:before{content:"\e022"}
-.glyphicon-time:before{content:"\e023"}
-.glyphicon-road:before{content:"\e024"}
-.glyphicon-download-alt:before{content:"\e025"}
-.glyphicon-download:before{content:"\e026"}
-.glyphicon-upload:before{content:"\e027"}
-.glyphicon-inbox:before{content:"\e028"}
-.glyphicon-play-circle:before{content:"\e029"}
-.glyphicon-repeat:before{content:"\e030"}
-.glyphicon-refresh:before{content:"\e031"}
-.glyphicon-list-alt:before{content:"\e032"}
-.glyphicon-lock:before{content:"\e033"}
-.glyphicon-flag:before{content:"\e034"}
-.glyphicon-headphones:before{content:"\e035"}
-.glyphicon-volume-off:before{content:"\e036"}
-.glyphicon-volume-down:before{content:"\e037"}
-.glyphicon-volume-up:before{content:"\e038"}
-.glyphicon-qrcode:before{content:"\e039"}
-.glyphicon-barcode:before{content:"\e040"}
-.glyphicon-tag:before{content:"\e041"}
-.glyphicon-tags:before{content:"\e042"}
-.glyphicon-book:before{content:"\e043"}
-.glyphicon-bookmark:before{content:"\e044"}
-.glyphicon-print:before{content:"\e045"}
-.glyphicon-camera:before{content:"\e046"}
-.glyphicon-font:before{content:"\e047"}
-.glyphicon-bold:before{content:"\e048"}
-.glyphicon-italic:before{content:"\e049"}
-.glyphicon-text-height:before{content:"\e050"}
-.glyphicon-text-width:before{content:"\e051"}
-.glyphicon-align-left:before{content:"\e052"}
-.glyphicon-align-center:before{content:"\e053"}
-.glyphicon-align-right:before{content:"\e054"}
-.glyphicon-align-justify:before{content:"\e055"}
-.glyphicon-list:before{content:"\e056"}
-.glyphicon-indent-left:before{content:"\e057"}
-.glyphicon-indent-right:before{content:"\e058"}
-.glyphicon-facetime-video:before{content:"\e059"}
-.glyphicon-picture:before{content:"\e060"}
-.glyphicon-map-marker:before{content:"\e062"}
-.glyphicon-adjust:before{content:"\e063"}
-.glyphicon-tint:before{content:"\e064"}
-.glyphicon-edit:before{content:"\e065"}
-.glyphicon-share:before{content:"\e066"}
-.glyphicon-check:before{content:"\e067"}
-.glyphicon-move:before{content:"\e068"}
-.glyphicon-step-backward:before{content:"\e069"}
-.glyphicon-fast-backward:before{content:"\e070"}
-.glyphicon-backward:before{content:"\e071"}
-.glyphicon-play:before{content:"\e072"}
-.glyphicon-pause:before{content:"\e073"}
-.glyphicon-stop:before{content:"\e074"}
-.glyphicon-forward:before{content:"\e075"}
-.glyphicon-fast-forward:before{content:"\e076"}
-.glyphicon-step-forward:before{content:"\e077"}
-.glyphicon-eject:before{content:"\e078"}
-.glyphicon-chevron-left:before{content:"\e079"}
-.glyphicon-chevron-right:before{content:"\e080"}
-.glyphicon-plus-sign:before{content:"\e081"}
-.glyphicon-minus-sign:before{content:"\e082"}
-.glyphicon-remove-sign:before{content:"\e083"}
-.glyphicon-ok-sign:before{content:"\e084"}
-.glyphicon-question-sign:before{content:"\e085"}
-.glyphicon-info-sign:before{content:"\e086"}
-.glyphicon-screenshot:before{content:"\e087"}
-.glyphicon-remove-circle:before{content:"\e088"}
-.glyphicon-ok-circle:before{content:"\e089"}
-.glyphicon-ban-circle:before{content:"\e090"}
-.glyphicon-arrow-left:before{content:"\e091"}
-.glyphicon-arrow-right:before{content:"\e092"}
-.glyphicon-arrow-up:before{content:"\e093"}
-.glyphicon-arrow-down:before{content:"\e094"}
-.glyphicon-share-alt:before{content:"\e095"}
-.glyphicon-resize-full:before{content:"\e096"}
-.glyphicon-resize-small:before{content:"\e097"}
-.glyphicon-exclamation-sign:before{content:"\e101"}
-.glyphicon-gift:before{content:"\e102"}
-.glyphicon-leaf:before{content:"\e103"}
-.glyphicon-fire:before{content:"\e104"}
-.glyphicon-eye-open:before{content:"\e105"}
-.glyphicon-eye-close:before{content:"\e106"}
-.glyphicon-warning-sign:before{content:"\e107"}
-.glyphicon-plane:before{content:"\e108"}
-.glyphicon-calendar:before{content:"\e109"}
-.glyphicon-random:before{content:"\e110"}
-.glyphicon-comment:before{content:"\e111"}
-.glyphicon-magnet:before{content:"\e112"}
-.glyphicon-chevron-up:before{content:"\e113"}
-.glyphicon-chevron-down:before{content:"\e114"}
-.glyphicon-retweet:before{content:"\e115"}
-.glyphicon-shopping-cart:before{content:"\e116"}
-.glyphicon-folder-close:before{content:"\e117"}
-.glyphicon-folder-open:before{content:"\e118"}
-.glyphicon-resize-vertical:before{content:"\e119"}
-.glyphicon-resize-horizontal:before{content:"\e120"}
-.glyphicon-hdd:before{content:"\e121"}
-.glyphicon-bullhorn:before{content:"\e122"}
-.glyphicon-bell:before{content:"\e123"}
-.glyphicon-certificate:before{content:"\e124"}
-.glyphicon-thumbs-up:before{content:"\e125"}
-.glyphicon-thumbs-down:before{content:"\e126"}
-.glyphicon-hand-right:before{content:"\e127"}
-.glyphicon-hand-left:before{content:"\e128"}
-.glyphicon-hand-up:before{content:"\e129"}
-.glyphicon-hand-down:before{content:"\e130"}
-.glyphicon-circle-arrow-right:before{content:"\e131"}
-.glyphicon-circle-arrow-left:before{content:"\e132"}
-.glyphicon-circle-arrow-up:before{content:"\e133"}
-.glyphicon-circle-arrow-down:before{content:"\e134"}
-.glyphicon-globe:before{content:"\e135"}
-.glyphicon-wrench:before{content:"\e136"}
-.glyphicon-tasks:before{content:"\e137"}
-.glyphicon-filter:before{content:"\e138"}
-.glyphicon-briefcase:before{content:"\e139"}
-.glyphicon-fullscreen:before{content:"\e140"}
-.glyphicon-dashboard:before{content:"\e141"}
-.glyphicon-paperclip:before{content:"\e142"}
-.glyphicon-heart-empty:before{content:"\e143"}
-.glyphicon-link:before{content:"\e144"}
-.glyphicon-phone:before{content:"\e145"}
-.glyphicon-pushpin:before{content:"\e146"}
-.glyphicon-usd:before{content:"\e148"}
-.glyphicon-gbp:before{content:"\e149"}
-.glyphicon-sort:before{content:"\e150"}
-.glyphicon-sort-by-alphabet:before{content:"\e151"}
-.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}
-.glyphicon-sort-by-order:before{content:"\e153"}
-.glyphicon-sort-by-order-alt:before{content:"\e154"}
-.glyphicon-sort-by-attributes:before{content:"\e155"}
-.glyphicon-sort-by-attributes-alt:before{content:"\e156"}
-.glyphicon-unchecked:before{content:"\e157"}
-.glyphicon-expand:before{content:"\e158"}
-.glyphicon-collapse-down:before{content:"\e159"}
-.glyphicon-collapse-up:before{content:"\e160"}
-.glyphicon-log-in:before{content:"\e161"}
-.glyphicon-flash:before{content:"\e162"}
-.glyphicon-log-out:before{content:"\e163"}
-.glyphicon-new-window:before{content:"\e164"}
-.glyphicon-record:before{content:"\e165"}
-.glyphicon-save:before{content:"\e166"}
-.glyphicon-open:before{content:"\e167"}
-.glyphicon-saved:before{content:"\e168"}
-.glyphicon-import:before{content:"\e169"}
-.glyphicon-export:before{content:"\e170"}
-.glyphicon-send:before{content:"\e171"}
-.glyphicon-floppy-disk:before{content:"\e172"}
-.glyphicon-floppy-saved:before{content:"\e173"}
-.glyphicon-floppy-remove:before{content:"\e174"}
-.glyphicon-floppy-save:before{content:"\e175"}
-.glyphicon-floppy-open:before{content:"\e176"}
-.glyphicon-credit-card:before{content:"\e177"}
-.glyphicon-transfer:before{content:"\e178"}
-.glyphicon-cutlery:before{content:"\e179"}
-.glyphicon-header:before{content:"\e180"}
-.glyphicon-compressed:before{content:"\e181"}
-.glyphicon-earphone:before{content:"\e182"}
-.glyphicon-phone-alt:before{content:"\e183"}
-.glyphicon-tower:before{content:"\e184"}
-.glyphicon-stats:before{content:"\e185"}
-.glyphicon-sd-video:before{content:"\e186"}
-.glyphicon-hd-video:before{content:"\e187"}
-.glyphicon-subtitles:before{content:"\e188"}
-.glyphicon-sound-stereo:before{content:"\e189"}
-.glyphicon-sound-dolby:before{content:"\e190"}
-.glyphicon-sound-5-1:before{content:"\e191"}
-.glyphicon-sound-6-1:before{content:"\e192"}
-.glyphicon-sound-7-1:before{content:"\e193"}
-.glyphicon-copyright-mark:before{content:"\e194"}
-.glyphicon-registration-mark:before{content:"\e195"}
-.glyphicon-cloud-download:before{content:"\e197"}
-.glyphicon-cloud-upload:before{content:"\e198"}
-.glyphicon-tree-conifer:before{content:"\e199"}
-.glyphicon-tree-deciduous:before{content:"\e200"}
-.glyphicon-cd:before{content:"\e201"}
-.glyphicon-save-file:before{content:"\e202"}
-.glyphicon-open-file:before{content:"\e203"}
-.glyphicon-level-up:before{content:"\e204"}
-.glyphicon-copy:before{content:"\e205"}
-.glyphicon-paste:before{content:"\e206"}
-.glyphicon-alert:before{content:"\e209"}
-.glyphicon-equalizer:before{content:"\e210"}
-.glyphicon-king:before{content:"\e211"}
-.glyphicon-queen:before{content:"\e212"}
-.glyphicon-pawn:before{content:"\e213"}
-.glyphicon-bishop:before{content:"\e214"}
-.glyphicon-knight:before{content:"\e215"}
-.glyphicon-baby-formula:before{content:"\e216"}
-.glyphicon-tent:before{content:"\26fa"}
-.glyphicon-blackboard:before{content:"\e218"}
-.glyphicon-bed:before{content:"\e219"}
-.glyphicon-apple:before{content:"\f8ff"}
-.glyphicon-erase:before{content:"\e221"}
-.glyphicon-hourglass:before{content:"\231b"}
-.glyphicon-lamp:before{content:"\e223"}
-.glyphicon-duplicate:before{content:"\e224"}
-.glyphicon-piggy-bank:before{content:"\e225"}
-.glyphicon-scissors:before{content:"\e226"}
-.glyphicon-bitcoin:before{content:"\e227"}
-.glyphicon-btc:before{content:"\e227"}
-.glyphicon-xbt:before{content:"\e227"}
-.glyphicon-yen:before{content:"\00a5"}
-.glyphicon-jpy:before{content:"\00a5"}
-.glyphicon-ruble:before{content:"\20bd"}
-.glyphicon-rub:before{content:"\20bd"}
-.glyphicon-scale:before{content:"\e230"}
-.glyphicon-ice-lolly:before{content:"\e231"}
-.glyphicon-ice-lolly-tasted:before{content:"\e232"}
-.glyphicon-education:before{content:"\e233"}
-.glyphicon-option-horizontal:before{content:"\e234"}
-.glyphicon-option-vertical:before{content:"\e235"}
-.glyphicon-menu-hamburger:before{content:"\e236"}
-.glyphicon-modal-window:before{content:"\e237"}
-.glyphicon-oil:before{content:"\e238"}
-.glyphicon-grain:before{content:"\e239"}
-.glyphicon-sunglasses:before{content:"\e240"}
-.glyphicon-text-size:before{content:"\e241"}
-.glyphicon-text-color:before{content:"\e242"}
-.glyphicon-text-background:before{content:"\e243"}
-.glyphicon-object-align-top:before{content:"\e244"}
-.glyphicon-object-align-bottom:before{content:"\e245"}
-.glyphicon-object-align-horizontal:before{content:"\e246"}
-.glyphicon-object-align-left:before{content:"\e247"}
-.glyphicon-object-align-vertical:before{content:"\e248"}
-.glyphicon-object-align-right:before{content:"\e249"}
-.glyphicon-triangle-right:before{content:"\e250"}
-.glyphicon-triangle-left:before{content:"\e251"}
-.glyphicon-triangle-bottom:before{content:"\e252"}
-.glyphicon-triangle-top:before{content:"\e253"}
-.glyphicon-console:before{content:"\e254"}
-.glyphicon-superscript:before{content:"\e255"}
-.glyphicon-subscript:before{content:"\e256"}
-.glyphicon-menu-left:before{content:"\e257"}
-.glyphicon-menu-right:before{content:"\e258"}
-.glyphicon-menu-down:before{content:"\e259"}
-.glyphicon-menu-up:before{content:"\e260"}
-*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
-*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
-html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}
-body{font-family:Monospace;font-size:14px;line-height:1.428571429;color:#0c0;background-color:#222}
-input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}
-a{color:#0f0;text-decoration:none}a:hover,a:focus{color:#00b300;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:0}
-.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#222;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;-o-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 #3c3c3c}
-.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
-.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
-[role="button"]{cursor:pointer}
-h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:Monospace;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:normal;line-height:1;color:#030}
-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:23px}
-h4,.h4{font-size:17px}
-h5,.h5{font-size:14px}
-h6,.h6{font-size:11px}
-p{margin:0 0 10px}
-.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}
-small,.small{font-size:85%}
-mark,.mark{background-color:#3c3c3c;padding:.2em}
-.text-left{text-align:left}
-.text-right{text-align:right}
-.text-center{text-align:center}
-.text-justify{text-align:justify}
-.text-nowrap{white-space:nowrap}
-.text-lowercase{text-transform:lowercase}
-.text-uppercase{text-transform:uppercase}
-.text-capitalize{text-transform:capitalize}
-.text-muted{color:#030}
-.text-primary{color:#0f0}a.text-primary:hover{color:#0c0}
-.text-success{color:#0d0}a.text-success:hover{color:#0a0}
-.text-info{color:#7d8cff}a.text-info:hover{color:#4a5fff}
-.text-warning{color:#f4ff00}a.text-warning:hover{color:#c3cc00}
-.text-danger{color:#d00}a.text-danger:hover{color:#a00}
-.bg-primary{color:#fff;background-color:#0f0}a.bg-primary:hover{background-color:#0c0}
-.bg-success{background-color:#3c3c3c}a.bg-success:hover{background-color:#222}
-.bg-info{background-color:#3c3c3c}a.bg-info:hover{background-color:#222}
-.bg-warning{background-color:#3c3c3c}a.bg-warning:hover{background-color:#222}
-.bg-danger{background-color:#3c3c3c}a.bg-danger:hover{background-color:#222}
-.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #030}
-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.428571429}
-dt{font-weight:bold}
-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 #030}
-.initialism{font-size:90%;text-transform:uppercase}
-blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #030}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.428571429;color:#030}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 #030;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'}
-address{margin-bottom:20px;font-style:normal;line-height:1.428571429}
-code,kbd,pre,samp{font-family:Monospace}
-code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0}
-kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}
-pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#0c0;background-color:#f5f5f5;border:1px solid #ccc;border-radius:0}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.66666666666666%}
-.col-xs-10{width:83.33333333333334%}
-.col-xs-9{width:75%}
-.col-xs-8{width:66.66666666666666%}
-.col-xs-7{width:58.333333333333336%}
-.col-xs-6{width:50%}
-.col-xs-5{width:41.66666666666667%}
-.col-xs-4{width:33.33333333333333%}
-.col-xs-3{width:25%}
-.col-xs-2{width:16.666666666666664%}
-.col-xs-1{width:8.333333333333332%}
-.col-xs-pull-12{right:100%}
-.col-xs-pull-11{right:91.66666666666666%}
-.col-xs-pull-10{right:83.33333333333334%}
-.col-xs-pull-9{right:75%}
-.col-xs-pull-8{right:66.66666666666666%}
-.col-xs-pull-7{right:58.333333333333336%}
-.col-xs-pull-6{right:50%}
-.col-xs-pull-5{right:41.66666666666667%}
-.col-xs-pull-4{right:33.33333333333333%}
-.col-xs-pull-3{right:25%}
-.col-xs-pull-2{right:16.666666666666664%}
-.col-xs-pull-1{right:8.333333333333332%}
-.col-xs-pull-0{right:auto}
-.col-xs-push-12{left:100%}
-.col-xs-push-11{left:91.66666666666666%}
-.col-xs-push-10{left:83.33333333333334%}
-.col-xs-push-9{left:75%}
-.col-xs-push-8{left:66.66666666666666%}
-.col-xs-push-7{left:58.333333333333336%}
-.col-xs-push-6{left:50%}
-.col-xs-push-5{left:41.66666666666667%}
-.col-xs-push-4{left:33.33333333333333%}
-.col-xs-push-3{left:25%}
-.col-xs-push-2{left:16.666666666666664%}
-.col-xs-push-1{left:8.333333333333332%}
-.col-xs-push-0{left:auto}
-.col-xs-offset-12{margin-left:100%}
-.col-xs-offset-11{margin-left:91.66666666666666%}
-.col-xs-offset-10{margin-left:83.33333333333334%}
-.col-xs-offset-9{margin-left:75%}
-.col-xs-offset-8{margin-left:66.66666666666666%}
-.col-xs-offset-7{margin-left:58.333333333333336%}
-.col-xs-offset-6{margin-left:50%}
-.col-xs-offset-5{margin-left:41.66666666666667%}
-.col-xs-offset-4{margin-left:33.33333333333333%}
-.col-xs-offset-3{margin-left:25%}
-.col-xs-offset-2{margin-left:16.666666666666664%}
-.col-xs-offset-1{margin-left:8.333333333333332%}
-.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.66666666666666%} .col-sm-10{width:83.33333333333334%} .col-sm-9{width:75%} .col-sm-8{width:66.66666666666666%} .col-sm-7{width:58.333333333333336%} .col-sm-6{width:50%} .col-sm-5{width:41.66666666666667%} .col-sm-4{width:33.33333333333333%} .col-sm-3{width:25%} .col-sm-2{width:16.666666666666664%} .col-sm-1{width:8.333333333333332%} .col-sm-pull-12{right:100%} .col-sm-pull-11{right:91.66666666666666%} .col-sm-pull-10{right:83.33333333333334%} .col-sm-pull-9{right:75%} .col-sm-pull-8{right:66.66666666666666%} .col-sm-pull-7{right:58.333333333333336%} .col-sm-pull-6{right:50%} .col-sm-pull-5{right:41.66666666666667%} .col-sm-pull-4{right:33.33333333333333%} .col-sm-pull-3{right:25%} .col-sm-pull-2{right:16.666666666666664%} .col-sm-pull-1{right:8.333333333333332%} .col-sm-pull-0{right:auto} .col-sm-push-12{left:100%} .col-sm-push-11{left:91.66666666666666%} .col-sm-push-10{left:83.33333333333334%} .col-sm-push-9{left:75%} .col-sm-push-8{left:66.66666666666666%} .col-sm-push-7{left:58.333333333333336%} .col-sm-push-6{left:50%} .col-sm-push-5{left:41.66666666666667%} .col-sm-push-4{left:33.33333333333333%} .col-sm-push-3{left:25%} .col-sm-push-2{left:16.666666666666664%} .col-sm-push-1{left:8.333333333333332%} .col-sm-push-0{left:auto} .col-sm-offset-12{margin-left:100%} .col-sm-offset-11{margin-left:91.66666666666666%} .col-sm-offset-10{margin-left:83.33333333333334%} .col-sm-offset-9{margin-left:75%} .col-sm-offset-8{margin-left:66.66666666666666%} .col-sm-offset-7{margin-left:58.333333333333336%} .col-sm-offset-6{margin-left:50%} .col-sm-offset-5{margin-left:41.66666666666667%} .col-sm-offset-4{margin-left:33.33333333333333%} .col-sm-offset-3{margin-left:25%} .col-sm-offset-2{margin-left:16.666666666666664%} .col-sm-offset-1{margin-left:8.333333333333332%} .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.66666666666666%} .col-md-10{width:83.33333333333334%} .col-md-9{width:75%} .col-md-8{width:66.66666666666666%} .col-md-7{width:58.333333333333336%} .col-md-6{width:50%} .col-md-5{width:41.66666666666667%} .col-md-4{width:33.33333333333333%} .col-md-3{width:25%} .col-md-2{width:16.666666666666664%} .col-md-1{width:8.333333333333332%} .col-md-pull-12{right:100%} .col-md-pull-11{right:91.66666666666666%} .col-md-pull-10{right:83.33333333333334%} .col-md-pull-9{right:75%} .col-md-pull-8{right:66.66666666666666%} .col-md-pull-7{right:58.333333333333336%} .col-md-pull-6{right:50%} .col-md-pull-5{right:41.66666666666667%} .col-md-pull-4{right:33.33333333333333%} .col-md-pull-3{right:25%} .col-md-pull-2{right:16.666666666666664%} .col-md-pull-1{right:8.333333333333332%} .col-md-pull-0{right:auto} .col-md-push-12{left:100%} .col-md-push-11{left:91.66666666666666%} .col-md-push-10{left:83.33333333333334%} .col-md-push-9{left:75%} .col-md-push-8{left:66.66666666666666%} .col-md-push-7{left:58.333333333333336%} .col-md-push-6{left:50%} .col-md-push-5{left:41.66666666666667%} .col-md-push-4{left:33.33333333333333%} .col-md-push-3{left:25%} .col-md-push-2{left:16.666666666666664%} .col-md-push-1{left:8.333333333333332%} .col-md-push-0{left:auto} .col-md-offset-12{margin-left:100%} .col-md-offset-11{margin-left:91.66666666666666%} .col-md-offset-10{margin-left:83.33333333333334%} .col-md-offset-9{margin-left:75%} .col-md-offset-8{margin-left:66.66666666666666%} .col-md-offset-7{margin-left:58.333333333333336%} .col-md-offset-6{margin-left:50%} .col-md-offset-5{margin-left:41.66666666666667%} .col-md-offset-4{margin-left:33.33333333333333%} .col-md-offset-3{margin-left:25%} .col-md-offset-2{margin-left:16.666666666666664%} .col-md-offset-1{margin-left:8.333333333333332%} .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.66666666666666%} .col-lg-10{width:83.33333333333334%} .col-lg-9{width:75%} .col-lg-8{width:66.66666666666666%} .col-lg-7{width:58.333333333333336%} .col-lg-6{width:50%} .col-lg-5{width:41.66666666666667%} .col-lg-4{width:33.33333333333333%} .col-lg-3{width:25%} .col-lg-2{width:16.666666666666664%} .col-lg-1{width:8.333333333333332%} .col-lg-pull-12{right:100%} .col-lg-pull-11{right:91.66666666666666%} .col-lg-pull-10{right:83.33333333333334%} .col-lg-pull-9{right:75%} .col-lg-pull-8{right:66.66666666666666%} .col-lg-pull-7{right:58.333333333333336%} .col-lg-pull-6{right:50%} .col-lg-pull-5{right:41.66666666666667%} .col-lg-pull-4{right:33.33333333333333%} .col-lg-pull-3{right:25%} .col-lg-pull-2{right:16.666666666666664%} .col-lg-pull-1{right:8.333333333333332%} .col-lg-pull-0{right:auto} .col-lg-push-12{left:100%} .col-lg-push-11{left:91.66666666666666%} .col-lg-push-10{left:83.33333333333334%} .col-lg-push-9{left:75%} .col-lg-push-8{left:66.66666666666666%} .col-lg-push-7{left:58.333333333333336%} .col-lg-push-6{left:50%} .col-lg-push-5{left:41.66666666666667%} .col-lg-push-4{left:33.33333333333333%} .col-lg-push-3{left:25%} .col-lg-push-2{left:16.666666666666664%} .col-lg-push-1{left:8.333333333333332%} .col-lg-push-0{left:auto} .col-lg-offset-12{margin-left:100%} .col-lg-offset-11{margin-left:91.66666666666666%} .col-lg-offset-10{margin-left:83.33333333333334%} .col-lg-offset-9{margin-left:75%} .col-lg-offset-8{margin-left:66.66666666666666%} .col-lg-offset-7{margin-left:58.333333333333336%} .col-lg-offset-6{margin-left:50%} .col-lg-offset-5{margin-left:41.66666666666667%} .col-lg-offset-4{margin-left:33.33333333333333%} .col-lg-offset-3{margin-left:25%} .col-lg-offset-2{margin-left:16.666666666666664%} .col-lg-offset-1{margin-left:8.333333333333332%} .col-lg-offset-0{margin-left:0}}table{background-color:transparent}
-caption{padding-top:8px;padding-bottom:8px;color:#030;text-align:left}
-th{text-align:left}
-.table{width:100%;max-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.428571429;vertical-align:top;border-top:1px solid #444}
-.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #444}
-.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 #444}
-.table .table{background-color:#222}
-.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 #444}.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 #444}
-.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}
-.table-striped>tbody>tr:nth-of-type(odd){background-color:#080808}
-.table-hover>tbody>tr:hover{background-color:#030}
-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:#030}
-.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:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#001900}
-.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:#3c3c3c}
-.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:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#2f2f2f}
-.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:#3c3c3c}
-.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:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#2f2f2f}
-.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:#3c3c3c}
-.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:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#2f2f2f}
-.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:#3c3c3c}
-.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:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#2f2f2f}
-.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #444}.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:#0c0;border:0;border-bottom:1px solid #e5e5e5}
-label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}
-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.428571429;color:#090}
-.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#090;background-color:#000;background-image:none;border:1px solid #444;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#0f0;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 255, 0, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 255, 0, 0.6)}
-.form-control::-moz-placeholder{color:#060;opacity:1}
-.form-control:-ms-input-placeholder{color:#060}
-.form-control::-webkit-input-placeholder{color:#060}
-.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#030;opacity:1}
-.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}
-textarea.form-control{height:auto}
-input[type="search"]{-webkit-appearance:none}
-@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px} input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:45px}}.form-group{margin-bottom:15px}
-.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}
-.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}
-.radio+.radio,.checkbox+.checkbox{margin-top:-5px}
-.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}
-.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}
-input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}
-.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}
-.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}
-.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}
-.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-sm{height:30px;line-height:30px}
-textarea.input-sm,select[multiple].input-sm{height:auto}
-.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.form-group-sm .form-control{height:30px;line-height:30px}
-textarea.form-group-sm .form-control,select[multiple].form-group-sm .form-control{height:auto}
-.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;min-height:32px}
-.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.input-lg{height:45px;line-height:45px}
-textarea.input-lg,select[multiple].input-lg{height:auto}
-.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.form-group-lg .form-control{height:45px;line-height:45px}
-textarea.form-group-lg .form-control,select[multiple].form-group-lg .form-control{height:auto}
-.form-group-lg .form-control-static{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;min-height:38px}
-.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}
-.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}
-.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}
-.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}
-.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#0d0}
-.has-success .form-control{border-color:#0d0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#0a0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #4f4;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #4f4}
-.has-success .input-group-addon{color:#0d0;border-color:#0d0;background-color:#3c3c3c}
-.has-success .form-control-feedback{color:#0d0}
-.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#f4ff00}
-.has-warning .form-control{border-color:#f4ff00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#c3cc00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f8ff66;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f8ff66}
-.has-warning .input-group-addon{color:#f4ff00;border-color:#f4ff00;background-color:#3c3c3c}
-.has-warning .form-control-feedback{color:#f4ff00}
-.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#d00}
-.has-error .form-control{border-color:#d00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#a00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f44;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f44}
-.has-error .input-group-addon{color:#d00;border-color:#d00;background-color:#3c3c3c}
-.has-error .form-control-feedback{color:#d00}
-.has-feedback label~.form-control-feedback{top:25px}
-.has-feedback label.sr-only~.form-control-feedback{top:0}
-.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#4dff4d}
-@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} .form-inline .form-control-static{display:inline-block} .form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto} .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;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0} .form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0} .form-inline .has-feedback .form-control-feedback{top:0}}
-.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}
-@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}
-@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}
-@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}
-.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.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,.btn.focus{color:#0f0;text-decoration:none}
-.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,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:#0f0;background-color:#222;border-color:#111}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#0f0;background-color:#080808;border-color:#000}
-.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.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:#222;border-color:#111}
-.btn-default .badge{color:#222;background-color:#0f0}
-.btn-primary{color:#222;background-color:#0f0;border-color:#111}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#222;background-color:#0c0;border-color:#000}
-.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.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:#0f0;border-color:#111}
-.btn-primary .badge{color:#0f0;background-color:#222}
-.btn-success{color:#222;background-color:#090;border-color:#111}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#222;background-color:#060;border-color:#000}
-.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.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:#090;border-color:#111}
-.btn-success .badge{color:#090;background-color:#222}
-.btn-info{color:#222;background-color:#36c;border-color:#111}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#222;background-color:#2952a3;border-color:#000}
-.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.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:#36c;border-color:#111}
-.btn-info .badge{color:#36c;background-color:#222}
-.btn-warning{color:#222;background-color:#f4ff00;border-color:#111}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#222;background-color:#c3cc00;border-color:#000}
-.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.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:#f4ff00;border-color:#111}
-.btn-warning .badge{color:#f4ff00;background-color:#222}
-.btn-danger{color:#222;background-color:#f00;border-color:#111}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#222;background-color:#c00;border-color:#000}
-.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.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:#f00;border-color:#111}
-.btn-danger .badge{color:#f00;background-color:#222}
-.btn-link{color:#0f0;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}
-.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}
-.btn-link:hover,.btn-link:focus{color:#00b300;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:#030;text-decoration:none}
-.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}
-.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}
-.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0}
-.btn-block{display:block;width:100%}
-.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;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}
-.collapse{display:none}.collapse.in{display:block}
-tr.collapse.in{display:table-row}
-tbody.collapse.in{display:table-row-group}
-.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}
-.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}
-.dropup,.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;text-align:left;background-color:#3c3c3c;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,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:#333}
-.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#0c0;white-space:nowrap}
-.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#222;background-color:#0f0}
-.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#222;text-decoration:none;outline:0;background-color:#0f0}
-.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#030}
-.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.428571429;color:#a2a2a2;white-space:nowrap}
-.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:2px}
-@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+.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:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}
-.btn-group>.btn-group:last-child:not(:first-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,0.125);box-shadow:inset 0 3px 5px rgba(0,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:0;border-bottom-right-radius:0;border-bottom-left-radius:0}
-.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:0;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%}
-.btn-group-justified>.btn-group .dropdown-menu{left:auto}
-[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}
-.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-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:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}
-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:0}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:normal;line-height:1;color:#090;text-align:center;background-color:#222;border:1px solid #444;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:0}
-.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0}
-.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:#030}
-.nav>li.disabled>a{color:#030}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#030;text-decoration:none;background-color:transparent;cursor:not-allowed}
-.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#030;border-color:#0f0}
-.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 #444}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:0 0 0 0}.nav-tabs>li>a:hover{border-color:#444 #444 #444}
-.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#090;background-color:#333;border:1px solid #222;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:0}
-.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:0 0 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:#222}}
-.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0}
-.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:#0f0}
-.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:0}
-.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:0 0 0 0} .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#222}}
-.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:0}}
-@media (min-width:768px){.navbar-header{float:left}}
-.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.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}}
-.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}
-.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 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}
-.navbar-brand>img{display:block}
-@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}
-.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.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-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,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);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 .form-control-static{display:inline-block} .navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto} .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;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0} .navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0} .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}
-@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}
-.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{margin-bottom:0;border-top-right-radius:0;border-top-left-radius:0;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}}
-@media (min-width:768px){.navbar-left{float:left !important} .navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#080808;border-color:#000}.navbar-default .navbar-brand{color:#0f0}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#0c0;background-color:transparent}
-.navbar-default .navbar-text{color:#0f0}
-.navbar-default .navbar-nav>li>a{color:#0f0}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#090;background-color:#222}
-.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#999;background-color:#000}
-.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:#000}
-.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#000;color:#999}
-@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#0f0}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#090;background-color:#222} .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:#999;background-color:#000} .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:#0f0}.navbar-default .navbar-link:hover{color:#090}
-.navbar-default .btn-link{color:#0f0}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#090}
-.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}
-.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#007f00}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}
-.navbar-inverse .navbar-text{color:#007f00}
-.navbar-inverse .navbar-nav>li>a{color:#007f00}.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:#007f00}.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:#007f00}.navbar-inverse .navbar-link:hover{color:#fff}
-.navbar-inverse .btn-link{color:#007f00}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}
-.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}
-.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#3c3c3c;border-radius:0}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#0f0}
-.breadcrumb>.active{color:#090}
-.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;color:#0f0;background-color:#222;border:1px solid #444;margin-left:-1px}
-.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}
-.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}
-.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#00b300;background-color:#030;border-color:#555}
-.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:#222;background-color:#0f0;border-color:#0f0;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:#3f3;background-color:#3c3c3c;border-color:#444;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:0;border-top-left-radius:0}
-.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}
-.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:0;border-top-left-radius:0}
-.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}
-.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:#222;border:1px solid #444;border-radius:0}
-.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#030}
-.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:#030;background-color:#222;cursor:not-allowed}
-.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#222;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}
-.label:empty{display:none}
-.btn .label{position:relative;top:-1px}
-.label-default{background-color:#030}.label-default[href]:hover,.label-default[href]:focus{background-color:#000}
-.label-primary{background-color:#0f0}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#0c0}
-.label-success{background-color:#090}.label-success[href]:hover,.label-success[href]:focus{background-color:#060}
-.label-info{background-color:#36c}.label-info[href]:hover,.label-info[href]:focus{background-color:#2952a3}
-.label-warning{background-color:#f4ff00}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#c3cc00}
-.label-danger{background-color:#f00}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c00}
-.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#0f0;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#222;border-radius:10px}.badge:empty{display:none}
-.btn .badge{position:relative;top:-1px}
-.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}
-a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}
-.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0f0;background-color:#fff}
-.list-group-item>.badge{float:right}
-.list-group-item>.badge+.badge{margin-right:5px}
-.nav-pills>li>a>.badge{margin-left:3px}
-.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#080808}.jumbotron h1,.jumbotron .h1{color:inherit}
-.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}
-.jumbotron>hr{border-top-color:#000}
-.container .jumbotron,.container-fluid .jumbotron{border-radius:0}
-.jumbotron .container{max-width:100%}
-@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .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.428571429;background-color:#222;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .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:#0f0}
-.thumbnail .caption{padding:9px;color:#0c0}
-.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:0}.alert h4{margin-top:0;color:inherit}
-.alert .alert-link{font-weight:bold}
-.alert>p,.alert>ul{margin-bottom:0}
-.alert>p+p{margin-top:5px}
-.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}
-.alert-success{background-color:#3c3c3c;border-color:#2f2f2f;color:#0d0}.alert-success hr{border-top-color:#222}
-.alert-success .alert-link{color:#0a0}
-.alert-info{background-color:#3c3c3c;border-color:#2a2a2a;color:#7d8cff}.alert-info hr{border-top-color:#1d1d1d}
-.alert-info .alert-link{color:#4a5fff}
-.alert-warning{background-color:#3c3c3c;border-color:#343434;color:#f4ff00}.alert-warning hr{border-top-color:#272727}
-.alert-warning .alert-link{color:#c3cc00}
-.alert-danger{background-color:#3c3c3c;border-color:#343434;color:#d00}.alert-danger hr{border-top-color:#272727}
-.alert-danger .alert-link{color:#a00}
-@-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:#3c3c3c;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}
-.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#0f0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}
-.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}
-.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}
-.progress-bar-success{background-color:#090}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}
-.progress-bar-info{background-color:#36c}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}
-.progress-bar-warning{background-color:#f4ff00}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}
-.progress-bar-danger{background-color:#f00}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}
-.media{margin-top:15px}.media:first-child{margin-top:0}
-.media,.media-body{zoom:1;overflow:hidden}
-.media-body{width:10000px}
-.media-object{display:block}
-.media-right,.media>.pull-right{padding-left:10px}
-.media-left,.media>.pull-left{padding-right:10px}
-.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}
-.media-middle{vertical-align:middle}
-.media-bottom{vertical-align:bottom}
-.media-heading{margin-top:0;margin-bottom:5px}
-.media-list{padding-left:0;list-style:none}
-.list-group{margin-bottom:20px;padding-left:0}
-.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#3c3c3c;border:1px solid #222}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}
-.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}
-a.list-group-item{color:#0f0}a.list-group-item .list-group-item-heading{color:#0f0}
-a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#0f0;background-color:#151515}
-.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#030;color:#030;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}
-.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#030}
-.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#222;background-color:#0f0;border-color:#0f0}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}
-.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#222}
-.list-group-item-success{color:#0d0;background-color:#3c3c3c}a.list-group-item-success{color:#0d0}a.list-group-item-success .list-group-item-heading{color:inherit}
-a.list-group-item-success:hover,a.list-group-item-success:focus{color:#0d0;background-color:#2f2f2f}
-a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#0d0;border-color:#0d0}
-.list-group-item-info{color:#7d8cff;background-color:#3c3c3c}a.list-group-item-info{color:#7d8cff}a.list-group-item-info .list-group-item-heading{color:inherit}
-a.list-group-item-info:hover,a.list-group-item-info:focus{color:#7d8cff;background-color:#2f2f2f}
-a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#7d8cff;border-color:#7d8cff}
-.list-group-item-warning{color:#f4ff00;background-color:#3c3c3c}a.list-group-item-warning{color:#f4ff00}a.list-group-item-warning .list-group-item-heading{color:inherit}
-a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#f4ff00;background-color:#2f2f2f}
-a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#f4ff00;border-color:#f4ff00}
-.list-group-item-danger{color:#d00;background-color:#3c3c3c}a.list-group-item-danger{color:#d00}a.list-group-item-danger .list-group-item-heading{color:inherit}
-a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#d00;background-color:#2f2f2f}
-a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#d00;border-color:#d00}
-.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:#222;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}
-.panel-body{padding:15px}
-.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1;border-top-left-radius:-1}.panel-heading>.dropdown .dropdown-toggle{color:inherit}
-.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}
-.panel-footer{padding:10px 15px;background-color:#080808;border-top:1px solid #3c3c3c;border-bottom-right-radius:-1;border-bottom-left-radius:-1}
-.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}
-.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1;border-top-left-radius:-1}
-.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1;border-bottom-left-radius:-1}
-.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}
-.list-group+.panel-footer{border-top-width:0}
-.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}
-.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1;border-top-left-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1;border-top-right-radius:-1}.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:-1}
-.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:-1}
-.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1;border-bottom-left-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1;border-bottom-right-radius:-1}.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:-1}
-.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:-1}
-.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #444}
-.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:0}.panel-group .panel+.panel{margin-top:5px}
-.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #3c3c3c}
-.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #3c3c3c}
-.panel-default{border-color:#3c3c3c}.panel-default>.panel-heading{color:#222;background-color:#080808;border-color:#3c3c3c}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3c3c3c}
-.panel-default>.panel-heading .badge{color:#080808;background-color:#222}
-.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3c3c3c}
-.panel-primary{border-color:#0f0}.panel-primary>.panel-heading{color:#222;background-color:#0f0;border-color:#0f0}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#0f0}
-.panel-primary>.panel-heading .badge{color:#0f0;background-color:#222}
-.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#0f0}
-.panel-success{border-color:#2f2f2f}.panel-success>.panel-heading{color:#0d0;background-color:#3c3c3c;border-color:#2f2f2f}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2f2f2f}
-.panel-success>.panel-heading .badge{color:#3c3c3c;background-color:#0d0}
-.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2f2f2f}
-.panel-info{border-color:#2a2a2a}.panel-info>.panel-heading{color:#7d8cff;background-color:#3c3c3c;border-color:#2a2a2a}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2a2a2a}
-.panel-info>.panel-heading .badge{color:#3c3c3c;background-color:#7d8cff}
-.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2a2a2a}
-.panel-warning{border-color:#343434}.panel-warning>.panel-heading{color:#f4ff00;background-color:#3c3c3c;border-color:#343434}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#343434}
-.panel-warning>.panel-heading .badge{color:#3c3c3c;background-color:#f4ff00}
-.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#343434}
-.panel-danger{border-color:#343434}.panel-danger>.panel-heading{color:#d00;background-color:#3c3c3c;border-color:#343434}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#343434}
-.panel-danger>.panel-heading .badge{color:#3c3c3c;background-color:#d00}
-.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#343434}
-.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}
-.embed-responsive-16by9{padding-bottom:56.25%}
-.embed-responsive-4by3{padding-bottom:75%}
-.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#080808;border:1px solid #000;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}
-.well-lg{padding:24px;border-radius:0}
-.well-sm{padding:9px;border-radius:0}
-.close{float:right;font-size:21px;font-weight:bold;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:transparent;border:0;-webkit-appearance:none}
-.modal-open{overflow:hidden}
-.modal{display:none;overflow:hidden;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%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}
-.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}
-.modal-open .modal{overflow-x:hidden;overflow-y:auto}
-.modal-dialog{position:relative;width:auto;margin:10px}
-.modal-content{position:relative;background-color:#3c3c3c;border:1px solid #999;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,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:#222}.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 #3c3c3c;min-height:16.428571429px}
-.modal-header .close{margin-top:-2px}
-.modal-title{margin:0;line-height:1.428571429}
-.modal-body{position:relative;padding:15px}
-.modal-footer{padding:15px;text-align:right;border-top:1px solid #3c3c3c}.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}
-.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}
-@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto} .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)} .modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Monospace;font-size:12px;font-weight:normal;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:0}
-.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;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}
-.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}
-.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}
-.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}
-.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}
-.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}
-.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}
-.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Monospace;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:left;background-color:#3c3c3c;background-clip:padding-box;border:1px solid #333;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,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;background-color:#343434;border-bottom:1px solid #272727;border-radius:-1 -1 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,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#3c3c3c}
-.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,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#3c3c3c}
-.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#3c3c3c}
-.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,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#3c3c3c;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;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}
-@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;-moz-perspective:1000;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0} .carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0} .carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}
-.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}
-.carousel-inner>.active{left:0}
-.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}
-.carousel-inner>.next{left:100%}
-.carousel-inner>.prev{left:-100%}
-.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}
-.carousel-inner>.active.left{left:-100%}
-.carousel-inner>.active.right{left:100%}
-.carousel-control{position:absolute;top:0;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,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,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, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,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%;margin-left:-10px}
-.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}
-.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;line-height:1;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,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;font-size:30px} .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px} .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px} .carousel-caption{left:20%;right:20%;padding-bottom:30px} .carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd: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,.dl-horizontal dd: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}
-.affix{position:fixed}
-@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}
-.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}
-@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table} tr.visible-xs{display:table-row !important} th.visible-xs,td.visible-xs{display:table-cell !important}}
-@media (max-width:767px){.visible-xs-block{display:block !important}}
-@media (max-width:767px){.visible-xs-inline{display:inline !important}}
-@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}
-@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table} tr.visible-sm{display:table-row !important} th.visible-sm,td.visible-sm{display:table-cell !important}}
-@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}
-@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}
-@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}
-@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table} tr.visible-md{display:table-row !important} th.visible-md,td.visible-md{display:table-cell !important}}
-@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}
-@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}
-@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}
-@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table} tr.visible-lg{display:table-row !important} th.visible-lg,td.visible-lg{display:table-cell !important}}
-@media (min-width:1200px){.visible-lg-block{display:block !important}}
-@media (min-width:1200px){.visible-lg-inline{display:inline !important}}
-@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}
-@media (max-width:767px){.hidden-xs{display:none !important}}
-@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}
-@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}
-@media (min-width:1200px){.hidden-lg{display:none !important}}
-.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table} tr.visible-print{display:table-row !important} th.visible-print,td.visible-print{display:table-cell !important}}
-.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}
-.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}
-.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}
-@media print{.hidden-print{display:none !important}}
+body {
+ margin: 0
+}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
+ display: block
+}
+
+audio, canvas, progress, video {
+ display: inline-block;
+ vertical-align: baseline
+}
+
+audio:not([controls]) {
+ display: none;
+ height: 0
+}
+
+[hidden], template {
+ display: none
+}
+
+a {
+ background-color: transparent
+}
+
+a:active, a:hover {
+ outline: 0
+}
+
+abbr[title] {
+ border-bottom: 1px dotted
+}
+
+b, strong {
+ font-weight: bold
+}
+
+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: -0.5em
+}
+
+sub {
+ bottom: -0.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 #c0c0c0;
+ margin: 0 2px;
+ padding: .35em .625em .75em
+}
+
+legend {
+ border: 0;
+ padding: 0
+}
+
+textarea {
+ overflow: auto
+}
+
+optgroup {
+ font-weight: bold
+}
+
+table {
+ border-collapse: collapse;
+ border-spacing: 0
+}
+
+td, th {
+ padding: 0
+}
+
+@media print {
+ *, *:before, *:after {
+ background: transparent !important;
+ color: #000 !important;
+ box-shadow: none !important;
+ text-shadow: none !important
+ }
+
+ a, a:visited {
+ text-decoration: underline
+ }
+
+ a[href]:after {
+ content: " ("attr(href) ")"
+ }
+
+ abbr[title]:after {
+ content: " ("attr(title) ")"
+ }
+
+ a[href^="#"]:after, a[href^="javascript:"]: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
+ }
+
+ .btn>.caret, .dropup>.btn>.caret {
+ border-top-color: #000 !important
+ }
+
+ .label {
+ border: 1px solid #000
+ }
+
+ .table {
+ border-collapse: collapse !important
+ }
+
+ .table td, .table th {
+ background-color: #fff !important
+ }
+
+ .table-bordered th, .table-bordered td {
+ border: 1px solid #ddd !important
+ }
+}
+
+@font-face {
+ font-family: 'Glyphicons Halflings';
+ src: url('../fonts/glyphicons-halflings-regular.eot');
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
+}
+
+.glyphicon {
+ position: relative;
+ top: 1px;
+ display: inline-block;
+ font-family: 'Glyphicons Halflings';
+ font-style: normal;
+ font-weight: normal;
+ 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, .glyphicon-eur:before {
+ content: "\20ac"
+}
+
+.glyphicon-minus:before {
+ content: "\2212"
+}
+
+.glyphicon-cloud:before {
+ content: "\2601"
+}
+
+.glyphicon-envelope:before {
+ content: "\2709"
+}
+
+.glyphicon-pencil:before {
+ content: "\270f"
+}
+
+.glyphicon-glass:before {
+ content: "\e001"
+}
+
+.glyphicon-music:before {
+ content: "\e002"
+}
+
+.glyphicon-search:before {
+ content: "\e003"
+}
+
+.glyphicon-heart:before {
+ content: "\e005"
+}
+
+.glyphicon-star:before {
+ content: "\e006"
+}
+
+.glyphicon-star-empty:before {
+ content: "\e007"
+}
+
+.glyphicon-user:before {
+ content: "\e008"
+}
+
+.glyphicon-film:before {
+ content: "\e009"
+}
+
+.glyphicon-th-large:before {
+ content: "\e010"
+}
+
+.glyphicon-th:before {
+ content: "\e011"
+}
+
+.glyphicon-th-list:before {
+ content: "\e012"
+}
+
+.glyphicon-ok:before {
+ content: "\e013"
+}
+
+.glyphicon-remove:before {
+ content: "\e014"
+}
+
+.glyphicon-zoom-in:before {
+ content: "\e015"
+}
+
+.glyphicon-zoom-out:before {
+ content: "\e016"
+}
+
+.glyphicon-off:before {
+ content: "\e017"
+}
+
+.glyphicon-signal:before {
+ content: "\e018"
+}
+
+.glyphicon-cog:before {
+ content: "\e019"
+}
+
+.glyphicon-trash:before {
+ content: "\e020"
+}
+
+.glyphicon-home:before {
+ content: "\e021"
+}
+
+.glyphicon-file:before {
+ content: "\e022"
+}
+
+.glyphicon-time:before {
+ content: "\e023"
+}
+
+.glyphicon-road:before {
+ content: "\e024"
+}
+
+.glyphicon-download-alt:before {
+ content: "\e025"
+}
+
+.glyphicon-download:before {
+ content: "\e026"
+}
+
+.glyphicon-upload:before {
+ content: "\e027"
+}
+
+.glyphicon-inbox:before {
+ content: "\e028"
+}
+
+.glyphicon-play-circle:before {
+ content: "\e029"
+}
+
+.glyphicon-repeat:before {
+ content: "\e030"
+}
+
+.glyphicon-refresh:before {
+ content: "\e031"
+}
+
+.glyphicon-list-alt:before {
+ content: "\e032"
+}
+
+.glyphicon-lock:before {
+ content: "\e033"
+}
+
+.glyphicon-flag:before {
+ content: "\e034"
+}
+
+.glyphicon-headphones:before {
+ content: "\e035"
+}
+
+.glyphicon-volume-off:before {
+ content: "\e036"
+}
+
+.glyphicon-volume-down:before {
+ content: "\e037"
+}
+
+.glyphicon-volume-up:before {
+ content: "\e038"
+}
+
+.glyphicon-qrcode:before {
+ content: "\e039"
+}
+
+.glyphicon-barcode:before {
+ content: "\e040"
+}
+
+.glyphicon-tag:before {
+ content: "\e041"
+}
+
+.glyphicon-tags:before {
+ content: "\e042"
+}
+
+.glyphicon-book:before {
+ content: "\e043"
+}
+
+.glyphicon-bookmark:before {
+ content: "\e044"
+}
+
+.glyphicon-print:before {
+ content: "\e045"
+}
+
+.glyphicon-camera:before {
+ content: "\e046"
+}
+
+.glyphicon-font:before {
+ content: "\e047"
+}
+
+.glyphicon-bold:before {
+ content: "\e048"
+}
+
+.glyphicon-italic:before {
+ content: "\e049"
+}
+
+.glyphicon-text-height:before {
+ content: "\e050"
+}
+
+.glyphicon-text-width:before {
+ content: "\e051"
+}
+
+.glyphicon-align-left:before {
+ content: "\e052"
+}
+
+.glyphicon-align-center:before {
+ content: "\e053"
+}
+
+.glyphicon-align-right:before {
+ content: "\e054"
+}
+
+.glyphicon-align-justify:before {
+ content: "\e055"
+}
+
+.glyphicon-list:before {
+ content: "\e056"
+}
+
+.glyphicon-indent-left:before {
+ content: "\e057"
+}
+
+.glyphicon-indent-right:before {
+ content: "\e058"
+}
+
+.glyphicon-facetime-video:before {
+ content: "\e059"
+}
+
+.glyphicon-picture:before {
+ content: "\e060"
+}
+
+.glyphicon-map-marker:before {
+ content: "\e062"
+}
+
+.glyphicon-adjust:before {
+ content: "\e063"
+}
+
+.glyphicon-tint:before {
+ content: "\e064"
+}
+
+.glyphicon-edit:before {
+ content: "\e065"
+}
+
+.glyphicon-share:before {
+ content: "\e066"
+}
+
+.glyphicon-check:before {
+ content: "\e067"
+}
+
+.glyphicon-move:before {
+ content: "\e068"
+}
+
+.glyphicon-step-backward:before {
+ content: "\e069"
+}
+
+.glyphicon-fast-backward:before {
+ content: "\e070"
+}
+
+.glyphicon-backward:before {
+ content: "\e071"
+}
+
+.glyphicon-play:before {
+ content: "\e072"
+}
+
+.glyphicon-pause:before {
+ content: "\e073"
+}
+
+.glyphicon-stop:before {
+ content: "\e074"
+}
+
+.glyphicon-forward:before {
+ content: "\e075"
+}
+
+.glyphicon-fast-forward:before {
+ content: "\e076"
+}
+
+.glyphicon-step-forward:before {
+ content: "\e077"
+}
+
+.glyphicon-eject:before {
+ content: "\e078"
+}
+
+.glyphicon-chevron-left:before {
+ content: "\e079"
+}
+
+.glyphicon-chevron-right:before {
+ content: "\e080"
+}
+
+.glyphicon-plus-sign:before {
+ content: "\e081"
+}
+
+.glyphicon-minus-sign:before {
+ content: "\e082"
+}
+
+.glyphicon-remove-sign:before {
+ content: "\e083"
+}
+
+.glyphicon-ok-sign:before {
+ content: "\e084"
+}
+
+.glyphicon-question-sign:before {
+ content: "\e085"
+}
+
+.glyphicon-info-sign:before {
+ content: "\e086"
+}
+
+.glyphicon-screenshot:before {
+ content: "\e087"
+}
+
+.glyphicon-remove-circle:before {
+ content: "\e088"
+}
+
+.glyphicon-ok-circle:before {
+ content: "\e089"
+}
+
+.glyphicon-ban-circle:before {
+ content: "\e090"
+}
+
+.glyphicon-arrow-left:before {
+ content: "\e091"
+}
+
+.glyphicon-arrow-right:before {
+ content: "\e092"
+}
+
+.glyphicon-arrow-up:before {
+ content: "\e093"
+}
+
+.glyphicon-arrow-down:before {
+ content: "\e094"
+}
+
+.glyphicon-share-alt:before {
+ content: "\e095"
+}
+
+.glyphicon-resize-full:before {
+ content: "\e096"
+}
+
+.glyphicon-resize-small:before {
+ content: "\e097"
+}
+
+.glyphicon-exclamation-sign:before {
+ content: "\e101"
+}
+
+.glyphicon-gift:before {
+ content: "\e102"
+}
+
+.glyphicon-leaf:before {
+ content: "\e103"
+}
+
+.glyphicon-fire:before {
+ content: "\e104"
+}
+
+.glyphicon-eye-open:before {
+ content: "\e105"
+}
+
+.glyphicon-eye-close:before {
+ content: "\e106"
+}
+
+.glyphicon-warning-sign:before {
+ content: "\e107"
+}
+
+.glyphicon-plane:before {
+ content: "\e108"
+}
+
+.glyphicon-calendar:before {
+ content: "\e109"
+}
+
+.glyphicon-random:before {
+ content: "\e110"
+}
+
+.glyphicon-comment:before {
+ content: "\e111"
+}
+
+.glyphicon-magnet:before {
+ content: "\e112"
+}
+
+.glyphicon-chevron-up:before {
+ content: "\e113"
+}
+
+.glyphicon-chevron-down:before {
+ content: "\e114"
+}
+
+.glyphicon-retweet:before {
+ content: "\e115"
+}
+
+.glyphicon-shopping-cart:before {
+ content: "\e116"
+}
+
+.glyphicon-folder-close:before {
+ content: "\e117"
+}
+
+.glyphicon-folder-open:before {
+ content: "\e118"
+}
+
+.glyphicon-resize-vertical:before {
+ content: "\e119"
+}
+
+.glyphicon-resize-horizontal:before {
+ content: "\e120"
+}
+
+.glyphicon-hdd:before {
+ content: "\e121"
+}
+
+.glyphicon-bullhorn:before {
+ content: "\e122"
+}
+
+.glyphicon-bell:before {
+ content: "\e123"
+}
+
+.glyphicon-certificate:before {
+ content: "\e124"
+}
+
+.glyphicon-thumbs-up:before {
+ content: "\e125"
+}
+
+.glyphicon-thumbs-down:before {
+ content: "\e126"
+}
+
+.glyphicon-hand-right:before {
+ content: "\e127"
+}
+
+.glyphicon-hand-left:before {
+ content: "\e128"
+}
+
+.glyphicon-hand-up:before {
+ content: "\e129"
+}
+
+.glyphicon-hand-down:before {
+ content: "\e130"
+}
+
+.glyphicon-circle-arrow-right:before {
+ content: "\e131"
+}
+
+.glyphicon-circle-arrow-left:before {
+ content: "\e132"
+}
+
+.glyphicon-circle-arrow-up:before {
+ content: "\e133"
+}
+
+.glyphicon-circle-arrow-down:before {
+ content: "\e134"
+}
+
+.glyphicon-globe:before {
+ content: "\e135"
+}
+
+.glyphicon-wrench:before {
+ content: "\e136"
+}
+
+.glyphicon-tasks:before {
+ content: "\e137"
+}
+
+.glyphicon-filter:before {
+ content: "\e138"
+}
+
+.glyphicon-briefcase:before {
+ content: "\e139"
+}
+
+.glyphicon-fullscreen:before {
+ content: "\e140"
+}
+
+.glyphicon-dashboard:before {
+ content: "\e141"
+}
+
+.glyphicon-paperclip:before {
+ content: "\e142"
+}
+
+.glyphicon-heart-empty:before {
+ content: "\e143"
+}
+
+.glyphicon-link:before {
+ content: "\e144"
+}
+
+.glyphicon-phone:before {
+ content: "\e145"
+}
+
+.glyphicon-pushpin:before {
+ content: "\e146"
+}
+
+.glyphicon-usd:before {
+ content: "\e148"
+}
+
+.glyphicon-gbp:before {
+ content: "\e149"
+}
+
+.glyphicon-sort:before {
+ content: "\e150"
+}
+
+.glyphicon-sort-by-alphabet:before {
+ content: "\e151"
+}
+
+.glyphicon-sort-by-alphabet-alt:before {
+ content: "\e152"
+}
+
+.glyphicon-sort-by-order:before {
+ content: "\e153"
+}
+
+.glyphicon-sort-by-order-alt:before {
+ content: "\e154"
+}
+
+.glyphicon-sort-by-attributes:before {
+ content: "\e155"
+}
+
+.glyphicon-sort-by-attributes-alt:before {
+ content: "\e156"
+}
+
+.glyphicon-unchecked:before {
+ content: "\e157"
+}
+
+.glyphicon-expand:before {
+ content: "\e158"
+}
+
+.glyphicon-collapse-down:before {
+ content: "\e159"
+}
+
+.glyphicon-collapse-up:before {
+ content: "\e160"
+}
+
+.glyphicon-log-in:before {
+ content: "\e161"
+}
+
+.glyphicon-flash:before {
+ content: "\e162"
+}
+
+.glyphicon-log-out:before {
+ content: "\e163"
+}
+
+.glyphicon-new-window:before {
+ content: "\e164"
+}
+
+.glyphicon-record:before {
+ content: "\e165"
+}
+
+.glyphicon-save:before {
+ content: "\e166"
+}
+
+.glyphicon-open:before {
+ content: "\e167"
+}
+
+.glyphicon-saved:before {
+ content: "\e168"
+}
+
+.glyphicon-import:before {
+ content: "\e169"
+}
+
+.glyphicon-export:before {
+ content: "\e170"
+}
+
+.glyphicon-send:before {
+ content: "\e171"
+}
+
+.glyphicon-floppy-disk:before {
+ content: "\e172"
+}
+
+.glyphicon-floppy-saved:before {
+ content: "\e173"
+}
+
+.glyphicon-floppy-remove:before {
+ content: "\e174"
+}
+
+.glyphicon-floppy-save:before {
+ content: "\e175"
+}
+
+.glyphicon-floppy-open:before {
+ content: "\e176"
+}
+
+.glyphicon-credit-card:before {
+ content: "\e177"
+}
+
+.glyphicon-transfer:before {
+ content: "\e178"
+}
+
+.glyphicon-cutlery:before {
+ content: "\e179"
+}
+
+.glyphicon-header:before {
+ content: "\e180"
+}
+
+.glyphicon-compressed:before {
+ content: "\e181"
+}
+
+.glyphicon-earphone:before {
+ content: "\e182"
+}
+
+.glyphicon-phone-alt:before {
+ content: "\e183"
+}
+
+.glyphicon-tower:before {
+ content: "\e184"
+}
+
+.glyphicon-stats:before {
+ content: "\e185"
+}
+
+.glyphicon-sd-video:before {
+ content: "\e186"
+}
+
+.glyphicon-hd-video:before {
+ content: "\e187"
+}
+
+.glyphicon-subtitles:before {
+ content: "\e188"
+}
+
+.glyphicon-sound-stereo:before {
+ content: "\e189"
+}
+
+.glyphicon-sound-dolby:before {
+ content: "\e190"
+}
+
+.glyphicon-sound-5-1:before {
+ content: "\e191"
+}
+
+.glyphicon-sound-6-1:before {
+ content: "\e192"
+}
+
+.glyphicon-sound-7-1:before {
+ content: "\e193"
+}
+
+.glyphicon-copyright-mark:before {
+ content: "\e194"
+}
+
+.glyphicon-registration-mark:before {
+ content: "\e195"
+}
+
+.glyphicon-cloud-download:before {
+ content: "\e197"
+}
+
+.glyphicon-cloud-upload:before {
+ content: "\e198"
+}
+
+.glyphicon-tree-conifer:before {
+ content: "\e199"
+}
+
+.glyphicon-tree-deciduous:before {
+ content: "\e200"
+}
+
+.glyphicon-cd:before {
+ content: "\e201"
+}
+
+.glyphicon-save-file:before {
+ content: "\e202"
+}
+
+.glyphicon-open-file:before {
+ content: "\e203"
+}
+
+.glyphicon-level-up:before {
+ content: "\e204"
+}
+
+.glyphicon-copy:before {
+ content: "\e205"
+}
+
+.glyphicon-paste:before {
+ content: "\e206"
+}
+
+.glyphicon-alert:before {
+ content: "\e209"
+}
+
+.glyphicon-equalizer:before {
+ content: "\e210"
+}
+
+.glyphicon-king:before {
+ content: "\e211"
+}
+
+.glyphicon-queen:before {
+ content: "\e212"
+}
+
+.glyphicon-pawn:before {
+ content: "\e213"
+}
+
+.glyphicon-bishop:before {
+ content: "\e214"
+}
+
+.glyphicon-knight:before {
+ content: "\e215"
+}
+
+.glyphicon-baby-formula:before {
+ content: "\e216"
+}
+
+.glyphicon-tent:before {
+ content: "\26fa"
+}
+
+.glyphicon-blackboard:before {
+ content: "\e218"
+}
+
+.glyphicon-bed:before {
+ content: "\e219"
+}
+
+.glyphicon-apple:before {
+ content: "\f8ff"
+}
+
+.glyphicon-erase:before {
+ content: "\e221"
+}
+
+.glyphicon-hourglass:before {
+ content: "\231b"
+}
+
+.glyphicon-lamp:before {
+ content: "\e223"
+}
+
+.glyphicon-duplicate:before {
+ content: "\e224"
+}
+
+.glyphicon-piggy-bank:before {
+ content: "\e225"
+}
+
+.glyphicon-scissors:before {
+ content: "\e226"
+}
+
+.glyphicon-bitcoin:before {
+ content: "\e227"
+}
+
+.glyphicon-btc:before {
+ content: "\e227"
+}
+
+.glyphicon-xbt:before {
+ content: "\e227"
+}
+
+.glyphicon-yen:before {
+ content: "\00a5"
+}
+
+.glyphicon-jpy:before {
+ content: "\00a5"
+}
+
+.glyphicon-ruble:before {
+ content: "\20bd"
+}
+
+.glyphicon-rub:before {
+ content: "\20bd"
+}
+
+.glyphicon-scale:before {
+ content: "\e230"
+}
+
+.glyphicon-ice-lolly:before {
+ content: "\e231"
+}
+
+.glyphicon-ice-lolly-tasted:before {
+ content: "\e232"
+}
+
+.glyphicon-education:before {
+ content: "\e233"
+}
+
+.glyphicon-option-horizontal:before {
+ content: "\e234"
+}
+
+.glyphicon-option-vertical:before {
+ content: "\e235"
+}
+
+.glyphicon-menu-hamburger:before {
+ content: "\e236"
+}
+
+.glyphicon-modal-window:before {
+ content: "\e237"
+}
+
+.glyphicon-oil:before {
+ content: "\e238"
+}
+
+.glyphicon-grain:before {
+ content: "\e239"
+}
+
+.glyphicon-sunglasses:before {
+ content: "\e240"
+}
+
+.glyphicon-text-size:before {
+ content: "\e241"
+}
+
+.glyphicon-text-color:before {
+ content: "\e242"
+}
+
+.glyphicon-text-background:before {
+ content: "\e243"
+}
+
+.glyphicon-object-align-top:before {
+ content: "\e244"
+}
+
+.glyphicon-object-align-bottom:before {
+ content: "\e245"
+}
+
+.glyphicon-object-align-horizontal:before {
+ content: "\e246"
+}
+
+.glyphicon-object-align-left:before {
+ content: "\e247"
+}
+
+.glyphicon-object-align-vertical:before {
+ content: "\e248"
+}
+
+.glyphicon-object-align-right:before {
+ content: "\e249"
+}
+
+.glyphicon-triangle-right:before {
+ content: "\e250"
+}
+
+.glyphicon-triangle-left:before {
+ content: "\e251"
+}
+
+.glyphicon-triangle-bottom:before {
+ content: "\e252"
+}
+
+.glyphicon-triangle-top:before {
+ content: "\e253"
+}
+
+.glyphicon-console:before {
+ content: "\e254"
+}
+
+.glyphicon-superscript:before {
+ content: "\e255"
+}
+
+.glyphicon-subscript:before {
+ content: "\e256"
+}
+
+.glyphicon-menu-left:before {
+ content: "\e257"
+}
+
+.glyphicon-menu-right:before {
+ content: "\e258"
+}
+
+.glyphicon-menu-down:before {
+ content: "\e259"
+}
+
+.glyphicon-menu-up:before {
+ content: "\e260"
+}
+
+* {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box
+}
+
+*:before, *:after {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box
+}
+
+html {
+ font-size: 10px;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
+}
+
+body {
+ font-family: Monospace;
+ font-size: 14px;
+ line-height: 1.428571429;
+ color: #0c0;
+ background-color: #222
+}
+
+input, button, select, textarea {
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit
+}
+
+a {
+ color: #0f0;
+ text-decoration: none
+}
+
+a:hover, a:focus {
+ color: #00b300;
+ 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: 0
+}
+
+.img-thumbnail {
+ padding: 4px;
+ line-height: 1.428571429;
+ background-color: #222;
+ border: 1px solid #ddd;
+ border-radius: 0;
+ -webkit-transition: all .2s ease-in-out;
+ -o-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 #3c3c3c
+}
+
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0
+}
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ clip: auto
+}
+
+[role="button"] {
+ cursor: pointer
+}
+
+h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
+ font-family: Monospace;
+ 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: normal;
+ line-height: 1;
+ color: #030
+}
+
+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: 23px
+}
+
+h4, .h4 {
+ font-size: 17px
+}
+
+h5, .h5 {
+ font-size: 14px
+}
+
+h6, .h6 {
+ font-size: 11px
+}
+
+p {
+ margin: 0 0 10px
+}
+
+.lead {
+ margin-bottom: 20px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.4
+}
+
+@media (min-width:768px) {
+ .lead {
+ font-size: 21px
+ }
+}
+
+small, .small {
+ font-size: 85%
+}
+
+mark, .mark {
+ background-color: #3c3c3c;
+ padding: .2em
+}
+
+.text-left {
+ text-align: left
+}
+
+.text-right {
+ text-align: right
+}
+
+.text-center {
+ text-align: center
+}
+
+.text-justify {
+ text-align: justify
+}
+
+.text-nowrap {
+ white-space: nowrap
+}
+
+.text-lowercase {
+ text-transform: lowercase
+}
+
+.text-uppercase {
+ text-transform: uppercase
+}
+
+.text-capitalize {
+ text-transform: capitalize
+}
+
+.text-muted {
+ color: #030
+}
+
+.text-primary {
+ color: #0f0
+}
+
+a.text-primary:hover {
+ color: #0c0
+}
+
+.text-success {
+ color: #0d0
+}
+
+a.text-success:hover {
+ color: #0a0
+}
+
+.text-info {
+ color: #7d8cff
+}
+
+a.text-info:hover {
+ color: #4a5fff
+}
+
+.text-warning {
+ color: #f4ff00
+}
+
+a.text-warning:hover {
+ color: #c3cc00
+}
+
+.text-danger {
+ color: #d00
+}
+
+a.text-danger:hover {
+ color: #a00
+}
+
+.bg-primary {
+ color: #fff;
+ background-color: #0f0
+}
+
+a.bg-primary:hover {
+ background-color: #0c0
+}
+
+.bg-success {
+ background-color: #3c3c3c
+}
+
+a.bg-success:hover {
+ background-color: #222
+}
+
+.bg-info {
+ background-color: #3c3c3c
+}
+
+a.bg-info:hover {
+ background-color: #222
+}
+
+.bg-warning {
+ background-color: #3c3c3c
+}
+
+a.bg-warning:hover {
+ background-color: #222
+}
+
+.bg-danger {
+ background-color: #3c3c3c
+}
+
+a.bg-danger:hover {
+ background-color: #222
+}
+
+.page-header {
+ padding-bottom: 9px;
+ margin: 40px 0 20px;
+ border-bottom: 1px solid #030
+}
+
+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.428571429
+}
+
+dt {
+ font-weight: bold
+}
+
+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 #030
+}
+
+.initialism {
+ font-size: 90%;
+ text-transform: uppercase
+}
+
+blockquote {
+ padding: 10px 20px;
+ margin: 0 0 20px;
+ font-size: 17.5px;
+ border-left: 5px solid #030
+}
+
+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.428571429;
+ color: #030
+}
+
+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 #030;
+ 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'
+}
+
+address {
+ margin-bottom: 20px;
+ font-style: normal;
+ line-height: 1.428571429
+}
+
+code, kbd, pre, samp {
+ font-family: Monospace
+}
+
+code {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: #c7254e;
+ background-color: #f9f2f4;
+ border-radius: 0
+}
+
+kbd {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: #fff;
+ background-color: #333;
+ border-radius: 0;
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25)
+}
+
+kbd kbd {
+ padding: 0;
+ font-size: 100%;
+ font-weight: bold;
+ box-shadow: none
+}
+
+pre {
+ display: block;
+ padding: 9.5px;
+ margin: 0 0 10px;
+ font-size: 13px;
+ line-height: 1.428571429;
+ word-break: break-all;
+ word-wrap: break-word;
+ color: #0c0;
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+ border-radius: 0
+}
+
+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.66666666666666%
+}
+
+.col-xs-10 {
+ width: 83.33333333333334%
+}
+
+.col-xs-9 {
+ width: 75%
+}
+
+.col-xs-8 {
+ width: 66.66666666666666%
+}
+
+.col-xs-7 {
+ width: 58.333333333333336%
+}
+
+.col-xs-6 {
+ width: 50%
+}
+
+.col-xs-5 {
+ width: 41.66666666666667%
+}
+
+.col-xs-4 {
+ width: 33.33333333333333%
+}
+
+.col-xs-3 {
+ width: 25%
+}
+
+.col-xs-2 {
+ width: 16.666666666666664%
+}
+
+.col-xs-1 {
+ width: 8.333333333333332%
+}
+
+.col-xs-pull-12 {
+ right: 100%
+}
+
+.col-xs-pull-11 {
+ right: 91.66666666666666%
+}
+
+.col-xs-pull-10 {
+ right: 83.33333333333334%
+}
+
+.col-xs-pull-9 {
+ right: 75%
+}
+
+.col-xs-pull-8 {
+ right: 66.66666666666666%
+}
+
+.col-xs-pull-7 {
+ right: 58.333333333333336%
+}
+
+.col-xs-pull-6 {
+ right: 50%
+}
+
+.col-xs-pull-5 {
+ right: 41.66666666666667%
+}
+
+.col-xs-pull-4 {
+ right: 33.33333333333333%
+}
+
+.col-xs-pull-3 {
+ right: 25%
+}
+
+.col-xs-pull-2 {
+ right: 16.666666666666664%
+}
+
+.col-xs-pull-1 {
+ right: 8.333333333333332%
+}
+
+.col-xs-pull-0 {
+ right: auto
+}
+
+.col-xs-push-12 {
+ left: 100%
+}
+
+.col-xs-push-11 {
+ left: 91.66666666666666%
+}
+
+.col-xs-push-10 {
+ left: 83.33333333333334%
+}
+
+.col-xs-push-9 {
+ left: 75%
+}
+
+.col-xs-push-8 {
+ left: 66.66666666666666%
+}
+
+.col-xs-push-7 {
+ left: 58.333333333333336%
+}
+
+.col-xs-push-6 {
+ left: 50%
+}
+
+.col-xs-push-5 {
+ left: 41.66666666666667%
+}
+
+.col-xs-push-4 {
+ left: 33.33333333333333%
+}
+
+.col-xs-push-3 {
+ left: 25%
+}
+
+.col-xs-push-2 {
+ left: 16.666666666666664%
+}
+
+.col-xs-push-1 {
+ left: 8.333333333333332%
+}
+
+.col-xs-push-0 {
+ left: auto
+}
+
+.col-xs-offset-12 {
+ margin-left: 100%
+}
+
+.col-xs-offset-11 {
+ margin-left: 91.66666666666666%
+}
+
+.col-xs-offset-10 {
+ margin-left: 83.33333333333334%
+}
+
+.col-xs-offset-9 {
+ margin-left: 75%
+}
+
+.col-xs-offset-8 {
+ margin-left: 66.66666666666666%
+}
+
+.col-xs-offset-7 {
+ margin-left: 58.333333333333336%
+}
+
+.col-xs-offset-6 {
+ margin-left: 50%
+}
+
+.col-xs-offset-5 {
+ margin-left: 41.66666666666667%
+}
+
+.col-xs-offset-4 {
+ margin-left: 33.33333333333333%
+}
+
+.col-xs-offset-3 {
+ margin-left: 25%
+}
+
+.col-xs-offset-2 {
+ margin-left: 16.666666666666664%
+}
+
+.col-xs-offset-1 {
+ margin-left: 8.333333333333332%
+}
+
+.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.66666666666666%
+ }
+
+ .col-sm-10 {
+ width: 83.33333333333334%
+ }
+
+ .col-sm-9 {
+ width: 75%
+ }
+
+ .col-sm-8 {
+ width: 66.66666666666666%
+ }
+
+ .col-sm-7 {
+ width: 58.333333333333336%
+ }
+
+ .col-sm-6 {
+ width: 50%
+ }
+
+ .col-sm-5 {
+ width: 41.66666666666667%
+ }
+
+ .col-sm-4 {
+ width: 33.33333333333333%
+ }
+
+ .col-sm-3 {
+ width: 25%
+ }
+
+ .col-sm-2 {
+ width: 16.666666666666664%
+ }
+
+ .col-sm-1 {
+ width: 8.333333333333332%
+ }
+
+ .col-sm-pull-12 {
+ right: 100%
+ }
+
+ .col-sm-pull-11 {
+ right: 91.66666666666666%
+ }
+
+ .col-sm-pull-10 {
+ right: 83.33333333333334%
+ }
+
+ .col-sm-pull-9 {
+ right: 75%
+ }
+
+ .col-sm-pull-8 {
+ right: 66.66666666666666%
+ }
+
+ .col-sm-pull-7 {
+ right: 58.333333333333336%
+ }
+
+ .col-sm-pull-6 {
+ right: 50%
+ }
+
+ .col-sm-pull-5 {
+ right: 41.66666666666667%
+ }
+
+ .col-sm-pull-4 {
+ right: 33.33333333333333%
+ }
+
+ .col-sm-pull-3 {
+ right: 25%
+ }
+
+ .col-sm-pull-2 {
+ right: 16.666666666666664%
+ }
+
+ .col-sm-pull-1 {
+ right: 8.333333333333332%
+ }
+
+ .col-sm-pull-0 {
+ right: auto
+ }
+
+ .col-sm-push-12 {
+ left: 100%
+ }
+
+ .col-sm-push-11 {
+ left: 91.66666666666666%
+ }
+
+ .col-sm-push-10 {
+ left: 83.33333333333334%
+ }
+
+ .col-sm-push-9 {
+ left: 75%
+ }
+
+ .col-sm-push-8 {
+ left: 66.66666666666666%
+ }
+
+ .col-sm-push-7 {
+ left: 58.333333333333336%
+ }
+
+ .col-sm-push-6 {
+ left: 50%
+ }
+
+ .col-sm-push-5 {
+ left: 41.66666666666667%
+ }
+
+ .col-sm-push-4 {
+ left: 33.33333333333333%
+ }
+
+ .col-sm-push-3 {
+ left: 25%
+ }
+
+ .col-sm-push-2 {
+ left: 16.666666666666664%
+ }
+
+ .col-sm-push-1 {
+ left: 8.333333333333332%
+ }
+
+ .col-sm-push-0 {
+ left: auto
+ }
+
+ .col-sm-offset-12 {
+ margin-left: 100%
+ }
+
+ .col-sm-offset-11 {
+ margin-left: 91.66666666666666%
+ }
+
+ .col-sm-offset-10 {
+ margin-left: 83.33333333333334%
+ }
+
+ .col-sm-offset-9 {
+ margin-left: 75%
+ }
+
+ .col-sm-offset-8 {
+ margin-left: 66.66666666666666%
+ }
+
+ .col-sm-offset-7 {
+ margin-left: 58.333333333333336%
+ }
+
+ .col-sm-offset-6 {
+ margin-left: 50%
+ }
+
+ .col-sm-offset-5 {
+ margin-left: 41.66666666666667%
+ }
+
+ .col-sm-offset-4 {
+ margin-left: 33.33333333333333%
+ }
+
+ .col-sm-offset-3 {
+ margin-left: 25%
+ }
+
+ .col-sm-offset-2 {
+ margin-left: 16.666666666666664%
+ }
+
+ .col-sm-offset-1 {
+ margin-left: 8.333333333333332%
+ }
+
+ .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.66666666666666%
+ }
+
+ .col-md-10 {
+ width: 83.33333333333334%
+ }
+
+ .col-md-9 {
+ width: 75%
+ }
+
+ .col-md-8 {
+ width: 66.66666666666666%
+ }
+
+ .col-md-7 {
+ width: 58.333333333333336%
+ }
+
+ .col-md-6 {
+ width: 50%
+ }
+
+ .col-md-5 {
+ width: 41.66666666666667%
+ }
+
+ .col-md-4 {
+ width: 33.33333333333333%
+ }
+
+ .col-md-3 {
+ width: 25%
+ }
+
+ .col-md-2 {
+ width: 16.666666666666664%
+ }
+
+ .col-md-1 {
+ width: 8.333333333333332%
+ }
+
+ .col-md-pull-12 {
+ right: 100%
+ }
+
+ .col-md-pull-11 {
+ right: 91.66666666666666%
+ }
+
+ .col-md-pull-10 {
+ right: 83.33333333333334%
+ }
+
+ .col-md-pull-9 {
+ right: 75%
+ }
+
+ .col-md-pull-8 {
+ right: 66.66666666666666%
+ }
+
+ .col-md-pull-7 {
+ right: 58.333333333333336%
+ }
+
+ .col-md-pull-6 {
+ right: 50%
+ }
+
+ .col-md-pull-5 {
+ right: 41.66666666666667%
+ }
+
+ .col-md-pull-4 {
+ right: 33.33333333333333%
+ }
+
+ .col-md-pull-3 {
+ right: 25%
+ }
+
+ .col-md-pull-2 {
+ right: 16.666666666666664%
+ }
+
+ .col-md-pull-1 {
+ right: 8.333333333333332%
+ }
+
+ .col-md-pull-0 {
+ right: auto
+ }
+
+ .col-md-push-12 {
+ left: 100%
+ }
+
+ .col-md-push-11 {
+ left: 91.66666666666666%
+ }
+
+ .col-md-push-10 {
+ left: 83.33333333333334%
+ }
+
+ .col-md-push-9 {
+ left: 75%
+ }
+
+ .col-md-push-8 {
+ left: 66.66666666666666%
+ }
+
+ .col-md-push-7 {
+ left: 58.333333333333336%
+ }
+
+ .col-md-push-6 {
+ left: 50%
+ }
+
+ .col-md-push-5 {
+ left: 41.66666666666667%
+ }
+
+ .col-md-push-4 {
+ left: 33.33333333333333%
+ }
+
+ .col-md-push-3 {
+ left: 25%
+ }
+
+ .col-md-push-2 {
+ left: 16.666666666666664%
+ }
+
+ .col-md-push-1 {
+ left: 8.333333333333332%
+ }
+
+ .col-md-push-0 {
+ left: auto
+ }
+
+ .col-md-offset-12 {
+ margin-left: 100%
+ }
+
+ .col-md-offset-11 {
+ margin-left: 91.66666666666666%
+ }
+
+ .col-md-offset-10 {
+ margin-left: 83.33333333333334%
+ }
+
+ .col-md-offset-9 {
+ margin-left: 75%
+ }
+
+ .col-md-offset-8 {
+ margin-left: 66.66666666666666%
+ }
+
+ .col-md-offset-7 {
+ margin-left: 58.333333333333336%
+ }
+
+ .col-md-offset-6 {
+ margin-left: 50%
+ }
+
+ .col-md-offset-5 {
+ margin-left: 41.66666666666667%
+ }
+
+ .col-md-offset-4 {
+ margin-left: 33.33333333333333%
+ }
+
+ .col-md-offset-3 {
+ margin-left: 25%
+ }
+
+ .col-md-offset-2 {
+ margin-left: 16.666666666666664%
+ }
+
+ .col-md-offset-1 {
+ margin-left: 8.333333333333332%
+ }
+
+ .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.66666666666666%
+ }
+
+ .col-lg-10 {
+ width: 83.33333333333334%
+ }
+
+ .col-lg-9 {
+ width: 75%
+ }
+
+ .col-lg-8 {
+ width: 66.66666666666666%
+ }
+
+ .col-lg-7 {
+ width: 58.333333333333336%
+ }
+
+ .col-lg-6 {
+ width: 50%
+ }
+
+ .col-lg-5 {
+ width: 41.66666666666667%
+ }
+
+ .col-lg-4 {
+ width: 33.33333333333333%
+ }
+
+ .col-lg-3 {
+ width: 25%
+ }
+
+ .col-lg-2 {
+ width: 16.666666666666664%
+ }
+
+ .col-lg-1 {
+ width: 8.333333333333332%
+ }
+
+ .col-lg-pull-12 {
+ right: 100%
+ }
+
+ .col-lg-pull-11 {
+ right: 91.66666666666666%
+ }
+
+ .col-lg-pull-10 {
+ right: 83.33333333333334%
+ }
+
+ .col-lg-pull-9 {
+ right: 75%
+ }
+
+ .col-lg-pull-8 {
+ right: 66.66666666666666%
+ }
+
+ .col-lg-pull-7 {
+ right: 58.333333333333336%
+ }
+
+ .col-lg-pull-6 {
+ right: 50%
+ }
+
+ .col-lg-pull-5 {
+ right: 41.66666666666667%
+ }
+
+ .col-lg-pull-4 {
+ right: 33.33333333333333%
+ }
+
+ .col-lg-pull-3 {
+ right: 25%
+ }
+
+ .col-lg-pull-2 {
+ right: 16.666666666666664%
+ }
+
+ .col-lg-pull-1 {
+ right: 8.333333333333332%
+ }
+
+ .col-lg-pull-0 {
+ right: auto
+ }
+
+ .col-lg-push-12 {
+ left: 100%
+ }
+
+ .col-lg-push-11 {
+ left: 91.66666666666666%
+ }
+
+ .col-lg-push-10 {
+ left: 83.33333333333334%
+ }
+
+ .col-lg-push-9 {
+ left: 75%
+ }
+
+ .col-lg-push-8 {
+ left: 66.66666666666666%
+ }
+
+ .col-lg-push-7 {
+ left: 58.333333333333336%
+ }
+
+ .col-lg-push-6 {
+ left: 50%
+ }
+
+ .col-lg-push-5 {
+ left: 41.66666666666667%
+ }
+
+ .col-lg-push-4 {
+ left: 33.33333333333333%
+ }
+
+ .col-lg-push-3 {
+ left: 25%
+ }
+
+ .col-lg-push-2 {
+ left: 16.666666666666664%
+ }
+
+ .col-lg-push-1 {
+ left: 8.333333333333332%
+ }
+
+ .col-lg-push-0 {
+ left: auto
+ }
+
+ .col-lg-offset-12 {
+ margin-left: 100%
+ }
+
+ .col-lg-offset-11 {
+ margin-left: 91.66666666666666%
+ }
+
+ .col-lg-offset-10 {
+ margin-left: 83.33333333333334%
+ }
+
+ .col-lg-offset-9 {
+ margin-left: 75%
+ }
+
+ .col-lg-offset-8 {
+ margin-left: 66.66666666666666%
+ }
+
+ .col-lg-offset-7 {
+ margin-left: 58.333333333333336%
+ }
+
+ .col-lg-offset-6 {
+ margin-left: 50%
+ }
+
+ .col-lg-offset-5 {
+ margin-left: 41.66666666666667%
+ }
+
+ .col-lg-offset-4 {
+ margin-left: 33.33333333333333%
+ }
+
+ .col-lg-offset-3 {
+ margin-left: 25%
+ }
+
+ .col-lg-offset-2 {
+ margin-left: 16.666666666666664%
+ }
+
+ .col-lg-offset-1 {
+ margin-left: 8.333333333333332%
+ }
+
+ .col-lg-offset-0 {
+ margin-left: 0
+ }
+}
+
+table {
+ background-color: transparent
+}
+
+caption {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ color: #030;
+ text-align: left
+}
+
+th {
+ text-align: left
+}
+
+.table {
+ width: 100%;
+ max-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.428571429;
+ vertical-align: top;
+ border-top: 1px solid #444
+}
+
+.table>thead>tr>th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #444
+}
+
+.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 #444
+}
+
+.table .table {
+ background-color: #222
+}
+
+.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 #444
+}
+
+.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 #444
+}
+
+.table-bordered>thead>tr>th, .table-bordered>thead>tr>td {
+ border-bottom-width: 2px
+}
+
+.table-striped>tbody>tr:nth-of-type(odd) {
+ background-color: #080808
+}
+
+.table-hover>tbody>tr:hover {
+ background-color: #030
+}
+
+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: #030
+}
+
+.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:hover>.active, .table-hover>tbody>tr.active:hover>th {
+ background-color: #001900
+}
+
+.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: #3c3c3c
+}
+
+.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:hover>.success, .table-hover>tbody>tr.success:hover>th {
+ background-color: #2f2f2f
+}
+
+.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: #3c3c3c
+}
+
+.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:hover>.info, .table-hover>tbody>tr.info:hover>th {
+ background-color: #2f2f2f
+}
+
+.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: #3c3c3c
+}
+
+.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:hover>.warning, .table-hover>tbody>tr.warning:hover>th {
+ background-color: #2f2f2f
+}
+
+.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: #3c3c3c
+}
+
+.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:hover>.danger, .table-hover>tbody>tr.danger:hover>th {
+ background-color: #2f2f2f
+}
+
+.table-responsive {
+ overflow-x: auto;
+ min-height: .01%
+}
+
+@media screen and (max-width:767px) {
+ .table-responsive {
+ width: 100%;
+ margin-bottom: 15px;
+ overflow-y: hidden;
+ -ms-overflow-style: -ms-autohiding-scrollbar;
+ border: 1px solid #444
+ }
+
+ .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: #0c0;
+ border: 0;
+ border-bottom: 1px solid #e5e5e5
+}
+
+label {
+ display: inline-block;
+ max-width: 100%;
+ margin-bottom: 5px;
+ font-weight: bold
+}
+
+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.428571429;
+ color: #090
+}
+
+.form-control {
+ display: block;
+ width: 100%;
+ height: 34px;
+ padding: 6px 12px;
+ font-size: 14px;
+ line-height: 1.428571429;
+ color: #090;
+ background-color: #000;
+ background-image: none;
+ border: 1px solid #444;
+ border-radius: 0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+ -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
+}
+
+.form-control:focus {
+ border-color: #0f0;
+ outline: 0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6)
+}
+
+.form-control::-moz-placeholder {
+ color: #060;
+ opacity: 1
+}
+
+.form-control:-ms-input-placeholder {
+ color: #060
+}
+
+.form-control::-webkit-input-placeholder {
+ color: #060
+}
+
+.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
+ background-color: #030;
+ opacity: 1
+}
+
+.form-control[disabled], fieldset[disabled] .form-control {
+ cursor: not-allowed
+}
+
+textarea.form-control {
+ height: auto
+}
+
+input[type="search"] {
+ -webkit-appearance: none
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+ input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
+ line-height: 34px
+ }
+
+ input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] {
+ line-height: 30px
+ }
+
+ input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] {
+ line-height: 45px
+ }
+}
+
+.form-group {
+ margin-bottom: 15px
+}
+
+.radio, .checkbox {
+ position: relative;
+ display: block;
+ margin-top: 10px;
+ margin-bottom: 10px
+}
+
+.radio label, .checkbox label {
+ min-height: 20px;
+ padding-left: 20px;
+ margin-bottom: 0;
+ font-weight: normal;
+ cursor: pointer
+}
+
+.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
+ position: absolute;
+ margin-left: -20px;
+ margin-top: 4px \9
+}
+
+.radio+.radio, .checkbox+.checkbox {
+ margin-top: -5px
+}
+
+.radio-inline, .checkbox-inline {
+ position: relative;
+ display: inline-block;
+ padding-left: 20px;
+ margin-bottom: 0;
+ vertical-align: middle;
+ font-weight: normal;
+ cursor: pointer
+}
+
+.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline {
+ margin-top: 0;
+ margin-left: 10px
+}
+
+input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
+ cursor: not-allowed
+}
+
+.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
+ cursor: not-allowed
+}
+
+.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
+ cursor: not-allowed
+}
+
+.form-control-static {
+ padding-top: 7px;
+ padding-bottom: 7px;
+ margin-bottom: 0;
+ min-height: 34px
+}
+
+.form-control-static.input-lg, .form-control-static.input-sm {
+ padding-left: 0;
+ padding-right: 0
+}
+
+.input-sm {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 0
+}
+
+select.input-sm {
+ height: 30px;
+ line-height: 30px
+}
+
+textarea.input-sm, select[multiple].input-sm {
+ height: auto
+}
+
+.form-group-sm .form-control {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 0
+}
+
+select.form-group-sm .form-control {
+ height: 30px;
+ line-height: 30px
+}
+
+textarea.form-group-sm .form-control, select[multiple].form-group-sm .form-control {
+ height: auto
+}
+
+.form-group-sm .form-control-static {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ min-height: 32px
+}
+
+.input-lg {
+ height: 45px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.33;
+ border-radius: 0
+}
+
+select.input-lg {
+ height: 45px;
+ line-height: 45px
+}
+
+textarea.input-lg, select[multiple].input-lg {
+ height: auto
+}
+
+.form-group-lg .form-control {
+ height: 45px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.33;
+ border-radius: 0
+}
+
+select.form-group-lg .form-control {
+ height: 45px;
+ line-height: 45px
+}
+
+textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-control {
+ height: auto
+}
+
+.form-group-lg .form-control-static {
+ height: 45px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.33;
+ min-height: 38px
+}
+
+.has-feedback {
+ position: relative
+}
+
+.has-feedback .form-control {
+ padding-right: 42.5px
+}
+
+.form-control-feedback {
+ position: absolute;
+ top: 0;
+ right: 0;
+ z-index: 2;
+ display: block;
+ width: 34px;
+ height: 34px;
+ line-height: 34px;
+ text-align: center;
+ pointer-events: none
+}
+
+.input-lg+.form-control-feedback {
+ width: 45px;
+ height: 45px;
+ line-height: 45px
+}
+
+.input-sm+.form-control-feedback {
+ width: 30px;
+ height: 30px;
+ line-height: 30px
+}
+
+.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
+ color: #0d0
+}
+
+.has-success .form-control {
+ border-color: #0d0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
+}
+
+.has-success .form-control:focus {
+ border-color: #0a0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4
+}
+
+.has-success .input-group-addon {
+ color: #0d0;
+ border-color: #0d0;
+ background-color: #3c3c3c
+}
+
+.has-success .form-control-feedback {
+ color: #0d0
+}
+
+.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
+ color: #f4ff00
+}
+
+.has-warning .form-control {
+ border-color: #f4ff00;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
+}
+
+.has-warning .form-control:focus {
+ border-color: #c3cc00;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66
+}
+
+.has-warning .input-group-addon {
+ color: #f4ff00;
+ border-color: #f4ff00;
+ background-color: #3c3c3c
+}
+
+.has-warning .form-control-feedback {
+ color: #f4ff00
+}
+
+.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
+ color: #d00
+}
+
+.has-error .form-control {
+ border-color: #d00;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
+}
+
+.has-error .form-control:focus {
+ border-color: #a00;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44
+}
+
+.has-error .input-group-addon {
+ color: #d00;
+ border-color: #d00;
+ background-color: #3c3c3c
+}
+
+.has-error .form-control-feedback {
+ color: #d00
+}
+
+.has-feedback label~.form-control-feedback {
+ top: 25px
+}
+
+.has-feedback label.sr-only~.form-control-feedback {
+ top: 0
+}
+
+.help-block {
+ display: block;
+ margin-top: 5px;
+ margin-bottom: 10px;
+ color: #4dff4d
+}
+
+@media (min-width:768px) {
+ .form-inline .form-group {
+ display: inline-block;
+ margin-bottom: 0;
+ vertical-align: middle
+ }
+
+ .form-inline .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle
+ }
+
+ .form-inline .form-control-static {
+ display: inline-block
+ }
+
+ .form-inline .input-group {
+ display: inline-table;
+ vertical-align: middle
+ }
+
+ .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
+ width: auto
+ }
+
+ .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;
+ vertical-align: middle
+ }
+
+ .form-inline .radio label, .form-inline .checkbox label {
+ padding-left: 0
+ }
+
+ .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
+ position: relative;
+ margin-left: 0
+ }
+
+ .form-inline .has-feedback .form-control-feedback {
+ top: 0
+ }
+}
+
+.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
+}
+
+@media (min-width:768px) {
+ .form-horizontal .control-label {
+ text-align: right;
+ margin-bottom: 0;
+ padding-top: 7px
+ }
+}
+
+.form-horizontal .has-feedback .form-control-feedback {
+ right: 15px
+}
+
+@media (min-width:768px) {
+ .form-horizontal .form-group-lg .control-label {
+ padding-top: 14.3px
+ }
+}
+
+@media (min-width:768px) {
+ .form-horizontal .form-group-sm .control-label {
+ padding-top: 6px
+ }
+}
+
+.btn {
+ display: inline-block;
+ margin-bottom: 0;
+ font-weight: normal;
+ text-align: center;
+ vertical-align: middle;
+ touch-action: manipulation;
+ cursor: pointer;
+ background-image: none;
+ border: 1px solid transparent;
+ white-space: nowrap;
+ padding: 6px 12px;
+ font-size: 14px;
+ line-height: 1.428571429;
+ border-radius: 0;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none
+}
+
+.btn:focus, .btn:active:focus, .btn.active:focus, .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, .btn.focus {
+ color: #0f0;
+ text-decoration: none
+}
+
+.btn:active, .btn.active {
+ outline: 0;
+ background-image: none;
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+ box-shadow: inset 0 3px 5px rgba(0, 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: #0f0;
+ background-color: #222;
+ border-color: #111
+}
+
+.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default {
+ color: #0f0;
+ background-color: #080808;
+ border-color: #000
+}
+
+.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.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: #222;
+ border-color: #111
+}
+
+.btn-default .badge {
+ color: #222;
+ background-color: #0f0
+}
+
+.btn-primary {
+ color: #222;
+ background-color: #0f0;
+ border-color: #111
+}
+
+.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
+ color: #222;
+ background-color: #0c0;
+ border-color: #000
+}
+
+.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.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: #0f0;
+ border-color: #111
+}
+
+.btn-primary .badge {
+ color: #0f0;
+ background-color: #222
+}
+
+.btn-success {
+ color: #222;
+ background-color: #090;
+ border-color: #111
+}
+
+.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success {
+ color: #222;
+ background-color: #060;
+ border-color: #000
+}
+
+.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.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: #090;
+ border-color: #111
+}
+
+.btn-success .badge {
+ color: #090;
+ background-color: #222
+}
+
+.btn-info {
+ color: #222;
+ background-color: #36c;
+ border-color: #111
+}
+
+.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info {
+ color: #222;
+ background-color: #2952a3;
+ border-color: #000
+}
+
+.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.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: #36c;
+ border-color: #111
+}
+
+.btn-info .badge {
+ color: #36c;
+ background-color: #222
+}
+
+.btn-warning {
+ color: #222;
+ background-color: #f4ff00;
+ border-color: #111
+}
+
+.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning {
+ color: #222;
+ background-color: #c3cc00;
+ border-color: #000
+}
+
+.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.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: #f4ff00;
+ border-color: #111
+}
+
+.btn-warning .badge {
+ color: #f4ff00;
+ background-color: #222
+}
+
+.btn-danger {
+ color: #222;
+ background-color: #f00;
+ border-color: #111
+}
+
+.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger {
+ color: #222;
+ background-color: #c00;
+ border-color: #000
+}
+
+.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.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: #f00;
+ border-color: #111
+}
+
+.btn-danger .badge {
+ color: #f00;
+ background-color: #222
+}
+
+.btn-link {
+ color: #0f0;
+ font-weight: normal;
+ border-radius: 0
+}
+
+.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
+ background-color: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none
+}
+
+.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
+ border-color: transparent
+}
+
+.btn-link:hover, .btn-link:focus {
+ color: #00b300;
+ 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: #030;
+ text-decoration: none
+}
+
+.btn-lg, .btn-group-lg>.btn {
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.33;
+ border-radius: 0
+}
+
+.btn-sm, .btn-group-sm>.btn {
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 0
+}
+
+.btn-xs, .btn-group-xs>.btn {
+ padding: 1px 5px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 0
+}
+
+.btn-block {
+ display: block;
+ width: 100%
+}
+
+.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;
+ -o-transition: opacity .15s linear;
+ transition: opacity .15s linear
+}
+
+.fade.in {
+ opacity: 1
+}
+
+.collapse {
+ display: none
+}
+
+.collapse.in {
+ display: block
+}
+
+tr.collapse.in {
+ display: table-row
+}
+
+tbody.collapse.in {
+ display: table-row-group
+}
+
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ -webkit-transition-property: height, visibility;
+ transition-property: height, visibility;
+ -webkit-transition-duration: .35s;
+ transition-duration: .35s;
+ -webkit-transition-timing-function: ease;
+ transition-timing-function: ease
+}
+
+.caret {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: 2px;
+ vertical-align: middle;
+ border-top: 4px dashed;
+ border-right: 4px solid transparent;
+ border-left: 4px solid transparent
+}
+
+.dropup, .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;
+ text-align: left;
+ background-color: #3c3c3c;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 0;
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+ box-shadow: 0 6px 12px rgba(0, 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: #333
+}
+
+.dropdown-menu>li>a {
+ display: block;
+ padding: 3px 20px;
+ clear: both;
+ font-weight: normal;
+ line-height: 1.428571429;
+ color: #0c0;
+ white-space: nowrap
+}
+
+.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
+ text-decoration: none;
+ color: #222;
+ background-color: #0f0
+}
+
+.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
+ color: #222;
+ text-decoration: none;
+ outline: 0;
+ background-color: #0f0
+}
+
+.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus {
+ color: #030
+}
+
+.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.428571429;
+ color: #a2a2a2;
+ white-space: nowrap
+}
+
+.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: 2px
+}
+
+@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+.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:not(:last-child)>.btn:last-child, .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0
+}
+
+.btn-group>.btn-group:last-child:not(:first-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, 0.125);
+ box-shadow: inset 0 3px 5px rgba(0, 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: 0;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.btn-group-vertical>.btn:last-child:not(:first-child) {
+ border-bottom-left-radius: 0;
+ 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%
+}
+
+.btn-group-justified>.btn-group .dropdown-menu {
+ left: auto
+}
+
+[data-toggle="buttons"]>.btn input[type="radio"], [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], [data-toggle="buttons"]>.btn input[type="checkbox"], [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none
+}
+
+.input-group {
+ position: relative;
+ display: table;
+ border-collapse: separate
+}
+
+.input-group[class*="col-"] {
+ float: none;
+ padding-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: 45px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.33;
+ border-radius: 0
+}
+
+select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn {
+ height: 45px;
+ line-height: 45px
+}
+
+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: 0
+}
+
+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: normal;
+ line-height: 1;
+ color: #090;
+ text-align: center;
+ background-color: #222;
+ border: 1px solid #444;
+ border-radius: 0
+}
+
+.input-group-addon.input-sm {
+ padding: 5px 10px;
+ font-size: 12px;
+ border-radius: 0
+}
+
+.input-group-addon.input-lg {
+ padding: 10px 16px;
+ font-size: 18px;
+ border-radius: 0
+}
+
+.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: #030
+}
+
+.nav>li.disabled>a {
+ color: #030
+}
+
+.nav>li.disabled>a:hover, .nav>li.disabled>a:focus {
+ color: #030;
+ text-decoration: none;
+ background-color: transparent;
+ cursor: not-allowed
+}
+
+.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
+ background-color: #030;
+ border-color: #0f0
+}
+
+.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 #444
+}
+
+.nav-tabs>li {
+ float: left;
+ margin-bottom: -1px
+}
+
+.nav-tabs>li>a {
+ margin-right: 2px;
+ line-height: 1.428571429;
+ border: 1px solid transparent;
+ border-radius: 0 0 0 0
+}
+
+.nav-tabs>li>a:hover {
+ border-color: #444 #444 #444
+}
+
+.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
+ color: #090;
+ background-color: #333;
+ border: 1px solid #222;
+ 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: 0
+}
+
+.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: 0 0 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: #222
+ }
+}
+
+.nav-pills>li {
+ float: left
+}
+
+.nav-pills>li>a {
+ border-radius: 0
+}
+
+.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: #0f0
+}
+
+.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: 0
+}
+
+.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: 0 0 0 0
+ }
+
+ .nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus {
+ border-bottom-color: #222
+ }
+}
+
+.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: 0
+ }
+}
+
+@media (min-width:768px) {
+ .navbar-header {
+ float: left
+ }
+}
+
+.navbar-collapse {
+ overflow-x: visible;
+ padding-right: 15px;
+ padding-left: 15px;
+ border-top: 1px solid transparent;
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.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
+ }
+}
+
+.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
+ max-height: 340px
+}
+
+@media (max-device-width:480px) and (orientation:landscape) {
+ .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
+ max-height: 200px
+ }
+}
+
+.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 15px;
+ font-size: 18px;
+ line-height: 20px;
+ height: 50px
+}
+
+.navbar-brand:hover, .navbar-brand:focus {
+ text-decoration: none
+}
+
+.navbar-brand>img {
+ display: block
+}
+
+@media (min-width:768px) {
+ .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
+ margin-left: -15px
+ }
+}
+
+.navbar-toggle {
+ position: relative;
+ float: right;
+ margin-right: 15px;
+ padding: 9px 10px;
+ margin-top: 8px;
+ margin-bottom: 8px;
+ background-color: transparent;
+ background-image: none;
+ border: 1px solid transparent;
+ border-radius: 0
+}
+
+.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-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, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ 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 .form-control-static {
+ display: inline-block
+ }
+
+ .navbar-form .input-group {
+ display: inline-table;
+ vertical-align: middle
+ }
+
+ .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
+ width: auto
+ }
+
+ .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;
+ vertical-align: middle
+ }
+
+ .navbar-form .radio label, .navbar-form .checkbox label {
+ padding-left: 0
+ }
+
+ .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
+ position: relative;
+ margin-left: 0
+ }
+
+ .navbar-form .has-feedback .form-control-feedback {
+ top: 0
+ }
+}
+
+@media (max-width:767px) {
+ .navbar-form .form-group {
+ margin-bottom: 5px
+ }
+
+ .navbar-form .form-group:last-child {
+ margin-bottom: 0
+ }
+}
+
+@media (min-width:768px) {
+ .navbar-form {
+ width: auto;
+ border: 0;
+ margin-left: 0;
+ margin-right: 0;
+ padding-top: 0;
+ padding-bottom: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none
+ }
+}
+
+.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 {
+ margin-bottom: 0;
+ border-top-right-radius: 0;
+ border-top-left-radius: 0;
+ 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
+ }
+}
+
+@media (min-width:768px) {
+ .navbar-left {
+ float: left !important
+ }
+
+ .navbar-right {
+ float: right !important;
+ margin-right: -15px
+ }
+
+ .navbar-right~.navbar-right {
+ margin-right: 0
+ }
+}
+
+.navbar-default {
+ background-color: #080808;
+ border-color: #000
+}
+
+.navbar-default .navbar-brand {
+ color: #0f0
+}
+
+.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
+ color: #0c0;
+ background-color: transparent
+}
+
+.navbar-default .navbar-text {
+ color: #0f0
+}
+
+.navbar-default .navbar-nav>li>a {
+ color: #0f0
+}
+
+.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
+ color: #090;
+ background-color: #222
+}
+
+.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
+ color: #999;
+ background-color: #000
+}
+
+.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: #000
+}
+
+.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
+ background-color: #000;
+ color: #999
+}
+
+@media (max-width:767px) {
+ .navbar-default .navbar-nav .open .dropdown-menu>li>a {
+ color: #0f0
+ }
+
+ .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
+ color: #090;
+ background-color: #222
+ }
+
+ .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: #999;
+ background-color: #000
+ }
+
+ .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: #0f0
+}
+
+.navbar-default .navbar-link:hover {
+ color: #090
+}
+
+.navbar-default .btn-link {
+ color: #0f0
+}
+
+.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
+ color: #090
+}
+
+.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
+ color: #ccc
+}
+
+.navbar-inverse {
+ background-color: #222;
+ border-color: #080808
+}
+
+.navbar-inverse .navbar-brand {
+ color: #007f00
+}
+
+.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
+ color: #fff;
+ background-color: transparent
+}
+
+.navbar-inverse .navbar-text {
+ color: #007f00
+}
+
+.navbar-inverse .navbar-nav>li>a {
+ color: #007f00
+}
+
+.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: #007f00
+ }
+
+ .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: #007f00
+}
+
+.navbar-inverse .navbar-link:hover {
+ color: #fff
+}
+
+.navbar-inverse .btn-link {
+ color: #007f00
+}
+
+.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
+ color: #fff
+}
+
+.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
+ color: #444
+}
+
+.breadcrumb {
+ padding: 8px 15px;
+ margin-bottom: 20px;
+ list-style: none;
+ background-color: #3c3c3c;
+ border-radius: 0
+}
+
+.breadcrumb>li {
+ display: inline-block
+}
+
+.breadcrumb>li+li:before {
+ content: "/\00a0";
+ padding: 0 5px;
+ color: #0f0
+}
+
+.breadcrumb>.active {
+ color: #090
+}
+
+.pagination {
+ display: inline-block;
+ padding-left: 0;
+ margin: 20px 0;
+ border-radius: 0
+}
+
+.pagination>li {
+ display: inline
+}
+
+.pagination>li>a, .pagination>li>span {
+ position: relative;
+ float: left;
+ padding: 6px 12px;
+ line-height: 1.428571429;
+ text-decoration: none;
+ color: #0f0;
+ background-color: #222;
+ border: 1px solid #444;
+ margin-left: -1px
+}
+
+.pagination>li:first-child>a, .pagination>li:first-child>span {
+ margin-left: 0;
+ border-bottom-left-radius: 0;
+ border-top-left-radius: 0
+}
+
+.pagination>li:last-child>a, .pagination>li:last-child>span {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0
+}
+
+.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
+ color: #00b300;
+ background-color: #030;
+ border-color: #555
+}
+
+.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: #222;
+ background-color: #0f0;
+ border-color: #0f0;
+ 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: #3f3;
+ background-color: #3c3c3c;
+ border-color: #444;
+ 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: 0;
+ border-top-left-radius: 0
+}
+
+.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0
+}
+
+.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: 0;
+ border-top-left-radius: 0
+}
+
+.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0
+}
+
+.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: #222;
+ border: 1px solid #444;
+ border-radius: 0
+}
+
+.pager li>a:hover, .pager li>a:focus {
+ text-decoration: none;
+ background-color: #030
+}
+
+.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: #030;
+ background-color: #222;
+ cursor: not-allowed
+}
+
+.label {
+ display: inline;
+ padding: .2em .6em .3em;
+ font-size: 75%;
+ font-weight: bold;
+ line-height: 1;
+ color: #222;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ border-radius: .25em
+}
+
+a.label:hover, a.label:focus {
+ color: #fff;
+ text-decoration: none;
+ cursor: pointer
+}
+
+.label:empty {
+ display: none
+}
+
+.btn .label {
+ position: relative;
+ top: -1px
+}
+
+.label-default {
+ background-color: #030
+}
+
+.label-default[href]:hover, .label-default[href]:focus {
+ background-color: #000
+}
+
+.label-primary {
+ background-color: #0f0
+}
+
+.label-primary[href]:hover, .label-primary[href]:focus {
+ background-color: #0c0
+}
+
+.label-success {
+ background-color: #090
+}
+
+.label-success[href]:hover, .label-success[href]:focus {
+ background-color: #060
+}
+
+.label-info {
+ background-color: #36c
+}
+
+.label-info[href]:hover, .label-info[href]:focus {
+ background-color: #2952a3
+}
+
+.label-warning {
+ background-color: #f4ff00
+}
+
+.label-warning[href]:hover, .label-warning[href]:focus {
+ background-color: #c3cc00
+}
+
+.label-danger {
+ background-color: #f00
+}
+
+.label-danger[href]:hover, .label-danger[href]:focus {
+ background-color: #c00
+}
+
+.badge {
+ display: inline-block;
+ min-width: 10px;
+ padding: 3px 7px;
+ font-size: 12px;
+ font-weight: bold;
+ color: #0f0;
+ line-height: 1;
+ vertical-align: baseline;
+ white-space: nowrap;
+ text-align: center;
+ background-color: #222;
+ border-radius: 10px
+}
+
+.badge:empty {
+ display: none
+}
+
+.btn .badge {
+ position: relative;
+ top: -1px
+}
+
+.btn-xs .badge, .btn-group-xs>.btn .badge {
+ top: 0;
+ padding: 1px 5px
+}
+
+a.badge:hover, a.badge:focus {
+ color: #fff;
+ text-decoration: none;
+ cursor: pointer
+}
+
+.list-group-item.active>.badge, .nav-pills>.active>a>.badge {
+ color: #0f0;
+ background-color: #fff
+}
+
+.list-group-item>.badge {
+ float: right
+}
+
+.list-group-item>.badge+.badge {
+ margin-right: 5px
+}
+
+.nav-pills>li>a>.badge {
+ margin-left: 3px
+}
+
+.jumbotron {
+ padding: 30px 15px;
+ margin-bottom: 30px;
+ color: inherit;
+ background-color: #080808
+}
+
+.jumbotron h1, .jumbotron .h1 {
+ color: inherit
+}
+
+.jumbotron p {
+ margin-bottom: 15px;
+ font-size: 21px;
+ font-weight: 200
+}
+
+.jumbotron>hr {
+ border-top-color: #000
+}
+
+.container .jumbotron, .container-fluid .jumbotron {
+ border-radius: 0
+}
+
+.jumbotron .container {
+ max-width: 100%
+}
+
+@media screen and (min-width:768px) {
+ .jumbotron {
+ padding: 48px 0
+ }
+
+ .container .jumbotron, .container-fluid .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.428571429;
+ background-color: #222;
+ border: 1px solid #ddd;
+ border-radius: 0;
+ -webkit-transition: border .2s ease-in-out;
+ -o-transition: border .2s ease-in-out;
+ transition: border .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: #0f0
+}
+
+.thumbnail .caption {
+ padding: 9px;
+ color: #0c0
+}
+
+.alert {
+ padding: 15px;
+ margin-bottom: 20px;
+ border: 1px solid transparent;
+ border-radius: 0
+}
+
+.alert h4 {
+ margin-top: 0;
+ color: inherit
+}
+
+.alert .alert-link {
+ font-weight: bold
+}
+
+.alert>p, .alert>ul {
+ margin-bottom: 0
+}
+
+.alert>p+p {
+ margin-top: 5px
+}
+
+.alert-dismissable, .alert-dismissible {
+ padding-right: 35px
+}
+
+.alert-dismissable .close, .alert-dismissible .close {
+ position: relative;
+ top: -2px;
+ right: -21px;
+ color: inherit
+}
+
+.alert-success {
+ background-color: #3c3c3c;
+ border-color: #2f2f2f;
+ color: #0d0
+}
+
+.alert-success hr {
+ border-top-color: #222
+}
+
+.alert-success .alert-link {
+ color: #0a0
+}
+
+.alert-info {
+ background-color: #3c3c3c;
+ border-color: #2a2a2a;
+ color: #7d8cff
+}
+
+.alert-info hr {
+ border-top-color: #1d1d1d
+}
+
+.alert-info .alert-link {
+ color: #4a5fff
+}
+
+.alert-warning {
+ background-color: #3c3c3c;
+ border-color: #343434;
+ color: #f4ff00
+}
+
+.alert-warning hr {
+ border-top-color: #272727
+}
+
+.alert-warning .alert-link {
+ color: #c3cc00
+}
+
+.alert-danger {
+ background-color: #3c3c3c;
+ border-color: #343434;
+ color: #d00
+}
+
+.alert-danger hr {
+ border-top-color: #272727
+}
+
+.alert-danger .alert-link {
+ color: #a00
+}
+
+@-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: #3c3c3c;
+ border-radius: 0;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
+}
+
+.progress-bar {
+ float: left;
+ width: 0;
+ height: 100%;
+ font-size: 12px;
+ line-height: 20px;
+ color: #fff;
+ text-align: center;
+ background-color: #0f0;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ -webkit-transition: width .6s ease;
+ -o-transition: width .6s ease;
+ transition: width .6s ease
+}
+
+.progress-striped .progress-bar, .progress-bar-striped {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-size: 40px 40px
+}
+
+.progress.active .progress-bar, .progress-bar.active {
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
+ -o-animation: progress-bar-stripes 2s linear infinite;
+ animation: progress-bar-stripes 2s linear infinite
+}
+
+.progress-bar-success {
+ background-color: #090
+}
+
+.progress-striped .progress-bar-success {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
+}
+
+.progress-bar-info {
+ background-color: #36c
+}
+
+.progress-striped .progress-bar-info {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
+}
+
+.progress-bar-warning {
+ background-color: #f4ff00
+}
+
+.progress-striped .progress-bar-warning {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
+}
+
+.progress-bar-danger {
+ background-color: #f00
+}
+
+.progress-striped .progress-bar-danger {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
+}
+
+.media {
+ margin-top: 15px
+}
+
+.media:first-child {
+ margin-top: 0
+}
+
+.media, .media-body {
+ zoom: 1;
+ overflow: hidden
+}
+
+.media-body {
+ width: 10000px
+}
+
+.media-object {
+ display: block
+}
+
+.media-right, .media>.pull-right {
+ padding-left: 10px
+}
+
+.media-left, .media>.pull-left {
+ padding-right: 10px
+}
+
+.media-left, .media-right, .media-body {
+ display: table-cell;
+ vertical-align: top
+}
+
+.media-middle {
+ vertical-align: middle
+}
+
+.media-bottom {
+ vertical-align: bottom
+}
+
+.media-heading {
+ margin-top: 0;
+ margin-bottom: 5px
+}
+
+.media-list {
+ padding-left: 0;
+ list-style: none
+}
+
+.list-group {
+ margin-bottom: 20px;
+ padding-left: 0
+}
+
+.list-group-item {
+ position: relative;
+ display: block;
+ padding: 10px 15px;
+ margin-bottom: -1px;
+ background-color: #3c3c3c;
+ border: 1px solid #222
+}
+
+.list-group-item:first-child {
+ border-top-right-radius: 0;
+ border-top-left-radius: 0
+}
+
+.list-group-item:last-child {
+ margin-bottom: 0;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+a.list-group-item {
+ color: #0f0
+}
+
+a.list-group-item .list-group-item-heading {
+ color: #0f0
+}
+
+a.list-group-item:hover, a.list-group-item:focus {
+ text-decoration: none;
+ color: #0f0;
+ background-color: #151515
+}
+
+.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
+ background-color: #030;
+ color: #030;
+ cursor: not-allowed
+}
+
+.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
+ color: inherit
+}
+
+.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
+ color: #030
+}
+
+.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
+ z-index: 2;
+ color: #222;
+ background-color: #0f0;
+ border-color: #0f0
+}
+
+.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading>small, .list-group-item.active:hover .list-group-item-heading>small, .list-group-item.active:focus .list-group-item-heading>small, .list-group-item.active .list-group-item-heading>.small, .list-group-item.active:hover .list-group-item-heading>.small, .list-group-item.active:focus .list-group-item-heading>.small {
+ color: inherit
+}
+
+.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
+ color: #222
+}
+
+.list-group-item-success {
+ color: #0d0;
+ background-color: #3c3c3c
+}
+
+a.list-group-item-success {
+ color: #0d0
+}
+
+a.list-group-item-success .list-group-item-heading {
+ color: inherit
+}
+
+a.list-group-item-success:hover, a.list-group-item-success:focus {
+ color: #0d0;
+ background-color: #2f2f2f
+}
+
+a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
+ color: #fff;
+ background-color: #0d0;
+ border-color: #0d0
+}
+
+.list-group-item-info {
+ color: #7d8cff;
+ background-color: #3c3c3c
+}
+
+a.list-group-item-info {
+ color: #7d8cff
+}
+
+a.list-group-item-info .list-group-item-heading {
+ color: inherit
+}
+
+a.list-group-item-info:hover, a.list-group-item-info:focus {
+ color: #7d8cff;
+ background-color: #2f2f2f
+}
+
+a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
+ color: #fff;
+ background-color: #7d8cff;
+ border-color: #7d8cff
+}
+
+.list-group-item-warning {
+ color: #f4ff00;
+ background-color: #3c3c3c
+}
+
+a.list-group-item-warning {
+ color: #f4ff00
+}
+
+a.list-group-item-warning .list-group-item-heading {
+ color: inherit
+}
+
+a.list-group-item-warning:hover, a.list-group-item-warning:focus {
+ color: #f4ff00;
+ background-color: #2f2f2f
+}
+
+a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
+ color: #fff;
+ background-color: #f4ff00;
+ border-color: #f4ff00
+}
+
+.list-group-item-danger {
+ color: #d00;
+ background-color: #3c3c3c
+}
+
+a.list-group-item-danger {
+ color: #d00
+}
+
+a.list-group-item-danger .list-group-item-heading {
+ color: inherit
+}
+
+a.list-group-item-danger:hover, a.list-group-item-danger:focus {
+ color: #d00;
+ background-color: #2f2f2f
+}
+
+a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
+ color: #fff;
+ background-color: #d00;
+ border-color: #d00
+}
+
+.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: #222;
+ border: 1px solid transparent;
+ border-radius: 0;
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
+}
+
+.panel-body {
+ padding: 15px
+}
+
+.panel-heading {
+ padding: 10px 15px;
+ border-bottom: 1px solid transparent;
+ border-top-right-radius: -1;
+ border-top-left-radius: -1
+}
+
+.panel-heading>.dropdown .dropdown-toggle {
+ color: inherit
+}
+
+.panel-title {
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 16px;
+ color: inherit
+}
+
+.panel-title>a, .panel-title>small, .panel-title>.small, .panel-title>small>a, .panel-title>.small>a {
+ color: inherit
+}
+
+.panel-footer {
+ padding: 10px 15px;
+ background-color: #080808;
+ border-top: 1px solid #3c3c3c;
+ border-bottom-right-radius: -1;
+ border-bottom-left-radius: -1
+}
+
+.panel>.list-group, .panel>.panel-collapse>.list-group {
+ margin-bottom: 0
+}
+
+.panel>.list-group .list-group-item, .panel>.panel-collapse>.list-group .list-group-item {
+ border-width: 1px 0;
+ border-radius: 0
+}
+
+.panel>.list-group:first-child .list-group-item:first-child, .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
+ border-top: 0;
+ border-top-right-radius: -1;
+ border-top-left-radius: -1
+}
+
+.panel>.list-group:last-child .list-group-item:last-child, .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
+ border-bottom: 0;
+ border-bottom-right-radius: -1;
+ border-bottom-left-radius: -1
+}
+
+.panel-heading+.list-group .list-group-item:first-child {
+ border-top-width: 0
+}
+
+.list-group+.panel-footer {
+ border-top-width: 0
+}
+
+.panel>.table, .panel>.table-responsive>.table, .panel>.panel-collapse>.table {
+ margin-bottom: 0
+}
+
+.panel>.table caption, .panel>.table-responsive>.table caption, .panel>.panel-collapse>.table caption {
+ padding-left: 15px;
+ padding-right: 15px
+}
+
+.panel>.table:first-child, .panel>.table-responsive:first-child>.table:first-child {
+ border-top-right-radius: -1;
+ border-top-left-radius: -1
+}
+
+.panel>.table:first-child>thead:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child {
+ border-top-left-radius: -1;
+ border-top-right-radius: -1
+}
+
+.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: -1
+}
+
+.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: -1
+}
+
+.panel>.table:last-child, .panel>.table-responsive:last-child>.table:last-child {
+ border-bottom-right-radius: -1;
+ border-bottom-left-radius: -1
+}
+
+.panel>.table:last-child>tbody:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
+ border-bottom-left-radius: -1;
+ border-bottom-right-radius: -1
+}
+
+.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: -1
+}
+
+.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: -1
+}
+
+.panel>.panel-body+.table, .panel>.panel-body+.table-responsive, .panel>.table+.panel-body, .panel>.table-responsive+.panel-body {
+ border-top: 1px solid #444
+}
+
+.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: 0
+}
+
+.panel-group .panel+.panel {
+ margin-top: 5px
+}
+
+.panel-group .panel-heading {
+ border-bottom: 0
+}
+
+.panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group {
+ border-top: 1px solid #3c3c3c
+}
+
+.panel-group .panel-footer {
+ border-top: 0
+}
+
+.panel-group .panel-footer+.panel-collapse .panel-body {
+ border-bottom: 1px solid #3c3c3c
+}
+
+.panel-default {
+ border-color: #3c3c3c
+}
+
+.panel-default>.panel-heading {
+ color: #222;
+ background-color: #080808;
+ border-color: #3c3c3c
+}
+
+.panel-default>.panel-heading+.panel-collapse>.panel-body {
+ border-top-color: #3c3c3c
+}
+
+.panel-default>.panel-heading .badge {
+ color: #080808;
+ background-color: #222
+}
+
+.panel-default>.panel-footer+.panel-collapse>.panel-body {
+ border-bottom-color: #3c3c3c
+}
+
+.panel-primary {
+ border-color: #0f0
+}
+
+.panel-primary>.panel-heading {
+ color: #222;
+ background-color: #0f0;
+ border-color: #0f0
+}
+
+.panel-primary>.panel-heading+.panel-collapse>.panel-body {
+ border-top-color: #0f0
+}
+
+.panel-primary>.panel-heading .badge {
+ color: #0f0;
+ background-color: #222
+}
+
+.panel-primary>.panel-footer+.panel-collapse>.panel-body {
+ border-bottom-color: #0f0
+}
+
+.panel-success {
+ border-color: #2f2f2f
+}
+
+.panel-success>.panel-heading {
+ color: #0d0;
+ background-color: #3c3c3c;
+ border-color: #2f2f2f
+}
+
+.panel-success>.panel-heading+.panel-collapse>.panel-body {
+ border-top-color: #2f2f2f
+}
+
+.panel-success>.panel-heading .badge {
+ color: #3c3c3c;
+ background-color: #0d0
+}
+
+.panel-success>.panel-footer+.panel-collapse>.panel-body {
+ border-bottom-color: #2f2f2f
+}
+
+.panel-info {
+ border-color: #2a2a2a
+}
+
+.panel-info>.panel-heading {
+ color: #7d8cff;
+ background-color: #3c3c3c;
+ border-color: #2a2a2a
+}
+
+.panel-info>.panel-heading+.panel-collapse>.panel-body {
+ border-top-color: #2a2a2a
+}
+
+.panel-info>.panel-heading .badge {
+ color: #3c3c3c;
+ background-color: #7d8cff
+}
+
+.panel-info>.panel-footer+.panel-collapse>.panel-body {
+ border-bottom-color: #2a2a2a
+}
+
+.panel-warning {
+ border-color: #343434
+}
+
+.panel-warning>.panel-heading {
+ color: #f4ff00;
+ background-color: #3c3c3c;
+ border-color: #343434
+}
+
+.panel-warning>.panel-heading+.panel-collapse>.panel-body {
+ border-top-color: #343434
+}
+
+.panel-warning>.panel-heading .badge {
+ color: #3c3c3c;
+ background-color: #f4ff00
+}
+
+.panel-warning>.panel-footer+.panel-collapse>.panel-body {
+ border-bottom-color: #343434
+}
+
+.panel-danger {
+ border-color: #343434
+}
+
+.panel-danger>.panel-heading {
+ color: #d00;
+ background-color: #3c3c3c;
+ border-color: #343434
+}
+
+.panel-danger>.panel-heading+.panel-collapse>.panel-body {
+ border-top-color: #343434
+}
+
+.panel-danger>.panel-heading .badge {
+ color: #3c3c3c;
+ background-color: #d00
+}
+
+.panel-danger>.panel-footer+.panel-collapse>.panel-body {
+ border-bottom-color: #343434
+}
+
+.embed-responsive {
+ position: relative;
+ display: block;
+ height: 0;
+ padding: 0;
+ overflow: hidden
+}
+
+.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ height: 100%;
+ width: 100%;
+ border: 0
+}
+
+.embed-responsive-16by9 {
+ padding-bottom: 56.25%
+}
+
+.embed-responsive-4by3 {
+ padding-bottom: 75%
+}
+
+.well {
+ min-height: 20px;
+ padding: 19px;
+ margin-bottom: 20px;
+ background-color: #080808;
+ border: 1px solid #000;
+ border-radius: 0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
+}
+
+.well blockquote {
+ border-color: #ddd;
+ border-color: rgba(0, 0, 0, 0.15)
+}
+
+.well-lg {
+ padding: 24px;
+ border-radius: 0
+}
+
+.well-sm {
+ padding: 9px;
+ border-radius: 0
+}
+
+.close {
+ float: right;
+ font-size: 21px;
+ font-weight: bold;
+ 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: transparent;
+ border: 0;
+ -webkit-appearance: none
+}
+
+.modal-open {
+ overflow: hidden
+}
+
+.modal {
+ display: none;
+ overflow: hidden;
+ 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%);
+ -o-transform: translate(0, -25%);
+ transform: translate(0, -25%);
+ -webkit-transition: -webkit-transform 0.3s ease-out;
+ -moz-transition: -moz-transform 0.3s ease-out;
+ -o-transition: -o-transform 0.3s ease-out;
+ transition: transform 0.3s ease-out
+}
+
+.modal.in .modal-dialog {
+ -webkit-transform: translate(0, 0);
+ -ms-transform: translate(0, 0);
+ -o-transform: translate(0, 0);
+ transform: translate(0, 0)
+}
+
+.modal-open .modal {
+ overflow-x: hidden;
+ overflow-y: auto
+}
+
+.modal-dialog {
+ position: relative;
+ width: auto;
+ margin: 10px
+}
+
+.modal-content {
+ position: relative;
+ background-color: #3c3c3c;
+ border: 1px solid #999;
+ border: 1px solid transparent;
+ border-radius: 0;
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+ box-shadow: 0 3px 9px rgba(0, 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: #222
+}
+
+.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 #3c3c3c;
+ min-height: 16.428571429px
+}
+
+.modal-header .close {
+ margin-top: -2px
+}
+
+.modal-title {
+ margin: 0;
+ line-height: 1.428571429
+}
+
+.modal-body {
+ position: relative;
+ padding: 15px
+}
+
+.modal-footer {
+ padding: 15px;
+ text-align: right;
+ border-top: 1px solid #3c3c3c
+}
+
+.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
+}
+
+.modal-scrollbar-measure {
+ position: absolute;
+ top: -9999px;
+ width: 50px;
+ height: 50px;
+ overflow: scroll
+}
+
+@media (min-width:768px) {
+ .modal-dialog {
+ width: 600px;
+ margin: 30px auto
+ }
+
+ .modal-content {
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
+ }
+
+ .modal-sm {
+ width: 300px
+ }
+}
+
+@media (min-width:992px) {
+ .modal-lg {
+ width: 900px
+ }
+}
+
+.tooltip {
+ position: absolute;
+ z-index: 1070;
+ display: block;
+ font-family: Monospace;
+ font-size: 12px;
+ font-weight: normal;
+ 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: 0
+}
+
+.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;
+ right: 5px;
+ margin-bottom: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000
+}
+
+.tooltip.top-right .tooltip-arrow {
+ bottom: 0;
+ left: 5px;
+ margin-bottom: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000
+}
+
+.tooltip.right .tooltip-arrow {
+ top: 50%;
+ left: 0;
+ margin-top: -5px;
+ border-width: 5px 5px 5px 0;
+ border-right-color: #000
+}
+
+.tooltip.left .tooltip-arrow {
+ top: 50%;
+ right: 0;
+ margin-top: -5px;
+ border-width: 5px 0 5px 5px;
+ border-left-color: #000
+}
+
+.tooltip.bottom .tooltip-arrow {
+ top: 0;
+ left: 50%;
+ margin-left: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000
+}
+
+.tooltip.bottom-left .tooltip-arrow {
+ top: 0;
+ right: 5px;
+ margin-top: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000
+}
+
+.tooltip.bottom-right .tooltip-arrow {
+ top: 0;
+ left: 5px;
+ margin-top: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000
+}
+
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ display: none;
+ max-width: 276px;
+ padding: 1px;
+ font-family: Monospace;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1.428571429;
+ text-align: left;
+ background-color: #3c3c3c;
+ background-clip: padding-box;
+ border: 1px solid #333;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 0;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 5px 10px rgba(0, 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;
+ background-color: #343434;
+ border-bottom: 1px solid #272727;
+ border-radius: -1 -1 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, 0.25);
+ bottom: -11px
+}
+
+.popover.top>.arrow:after {
+ content: " ";
+ bottom: 1px;
+ margin-left: -10px;
+ border-bottom-width: 0;
+ border-top-color: #3c3c3c
+}
+
+.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, 0.25)
+}
+
+.popover.right>.arrow:after {
+ content: " ";
+ left: 1px;
+ bottom: -10px;
+ border-left-width: 0;
+ border-right-color: #3c3c3c
+}
+
+.popover.bottom>.arrow {
+ left: 50%;
+ margin-left: -11px;
+ border-top-width: 0;
+ border-bottom-color: #999;
+ border-bottom-color: rgba(0, 0, 0, 0.25);
+ top: -11px
+}
+
+.popover.bottom>.arrow:after {
+ content: " ";
+ top: 1px;
+ margin-left: -10px;
+ border-top-width: 0;
+ border-bottom-color: #3c3c3c
+}
+
+.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, 0.25)
+}
+
+.popover.left>.arrow:after {
+ content: " ";
+ right: 1px;
+ border-right-width: 0;
+ border-left-color: #3c3c3c;
+ 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;
+ -o-transition: .6s ease-in-out left;
+ transition: .6s ease-in-out left
+}
+
+.carousel-inner>.item>img, .carousel-inner>.item>a>img {
+ line-height: 1
+}
+
+@media all and (transform-3d), (-webkit-transform-3d) {
+ .carousel-inner>.item {
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
+ -moz-transition: -moz-transform 0.6s ease-in-out;
+ -o-transition: -o-transform 0.6s ease-in-out;
+ transition: transform 0.6s ease-in-out;
+ -webkit-backface-visibility: hidden;
+ -moz-backface-visibility: hidden;
+ backface-visibility: hidden;
+ -webkit-perspective: 1000;
+ -moz-perspective: 1000;
+ perspective: 1000
+ }
+
+ .carousel-inner>.item.next, .carousel-inner>.item.active.right {
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ left: 0
+ }
+
+ .carousel-inner>.item.prev, .carousel-inner>.item.active.left {
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ left: 0
+ }
+
+ .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ left: 0
+ }
+}
+
+.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev {
+ display: block
+}
+
+.carousel-inner>.active {
+ left: 0
+}
+
+.carousel-inner>.next, .carousel-inner>.prev {
+ position: absolute;
+ top: 0;
+ width: 100%
+}
+
+.carousel-inner>.next {
+ left: 100%
+}
+
+.carousel-inner>.prev {
+ left: -100%
+}
+
+.carousel-inner>.next.left, .carousel-inner>.prev.right {
+ left: 0
+}
+
+.carousel-inner>.active.left {
+ left: -100%
+}
+
+.carousel-inner>.active.right {
+ left: 100%
+}
+
+.carousel-control {
+ position: absolute;
+ top: 0;
+ 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, 0.6)
+}
+
+.carousel-control.left {
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 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, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 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%;
+ margin-left: -10px
+}
+
+.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
+ right: 50%;
+ margin-right: -10px
+}
+
+.carousel-control .icon-prev, .carousel-control .icon-next {
+ width: 20px;
+ height: 20px;
+ margin-top: -10px;
+ line-height: 1;
+ 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, 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;
+ font-size: 30px
+ }
+
+ .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
+ margin-left: -15px
+ }
+
+ .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
+ margin-right: -15px
+ }
+
+ .carousel-caption {
+ left: 20%;
+ right: 20%;
+ padding-bottom: 30px
+ }
+
+ .carousel-indicators {
+ bottom: 20px
+ }
+}
+
+.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd: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, .dl-horizontal dd: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
+}
+
+.affix {
+ position: fixed
+}
+
+@-ms-viewport {
+ width: device-width
+}
+
+.visible-xs, .visible-sm, .visible-md, .visible-lg {
+ display: none !important
+}
+
+.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
+ display: none !important
+}
+
+@media (max-width:767px) {
+ .visible-xs {
+ display: block !important
+ }
+
+ table.visible-xs {
+ display: table
+ }
+
+ tr.visible-xs {
+ display: table-row !important
+ }
+
+ th.visible-xs, td.visible-xs {
+ display: table-cell !important
+ }
+}
+
+@media (max-width:767px) {
+ .visible-xs-block {
+ display: block !important
+ }
+}
+
+@media (max-width:767px) {
+ .visible-xs-inline {
+ display: inline !important
+ }
+}
+
+@media (max-width:767px) {
+ .visible-xs-inline-block {
+ display: inline-block !important
+ }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+ .visible-sm {
+ display: block !important
+ }
+
+ table.visible-sm {
+ display: table
+ }
+
+ tr.visible-sm {
+ display: table-row !important
+ }
+
+ th.visible-sm, td.visible-sm {
+ display: table-cell !important
+ }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+ .visible-sm-block {
+ display: block !important
+ }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+ .visible-sm-inline {
+ display: inline !important
+ }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+ .visible-sm-inline-block {
+ display: inline-block !important
+ }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+ .visible-md {
+ display: block !important
+ }
+
+ table.visible-md {
+ display: table
+ }
+
+ tr.visible-md {
+ display: table-row !important
+ }
+
+ th.visible-md, td.visible-md {
+ display: table-cell !important
+ }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+ .visible-md-block {
+ display: block !important
+ }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+ .visible-md-inline {
+ display: inline !important
+ }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+ .visible-md-inline-block {
+ display: inline-block !important
+ }
+}
+
+@media (min-width:1200px) {
+ .visible-lg {
+ display: block !important
+ }
+
+ table.visible-lg {
+ display: table
+ }
+
+ tr.visible-lg {
+ display: table-row !important
+ }
+
+ th.visible-lg, td.visible-lg {
+ display: table-cell !important
+ }
+}
+
+@media (min-width:1200px) {
+ .visible-lg-block {
+ display: block !important
+ }
+}
+
+@media (min-width:1200px) {
+ .visible-lg-inline {
+ display: inline !important
+ }
+}
+
+@media (min-width:1200px) {
+ .visible-lg-inline-block {
+ display: inline-block !important
+ }
+}
+
+@media (max-width:767px) {
+ .hidden-xs {
+ display: none !important
+ }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+ .hidden-sm {
+ display: none !important
+ }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+ .hidden-md {
+ display: none !important
+ }
+}
+
+@media (min-width:1200px) {
+ .hidden-lg {
+ display: none !important
+ }
+}
+
+.visible-print {
+ display: none !important
+}
+
+@media print {
+ .visible-print {
+ display: block !important
+ }
+
+ table.visible-print {
+ display: table
+ }
+
+ tr.visible-print {
+ display: table-row !important
+ }
+
+ th.visible-print, td.visible-print {
+ display: table-cell !important
+ }
+}
+
+.visible-print-block {
+ display: none !important
+}
+
+@media print {
+ .visible-print-block {
+ display: block !important
+ }
+}
+
+.visible-print-inline {
+ display: none !important
+}
+
+@media print {
+ .visible-print-inline {
+ display: inline !important
+ }
+}
+
+.visible-print-inline-block {
+ display: none !important
+}
+
+@media print {
+ .visible-print-inline-block {
+ display: inline-block !important
+ }
+}
+
+@media print {
+ .hidden-print {
+ display: none !important
+ }
+}
diff --git a/themes/hipster-gray.css b/themes/hipster-gray.css
index e3a32981..e3d14da0 100644
--- a/themes/hipster-gray.css
+++ b/themes/hipster-gray.css
@@ -1,201 +1,285 @@
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,300);
* {
- margin: 0;
- padding: 0;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- -o-transition: all 0.2s ease-out;
- -ms-transition: all 0.2s ease-out;
- transition: all 0.2s ease-out;
+ margin: 0;
+ padding: 0;
+ -webkit-transition: all 0.2s ease-out;
+ -moz-transition: all 0.2s ease-out;
+ -o-transition: all 0.2s ease-out;
+ -ms-transition: all 0.2s ease-out;
+ transition: all 0.2s ease-out;
}
+
body {
- background: #aaa;
- font-family: Merriweather, "Palatino Linotype", Georgia, serif;
- font-size: 21pt;
- line-height: 170%;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- font-smoothing: antialiased;
- overflow-y: auto;
- padding: 20pt;
+ background: #aaa;
+ font-family: Merriweather, "Palatino Linotype", Georgia, serif;
+ font-size: 21pt;
+ line-height: 170%;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ font-smoothing: antialiased;
+ overflow-y: auto;
+ padding: 20pt;
}
+
a:link, a:visited {
- color: #000;
- text-decoration: none;
- border-bottom: 1pt solid #aaa;
+ color: #000;
+ text-decoration: none;
+ border-bottom: 1pt solid #aaa;
}
+
a:hover, a:focus, a:active {
- background: #aaa;
- text-decoration: none;
+ background: #aaa;
+ text-decoration: none;
}
+
h1 {
- font-size: 64pt;
- font-weight: 400;
- line-height: 100%;
+ font-size: 64pt;
+ font-weight: 400;
+ line-height: 100%;
}
+
article, footer {
- padding: 50pt 50pt 20pt 20%;
- background: #ccc;
+ padding: 50pt 50pt 20pt 20%;
+ background: #ccc;
}
-article p { margin-top: 40pt; }
+
+article p {
+ margin-top: 40pt;
+}
+
article p:first-of-type {
- margin-top: 20pt;
- font-size: 14pt;
- line-height: 150%;
+ margin-top: 20pt;
+ font-size: 14pt;
+ line-height: 150%;
}
+
article :nth-child(4),
article :nth-child(4):before {
- font-size: 18pt;
- font-weight: 300;
-}
-article :nth-child(4):before {
- content: "*";
- margin-left: -20pt;
- float: left;
-}
-article p:last-child {
- border: 20pt solid #c4c4c4;
- font-size: 17pt;
- line-height: 180%;
- margin: 40pt;
- color: #888;
- padding: 20pt;
-}
-footer {
- padding-top: 0;
- font-size: 14pt;
- line-height: 100%;
- margin-top: -1pt;
-}
-footer p {
- background: url("hipster-gray-octocat.png") 0 0 no-repeat;
- margin-left: -20pt;
- padding-left: 20pt;
-}
-footer a:link, footer a:visited {
- border-bottom-color: #bbb;
- color: #888;
-}
-footer a:hover, footer a:focus, footer a:active {
- color: #000;
+ font-size: 18pt;
+ font-weight: 300;
}
+article :nth-child(4):before {
+ content: "*";
+ margin-left: -20pt;
+ float: left;
+}
+
+article p:last-child {
+ border: 20pt solid #c4c4c4;
+ font-size: 17pt;
+ line-height: 180%;
+ margin: 40pt;
+ color: #888;
+ padding: 20pt;
+}
+
+footer {
+ padding-top: 0;
+ font-size: 14pt;
+ line-height: 100%;
+ margin-top: -1pt;
+}
+
+footer p {
+ background: url("hipster-gray-octocat.png") 0 0 no-repeat;
+ margin-left: -20pt;
+ padding-left: 20pt;
+}
+
+footer a:link, footer a:visited {
+ border-bottom-color: #bbb;
+ color: #888;
+}
+
+footer a:hover, footer a:focus, footer a:active {
+ color: #000;
+}
@media only screen and (max-width: 1360px) {
- article, footer {
- padding-left: 50pt;
- }
-}
-@media only screen and (max-width: 1140px) {
- body {
- font-size: 17pt;
- padding: 15pt;
- }
- h1 { font-size: 40pt; }
- article, footer { padding: 30pt; }
- article p { margin-top: 17pt; }
- article p:first-of-type {
- font-size: 12pt;
- line-height: 120%;
- margin-top: 10pt;
- }
- article :nth-child(4), article :nth-child(4):before { font-size: 15pt; }
- article :nth-child(4):before { margin-left: -15pt; }
- article p:last-child {
- border-width: 15pt;
- font-size: 13pt;
- margin: 15pt 0 0 0;
- padding: 15pt;
- }
- footer {
- padding-top: 0;
- font-size: 11pt;
- line-height: 120%;
- }
- footer p {
- margin-left: -15pt;
- padding-left: 15pt;
- }
-}
-@media only screen and (max-width: 720px) {
- body {
- font-size: 12pt;
- padding: 10pt;
- }
- h1 { font-size: 24pt; }
- article, footer { padding: 20pt; }
- article p { margin-top: 15pt; }
- article p:first-of-type {
- font-size: 9pt;
- line-height: 120%;
- margin-top: 10pt;
- }
- article :nth-child(4), article :nth-child(4):before { font-size: 10pt; }
- article :nth-child(4):before { margin-left: -10pt; }
- article p:last-child {
- border-width: 10pt;
- font-size: 10pt;
- margin: 15pt 0 0 0;
- padding: 10pt;
- }
- footer {
- padding-top: 0;
- font-size: 9pt;
- line-height: 120%;
- }
- footer p {
- background-position: 0 1px;
- -webkit-background-size: 9px;
- background-size: 11px;
- margin-left: -10pt;
- padding-left: 10pt;
- }
+ article, footer {
+ padding-left: 50pt;
+ }
}
+@media only screen and (max-width: 1140px) {
+ body {
+ font-size: 17pt;
+ padding: 15pt;
+ }
+
+ h1 {
+ font-size: 40pt;
+ }
+
+ article, footer {
+ padding: 30pt;
+ }
+
+ article p {
+ margin-top: 17pt;
+ }
+
+ article p:first-of-type {
+ font-size: 12pt;
+ line-height: 120%;
+ margin-top: 10pt;
+ }
+
+ article :nth-child(4), article :nth-child(4):before {
+ font-size: 15pt;
+ }
+
+ article :nth-child(4):before {
+ margin-left: -15pt;
+ }
+
+ article p:last-child {
+ border-width: 15pt;
+ font-size: 13pt;
+ margin: 15pt 0 0 0;
+ padding: 15pt;
+ }
+
+ footer {
+ padding-top: 0;
+ font-size: 11pt;
+ line-height: 120%;
+ }
+
+ footer p {
+ margin-left: -15pt;
+ padding-left: 15pt;
+ }
+}
+
+@media only screen and (max-width: 720px) {
+ body {
+ font-size: 12pt;
+ padding: 10pt;
+ }
+
+ h1 {
+ font-size: 24pt;
+ }
+
+ article, footer {
+ padding: 20pt;
+ }
+
+ article p {
+ margin-top: 15pt;
+ }
+
+ article p:first-of-type {
+ font-size: 9pt;
+ line-height: 120%;
+ margin-top: 10pt;
+ }
+
+ article :nth-child(4), article :nth-child(4):before {
+ font-size: 10pt;
+ }
+
+ article :nth-child(4):before {
+ margin-left: -10pt;
+ }
+
+ article p:last-child {
+ border-width: 10pt;
+ font-size: 10pt;
+ margin: 15pt 0 0 0;
+ padding: 10pt;
+ }
+
+ footer {
+ padding-top: 0;
+ font-size: 9pt;
+ line-height: 120%;
+ }
+
+ footer p {
+ background-position: 0 1px;
+ -webkit-background-size: 9px;
+ background-size: 11px;
+ margin-left: -10pt;
+ padding-left: 10pt;
+ }
+}
@media print {
- @page { margin: .5cm; }
- * { color: black !important; }
- a[href^="http"]:after { content: " [" attr(href) "]" }
- a:link, a[href]:after { border: none; }
- body {
- background: none;
- font-size: 12pt;
- padding: 0;
- }
- h1 { font-size: 28pt; }
- article, footer {
- background: none;
- padding: 30pt;
- }
- article p { margin-top: 16pt; }
- article p:first-of-type {
- font-size: 10pt;
- line-height: 120%;
- margin-top: 10pt;
- }
- article :nth-child(4), article :nth-child(4):before { font-size: 12pt; }
- article :nth-child(4):before { margin-left: -12pt; }
- article p:last-child {
- border-width: 11pt;
- font-size: 11pt;
- margin: 18pt 0 0 0;
- padding: 11pt;
- }
- footer {
- padding-top: 0;
- font-size: 10pt;
- line-height: 120%;
- }
- footer p {
- background-position: 0 1px;
- -webkit-background-size: 11px;
- background-size: 11px;
- margin-left: -12pt;
- padding-left: 12pt;
- }
+ @page {
+ margin: .5cm;
+ }
+
+ * {
+ color: black !important;
+ }
+
+ a[href^="http"]:after {
+ content: " ["attr(href) "]"
+ }
+
+ a:link, a[href]:after {
+ border: none;
+ }
+
+ body {
+ background: none;
+ font-size: 12pt;
+ padding: 0;
+ }
+
+ h1 {
+ font-size: 28pt;
+ }
+
+ article, footer {
+ background: none;
+ padding: 30pt;
+ }
+
+ article p {
+ margin-top: 16pt;
+ }
+
+ article p:first-of-type {
+ font-size: 10pt;
+ line-height: 120%;
+ margin-top: 10pt;
+ }
+
+ article :nth-child(4), article :nth-child(4):before {
+ font-size: 12pt;
+ }
+
+ article :nth-child(4):before {
+ margin-left: -12pt;
+ }
+
+ article p:last-child {
+ border-width: 11pt;
+ font-size: 11pt;
+ margin: 18pt 0 0 0;
+ padding: 11pt;
+ }
+
+ footer {
+ padding-top: 0;
+ font-size: 10pt;
+ line-height: 120%;
+ }
+
+ footer p {
+ background-position: 0 1px;
+ -webkit-background-size: 11px;
+ background-size: 11px;
+ margin-left: -12pt;
+ padding-left: 12pt;
+ }
}
+
#gravatar {
position: relative;
float: left;
diff --git a/themes/hmt-blue.css b/themes/hmt-blue.css
index d4bae46f..8b8c185b 100644
--- a/themes/hmt-blue.css
+++ b/themes/hmt-blue.css
@@ -1,8 +1,244 @@
/* normalize.min.css */
-progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} figcaption, menu,article,aside,details,figure,footer,header,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0} [hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{}button,select{text-transform:none}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
+progress, sub, sup {
+ vertical-align: baseline
+}
+
+button, hr, input {
+ overflow: visible
+}
+
+html {
+ font-family: sans-serif;
+ line-height: 1.15;
+ -ms-text-size-adjust: 100%;
+ -webkit-text-size-adjust: 100%
+}
+
+body {
+ margin: 0
+}
+
+figcaption, menu, article, aside, details, figure, footer, header, main, nav, section, summary {
+ display: block
+}
+
+audio, canvas, progress, video {
+ display: inline-block
+}
+
+audio:not([controls]) {
+ display: none;
+ height: 0
+}
+
+[hidden], template {
+ display: none
+}
+
+a {
+ background-color: transparent;
+ -webkit-text-decoration-skip: objects
+}
+
+a:active, a:hover {
+ outline-width: 0
+}
+
+abbr[title] {
+ border-bottom: none;
+ text-decoration: underline;
+ text-decoration: underline dotted
+}
+
+b, strong {
+ font-weight: bolder
+}
+
+dfn {
+ font-style: italic
+}
+
+h1 {
+ font-size: 2em;
+ margin: .67em 0
+}
+
+mark {
+ background-color: #ff0;
+ color: #000
+}
+
+small {
+ font-size: 80%
+}
+
+sub, sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative
+}
+
+sub {
+ bottom: -.25em
+}
+
+sup {
+ top: -.5em
+}
+
+img {
+ border-style: none
+}
+
+svg:not(:root) {
+ overflow: hidden
+}
+
+code, kbd, pre, samp {
+ font-family: monospace, monospace;
+ font-size: 1em
+}
+
+figure {
+ margin: 1em 40px
+}
+
+hr {
+ box-sizing: content-box;
+ height: 0
+}
+
+button, input, optgroup, select, textarea {
+ font: inherit;
+ margin: 0
+}
+
+optgroup {
+ font-weight: 700
+}
+
+button, input {}
+
+button, select {
+ text-transform: none
+}
+
+[type=submit], [type=reset], button, html [type=button] {
+ -webkit-appearance: button
+}
+
+[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
+ border-style: none;
+ padding: 0
+}
+
+[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
+ outline: ButtonText dotted 1px
+}
+
+fieldset {
+ border: 1px solid silver;
+ margin: 0 2px;
+ padding: .35em .625em .75em
+}
+
+legend {
+ box-sizing: border-box;
+ color: inherit;
+ display: table;
+ max-width: 100%;
+ padding: 0;
+ white-space: normal
+}
+
+textarea {
+ overflow: auto
+}
+
+[type=checkbox], [type=radio] {
+ box-sizing: border-box;
+ padding: 0
+}
+
+[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
+ height: auto
+}
+
+[type=search] {
+ -webkit-appearance: textfield;
+ outline-offset: -2px
+}
+
+[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
+ -webkit-appearance: none
+}
+
+::-webkit-input-placeholder {
+ color: inherit;
+ opacity: .54
+}
+
+::-webkit-file-upload-button {
+ -webkit-appearance: button;
+ font: inherit
+}
/* Roboto */
-@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
+ unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F
+}
+
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
+}
+
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
+ unicode-range: U+1F00-1FFF
+}
+
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
+ unicode-range: U+0370-03FF
+}
+
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB
+}
+
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF
+}
+
+@font-face {
+ font-family: Roboto;
+ font-style: normal;
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2');
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
+}
body {
font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
@@ -11,29 +247,36 @@ body {
line-height: 1.4;
background-color: #e9ebee;
}
+
a:focus,
a:hover {
color: #23527c;
}
+
a:active,
a:hover {
outline: 0;
}
+
a {
color: #337ab7;
text-decoration: none;
}
+
article,
footer {
width: 800px;
margin: 0 auto;
}
+
article p {
text-align: justify;
}
+
footer p {
text-align: center;
}
+
#gravatar {
display: block;
float: right;
@@ -41,57 +284,56 @@ footer p {
border: none;
margin-top: 5px;
}
+
article h1 {
font-weight: bold;
line-height: 1.3;
text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.2);
}
+
footer {
text-align: center;
border-top: 1px solid #ccc;
font-style: italic;
}
+
/* Blockquote: https://codepen.io/maxds/pen/DcveB */
-article > p:last-child {
+article>p:last-child {
display: block;
background: #fff;
padding: 15px 20px 15px 45px;
margin: 0 0 20px;
position: relative;
/*Font*/
-
font-family: Georgia, serif;
font-size: 16px;
line-height: 1.4;
color: #666;
text-align: justify;
/*Borders - (Optional)*/
-
border-left: 15px solid #3392cd;
border-right: 2px solid #3392cd;
/*Box Shadow - (Optional)*/
-
-moz-box-shadow: 2px 2px 15px #ccc;
-webkit-box-shadow: 2px 2px 15px #ccc;
box-shadow: 2px 2px 15px #ccc;
}
-article > p:last-child::before {
+
+article>p:last-child::before {
content: "\201C";
/*Unicode for Left Double Quote*/
/*Font*/
-
font-family: Georgia, serif;
font-size: 60px;
font-weight: bold;
color: #999;
/*Positioning*/
-
position: absolute;
left: 10px;
top: 5px;
}
-article > p:last-child::after {
+
+article>p:last-child::after {
/*Reset to make sure*/
-
content: "";
}
diff --git a/themes/magic-mint.css b/themes/magic-mint.css
index 50f226da..07523d9b 100644
--- a/themes/magic-mint.css
+++ b/themes/magic-mint.css
@@ -1,102 +1,105 @@
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
-html{
- font-size: 62.5%;
+html {
+ font-size: 62.5%;
}
+
body {
- font-family: Lato, Helvetica, sans-serif;
- padding: 8px;
- line-height: 1.6;
- color: #3e3e3e;
- background: #c7f1d7;
+ font-family: Lato, Helvetica, sans-serif;
+ padding: 8px;
+ line-height: 1.6;
+ color: #3e3e3e;
+ background: #c7f1d7;
}
article {
- max-width: 660px;
- margin: 10px auto 0;
- text-align: center;
- position: relative;
+ max-width: 660px;
+ margin: 10px auto 0;
+ text-align: center;
+ position: relative;
}
-#gravatar{
- position: absolute;
- left: 0;
- top: 22px;
- width: 68px;
- height: 68px;
+#gravatar {
+ position: absolute;
+ left: 0;
+ top: 22px;
+ width: 68px;
+ height: 68px;
}
h1 {
- font-weight: 700;
- text-align: center;
- font-size: 40px;
- font-size: 4rem;
- text-transform: uppercase;
- text-shadow: 0 1px 0 #c7f1d7;
- border-bottom: 6px solid #3e3e3e;
- padding-bottom: 25px;
- line-height: 1.1;
- display: inline-block;
- margin: 15px auto 5px auto;
+ font-weight: 700;
+ text-align: center;
+ font-size: 40px;
+ font-size: 4rem;
+ text-transform: uppercase;
+ text-shadow: 0 1px 0 #c7f1d7;
+ border-bottom: 6px solid #3e3e3e;
+ padding-bottom: 25px;
+ line-height: 1.1;
+ display: inline-block;
+ margin: 15px auto 5px auto;
}
article p:nth-of-type(1) {
- margin: 0;
- padding: 21px 0 0;
- font-style: italic;
- text-align: center;
- font-size: 14px;
- font-size: 1.4rem;
+ margin: 0;
+ padding: 21px 0 0;
+ font-style: italic;
+ text-align: center;
+ font-size: 14px;
+ font-size: 1.4rem;
}
article p:last-child {
- padding-bottom: 1.3em;
- margin-bottom: 0;
- font-size: 18px;
- font-size: 1.8rem;
+ padding-bottom: 1.3em;
+ margin-bottom: 0;
+ font-size: 18px;
+ font-size: 1.8rem;
}
-p{
- text-align: justify;
- font-size: 18px;
- font-size: 1.8rem;
+p {
+ text-align: justify;
+ font-size: 18px;
+ font-size: 1.8rem;
}
+
a {
- padding: 0.1em;
+ padding: 0.1em;
}
a:link,
a:visited {
- text-decoration: none;
- color: #3e3e3e;
- border-bottom: 1px solid;
+ text-decoration: none;
+ color: #3e3e3e;
+ border-bottom: 1px solid;
}
a:hover {
- background: #3e3e3e;
- color: white;
- border: none;
+ background: #3e3e3e;
+ color: white;
+ border: none;
}
a:active {
- background: #2e2e2e;
- position: relative;
- top: 1px;
+ background: #2e2e2e;
+ position: relative;
+ top: 1px;
}
a[href^="mailto"] {
- border-bottom: none;
+ border-bottom: none;
}
footer {
- border-top: 8px solid #3e3e3e;
- font-size: 1.8rem;
- text-align: center;
- max-width: 660px;
- margin: 10px auto 0;
- padding: 12px 0;
- font-style: italic;
+ border-top: 8px solid #3e3e3e;
+ font-size: 1.8rem;
+ text-align: center;
+ max-width: 660px;
+ margin: 10px auto 0;
+ padding: 12px 0;
+ font-style: italic;
}
-footer p{
- text-align: center;
+
+footer p {
+ text-align: center;
}
diff --git a/themes/material-amber.css b/themes/material-amber.css
index 02a7b06a..7d1cf571 100644
--- a/themes/material-amber.css
+++ b/themes/material-amber.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ffc107;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fff8e1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffecb3}article h1+p a:hover{color:#ff6f00}article p{padding:0 2em;text-align:justify}article p:last-child{color:#ffa000;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#ff6f00}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #ffc107;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #fff8e1;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #ffecb3
+}
+
+article h1+p a:hover {
+ color: #ff6f00
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #ffa000;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #ff6f00
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-blue.css b/themes/material-blue.css
index 45de0ce5..84e5af23 100644
--- a/themes/material-blue.css
+++ b/themes/material-blue.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#2196f3;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e3f2fd;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#bbdefb}article h1+p a:hover{color:#0d47a1}article p{padding:0 2em;text-align:justify}article p:last-child{color:#1976d2;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#0d47a1}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #2196f3;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #e3f2fd;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #bbdefb
+}
+
+article h1+p a:hover {
+ color: #0d47a1
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #1976d2;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #0d47a1
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-brown.css b/themes/material-brown.css
index 42eb904f..0b7f04d1 100644
--- a/themes/material-brown.css
+++ b/themes/material-brown.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#795548;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#efebe9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#d7ccc8}article h1+p a:hover{color:#3e2723}article p{padding:0 2em;text-align:justify}article p:last-child{color:#5d4037;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#3e2723}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #795548;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #efebe9;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #d7ccc8
+}
+
+article h1+p a:hover {
+ color: #3e2723
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #5d4037;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #3e2723
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-cyan.css b/themes/material-cyan.css
index 96ea1ad7..1118138a 100644
--- a/themes/material-cyan.css
+++ b/themes/material-cyan.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#00bcd4;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e0f7fa;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b2ebf2}article h1+p a:hover{color:#006064}article p{padding:0 2em;text-align:justify}article p:last-child{color:#0097a7;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#006064}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #00bcd4;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #e0f7fa;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #b2ebf2
+}
+
+article h1+p a:hover {
+ color: #006064
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #0097a7;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #006064
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-deep-orange.css b/themes/material-deep-orange.css
index 8f62aa7f..be5d8ab6 100644
--- a/themes/material-deep-orange.css
+++ b/themes/material-deep-orange.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ff5722;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fbe9e7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffccbc}article h1+p a:hover{color:#bf360c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#e64a19;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#bf360c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #ff5722;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #fbe9e7;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #ffccbc
+}
+
+article h1+p a:hover {
+ color: #bf360c
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #e64a19;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #bf360c
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-deep-purple.css b/themes/material-deep-purple.css
index 3d365118..ee3d92ba 100644
--- a/themes/material-deep-purple.css
+++ b/themes/material-deep-purple.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#673ab7;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#ede7f6;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#d1c4e9}article h1+p a:hover{color:#311b92}article p{padding:0 2em;text-align:justify}article p:last-child{color:#512da8;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#311b92}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #673ab7;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #ede7f6;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #d1c4e9
+}
+
+article h1+p a:hover {
+ color: #311b92
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #512da8;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #311b92
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-green.css b/themes/material-green.css
index 2b1c17bd..9c8f409c 100644
--- a/themes/material-green.css
+++ b/themes/material-green.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#4caf50;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e8f5e9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#c8e6c9}article h1+p a:hover{color:#1b5e20}article p{padding:0 2em;text-align:justify}article p:last-child{color:#388e3c;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#1b5e20}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #4caf50;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #e8f5e9;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #c8e6c9
+}
+
+article h1+p a:hover {
+ color: #1b5e20
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #388e3c;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #1b5e20
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-grey.css b/themes/material-grey.css
index d8fc722a..133e3d6a 100644
--- a/themes/material-grey.css
+++ b/themes/material-grey.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#9e9e9e;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fafafa;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f5f5f5}article h1+p a:hover{color:#212121}article p{padding:0 2em;text-align:justify}article p:last-child{color:#616161;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#212121}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #9e9e9e;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #fafafa;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #f5f5f5
+}
+
+article h1+p a:hover {
+ color: #212121
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #616161;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #212121
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-indigo.css b/themes/material-indigo.css
index ace7612d..1003de67 100644
--- a/themes/material-indigo.css
+++ b/themes/material-indigo.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#3f51b5;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e8eaf6;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#c5cae9}article h1+p a:hover{color:#1a237e}article p{padding:0 2em;text-align:justify}article p:last-child{color:#303f9f;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#1a237e}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #3f51b5;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #e8eaf6;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #c5cae9
+}
+
+article h1+p a:hover {
+ color: #1a237e
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #303f9f;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #1a237e
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-light-blue.css b/themes/material-light-blue.css
index 7ebef4f0..e544e52d 100644
--- a/themes/material-light-blue.css
+++ b/themes/material-light-blue.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#03a9f4;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e1f5fe;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b3e5fc}article h1+p a:hover{color:#01579b}article p{padding:0 2em;text-align:justify}article p:last-child{color:#0288d1;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#01579b}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #03a9f4;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #e1f5fe;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #b3e5fc
+}
+
+article h1+p a:hover {
+ color: #01579b
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #0288d1;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #01579b
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-light-green.css b/themes/material-light-green.css
index dddd455c..be930247 100644
--- a/themes/material-light-green.css
+++ b/themes/material-light-green.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#8bc34a;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f1f8e9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#dcedc8}article h1+p a:hover{color:#33691e}article p{padding:0 2em;text-align:justify}article p:last-child{color:#689f38;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#33691e}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #8bc34a;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #f1f8e9;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #dcedc8
+}
+
+article h1+p a:hover {
+ color: #33691e
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #689f38;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #33691e
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-lime.css b/themes/material-lime.css
index e0febd50..bf9a0f5a 100644
--- a/themes/material-lime.css
+++ b/themes/material-lime.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#cddc39;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f9fbe7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f0f4c3}article h1+p a:hover{color:#827717}article p{padding:0 2em;text-align:justify}article p:last-child{color:#afb42b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#827717}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #cddc39;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #f9fbe7;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #f0f4c3
+}
+
+article h1+p a:hover {
+ color: #827717
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #afb42b;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #827717
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-orange.css b/themes/material-orange.css
index 7eca46ac..dc7cff08 100644
--- a/themes/material-orange.css
+++ b/themes/material-orange.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ff9800;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fff3e0;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffe0b2}article h1+p a:hover{color:#e65100}article p{padding:0 2em;text-align:justify}article p:last-child{color:#f57c00;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#e65100}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #ff9800;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #fff3e0;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #ffe0b2
+}
+
+article h1+p a:hover {
+ color: #e65100
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #f57c00;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #e65100
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-pink.css b/themes/material-pink.css
index 3597ef3c..1040916c 100644
--- a/themes/material-pink.css
+++ b/themes/material-pink.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#e91e63;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fce4ec;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f8bbd0}article h1+p a:hover{color:#880e4f}article p{padding:0 2em;text-align:justify}article p:last-child{color:#c2185b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#880e4f}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #e91e63;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #fce4ec;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #f8bbd0
+}
+
+article h1+p a:hover {
+ color: #880e4f
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #c2185b;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #880e4f
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-purple.css b/themes/material-purple.css
index bfdc7f69..7dd4df53 100644
--- a/themes/material-purple.css
+++ b/themes/material-purple.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#9c27b0;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f3e5f5;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#e1bee7}article h1+p a:hover{color:#4a148c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#7b1fa2;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#4a148c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #9c27b0;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #f3e5f5;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #e1bee7
+}
+
+article h1+p a:hover {
+ color: #4a148c
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #7b1fa2;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #4a148c
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-red.css b/themes/material-red.css
index f6fefdd6..9cdd1345 100644
--- a/themes/material-red.css
+++ b/themes/material-red.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#f44336;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#ffebee;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffcdd2}article h1+p a:hover{color:#b71c1c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#d32f2f;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#b71c1c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #f44336;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #ffebee;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #ffcdd2
+}
+
+article h1+p a:hover {
+ color: #b71c1c
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #d32f2f;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #b71c1c
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-teal.css b/themes/material-teal.css
index 6013ddfe..d435f3e5 100644
--- a/themes/material-teal.css
+++ b/themes/material-teal.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#009688;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e0f2f1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b2dfdb}article h1+p a:hover{color:#004d40}article p{padding:0 2em;text-align:justify}article p:last-child{color:#00796b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#004d40}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #009688;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #e0f2f1;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #b2dfdb
+}
+
+article h1+p a:hover {
+ color: #004d40
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #00796b;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #004d40
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material-yellow.css b/themes/material-yellow.css
index fd2dc56f..5ac59d8a 100644
--- a/themes/material-yellow.css
+++ b/themes/material-yellow.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ffeb3b;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fffde7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#fff9c4}article h1+p a:hover{color:#f57f17}article p{padding:0 2em;text-align:justify}article p:last-child{color:#fbc02d;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#f57f17}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #ffeb3b;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #fffde7;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #fff9c4
+}
+
+article h1+p a:hover {
+ color: #f57f17
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #fbc02d;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #f57f17
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/material.css b/themes/material.css
index 53653c08..74bdabd9 100644
--- a/themes/material.css
+++ b/themes/material.css
@@ -1 +1,150 @@
-/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#607d8b;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#eceff1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#cfd8dc}article h1+p a:hover{color:#263238}article p{padding:0 2em;text-align:justify}article p:last-child{color:#455a64;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#263238}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}}
\ No newline at end of file
+/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/
+@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);
+
+body {
+ font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding: .4em;
+ font-size: 1.1em;
+ background: #eee;
+ color: #5c5c5c
+}
+
+a:link, a:visited {
+ text-decoration: none
+}
+
+article {
+ background: #fff;
+ border-radius: 2px;
+ display: block;
+ margin: 1em;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out;
+ position: relative;
+ max-width: 800px;
+ margin: 10px auto 0
+}
+
+article:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23)
+}
+
+article h1 {
+ color: #fff;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ height: 4.5em;
+ width: 100%;
+ margin: 0 auto;
+ padding-top: 3.5em;
+ padding-bottom: .7em;
+ box-sizing: border-box;
+ font-size: 2em;
+ font-weight: 300
+}
+
+article h1, article h1+p {
+ background: #607d8b;
+ font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif;
+ padding-left: 6%
+}
+
+article h1+p {
+ color: #eceff1;
+ margin: 0;
+ text-align: left;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2);
+ font-size: 1em;
+ padding-top: .6em;
+ min-height: 3.6em;
+ font-weight: 400;
+ margin-top: 0
+}
+
+article h1+p a:link, article h1+p a:visited {
+ color: #cfd8dc
+}
+
+article h1+p a:hover {
+ color: #263238
+}
+
+article p {
+ padding: 0 2em;
+ text-align: justify
+}
+
+article p:last-child {
+ color: #455a64;
+ padding-bottom: 1.8em;
+ font-size: .9em
+}
+
+footer {
+ margin: 0 auto;
+ font-size: .8em;
+ text-align: center
+}
+
+footer a:link, footer a:visited {
+ color: #5c5c5c
+}
+
+footer a:hover {
+ color: #263238
+}
+
+#gravatar {
+ display: block;
+ float: right;
+ border-radius: 100%;
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
+ -webkit-transition: box-shadow .2s ease-in-out;
+ transition: box-shadow .2s ease-in-out
+}
+
+#gravatar:hover {
+ box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16)
+}
+
+@media (min-width:750px) {
+ #gravatar {
+ position: absolute;
+ top: 10.8em;
+ right: 3em
+ }
+
+ #gravatar+h1+p+p {
+ padding-top: 2em
+ }
+
+ h1+p {
+ padding-right: 6em
+ }
+
+ h1+p+p {
+ padding-top: .8em
+ }
+}
+
+@media (max-width:750px) {
+ #gravatar {
+ position: fixed;
+ bottom: 1em;
+ right: 1em
+ }
+
+ article h1+p {
+ font-size: .8em;
+ padding-bottom: 1em
+ }
+
+ article h1+p+p {
+ padding-top: .8em
+ }
+
+ footer {
+ padding-bottom: 4em
+ }
+}
diff --git a/themes/mitserrat.css b/themes/mitserrat.css
index a9cf1ff0..12f5c172 100644
--- a/themes/mitserrat.css
+++ b/themes/mitserrat.css
@@ -10,13 +10,64 @@ github: https://github.com/WouterJanson
description: A simple theme based on the Montserrat font
-----------------------------------------------------------------------------*/
-
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
-html{padding:0;margin:0;}
-body{background-color:#F9F9F9;}
-h1{color:#B93A32;font-family:Montserrat;font-size:72px;font-weight:600;line-height:72px;letter-spacing:-4px;margin-bottom:48px;text-transform:uppercase;text-align:center;}
-p{color:#3E4147;font-family:Montserrat;font-size:22px;font-weight:500;line-height:32px;margin-bottom:48px;margin-left:auto;margin-right:auto;max-width:80%;}
-a{color:#3E4147;border-bottom:3px solid #B93A32;font-weight:700;text-decoration:none;}
-a:hover{color:#B93A32;}
-p:first-of-type,footer{text-align:center;}
-#gravatar{display:block;margin-left:auto;margin-right:auto;height:80px;width:80px;margin-top:72px;border-radius:40px;-webkit-border-radius:40px;-moz-border-radius:40px;}
+
+html {
+ padding: 0;
+ margin: 0;
+}
+
+body {
+ background-color: #F9F9F9;
+}
+
+h1 {
+ color: #B93A32;
+ font-family: Montserrat;
+ font-size: 72px;
+ font-weight: 600;
+ line-height: 72px;
+ letter-spacing: -4px;
+ margin-bottom: 48px;
+ text-transform: uppercase;
+ text-align: center;
+}
+
+p {
+ color: #3E4147;
+ font-family: Montserrat;
+ font-size: 22px;
+ font-weight: 500;
+ line-height: 32px;
+ margin-bottom: 48px;
+ margin-left: auto;
+ margin-right: auto;
+ max-width: 80%;
+}
+
+a {
+ color: #3E4147;
+ border-bottom: 3px solid #B93A32;
+ font-weight: 700;
+ text-decoration: none;
+}
+
+a:hover {
+ color: #B93A32;
+}
+
+p:first-of-type, footer {
+ text-align: center;
+}
+
+#gravatar {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ height: 80px;
+ width: 80px;
+ margin-top: 72px;
+ border-radius: 40px;
+ -webkit-border-radius: 40px;
+ -moz-border-radius: 40px;
+}
diff --git a/themes/open-sans.css b/themes/open-sans.css
index 39e0a816..23109802 100644
--- a/themes/open-sans.css
+++ b/themes/open-sans.css
@@ -1 +1,74 @@
-@font-face{font-family:'Open Sans Bold';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff')}html{background:#f2f2f8}body{margin:0;padding:100px;font-family:'Open Sans',sans-serif;font-size:1.2em;line-height:1.6}::selection{background:#ccc}::-moz-selection{background:#ccc}h1{text-align:center;font:36px 'Open Sans Bold'}p{margin:25px 0 0}p:first-of-type{text-align:center;margin:0 0 50px}a{color:#0a0a0b;text-decoration:none;border-bottom:3px solid rgba(10,10,11,1);-webkit-transition:.15s ease;-moz-transition:.15s ease;-ms-transition:.15s ease;-o-transition:.15s ease;transition:.15s ease}a:focus,a:hover{opacity:.5}article,footer{display:block;margin:0 auto!important;padding:25px;max-width:900px;width:100%}footer{text-align:center;font:75% 'Open Sans Bold'}#gravatar{display:block!important;border-radius:100%;margin:0 auto}
+@font-face {
+ font-family: 'Open Sans Bold';
+ font-style: normal;
+ font-weight: 700;
+ src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff')
+}
+
+html {
+ background: #f2f2f8
+}
+
+body {
+ margin: 0;
+ padding: 100px;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 1.2em;
+ line-height: 1.6
+}
+
+::selection {
+ background: #ccc
+}
+
+::-moz-selection {
+ background: #ccc
+}
+
+h1 {
+ text-align: center;
+ font: 36px 'Open Sans Bold'
+}
+
+p {
+ margin: 25px 0 0
+}
+
+p:first-of-type {
+ text-align: center;
+ margin: 0 0 50px
+}
+
+a {
+ color: #0a0a0b;
+ text-decoration: none;
+ border-bottom: 3px solid rgba(10, 10, 11, 1);
+ -webkit-transition: .15s ease;
+ -moz-transition: .15s ease;
+ -ms-transition: .15s ease;
+ -o-transition: .15s ease;
+ transition: .15s ease
+}
+
+a:focus, a:hover {
+ opacity: .5
+}
+
+article, footer {
+ display: block;
+ margin: 0 auto !important;
+ padding: 25px;
+ max-width: 900px;
+ width: 100%
+}
+
+footer {
+ text-align: center;
+ font: 75% 'Open Sans Bold'
+}
+
+#gravatar {
+ display: block !important;
+ border-radius: 100%;
+ margin: 0 auto
+}
diff --git a/themes/orange.css b/themes/orange.css
index 525eeddd..a72e04fc 100644
--- a/themes/orange.css
+++ b/themes/orange.css
@@ -1,14 +1,91 @@
@import url(https://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Caption:700);
-html,body{background:#663B14;font:13pt "PT Sans",sans-serif;text-align:center}
-a:link,a:visited{color:#234234;text-decoration:none}
-a:hover,a:active{color:#432321;text-decoration:underline}
-article{background:#CC9900;text-align:left;width:85%;margin:80px auto;border-radius:10px;-moz-border-radius:10px;box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7);-webkit-box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7)}
-article h1{background:#CC6600;text-align:center;font:bold 35pt "PT Sans Caption","PT Sans",sans-serif;margin:0;padding:19px;border-radius:10px;-moz-border-radius:10px;box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3);-webkit-box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3)}
-article p{margin:0;padding:10px 15px}
-footer{position:fixed;bottom:0;left:0;width:100%;border-top:1px solid #7A7A00;background:#333300;user-select:none;-moz-user-select:none;-webkit-user-select:none}
-footer p,footer a{display:block;margin:0;text-shadow:0 0 10px #ccc;font-size:11.5pt}
-footer a:link,footer a:visited{color:#aaa}
-footer a:hover,footer a:active{color:#eee}
-::selection{background:#663300;color:white}
-::-moz-selection{background:#663300;color:white}
-#gravatar { position: relative; float: right; top: 0.5em; z-index: 1; right: 0.7em; border-radius: 10px; }
+
+html, body {
+ background: #663B14;
+ font: 13pt "PT Sans", sans-serif;
+ text-align: center
+}
+
+a:link, a:visited {
+ color: #234234;
+ text-decoration: none
+}
+
+a:hover, a:active {
+ color: #432321;
+ text-decoration: underline
+}
+
+article {
+ background: #CC9900;
+ text-align: left;
+ width: 85%;
+ margin: 80px auto;
+ border-radius: 10px;
+ -moz-border-radius: 10px;
+ box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7);
+ -webkit-box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7)
+}
+
+article h1 {
+ background: #CC6600;
+ text-align: center;
+ font: bold 35pt "PT Sans Caption", "PT Sans", sans-serif;
+ margin: 0;
+ padding: 19px;
+ border-radius: 10px;
+ -moz-border-radius: 10px;
+ box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3);
+ -webkit-box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3)
+}
+
+article p {
+ margin: 0;
+ padding: 10px 15px
+}
+
+footer {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ border-top: 1px solid #7A7A00;
+ background: #333300;
+ user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none
+}
+
+footer p, footer a {
+ display: block;
+ margin: 0;
+ text-shadow: 0 0 10px #ccc;
+ font-size: 11.5pt
+}
+
+footer a:link, footer a:visited {
+ color: #aaa
+}
+
+footer a:hover, footer a:active {
+ color: #eee
+}
+
+::selection {
+ background: #663300;
+ color: white
+}
+
+::-moz-selection {
+ background: #663300;
+ color: white
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ top: 0.5em;
+ z-index: 1;
+ right: 0.7em;
+ border-radius: 10px;
+}
diff --git a/themes/page_gradient_linear.svg b/themes/page_gradient_linear.svg
index 8e84cbf0..f09c4a87 100644
--- a/themes/page_gradient_linear.svg
+++ b/themes/page_gradient_linear.svg
@@ -1,9 +1,8 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/themes/page_gradient_radial.svg b/themes/page_gradient_radial.svg
index 5a18f6b9..e6c067a4 100644
--- a/themes/page_gradient_radial.svg
+++ b/themes/page_gradient_radial.svg
@@ -1,9 +1,8 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/themes/plaintext.css b/themes/plaintext.css
index 8d25f115..adef5b43 100644
--- a/themes/plaintext.css
+++ b/themes/plaintext.css
@@ -1,7 +1,9 @@
@import url(https://fonts.googleapis.com/css?family=Inconsolata);
+
body {
- max-width: 625px;
+ max-width: 625px;
}
+
body, h1, h2, h3, h4, h5, h6 {
- font: normal 15px Inconsolata, Consolas, monospace;
+ font: normal 15px Inconsolata, Consolas, monospace;
}
diff --git a/themes/rokkitt.css b/themes/rokkitt.css
index f51d5b20..f86def54 100644
--- a/themes/rokkitt.css
+++ b/themes/rokkitt.css
@@ -1,70 +1,79 @@
@import url(https://fonts.googleapis.com/css?family=Rokkitt:400,700);
body {
- margin: 0 auto;
- font: normal x-large/1.3 Rokkitt, Helvetica, Arial;
- line-height: 1.2em;
- color: #666;
- text-align: justify;
+ margin: 0 auto;
+ font: normal x-large/1.3 Rokkitt, Helvetica, Arial;
+ line-height: 1.2em;
+ color: #666;
+ text-align: justify;
}
article, footer {
- display: block;
- min-width: 360px;
- max-width: 900px;
- width: 80%;
+ display: block;
+ min-width: 360px;
+ max-width: 900px;
+ width: 80%;
}
article {
- margin: 0 auto 0 auto;
- border: 1px solid ;
- border-color: #fff #fff #fff #fff;
- padding: 2em; background: #fff;
+ margin: 0 auto 0 auto;
+ border: 1px solid;
+ border-color: #fff #fff #fff #fff;
+ padding: 2em;
+ background: #fff;
}
h1 {
- margin: 0;
+ margin: 0;
}
article p:first-of-type {
- margin-top: 1.6em;
+ margin-top: 1.6em;
}
article p:last-child {
- margin-bottom: 0;
+ margin-bottom: 0;
}
footer {
- margin: 0em auto 2em auto;
- text-align: center;
+ margin: 0em auto 2em auto;
+ text-align: center;
}
footer a {
- color: #abc8e2;
- text-shadow: 0 1px 1px #fff;
- text-decoration:none;
- font-size:.8em;
- padding: 1em;
+ color: #abc8e2;
+ text-shadow: 0 1px 1px #fff;
+ text-decoration: none;
+ font-size: .8em;
+ padding: 1em;
}
h1 {
- font-weight:normal;
- line-height: 36px;
- font-size: 2em;
- text-align: center
+ font-weight: normal;
+ line-height: 36px;
+ font-size: 2em;
+ text-align: center
}
a {
- color: #abc8e2;
- text-decoration:none;
+ color: #abc8e2;
+ text-decoration: none;
}
#gravatar {
- position: relative;
- float: right;
- margin-bottom: 1em;
- margin-left: 1em;
- border: 1px solid #ddd;
+ position: relative;
+ float: right;
+ margin-bottom: 1em;
+ margin-left: 1em;
+ border: 1px solid #ddd;
}
-@media all and ( max-width: 500px) { article {padding:1em;} body {font-size:1em;} }
+@media all and (max-width: 500px) {
+ article {
+ padding: 1em;
+ }
+
+ body {
+ font-size: 1em;
+ }
+}
diff --git a/themes/silver-style.css b/themes/silver-style.css
index dec1f123..bade0f5a 100644
--- a/themes/silver-style.css
+++ b/themes/silver-style.css
@@ -6,32 +6,81 @@
**https://in.linkedin.com/in/devdipesh/
*/
body {
- margin:0; padding: 50px;
- font: normal 14px/20px "DroidSansRegular",Arial,Helvetica,sans-serif;
- color: #444;
- background: #FAFAFA;
- background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA;
- background-size: 1600px 600px, 100% 500px,auto;
+ margin: 0;
+ padding: 50px;
+ font: normal 14px/20px "DroidSansRegular", Arial, Helvetica, sans-serif;
+ color: #444;
+ background: #FAFAFA;
+ background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA;
+ background-size: 1600px 600px, 100% 500px, auto;
}
article {
- border-right: 1.5px solid #9ab8ed; padding: 17px;
- border-radius: 1%;
- -webkit-box-shadow: 3px 0px 20px -2px #7ba5e4;
- -moz-box-shadow: 3px 0px 20px -2px #7ba5e4;
- box-shadow: 3px 0px 20px -2px #7ba5e4;
-
-background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%);
+ border-right: 1.5px solid #9ab8ed;
+ padding: 17px;
+ border-radius: 1%;
+ -webkit-box-shadow: 3px 0px 20px -2px #7ba5e4;
+ -moz-box-shadow: 3px 0px 20px -2px #7ba5e4;
+ box-shadow: 3px 0px 20px -2px #7ba5e4;
+ background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%);
}
-article, footer { display:block; max-width:720px; margin:0 auto; }
- article { padding:28px;}
-footer { padding:0 28px; text-align:center; }
- h1 { margin:0; font-size: 24px; line-height: 32px;color:#008CCC; text-transform: uppercase;}
-a, a:visited { color:#577446; padding:4px; text-decoration:none; }
-a:active, a:hover { color:#5dd912; }
-a img { position: absolute; top: 0; right: 0; border: 0; }
-:-moz-any-link:focus {background:#bc4a46;}
-::selection {background:#bc4a46;}
-::-moz-selection {background:#bc4a46;}
-#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; }
\ No newline at end of file
+article, footer {
+ display: block;
+ max-width: 720px;
+ margin: 0 auto;
+}
+
+article {
+ padding: 28px;
+}
+
+footer {
+ padding: 0 28px;
+ text-align: center;
+}
+
+h1 {
+ margin: 0;
+ font-size: 24px;
+ line-height: 32px;
+ color: #008CCC;
+ text-transform: uppercase;
+}
+
+a, a:visited {
+ color: #577446;
+ padding: 4px;
+ text-decoration: none;
+}
+
+a:active, a:hover {
+ color: #5dd912;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ border: 0;
+}
+
+:-moz-any-link:focus {
+ background: #bc4a46;
+}
+
+::selection {
+ background: #bc4a46;
+}
+
+::-moz-selection {
+ background: #bc4a46;
+}
+
+#gravatar {
+ position: relative;
+ float: right;
+ margin-bottom: 1em;
+ margin-left: 1em;
+ border: 1px solid #ddd;
+}
diff --git a/themes/solarized.css b/themes/solarized.css
index 8990fb35..95208f5b 100644
--- a/themes/solarized.css
+++ b/themes/solarized.css
@@ -1,3 +1,93 @@
/*Solarized theme by Ethan Schoonover*/
/*Part of source code reused from the Open Sans Theme */
-@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700);html{padding:0;font-size:1em;background-color:#eee8d5}body{font-family:'Source Sans Pro',sans-serif;font-size:1.5em;font-weight:300;text-align:center;margin:0;background:none repeat scroll 0 0 #eee8d5}article,footer{text-align:center;margin:auto;max-width:100%}article{margin-top:0;padding:1.75em;color:#dc322f;text-align:center;position:relative;background:none repeat scroll 0 0 #002b36}article p{text-align:left;color:#93a1a1}article p:first-of-type{text-align:center;color:#b58900}article p:last-of-type{color:#268bd2}#gravatar{width:50px;border:5px solid #FFF;border-radius:15px;display:block;margin:0 auto}h1{font-size:2em;font-weight:700;text-transform:uppercase;display:inline-block;padding-bottom:12px;border-bottom:2px dashed #dc322f;margin:0}a{font-family:'Source Sans Pro',sans-serif;font-size:1em;font-weight:700;color:#859900;text-decoration:none;word-wrap:break-word}a:active,a:focus,a:hover{color:#d33682}@media screen and (min-width:960px){#gravatar{display: none;position:absolute;top:2em;left:2em}h1{font-size:2.5em}}sour
+@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700);
+
+html {
+ padding: 0;
+ font-size: 1em;
+ background-color: #eee8d5
+}
+
+body {
+ font-family: 'Source Sans Pro', sans-serif;
+ font-size: 1.5em;
+ font-weight: 300;
+ text-align: center;
+ margin: 0;
+ background: none repeat scroll 0 0 #eee8d5
+}
+
+article, footer {
+ text-align: center;
+ margin: auto;
+ max-width: 100%
+}
+
+article {
+ margin-top: 0;
+ padding: 1.75em;
+ color: #dc322f;
+ text-align: center;
+ position: relative;
+ background: none repeat scroll 0 0 #002b36
+}
+
+article p {
+ text-align: left;
+ color: #93a1a1
+}
+
+article p:first-of-type {
+ text-align: center;
+ color: #b58900
+}
+
+article p:last-of-type {
+ color: #268bd2
+}
+
+#gravatar {
+ width: 50px;
+ border: 5px solid #FFF;
+ border-radius: 15px;
+ display: block;
+ margin: 0 auto
+}
+
+h1 {
+ font-size: 2em;
+ font-weight: 700;
+ text-transform: uppercase;
+ display: inline-block;
+ padding-bottom: 12px;
+ border-bottom: 2px dashed #dc322f;
+ margin: 0
+}
+
+a {
+ font-family: 'Source Sans Pro', sans-serif;
+ font-size: 1em;
+ font-weight: 700;
+ color: #859900;
+ text-decoration: none;
+ word-wrap: break-word
+}
+
+a:active, a:focus, a:hover {
+ color: #d33682
+}
+
+@media screen and (min-width:960px) {
+ #gravatar {
+ display: none;
+ position: absolute;
+ top: 2em;
+ left: 2em
+ }
+
+ h1 {
+ font-size: 2.5em
+ }
+}
+
+sour
diff --git a/themes/willpower.css b/themes/willpower.css
index 04cebcc5..225a622f 100644
--- a/themes/willpower.css
+++ b/themes/willpower.css
@@ -1,14 +1,72 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);
-* { margin: 0; padding: 0; box-sizing: boder-box; }
-img { border: 0; }
-body { background: #fff; font: 16px/28px "Roboto", sans-serif; color: #888; }
-article, footer { display: block; max-width: 720px; margin: 0 auto; }
-article { padding: 20px; }
-footer { padding: 0 20px; text-align: center; font-size: 12px; }
-h1 { font-size: 24px; line-height: 32px; color: #399; }
-a, a:visited { color: #369; padding:4px; text-decoration:none; }
-a:active, a:hover { text-decoration: underline;}
-a img { position: absolute; top: 0; right: 0; }
-article p { margin: 10px 0; }
-article p:last-child {border-left: 2px solid #399; padding-left: 10px; }
-#gravatar { float:right; margin:1em; width:80px; height:80px; border-radius:40px; }
\ No newline at end of file
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: boder-box;
+}
+
+img {
+ border: 0;
+}
+
+body {
+ background: #fff;
+ font: 16px/28px "Roboto", sans-serif;
+ color: #888;
+}
+
+article, footer {
+ display: block;
+ max-width: 720px;
+ margin: 0 auto;
+}
+
+article {
+ padding: 20px;
+}
+
+footer {
+ padding: 0 20px;
+ text-align: center;
+ font-size: 12px;
+}
+
+h1 {
+ font-size: 24px;
+ line-height: 32px;
+ color: #399;
+}
+
+a, a:visited {
+ color: #369;
+ padding: 4px;
+ text-decoration: none;
+}
+
+a:active, a:hover {
+ text-decoration: underline;
+}
+
+a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+
+article p {
+ margin: 10px 0;
+}
+
+article p:last-child {
+ border-left: 2px solid #399;
+ padding-left: 10px;
+}
+
+#gravatar {
+ float: right;
+ margin: 1em;
+ width: 80px;
+ height: 80px;
+ border-radius: 40px;
+}
diff --git a/themes/xtansia.css b/themes/xtansia.css
index 8790fe1f..bd676fb0 100644
--- a/themes/xtansia.css
+++ b/themes/xtansia.css
@@ -1,69 +1,69 @@
@import url(https://fonts.googleapis.com/css?family=Rambla:400,400italic);
body {
- font-family: Rambla, serif;
- padding: 32px;
- font-size: 1.1em;
- background: white;
- color: gray;
+ font-family: Rambla, serif;
+ padding: 32px;
+ font-size: 1.1em;
+ background: white;
+ color: gray;
}
article {
- max-width: 800px;
- text-align: justify;
- margin: 10px auto 0;
+ max-width: 800px;
+ text-align: justify;
+ margin: 10px auto 0;
}
article p:nth-of-type(1) {
- text-align: center;
- font-style: italic;
- font-size: 1.15em;
- border-top: 2px dashed DeepSkyBlue;
- padding-top: 1.0em;
+ text-align: center;
+ font-style: italic;
+ font-size: 1.15em;
+ border-top: 2px dashed DeepSkyBlue;
+ padding-top: 1.0em;
}
article p:last-child {
- border-bottom: 2px dashed DeepSkyBlue;
- padding: 0.0em 2.0em 1.0em 2.0em;
- font-size: 0.9em;
- font-style: italic;
+ border-bottom: 2px dashed DeepSkyBlue;
+ padding: 0.0em 2.0em 1.0em 2.0em;
+ font-size: 0.9em;
+ font-style: italic;
}
article h1 {
- max-width: 550px;
- margin: 0 auto;
- border-bottom: groove LightGray;
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- text-align: center;
- font-variant: small-caps;
- font-size: 1.6em;
- font-weight: 450;
- letter-spacing: 0.25em;
+ max-width: 550px;
+ margin: 0 auto;
+ border-bottom: groove LightGray;
+ padding-top: 0.5em;
+ padding-bottom: 0.5em;
+ text-align: center;
+ font-variant: small-caps;
+ font-size: 1.6em;
+ font-weight: 450;
+ letter-spacing: 0.25em;
}
footer {
- max-width: 550px;
- border-top: groove LightGray;
- margin: 0 auto;
- font-size: 0.8em;
- font-style: italic;
- text-align: center;
+ max-width: 550px;
+ border-top: groove LightGray;
+ margin: 0 auto;
+ font-size: 0.8em;
+ font-style: italic;
+ text-align: center;
}
a:link, a:visited {
- text-decoration: none;
- color: SlateGray;
- border-bottom: 1px solid;
+ text-decoration: none;
+ color: SlateGray;
+ border-bottom: 1px solid;
}
a:hover {
- color: DeepSkyBlue;
- border: none;
+ color: DeepSkyBlue;
+ border: none;
}
a:active {
- color: #007399;
+ color: #007399;
}
#gravatar {
@@ -71,4 +71,4 @@ a:active {
float: right;
border: 2px solid gray;
top: -1em;
-}
\ No newline at end of file
+}
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 00000000..6e31d07d
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["es2017"],
+ "moduleResolution": "node",
+ "esModuleInterop": true,
+ "declaration": true,
+ "outDir": "./dist",
+ "strict": true,
+ "sourceMap": true
+ }
+}
diff --git a/yarn.lock b/yarn.lock
index 40b83784..1b1df7fd 100644
Binary files a/yarn.lock and b/yarn.lock differ