From ce3185e8d31051cf90e182c58ac3f68190bb6c6f Mon Sep 17 00:00:00 2001 From: Jim Phillips Date: Wed, 6 Apr 2016 14:45:10 -0400 Subject: [PATCH] update fuel docs theme Change-Id: Ibfbf131035c346c2c52e20fc1ab880bebf9ac925 --- _templates/openstackdocs/css.html | 20 + _templates/openstackdocs/footer.html | 56 + _templates/openstackdocs/header.html | 107 + _templates/openstackdocs/layout.html | 82 + _templates/openstackdocs/license_cc.html | 9 + _templates/openstackdocs/localtoc.html | 4 + _templates/openstackdocs/navigation.html | 29 + _templates/openstackdocs/script_footer.html | 71 + _templates/openstackdocs/script_search.html | 28 + _templates/openstackdocs/sidebartoc.html | 12 + .../static/css/bootstrap.min.css | 5 + .../openstackdocs/static/css/combined.css | 4674 +++++++++++++++++ .../openstackdocs/static/css/native.css | 69 + .../openstackdocs/static/css/styles.css | 1308 +++++ _templates/openstackdocs/static/favicon.ico | Bin 0 -> 1150 bytes .../static/images/docs/license.png | Bin 0 -> 4739 bytes .../static/images/docs/superuser1.png | Bin 0 -> 18616 bytes .../static/images/docs/superuser2.png | Bin 0 -> 14372 bytes .../static/images/docs/superuser3.png | Bin 0 -> 12403 bytes .../static/images/docs/superuser4.png | Bin 0 -> 11727 bytes .../static/images/footer-facebook-hover.png | Bin 0 -> 1099 bytes .../static/images/footer-facebook.png | Bin 0 -> 1097 bytes .../static/images/footer-linkedin-hover.png | Bin 0 -> 1119 bytes .../static/images/footer-linkedin.png | Bin 0 -> 1144 bytes .../static/images/footer-twitter-hover.png | Bin 0 -> 1277 bytes .../static/images/footer-twitter.png | Bin 0 -> 1280 bytes .../static/images/footer-youtube-hover.png | Bin 0 -> 1045 bytes .../static/images/footer-youtube.png | Bin 0 -> 1209 bytes .../openstackdocs/static/images/loading.gif | Bin 0 -> 729 bytes .../static/images/openstack-logo-full.png | Bin 0 -> 3180 bytes .../static/images/openstack-logo-full.svg | 285 + .../static/images/openstack-logo-vert.png | Bin 0 -> 2539 bytes .../static/images/openstack-logo-vert.svg | 286 + .../static/images/search-icon.png | Bin 0 -> 278 bytes .../openstackdocs/static/js/bootstrap.min.js | 6 + .../static/js/doc-characters.json | 20 + _templates/openstackdocs/static/js/docs.js | 144 + .../openstackdocs/static/js/jquery-1.11.3.js | 5 + .../openstackdocs/static/js/navigation.js | 67 + .../openstackdocs/static/js/webui-popover.js | 434 ++ _templates/openstackdocs/theme.conf | 9 + _templates/openstackdocs/titlerow.html | 14 + conf.py | 6 +- 43 files changed, 7747 insertions(+), 3 deletions(-) create mode 100644 _templates/openstackdocs/css.html create mode 100644 _templates/openstackdocs/footer.html create mode 100644 _templates/openstackdocs/header.html create mode 100644 _templates/openstackdocs/layout.html create mode 100644 _templates/openstackdocs/license_cc.html create mode 100644 _templates/openstackdocs/localtoc.html create mode 100644 _templates/openstackdocs/navigation.html create mode 100644 _templates/openstackdocs/script_footer.html create mode 100644 _templates/openstackdocs/script_search.html create mode 100644 _templates/openstackdocs/sidebartoc.html create mode 100644 _templates/openstackdocs/static/css/bootstrap.min.css create mode 100644 _templates/openstackdocs/static/css/combined.css create mode 100644 _templates/openstackdocs/static/css/native.css create mode 100644 _templates/openstackdocs/static/css/styles.css create mode 100644 _templates/openstackdocs/static/favicon.ico create mode 100644 _templates/openstackdocs/static/images/docs/license.png create mode 100644 _templates/openstackdocs/static/images/docs/superuser1.png create mode 100644 _templates/openstackdocs/static/images/docs/superuser2.png create mode 100644 _templates/openstackdocs/static/images/docs/superuser3.png create mode 100644 _templates/openstackdocs/static/images/docs/superuser4.png create mode 100644 _templates/openstackdocs/static/images/footer-facebook-hover.png create mode 100644 _templates/openstackdocs/static/images/footer-facebook.png create mode 100644 _templates/openstackdocs/static/images/footer-linkedin-hover.png create mode 100644 _templates/openstackdocs/static/images/footer-linkedin.png create mode 100644 _templates/openstackdocs/static/images/footer-twitter-hover.png create mode 100644 _templates/openstackdocs/static/images/footer-twitter.png create mode 100644 _templates/openstackdocs/static/images/footer-youtube-hover.png create mode 100644 _templates/openstackdocs/static/images/footer-youtube.png create mode 100644 _templates/openstackdocs/static/images/loading.gif create mode 100644 _templates/openstackdocs/static/images/openstack-logo-full.png create mode 100644 _templates/openstackdocs/static/images/openstack-logo-full.svg create mode 100644 _templates/openstackdocs/static/images/openstack-logo-vert.png create mode 100644 _templates/openstackdocs/static/images/openstack-logo-vert.svg create mode 100644 _templates/openstackdocs/static/images/search-icon.png create mode 100644 _templates/openstackdocs/static/js/bootstrap.min.js create mode 100644 _templates/openstackdocs/static/js/doc-characters.json create mode 100644 _templates/openstackdocs/static/js/docs.js create mode 100644 _templates/openstackdocs/static/js/jquery-1.11.3.js create mode 100644 _templates/openstackdocs/static/js/navigation.js create mode 100644 _templates/openstackdocs/static/js/webui-popover.js create mode 100644 _templates/openstackdocs/theme.conf create mode 100644 _templates/openstackdocs/titlerow.html diff --git a/_templates/openstackdocs/css.html b/_templates/openstackdocs/css.html new file mode 100644 index 000000000..60204a95f --- /dev/null +++ b/_templates/openstackdocs/css.html @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/_templates/openstackdocs/footer.html b/_templates/openstackdocs/footer.html new file mode 100644 index 000000000..9c35ce118 --- /dev/null +++ b/_templates/openstackdocs/footer.html @@ -0,0 +1,56 @@ + diff --git a/_templates/openstackdocs/header.html b/_templates/openstackdocs/header.html new file mode 100644 index 000000000..8071d1f07 --- /dev/null +++ b/_templates/openstackdocs/header.html @@ -0,0 +1,107 @@ + diff --git a/_templates/openstackdocs/layout.html b/_templates/openstackdocs/layout.html new file mode 100644 index 000000000..919315e46 --- /dev/null +++ b/_templates/openstackdocs/layout.html @@ -0,0 +1,82 @@ + + + + +{% block header %}{% endblock %} + OpenStack Docs: {{ title }} + + + +{{ metatags }} +{% include 'css.html' %} +{%- for cssfile in css_files %} + +{%- endfor %} + {# FAVICON #} +{% if favicon %} + +{% endif %} +{% if theme_analytics_tracking_code %} + + + +{% endif %} + + +{% include 'header.html' %} +
+
+
+{% include 'titlerow.html' %} + +
+
+
+{% include 'localtoc.html' %} +
+
+{% block body %}{% endblock %} +
+
+
+
+ {% if prev %} + + {% endif %} + {% if next %} + + {% endif %} + +
+ +
+
+{% include 'license_cc.html' %} +
+ +
+
+{% include 'sidebartoc.html' %} +
+
+{% include 'footer.html' %} +{% include 'script_footer.html' %} + + diff --git a/_templates/openstackdocs/license_cc.html b/_templates/openstackdocs/license_cc.html new file mode 100644 index 000000000..bdecb0158 --- /dev/null +++ b/_templates/openstackdocs/license_cc.html @@ -0,0 +1,9 @@ + + Creative Commons Attribution 3.0 License + +

+ Except where otherwise noted, this document is licensed under + Creative Commons + Attribution 3.0 License. See all + OpenStack Legal Documents. +

diff --git a/_templates/openstackdocs/localtoc.html b/_templates/openstackdocs/localtoc.html new file mode 100644 index 000000000..cccd5e366 --- /dev/null +++ b/_templates/openstackdocs/localtoc.html @@ -0,0 +1,4 @@ +{%- if display_toc %} +
Contents
+{{ toc }} +{%- endif %} diff --git a/_templates/openstackdocs/navigation.html b/_templates/openstackdocs/navigation.html new file mode 100644 index 000000000..8a78522b4 --- /dev/null +++ b/_templates/openstackdocs/navigation.html @@ -0,0 +1,29 @@ + diff --git a/_templates/openstackdocs/script_footer.html b/_templates/openstackdocs/script_footer.html new file mode 100644 index 000000000..70f640112 --- /dev/null +++ b/_templates/openstackdocs/script_footer.html @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/_templates/openstackdocs/script_search.html b/_templates/openstackdocs/script_search.html new file mode 100644 index 000000000..98c9e9e86 --- /dev/null +++ b/_templates/openstackdocs/script_search.html @@ -0,0 +1,28 @@ + + diff --git a/_templates/openstackdocs/sidebartoc.html b/_templates/openstackdocs/sidebartoc.html new file mode 100644 index 000000000..f37e70558 --- /dev/null +++ b/_templates/openstackdocs/sidebartoc.html @@ -0,0 +1,12 @@ +
+
+ +
+
+
+
+

{{ _('Contents') }}

+ {{ toctree(maxdepth=theme_globaltoc_depth|toint, collapse=False, includehidden=theme_globaltoc_includehidden|tobool) }} +
+
+
diff --git a/_templates/openstackdocs/static/css/bootstrap.min.css b/_templates/openstackdocs/static/css/bootstrap.min.css new file mode 100644 index 000000000..702d8ccab --- /dev/null +++ b/_templates/openstackdocs/static/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.2.0 (http://getbootstrap.com) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-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:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;width:100%;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;width:100% \9;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-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-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}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.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.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{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px;line-height:1.42857143 \0}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;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}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-horizontal .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .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{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;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;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.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:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{position:absolute;z-index:-1;filter:alpha(opacity=0);opacity:0}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn: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-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn: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{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-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;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@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;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .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}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.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:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.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{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#777}.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:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.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:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label: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:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.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[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{min-width:30px;color:#777;background-color:transparent;background-image:none;-webkit-box-shadow:none;box-shadow:none}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;background-color:#eee}.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:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.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:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate3d(0,-25%,0);-o-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.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;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%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-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{right:20%;left: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{display:table;content:" "}.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-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@-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}} \ No newline at end of file diff --git a/_templates/openstackdocs/static/css/combined.css b/_templates/openstackdocs/static/css/combined.css new file mode 100644 index 000000000..2d6deac3f --- /dev/null +++ b/_templates/openstackdocs/static/css/combined.css @@ -0,0 +1,4674 @@ +html { + overflow-y: scroll; } + +/* pad after a table. + * bug 1439918 */ +table { + margin-bottom: 10px; } + +table.docutils th { + padding: 2px; } + +table.docutils td { + padding: 2px; } + +table.docutils caption { + font-weight: bold; } + +hr { + height: 1px !important; } + +h3 { + margin-top: 10px; + margin-bottom: 10px; } + +a, a:visited { + color: #bc1518; + text-decoration: none; } + +a:hover { + text-decoration: underline; } + +ol.arabic ol { + list-style-type: lower-alpha; } + +ol.arabic ol ol { + list-style-type: upper-alpha; } + +/* @group Navigation */ +#navigation { + display: block; + background: url('../images/header-line.gif') repeat-x 0 bottom; + padding-bottom: 1px; } + +#navigation * { + padding: 0; + margin: 0; } + +#navigation ul { + display: block; + margin: 0 auto; } + +#navigation li { + display: block; + float: left; + margin-right: 20px; } + +#navigation li a { + display: block; + font-weight: normal; + text-decoration: none; + background-position: 50% 0; + padding: 20px 0 5px; + color: #353535; + font-size: 14px; } + +#navigation li a.current, #navigation li a.section { + border-bottom: 3px solid #cf2f19; + color: #cf2f19; } + +/* @group Auto-clearing */ +#navigation:after, #navigation ul:after, #header:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; } + +#navigation, #navigation ul, #header:after { + display: inline-block; } + +/* Hides from IE-mac \*/ +* html #navigation, * html #navigation ul { + height: 1%; } + +#navigation, #navigation ul, #header:after { + display: block; } + +/* End hide from IE-mac */ +/* @end */ +#logo a { + display: block; + margin-top: 8px; + text-indent: -1000em; + background: url('../images/open-stack-cloud-computing-logo-2.png') no-repeat left center; + height: 54px; + width: 177px; + margin-left: -10px; } + +#header { + margin-bottom: 0px; + margin-top: 20px; } + +/* @end */ +/* @group Tabs */ +.tabContentHidden { + display: none; } + +.tabTops { + border: 1px solid black; + border-bottom: none; } + +#subnav li { + list-style-type: none; + margin-bottom: 5px; + padding: 0; } + +#subnav ul { + padding-left: 0px; + margin-right: 0px; } + +#subnav ul.overviewNav li a { + display: block; + padding: 10px 20px 10px 42px; + text-decoration: none; + color: black; + background-color: #e9e9e9; + background-image: none; + text-align: right; + margin-right: 40px; } + +#subnav ul.overviewNav li a:hover { + background-color: #d6d6d6; + -webkit-transition: background-color 1s ease-out; } + +ul.subsectionNav li.current a { + background-color: #c4e0e9; + -webkit-transition: background-color 1s ease-out; } + +.subsectionNav a[href*="/essex/"] { + background-color: #E9E9E9 !important; } + +.subsectionNav a[href*="/start/"] { + background-color: #D5EFD4 !important; + margin-top: 30px; } + +.subsectionNav a[href*="/marketplace/training/"] { + margin-top: 30px; } + +.overviewNav li.active, .subsectionNav li.active { + background: url('../images/pointer-arrow.gif') no-repeat right center; } + +#subnav ul li { + text-align: right; } + +ul.subsectionNav li a { + display: block; + padding: 10px 20px 10px 42px; + text-decoration: none; + color: black; + background: #e2ecef none no-repeat 5px center; + margin-right: 40px; } + +ul.subsectionNav li a:hover { + background-color: #c4e0e9; + -webkit-transition: background-color 1s ease-out; } + +ul.tabs { + padding: 0 2px 0 0; + white-space: nowrap; + list-style-type: none; + display: block; + zoom: 1; + margin-right: 0px; + clear: both; + border-bottom: 1px solid #d8d8d8; + background-color: #ececec; } + +.tabSet { + margin: auto; + background-color: #f5f5f5; + -webkit-border-radius: 3px; + border: 1px solid #d8d8d8; + border-top: 1px solid #bcbcbc; } + +#home .tabSet { + margin-top: 45px; } + +.featureHeader { + margin-left: 20px; + margin-top: 20px; } + +.tabs li { + cursor: pointer; + display: inline; + margin-right: -3px; + padding: 0px; } + +.tabs li a { + margin: 0px; + display: inline-block; + text-align: left; + color: #41728d; + font-size: 13px; + font-family: 'PT Sans', serif; + padding: 6px 14px; + text-shadow: #fff 0px 1px 1px; + border-right: 1px solid #d8d8d8; + width: 160px; + text-align: center; } + +.tabs li a:hover { + background-color: #eee; + text-decoration: none; } + +.tabs li.active a { + cursor: default; + text-decoration: none; + position: relative; + color: black; + background-color: #f5f5f5; + border-bottom: 1px solid #f5f5f5; + margin-bottom: -1px; + border-top: 1px white solid; + font-weight: bold; } + +.tabs li#showcode a { + background: #6b90da; + padding-bottom: 6px; + font-weight: bold; + color: #fff; } + +/* @end */ +/* @group Buttons */ +a.button { + font-family: 'PT Sans', serif; + border: 1px solid #ccc; + padding: 3px 30px; + color: #525252; + text-decoration: none; + font-size: 14px; + line-height: 3em; + background: #ddd; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); + -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); + -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); + text-shadow: #fff 0px 1px 1px; + background: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#bebebe)); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#bebebe'); } + +a.button:hover { + color: black; + -webkit-transition: color 1s ease-out; } + +a.button:active { + background: #ababab; + box-shadow: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + border-color: #ababab; + border-top-color: #636363; + background: -webkit-gradient(linear, left top, left bottom, from(#bebebe), to(#dddddd)); + -webkit-transition: none; + padding: 4px 29px 2px 31px !important; } + +/* @end */ +/* @group Rounded Buttons */ +.roundedButton, input.action { + font-family: 'PT Sans', serif; + border: 1px solid #e2e2e2; + padding: 4px 15px; + color: black !important; + text-decoration: none !important; + font-size: 12.5px; + line-height: 3em; + background: #FFFFFF; + /* old browsers */ + /* firefox */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(50%, #F3F3F3), color-stop(100%, #EBEBEB)); + /* webkit */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EBEBEB',GradientType=0 ); + /* ie */ + box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); + -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); + text-shadow: #fff 0px 1px 1px; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-bottom-color: #a0a0a0; + border-right-color: #bababa; + border-left-color: #bababa; } + +.roundedButton:hover, input.action:hover { + color: black; + -webkit-transition: color 1s ease-out; + cursor: pointer; } + +a.roundedButton:active, input.action:active { + background: #ababab; + box-shadow: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + border-color: #ababab; + border-top-color: #636363; + background: -webkit-gradient(linear, left top, left bottom, from(#bebebe), to(#dddddd)); + -webkit-transition: none; + padding: 4px 15px; } + +input.action { + line-height: 1.2em !important; } + +/* @end */ +.subhead { + color: #cf2f19; + font-size: 16px; + border-bottom: 1px dotted; + padding-bottom: 5px; + border-color: #c5e2ea; + margin-bottom: 20px; } + +/* @group projects page */ +.projectsPage h1, .communityPage h1, #blog h1 { + color: #264d69; + font-size: 24px; } + +.projectsPage h2 { + color: #264d69; + font-size: 17px; } + +#subnav { + padding-top: 38px; } + +.note { + color: #33730a; + background: #e2f4dc url('../images/side-note-pointer.gif') no-repeat left center; } + +.note a { + color: #33730a; + text-decoration: underline; } + +/* BB: Removed because it looks ugly +.note p { + margin-left: 8px; + padding: 10px; + margin-bottom: 0px; + border-bottom: 1px solid #b5c8a8; } +*/ + +a#CitrixVideo { + display: block; + padding-top: 93px; + background: url('../images/citrix-video-thumbnail.jpg') no-repeat; + color: #aeaeae; + text-decoration: none; + margin-top: 3px; } + +h3.videoHeader { + color: #939393; + font-size: 14px; } + +a.downloadLink { + text-decoration: none; + color: white; + font-family: helvetica, arial; + font-weight: bold; + display: block; + width: 250px; + text-align: center; + position: relative; + padding: 3px; + margin-bottom: 5px; + margin-top: 5px; + /* BORDER RADIUS */ + border-radius: 5px; + background-color: #989996; + border: 2px solid white; } + +/* @end */ +#footer { + margin-top: 30px; } + +/* @group compute */ +.projectVitals { + border-top: 1px solid #c5e2ea; + padding-top: 10px; } + +.projectVitals h3 { + font-size: 16px; + color: #264d69; } + +#status { + padding: 12px; + color: #1d6006; + background-color: #e2f4dc; + border: 1px solid #b5c8a8; + margin-bottom: 10px; + height: 9em; } + +#status strong { + font-size: 120%; } + +#availability { + line-height: 1.4em; + padding: 12px; + color: #747474; + background-color: #f6f8f8; + border: 1px solid #d4d5d5; + margin-bottom: 10px; + height: 9em; } + +.projectVitals h4 { + font-size: 14px; + color: #797979; + margin-bottom: 4px; } + +#status p, #availability p { + margin: 0px; } + +#parallax { + background: #2f3134; + position: relative; + overflow: hidden; + width: 60em; + height: 300px; + margin: 1.5em 0; } + +/* @group FAQ */ +.faqs .span-5 { + font-size: 14px; + color: #707070; + font-weight: bold; } + +.faqs hr { + padding: 0px; } + +.faqs div { + margin-bottom: 20px; } + +/* @end */ +/* @end */ +/* @group community page */ +.communityBox { + height: 213px; + background: #f8f8f8 url('../images/community-box-headers.png') no-repeat 0 0; } + +#userResources { + background-position: -200px 0; } + +#devCenter { + background-position: -400px 0; } + +.communityBox p, .communityBox h2 { + margin: 15px; } + +.communityBox, .communityBox a, .communityBox a.visited { + color: #6b6b6b; } + +.communityBox a { + text-decoration: underline; } + +.communityBox h2 { + color: black; + font-size: 17px; + margin-top: 60px; } + +.participants h2, .communityResources h2 { + font-size: 16px; + color: #264d69; + margin-top: 30px; + padding-top: 10px; + border-top: 1px dotted #c5e2ea; } + +#designSummit h2 { + text-indent: -1000px; + height: 222px; + margin-top: -9px; + margin-bottom: 10px; + background: url('../images/openstack-design-summit-community.jpg') no-repeat 0 0; } + +#designSummit { + color: #6b6b6b; } + +#designSummit strong { + color: black; + font-weight: normal; } + +/* @end */ +/* @group blog */ +#blog h2 { + color: #5189a0; + font-size: 15px; + margin-bottom: 0px; } + +#blog h2 a { + background-color: #eaeaea; + text-align: center; + padding: 1px; + padding-left: 7px; + padding-right: 7px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + color: #757575; + font-size: 0.7em; + text-decoration: none; } + +div.byline { + border-bottom: 1px dotted #c5e2ea; + border-top: 1px dotted #c5e2ea; + margin-bottom: 10px; + padding: 2px 0; } + +div.byline p { + margin: 0px; } + +div.byline .postDate { + text-align: right; } + +div.byline p.name a, div.byline p.name a:visited { + color: #cf2f19; + text-decoration: none; } + +div.socialMedia { + background-color: #eef3f5; + margin-bottom: 20px; } + +div.socialMedia div { + padding: 10px; } + +div.socialMedia h4 { + margin-bottom: 2px; } + +div.socialMedia p { + margin-bottom: 0px; } + +div.socialMedia div.twitter { + border-bottom: 1px dotted #c5e2ea; } + +#blog h3 { + margin-bottom: 5px; + font-size: 12px; } + +/* @end */ +/* @group Brand */ +div.termsBox { + border: 1px solid #c6e2ea; + padding: 10px; + height: 300px; + overflow: scroll; + margin-bottom: 10px; } + +.termsBox h3, #openstack-trademark-policy h3 { + font-size: 100%; + font-weight: bold; } + +.termsBox a { + color: inherit; + text-decoration: underline; } + +/* @end */ +/* @group quotes */ +ul#quotes { + margin-left: 0px; + padding-left: 0px; + margin-top: 10px; } + +ul#quotes li { + list-style-type: none; } + +ul#quotes li p { + line-height: 1.4em; } + +ul#quotes p { + font-size: 16px; + font-family: 'PT Sans', serif; + margin-bottom: 0px; + color: black; + line-height: 1.2em; + padding: 10px; + padding-bottom: 0px; } + +ul#quotes p.name { + margin-top: 10px; + font-size: 14px; + text-transform: uppercase; + color: #9b9b9b; + text-indent: 0px; } + +ul#quotes p.name strong { + font-weight: normal; + color: #494949; } + +/* @end */ +.tooltip { + background: black; + background: rgba(0, 0, 0, 0.8); + padding: 1px 8px; + color: white; + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; } + +a.Datasheet { + padding-top: 110px; + display: block; + background: url('../images/openstack-product-pdf.jpg') no-repeat center top; + margin-left: 20px; + margin-top: 30px; } + +a.Datasheet:hover { + text-decoration: none; + color: #bc1518; } + +a#DemoVideo { + display: block; + padding-top: 103px; + margin-left: 18px; + background: url('../images/demo-video-thumbnail.jpg') no-repeat; + text-decoration: none; + margin-top: 50px; } + +/* @group Tables */ +.tabContent table { + margin: 20px; + width: 670px; } + +.tabContent table td { + border-bottom: 1px solid #d8d8d8; + vertical-align: top; + padding: 10px 10px 20px 0; } + +.tabContent table td p { + margin: 0px; } + +.tabContent table tr:last-child td { + border-bottom: none; } + +.tabContent table th { + font-family: 'PT Sans', serif; + font-style: normal; + font-weight: normal; + font-size: 18px; + letter-spacing: -0.076em; + line-height: 1em; + color: #264d69; + padding-left: 0px; } + +.tabContent table a:active, .tabContent table a:visited, .tabContent table a { + color: inherit; + text-decoration: underline; } + +p.fnote { + margin-left: 20px; } + +/* @end */ +h2.user-story-quote { + line-height: 1.5em; + color: grey !important; } + +.user-story-quote-author { + text-transform: uppercase; } + +ul.user-project-list { + margin: 0px; + padding: 0px; + overflow: hidden; + margin-bottom: 20px; } + +ul.user-project-list li { + display: block; + margin-right: 5px; + background-color: #e2f1f5; + border: 1px solid #89c6d6; + -webkit-border-radius: 3px; + padding: 2px 8px; + margin-bottom: 5px; + color: #1a4b6b; + font-size: 95%; + width: 170px; + float: left; } + +#footer ul { + margin: 10px 0px 20px; + padding: 0px; + list-style: none; } + +#footer a, #footer a:visited, #footer a:active { + color: black; } + +#footer h3 { + color: #de0000; + font: 130% 'PT Sans', serif; } + +#footer textarea { + width: 260px; + height: 60px; + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EBEBEB), color-stop(5%, #FFFFFF)); + /* webkit */ } + +#footer form { + margin-top: 8px; + margin-bottom: 20px; } + +.user-links li { + padding-left: 20px; + background: url('../images/link.png') no-repeat left center; + margin-left: -20px; + list-style: none; } + +.user-objectives { + background-color: #ecedec; + padding: 20px; + margin-bottom: 15px; } + +.user-objectives p { + margin-bottom: 0px; } + +.user-name { + padding-top: 10px; } + +.user-photo img { + border: 5px solid white; + -webkit-box-shadow: 3px 2px 2px rgba(0, 0, 0, 0.3); } + +.siteMessage { + -webkit-border-radius: 4px; + border: 1px solid; + margin-bottom: 10px; + margin-top: 20px; } + +.siteMessage p { + margin: 8px; } + +#InfoMessage { + color: black; + background-color: #DBEAEE; + border-color: #B5D8E2; + font-size: 120%; + padding: 10px; } + +#SuccessMessage { + color: #3E933A; + background-color: #E2F7D8; + border-color: #9FDE9C; } + +#ErrorMessage { + color: #DA1D1D; + background-color: #FFDFDF; + border-color: #FFBBBB; } + +p.message.bad { + color: #DA1D1D; + background-color: #FFDFDF; + border-color: #FFBBBB; + padding: 15px; + border: 1px solid #DA1D1D; } + +.topMessage { + background: #E4EEF1; + border-bottom: 1px solid white; + padding: 5px; + font-size: 1.3em; + color: #255E6E; + font-family: 'PT Sans', serif; + text-shadow: #fff 0px 1px 1px; + box-shadow: 1px 1px 1px 1px #ccc; } + +.topMessage p { + margin-bottom: 0px; } + +#header { + margin-top: 40px; } + +span.message { + font-weight: bold; + color: #CE332C; } + +.gsc-control-cse { + padding: 0px !important; } + +#gcse { + width: 80%; + height: 60px; } + +input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus { + background: #C43422 !important; + border: none !important; } + +table.gsc-search-box td { + padding: 0px !important; } + +.gsc-input-box { + border-color: #D3E9EF !important; } + +.gs-visibleUrl, .gs-visibleUrl-long { + color: #A5A5A5 !important; } + +.roundedButton-margin { + margin-left: 5px; } + +/*! + * Start Bootstrap - Landing Page Bootstrap Theme (http://startbootstrap.com) + * Code licensed under the Apache License v2.0. + * For details, see http://www.apache.org/licenses/LICENSE-2.0. + */ +body, html { + width: 100%; + height: 100%; } + +body, h1, h2, h3, h4, h5, h6 { + font-family: "Open Sans", Helvetica, Arial, sans-serif; + font-weight: 400; } + +h1 { + color: #2A4E68; + font-size: 34px; + font-weight: 300; + margin-bottom: 25px; + text-align: left; } + +h2 { + color: #2A4E68; + font-weight: 300; + margin-bottom: 25px; + text-align: left; } + +h3 { + color: #2A4E68; } + +h5 { + color: #DA422F; + margin-bottom: 0; } + +a, a:visited { + color: #30739C; } + +.lead { + font-size: 18px; + font-weight: 400; } + +/*Header Navigation*/ +.brand-wrapper { + margin: 10px 0; + padding-right: 20px; + float: left; + border-right: 1px solid #eee; + min-width: 135px; } + +a.navbar-brand { + background: url('../images/openstack-logo-full.svg') left no-repeat; + height: 35px; + width: 135px; } + +@media (min-width: 768px) and (max-width: 1025px) { + .brand-wrapper { + width: 75px; + min-width: 75px; + margin-top: 0; } + a.navbar-brand { + background: url('../images/openstack-logo-vert.svg') left no-repeat; + margin-left: 0px !important; + height: 54px; + width: 59px; } } + +@media (max-width: 767px) { + a.navbar-brand { + margin-left: 15px; } } + +.navbar-default { + border: none; + border-radius: 0px; + background: #fff; + margin-bottom: 0; + padding: 20px 0; } + +.navbar-default .container { + background-color: white; } + +@media (min-width: 768px) and (max-width: 1200px) { + .navbar-default .container { + width: 100%; } } + +ul.navbar-main { + display: none; + float: right; } + +@media (min-width: 768px) and (max-width: 1097px) { + ul.navbar-main { + display: block; } } + +@media (max-width: 767px) { + ul.navbar-main { + display: block; + margin-right: 30px; + width: 90%; } } + +.navbar-default ul.navbar-main > li > a { + color: #8a959e; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; } + +@media (min-width: 768px) and (max-width: 1025px) { + ul.navbar-main { + margin-top: 1px; } + .navbar-default ul.navbar-main > li > a { + font-size: 11px; + padding: 15px 8px; } } + +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + background: #fff; } + +.navbar-nav > li > .dropdown-menu { + margin-top: 10px; + padding: 10px 0; + min-width: 230px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; } + +.navbar-nav > li > .dropdown-menu:after, .navbar-nav > li > .dropdown-menu:before { + bottom: 100%; + left: 25%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; } + +.navbar-nav > li > .dropdown-menu:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; + border-width: 15px; + margin-left: -15px; } + +.navbar-nav > li > .dropdown-menu:before { + border-color: rgba(170, 170, 170, 0); + border-bottom-color: #aaaaaa; + border-width: 16px; + margin-left: -16px; } + +@media (max-width: 767px) { + .navbar-nav > li > .dropdown-menu:after, .navbar-nav > li > .dropdown-menu:before { + display: none; } + .navbar-nav > li > .dropdown-menu:after { + display: none; } + .navbar-nav > li > .dropdown-menu:before { + display: none; } } + +i.fa-caret-right { + margin-left: 8px; } + +.navbar-nav > li > .dropdown-menu li a { + text-transform: uppercase; + padding: 13px 20px; + font-size: 12px; + color: #8a959e; } + +.navbar-nav > li > .dropdown-menu li a:hover { + color: #333; } + +.navbar-nav > li > .dropdown-menu li a:focus { + outline: none; } + +@media (max-width: 767px) { + .navbar-default ul.navbar-main > li > a i.fa-caret-down { + display: none; } } + +.navbar-default .navbar-toggle { + border: none; } + +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background: transparent; } + +.navbar-default .navbar-toggle .icon-bar { + background-color: #5A5A5A; + height: 3px; + border-radius: 3px; } + +.search-container { + position: relative; + display: none; + float: left; + width: 84%; } + +@media (min-width: 768px) and (max-width: 1200px) { + .search-container { + width: 80%; } } + +@media (max-width: 767px) { + .search-container, #gsc-iw-id1 { + display: none; } } + +.search-icon { + display: none; + padding: 17px 20px 16px; + float: left; + text-transform: uppercase; + color: #8a959e; + font-size: 12px; + font-weight: 400; } + +.search-icon:hover { + cursor: pointer; + color: #8a959e; } + +.search-icon i { + margin-right: 5px; + color: #8a959e; } + +@media (max-width: 767px) { + .search-icon { + display: none !important; } } + +.header-search-form, .gsc-search-box { + position: absolute; + z-index: 1000; + /*left: 10px;*/ + width: 100%; + -webkit-transition-property: width; + -webkit-transition-duration: 1s; + -webkit-transition-timing-function: linear; + /* Standard syntax */ + -webkit-transition-property: width; + transition-property: width; + -webkit-transition-duration: 1s; + transition-duration: 1s; + -webkit-transition-timing-function: linear; + transition-timing-function: linear; } + +@media (max-width: 767px) { + .header-search-form { + display: none; } + .gsc-search-box { + position: relative; + left: 0px; } } + +.gsc-input { + color: #30739C; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; } + +.mobile-search-form, #gsc-iw-id2 { + display: none; + position: relative; + width: 100%; } + +@media (max-width: 767px) { + .mobile-search-form, #gsc-iw-id2 { + display: block; } } + +input#gsc-i-id2.gsc-input { + height: 30px !important; } + +table.gsc-search-box { + margin-bottom: 0; } + +.header-search, .gsc-input-box { + border: 2px solid #dae5ee !important; + border-radius: 4px; + height: 37px !important; + margin: 7px 0 0 0; + padding: 0 20px 0 10px; + background: #fff !important; + width: 100%; + -webkit-transition: width 4s; + transition: width 4s; + -webkit-border-horizontal-spacing: 0 !important; + -webkit-border-vertical-spacing: 0 !important; } + +.header-search contenteditable .gsc-input-box:hover, .gsc-input-box:focus, .gsc-search-box .gsc-input > input:focus, .gsc-input-box-focus { + box-shadow: none !important; } + +.header-search::-webkit-input-placeholder, .gsc-input-box::-webkit-input-placeholder, gcse:search::-webkit-input-placeholder { + color: #C0CDDB; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; } + +.header-search:-moz-placeholder, .gsc-input-box:-moz-placeholder, gcse:search:-moz-placeholder { + /* Firefox 18- */ + color: #C0CDDB; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; } + +.header-search::-moz-placeholder, .gsc-input-box::-moz-placeholder, gcse:search::-moz-placeholder { + /* Firefox 19+ */ + color: #C0CDDB; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; } + +.header-search:-ms-input-placeholder, .gsc-input-box:-ms-input-placeholder, gcse:search:-ms-input-placeholder { + color: #C0CDDB; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; } + +.header-search:focus, .gsc-input-box-focus { + border-radius: 4px; + outline: none; + border: 2px solid #30739C !important; + box-shadow: none; } + +.gsc-input-box table { + border-top: none; } + +td.gsc-search-button { + display: none; } + +.cse .gsc-control-cse, .gsc-control-cse { + border: 0 !important; } + +form.gsc-search-box { + margin-bottom: 0 !important; } + +td.gsib_b { + display: none; } + +#gcse { + height: auto; } + +@media (max-width: 767px) { + #gcse { + margin-left: 0; } } + +table#gs_id50.gstl_50 { + width: 100%; + padding: 0px; + height: 100%; } + +.close-search { + position: absolute; + top: 20px; + right: 5px; + color: #dae5ee; + z-index: 1001; + font-size: 16px; } + +.close-search:hover { + color: #30739C; + cursor: pointer; } + +@media (max-width: 767px) { + .close-search { + display: none !important; } } + +/*Google Search Modal*/ +.gsc-modal-background-image { + background-color: #333 !important; } + +.gsc-results-wrapper-overlay { + border-radius: 4px !important; } + +@media (max-width: 767px) { + .gsc-results-wrapper-overlay { + width: 90%; + left: 5%; } } + +a.gs-title { + color: #30739C !important; } + +.gsc-tabsArea { + border: 0 !important; } + +.gsc-tabHeader.gsc-tabhInactive { + border-color: #BFCCDA !important; + background-color: #BFCCDA !important; + color: white !important; + border-left: 0; + border-right: 1px solid white !important; + border-top: 0; + border-bottom: 0 !important; + padding: 0 30px; } + +.gsc-tabHeader.gsc-tabhInactive:hover { + color: #30739C !important; } + +.gsc-tabHeader.gsc-tabhActive { + border-color: #30739C !important; + border-bottom: 0 !important; + color: #30739C !important; + padding: 0 30px; } + +@media (max-width: 767px) { + .gsc-tabHeader.gsc-tabhInactive { + padding: 0 10px; } + .gsc-tabHeader.gsc-tabhActive { + padding: 0 10px; } } + +.gsc-tabHeader.gsc-tabhActive:focus, .gsc-tabHeader.gsc-tabhActive:active { + outline: none !important; } + +a.gs-title, a.gs-title b { + color: #30739C !important; } + +.gsc-table-result, .gsc-thumbnail-inside, .gsc-url-top { + padding: 0 !important; } + +.gsc-results .gsc-cursor-box .gsc-cursor-page { + color: #30739C !important; } + +.show { + display: block; } + +@media (max-width: 767px) { + .show { + display: none; } } + +/*End Header Navigation*/ +/*Hero*/ +.intro-header { + padding-top: 0px; + padding-bottom: 0; + text-align: center; + color: #f8f8f8; + background: url('../images/hero-bkgd1.jpg') no-repeat center center; + background-size: cover; + position: relative; } + +.intro-header h1 { + color: #f8f8f8; } + +.intro-message { + position: relative; + padding-top: 110px; + padding-bottom: 110px; } + +@media (max-width: 1199px) { + .intro-message { + padding-bottom: 50px; } } + +.intro-message > h1 { + margin: 0; + font-size: 3em; + font-weight: 300; + text-align: center; + font-family: "Open Sans", Helvetica, Arial, sans-serif; + width: 100%; } + +@media (max-width: 767px) { + .intro-message > h1 { + font-size: 3em; } } + +.intro-divider { + width: 400px; + border-top: 1px solid #f8f8f8; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); } + +.intro-message > h3 { + text-shadow: none; + text-align: left; + font-weight: 300; + font-size: 24px; + margin-top: 10px; } + +.hero-credit { + position: absolute; + bottom: 30px; + right: 30px; + color: #fff; + opacity: 0.5; } + +.hero-credit:hover { + opacity: 1; } + +/*Hero Promo, add .featured to .intro-header*/ +.intro-header.featured { + text-align: center; + background: url('../images/summit-promo-bkgd1.jpg') no-repeat center center; + min-height: 420px; + background-size: cover; + position: relative; } + +.intro-header.featured .intro-message { + padding-bottom: 50px; } + +a.promo-btn { + color: #fff; + font-size: 24px; + font-weight: 300; + background: transparent; + border: 2px solid #fff; + border-radius: 4px; + padding: 20px 35px; + margin: 0 auto; + text-align: center; + min-width: 370px; + display: inline-block; } + +a.promo-btn:hover { + text-decoration: none; + background: rgba(255, 255, 255, 0.2); } + +a.promo-btn i.fa-chevron-right { + background: transparent; + border: 2px solid #fff; + border-radius: 100px; + padding: 0; + font-size: 14px; + margin-left: 10px; + width: 30px; + height: 30px; + line-height: 2.1; } + +p.promo-dates { + display: inline-block; + margin-top: 10px; + font-weight: 400; } + +/*End Hero*/ +/*Overview Section*/ +.overview-section { + padding: 80px 0; } + +@media (max-width: 767px) { + .overview-section { + padding-top: 40px; } } + +.overview-section h2 { + color: #2A4E68; + font-size: 34px; + font-weight: 300; + margin-bottom: 25px; } + +.overview-section p { + color: #888; + font-size: 16px; + font-weight: 300px; + line-height: 1.4; } + +.overview-section a { + color: #30739C; + text-decoration: underline; } + +.btn-wrapper { + float: left; + width: 100%; + text-align: center; } + +@media (max-width: 980px) { + .overview-left { + margin-bottom: 50px; } } + +a.overview-btn { + float: left; + background: #30739C; + color: #fff; + text-transform: uppercase; + border-radius: 4px; + padding: 15px 25px; + text-decoration: none; + margin-top: 5px; + margin-bottom: 5px; } + +a.overview-btn:hover { + background: #2A4E68; } + +a.overview-btn.left-btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right: 1px solid #3387C9; + margin-right: 0; } + +a.overview-btn.left-btn:hover { + border-right-color: #1B486B; } + +a.overview-btn.right-btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left: 1px solid #1B486B; + margin-left: 0; } + +.release-text { + display: block; + text-align: left; + color: #636568; + font-size: 13px; } + +.overview-section .img-responsive { + max-width: 550px; } + +.overview-right { + text-align: center; } + +.control-cloud-graphic { + max-width: 600px; + margin: 0 auto 15px; } + +a.demo-link { + font-size: 13px; + font-weight: 400; + text-decoration: none; + color: #34789A; + background: #F0F9FE; + padding: 10px 25px; + border-radius: 4px; } + +a.demo-link:hover { + color: #34789A; + background: #CDD9E2; } + +a.demo-link i { + margin-left: 5px; + font-size: 14px; } + +/*When Featured, Add Class .featured to .overview-section*/ +.overview-section.featured .overview-right { + background: #E8EEF5; + border-radius: 4px; + text-align: center; + padding: 20px; + margin-top: 50px; } + +@media (max-width: 1200px) { + .overview-section.featured .overview-right { + margin-top: 50px; } } + +.overview-section.featured .overview-right h3 { + color: #30739C; + text-align: center; } + +.overview-section.featured .overview-right p { + color: #333; + font-size: 13px; } + +.overview-section.featured .overview-right img.promo-graphic { + max-width: 350px; + margin: 20px auto; } + +/*End Overview Section*/ +/*Customers Section*/ +.customers-row { + padding: 80px 0; + text-align: center; + background: #edf2f7; } + +.customers-row h2 { + text-transform: capitalize; + margin-bottom: 0; + text-align: center; } + +.customer-logos-wrapper { + margin: 35px 0 25px; } + +.customer-logos-wrapper ul { + padding: 0; } + +li.customer-logos { + position: relative; + padding: 20px 1%; + width: 16%; + list-style: none; + display: inline-block; } + +@media (max-width: 767px) { + li.customer-logos { + position: relative; + padding: 20px 0; + width: 80%; + margin: 0 auto; + display: block; } } + +li.customer-logos img { + max-width: 100%; } + +.logo-hover { + background: #dee2e8; + border-radius: 3px; } + +.logo-hover:after { + content: ' '; + height: 0; + position: absolute; + width: 0; + border: 10px solid transparent; + border-top-color: #dee2e8; + top: 100%; + left: 50%; + margin-left: -10px; } + +.customers-description { + margin: 40px 0; + color: #2A4E68; + text-align: center; } + +.customers-description p { + padding: 20px 50px; + border-top: 1px solid #dee2e8; + border-bottom: 1px solid #dee2e8; + display: inline; } + +@media (max-width: 767px) { + .customers-description p { + display: block; } } + +.customers-action { + margin-top: 40px; + text-align: center; } + +a.customer-btn { + background: #2A4E68; + color: #fff; + text-transform: uppercase; + border-radius: 4px; + padding: 15px 25px; + text-decoration: none; + border-style: none; } + +a.customer-btn:hover { + background: #173D5B; + color: #fff; } + +/*When Featured, Add Class .featured to .customers-row*/ +.customers-row.featured .customer-logos-wrapper { + width: 50%; + max-width: 1000px; + margin: 40px 25% 0; + border-top: 1px solid #DDE3E8; + padding-top: 20px; } + +.customers-row.featured .customer-logos-wrapper hr { + color: #333; } + +.customers-row.featured .customer-logos img { + width: 90%; + max-width: 100px; } + +.customers-row.featured .customer-logos:hover { + background: none; } + +.customers-row.featured .customer-logos:hover:after { + display: none; } + +.customers-row.featured .customers-action { + margin-top: 0; } + +.customers-row.featured button.customer-btn { + background: none; + border-radius: 0; + padding: 0; + text-decoration: underline; + color: #2A4E68; + text-transform: capitalize; } + +.featured-description { + width: 85%; + margin: 40px auto; } + +@media (max-width: 767px) { + iframe { + width: 90%; } } + +/*End Customers Section*/ +/*Community Section*/ +.community-section { + padding: 75px 0; + background: url('../images/community-bkgd.jpg') no-repeat center center; + background-size: cover; + min-height: 350px; } + +.community-section.featured { + background: url('../images/community-bkgd2.jpg') no-repeat center center; + background-size: cover; } + +.community-graphic { + max-width: 650px; + margin: 0 auto; } + +@media (max-width: 1200px) { + .community-graphic { + margin-bottom: 20px; } } + +.community-section h2 { + color: #fff; } + +.community-section p { + color: #fff; } + +@media (max-width: 1200px) { + .community-section h2 { + text-align: center; } + .community-section p { + text-align: center; } } + +a.community-btn { + font-size: 16px; + font-weight: 400; + background: transparent; + border: 1px solid #fff; + border-radius: 3px; + margin-top: 10px; + padding: 8px 30px 8px 40px; + color: white; + float: left; } + +a.community-btn i { + margin-left: 10px; } + +a.community-btn:hover { + text-decoration: none; + background: rgba(255, 255, 255, 0.2); } + +/*When Featured, add .featured to .community-section*/ +.community-section.featured h3 { + color: #fff; } + +@media (max-width: 1200px) { + .community-section.featured h3 { + text-align: center; } } + +.designate-logo { + max-width: 302px; + margin: 50px 0 20px; } + +@media (max-width: 1200px) { + .designate-logo { + margin: 50px auto 20px; } } + +.default-community { + background-color: rgba(5, 54, 86, 0.7); + border-radius: 4px; + padding: 30px; + text-align: center; } + +@media (max-width: 1200px) { + .default-community { + margin-top: 50px; } } + +.default-community h2 { + margin-top: 0; } + +.community-graphic.small { + max-width: 450px; + margin: 20px auto; } + +a.featured-link { + display: block; + background: #DA422F; + padding: 10px 20px; + border-radius: 2px; + width: 80%; + text-decoration: none; + margin: 10px auto 0; + color: #fff; + font-weight: 600; } + +a.featured-link:hover { + text-decoration: none; + background: #831917; } + +/*End Community Section*/ +/*News and Events Section*/ +.news-section { + padding: 70px 0; } + +.news-section h2 a { + font-size: 14px; + color: #30739C; + font-weight: 400; + margin-left: 30px; } + +.news-section h2 a:hover { + color: #28709a; + text-decoration: none; } + +.event-ad, .news-ad { + width: 100%; + max-width: 560px; + margin-bottom: 20px; } + +.event-ad-lrg { + width: 100%; + height: 113px; + max-height: 113px; + max-width: 1140px; + margin-bottom: 20px; + background-image: url('../images/paris-summit-lrg.jpg'); + background-repeat: no-repeat; + background-size: 100% auto; + background-position: center center; } + +@media (max-width: 767px) { + .event-ad-lrg { + max-width: 766px; + background-image: url('../images/paris-summit-sm.jpg'); + background-repeat: no-repeat; + background-size: 100% auto; + background-position: center center; } } + +.news-section .news-wrapper ul { + margin: 30px 0; + padding-start: 0; + -webkit-padding-start: 0; } + +.news-section .news-wrapper ul li { + list-style: none; } + +.single-event { + float: left; + width: 100%; + padding: 15px 10px; + border-bottom: 1px solid #ebeff4; } + +.single-event:hover { + background: #edf2f7; } + +.single-event.last { + border-bottom: none; } + +.left-event { + float: left; + width: 25%; } + +@media (min-width: 768px) and (max-width: 981px) { + .left-event { + width: 25%; } } + +@media (max-width: 767px) { + .left-event { + width: 25%; } } + +.event-details { + float: left; + margin-left: 3%; + width: 62%; } + +@media (min-width: 768px) and (max-width: 981px) { + .event-details { + width: 72%; } } + +.right-event { + float: right; + width: 10%; } + +@media (min-width: 768px) and (max-width: 981px) { + .right-event { + display: none; } } + +.date, .news-type, .planet-type { + background: #fff; + border: 2px solid #DA422F; + border-radius: 4px; + padding: 5px 15px; + color: #DA422F; + font-size: 10px; + width: 100%; + text-align: center; + float: left; + margin-top: 5px; } + +.event-name, .news-title { + display: block; + font-size: 14px; + font-weight: 600; + color: #333; + width: 100%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + +.location, .news-date { + display: block; + float: left; + font-style: italic; + color: #333; + font-weight: 300; } + +.right-arrow { + float: right; + background: #d9dfe5; + border-radius: 100px; + width: 30px; + height: 30px; + padding: 6px 10px; + color: #fff; + margin-right: 10px; + margin-top: 5px; + display: none; } + +.single-event:hover .right-arrow { + display: block; } + +.news-type { + border: 2px solid #2A4E68; + color: #2A4E68; } + +.planet-type { + border: 2px solid #68C8C3; + color: #68C8C3; } + +.see-more-bottom { + width: 100%; + float: left; + text-align: center; + margin-top: 40px; } + +.see-more-bottom a { + color: #2A4E68; + text-decoration: none; + padding: 5px 15px; + border-radius: 4px; + font-size: 12px; + font-weight: 400; + border: 2px solid #2A4E68; } + +.see-more-bottom a i { + margin-left: 10px; + font-size: 11px; } + +/*End News and Events Section*/ +/*Photo Row*/ +.photo-row-wrapper { + width: 100%; + color: #eee; + max-height: 240px; + margin-bottom: 10px; + overflow: hidden; + margin-top: 60px; } + +@media (max-width: 765px) { + .photo-row-wrapper { + display: none; } } + +.photo-container { + width: 4000px; + max-height: 240px; + margin-left: -30px; } + +.photo-container img { + margin: 0 10px 0 0; + max-width: 22%; + max-height: 240px; } + +/*End Photo Row*/ +/*Footer*/ +footer { + background: #333333; + padding: 70px 0; } + +.footer-links h3 { + color: #fff; + font-size: 14px; + font-weight: 400; } + +.footer-links ul { + margin-left: 0; + padding-start: 0; + padding: 0; + -webkit-padding-start: 0; } + +.footer-links ul li a { + color: #aaa; + font-size: 12px; + font-weight: 400; + list-style: none; + margin-left: 0; } + +.social-icons { + width: 40px; + min-height: 40px; + display: inline-block; + margin-right: 10px; } + +.footer-twitter { + background: url('../images/footer-twitter.png') no-repeat; } + +.footer-twitter:hover { + background: url('../images/footer-twitter-hover.png') no-repeat; } + +.footer-facebook { + background: url('../images/footer-facebook.png') no-repeat; } + +.footer-facebook:hover { + background: url('../images/footer-facebook-hover.png') no-repeat; } + +.footer-linkedin { + background: url('../images/footer-linkedin.png') no-repeat; } + +.footer-linkedin:hover { + background: url('../images/footer-linkedin-hover.png') no-repeat; } + +.footer-youtube { + background: url('../images/footer-youtube.png') no-repeat; } + +.footer-youtube:hover { + background: url('../images/footer-youtube-hover.png') no-repeat; } + +.newsletter-form { + margin: 10px 0 30px; + width: 100%; } + +.newsletter-form label { + color: #aaa; + font-size: 12px; + font-weight: 300; + display: block; } + +.newsletter-input { + display: inline-block; + background: transparent; + border: 2px solid #888; + border-radius: 4px; + color: #888; + font-size: 12px; + font-weight: 400; + padding: 10px 15px; + width: 70%; } + +@media (max-width: 767px) { + .newsletter-input { + width: 70%; } } + +.newsletter-input::-webkit-input-placeholder { + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; } + +.newsletter-input:-moz-placeholder { + /* Firefox 18- */ + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; } + +.newsletter-input::-moz-placeholder { + /* Firefox 19+ */ + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; } + +.newsletter-input:-ms-input-placeholder { + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; } + +.newsletter-input:focus { + outline: none; + border: 2px solid #666; } + +.newsletter-btn { + margin-left: 1%; + display: inline-block; + background: transparent; + border: 2px solid #30739C; + border-radius: 4px; + color: #30739C; + font-size: 12px; + font-weight: 400; + padding: 10px 15px; + text-transform: uppercase; + width: 27%; } + +@media (max-width: 767px) { + .newsletter-btn { + width: 18%; + margin-left: 2%; + padding: 10px; } } + +.newsletter-btn:hover { + border: 2px solid #888; + color: #999; } + +.fine-print { + margin-top: 20px; + color: #aaa; + font-size: 12px; } + +.fine-print a { + color: #aaa; + text-decoration: underline; } + +.fine-print a:hover { + color: #fff; } + +.footer-bottom { + background: #222; + padding: 15px 0; + text-align: center; + width: 100%; } + +.feedback-input { + display: inline-block; + background: #222; + border: 2px solid #444; + border-radius: 4px; + color: #777; + font-size: 12px; + font-weight: 400; + padding: 10px 20px; + width: 310px; } + +@media (max-width: 767px) { + .feedback-input { + width: 70%; } } + +.feedback-input::-webkit-input-placeholder { + color: #555; + font-size: 12px; + font-weight: 400; } + +.feedback-input:-moz-placeholder { + /* Firefox 18- */ + color: #555; + font-size: 12px; + font-weight: 400; } + +.feedback-input::-moz-placeholder { + /* Firefox 19+ */ + color: #555; + font-size: 12px; + font-weight: 400; } + +.feedback-input:-ms-input-placeholder { + color: #555; + font-size: 12px; + font-weight: 400; } + +.feedback-input:focus { + outline: none; + border: 2px solid #666; } + +.feedback-btn { + margin-left: 11px; + display: inline-block; + background: #222; + border: 2px solid #666; + border-radius: 4px; + color: #777; + font-size: 12px; + font-weight: 400; + padding: 10px 30px; } + +@media (max-width: 767px) { + .feedback-btn { + width: 18%; + margin-left: 2%; + padding: 10px; } } + +.feedback-btn:hover { + border: 2px solid #888; + color: #999; } + +/*End Footer*/ +/* Line below navigation */ +.navbar-default { + border-bottom: 1px solid #ddd; } + +#home.navbar-default { + border-bottom: none; } + +/*End General Inner Page Styles*/ +/*Events Page*/ +.eventsBanner { + height: 150px; + padding: 20px; } + +.eventsPhotoCaption { + background: rgba(0, 0, 0, 0.3); + border-radius: 4px; + padding: 10px; + color: white; } + +.news-section.full { + padding: 20px 0; } + +.eventTitleArea { + text-align: center; + margin: 40px 0; } + +.eventTitleArea h1 { + font-weight: 300; } + +.postEvent { + float: left; + width: 100%; + height: 130px; + padding: 30px 5%; + background: #F4F5F8; + margin: 20px 0 10px; + text-align: center; } + +.postEvent p { + margin-bottom: 20px; } + +.postEvent a { + background: #2A4E68; + padding: 10px 25px; + border-radius: 4px; + color: #fff; } + +.eventBlock { + float: left; + width: 100%; } + +.eventBlock.summit .date { + border-color: #2A4E68; + color: #2A4E68; } + +.eventBlock.past h2 { + margin-top: 50px; } + +.eventBlock.past .date { + border-color: #68C8C3; + color: #68C8C3; } + +/*End Events Page*/ +/*Community Page*/ +.communityBoxes { + margin: 30px 0 10px; + font-size: 13px; } + +.communityBoxes h2 { + font-size: 20px; + font-weight: 400; + margin-bottom: 15px; } + +.communityBoxes h2 a { + color: #DA422F; } + +.developersRow { + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; + padding: 20px 30px; + margin-bottom: 30px; } + +.devLabel { + float: left; + margin-right: 30px; + font-weight: 700; } + +ul#developerActivity { + float: left; + padding-left: 0; + margin: 0; } + +ul#developerActivity li { + list-style: none; + display: inline-block; } + +ul#developerActivity li a { + font-weight: 700; + color: #222; } + +ul#developerActivity li span { + background: #E8EEF5; + padding: 5px 10px; + border-radius: 4px; + margin-right: 5px; + color: #2A4E68; + font-size: 11px; + font-weight: 400; } + +/*End Community Page*/ +/*Software Page*/ +.software { + margin-top: 30px; } + +.software-top { + text-align: center; } + +.software-top h1 { + margin: 5px 0 10px; } + +p.icon { + text-align: center; + margin: 40px 0 0; } + +p.software-description { + text-transform: uppercase; + font-size: 13px; + color: #777; } + +.openstack-diagram { + margin-bottom: 3em; } + +div.screenshots { + padding: 30px 0 20px; + margin: 30px 0; + border-top: 1px solid #edf2f7; + border-bottom: 1px solid #edf2f7; + width: 100%; } + +.screenshots ul { + padding: 0; + margin: 0; + text-align: center; } + +.screenshots ul li { + list-style: none; + display: inline-block; } + +@media (max-width: 767px) { + .screenshots ul li { + margin-bottom: 30px; } } + +.screenshots ul li a img { + width: 100%; + border: 4px solid #edf2f7; } + +.screenshots ul li a img:hover { + border-color: #30739C; } + +.screenshots ul li p { + margin: 10px 0 0; + font-size: 12px; + color: #30739C; + text-align: center; } + +.newSubNav li#start a.current, .newSubNav li#start a.current:hover { + color: #488613; + background-color: #DDFFE2; } + +ul.slides h3 { + text-align: center; + margin: 0 0 30px; } + +.tabSet { + background: #edf2f7; + border: 1px solid #30739C; + margin: 30px 0; + padding-top: 20px; + padding-bottom: 20px; } + +.tabContent table { + width: 100%; + margin: 0; + table-layout: fixed; + word-wrap: break-word; } + +.get-started-wrapper h3 { + text-align: center; + margin: 40px 0; } + +a.start-btn { + background: #30739C; + color: #fff; + text-transform: capitalize; + font-size: 12px; + border-radius: 2px; + padding: 10px 15px; + text-decoration: none; + border-style: none; + display: inline-block; } + +img.deploy-powered { + margin-top: 40px; } + +@media (max-width: 767px) { + img.deploy-powered { + margin: 10px 0 30px; } } + +img.deploy-compatible { + margin-top: 30px; } + +@media (max-width: 767px) { + img.deploy-compatible { + margin: 10px 0 30px; } } + +img.icehouse-video { + max-width: 100%; } + +.documentation { + margin-top: 50px; + text-align: center; + background: #edf2f7; + border-radius: 4px; + padding: 30px 0; } + +.documentation a { + padding: 7px 20px; + background: #30739C; + color: #edf2f7; + margin: 0 8px; + border-radius: 4px; } + +.documentation a:hover { + text-decoration: none; + background: #2A4E68; } + +@media (max-width: 767px) { + .documentation a { + padding: 5px 10px; + margin: 0 5px; + font-size: 12px; } } + +/*End Sofware Page*/ +/*Marketplace Page*/ +h2.marketplace-header { + border-left: 3px solid #DA422F; + line-height: 1.2em; + margin: 30px 20px; + padding-left: 15px; + font-size: 1.5em; } + +.build-use-box { + background: #edf2f7; + border-radius: 4px; + margin-bottom: 30px; + min-height: 25em; + padding: 20px; } + +.build-use-box h3 { + margin-bottom: 20px; } + +.build-use-box ul { + padding-left: 20px; } + +.marketplace-description { + margin-top: 50px; } + +.video { + width: 100%; } + +.video iframe { + width: 100%; + height: 225px; } + +.program-logos { + border-top: 1px solid #eee; + margin-top: 60px; + padding-top: 60px; } + +.ecosystem-wrapper { + padding-left: 30px; + border-left: 1px solid #eee; } + +.marketplace-top-wrapper { + padding: 20px 0 0; } + +.marketplace-brand { + margin-top: 20px; + padding-left: 30px; } + +h2.marketplace { + margin-bottom: -7px; + margin-top: 0; + font-size: 18px; + font-family: 'PT Sans', serif; + font-style: normal; + letter-spacing: -0.076em; + line-height: 1em; } + +h2.marketplace a, h2.marketplace a:hover { + color: #5B83A0; + text-decoration: none; } + +h1.marketplace { + font-size: 24pt; + margin-top: 5px; + text-align: left; } + +h1.marketplace:hover { + text-decoration: none; } + +h1.marketplace a, h1.marketplace a.visited { + color: #264D69; + font-family: 'PT Sans', serif; + font-style: normal; + letter-spacing: -0.076em; + line-height: 1em; } + +.grey-bar { + background-color: #edf2f7; + margin-bottom: 40px; + margin-top: 0; + padding-bottom: 10px; + padding-top: 10px; } + +ul.marketplace-nav { + padding: 0; + margin: 0; } + +ul.marketplace-nav li { + border-right: 1px solid #e8e8e8; + display: inline-block; + padding-left: 0.5em; + padding-right: 0.5em; + text-transform: uppercase; + width: 130px; + height: 96px; + vertical-align: top; + text-align: center; } + +ul.marketplace-nav li:last-child { + border-right: none; } + +@media (min-width: 680px) and (max-width: 1000px) { + ul.marketplace-nav li { + width: 100px; + height: 110px; } + ul.marketplace-nav li a { + font-size: 10px; } } + +@media (max-width: 680px) { + ul.marketplace-nav li { + display: block; + float: left; + border-right: none; + text-align: left; + border-bottom: 1px solid #e8e8e8; + width: 100%; + height: auto; + padding: 5px 10px; + vertical-align: middle; } } + +ul.marketplace-nav li a { + color: #848575; + text-decoration: none; + font-size: 12px; + vertical-align: middle; + width: 115px; + text-align: center; } + +@media (max-width: 680px) { + ul.marketplace-nav li a { + padding: 0; + vertical-align: middle; + float: left; + width: 100%; + text-align: left; } } + +ul.marketplace-nav a:hover { + color: #DA422F; } + +ul.marketplace-nav a span { + background: url("http://openstack.org/marketplace/code/ui/frontend/images/marketplace-icons.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); + display: block; + height: 50px; + margin: auto; + width: 40px; + text-align: center; } + +@media (max-width: 680px) { + ul.marketplace-nav a span { + display: table-cell; + vertical-align: middle; + float: left; } } + +ul.marketplace-nav #training a span { + background-position: 0 0; } + +ul.marketplace-nav #distros a span { + background-position: -50px 0; } + +ul.marketplace-nav #public-clouds a span { + background-position: -150px 0; } + +ul.marketplace-nav #private-clouds a span { + background-position: -250px 0; } + +ul.marketplace-nav #consulting a span { + background-position: -100px 0; } + +ul.marketplace-nav #drivers a span { + background-position: -200px 0; } + +ul.marketplace-nav .current a { + color: #DA422F; } + +/*End Marketplace Page*/ +/*Marketplace Listing Page*/ +.product-box { + border: 1px solid #E8E8E8; + margin-bottom: 30px; + padding: 30px 20px; + border-radius: 4px; + min-height: 200px; + border-left: 3px solid #DA422F; } + +.logo-area { + padding-top: 20%; + padding-left: 10px; } + +@media (max-width: 767px) { + .logo-area { + padding-top: 0; + padding-left: 0; } } + +.company-details-area h4 { + text-transform: uppercase; + font-weight: 300; } + +.details-button { + background: url("http://openstack.org/marketplace/code/ui/frontend/images/register-arrow.png") no-repeat scroll 85% center #000000; + color: #FFFFFF !important; + display: inline-block; + margin-right: -10px; + padding: 10px 2%; + text-align: left; + text-transform: uppercase; + width: 100px; + font-size: 12px; + border-radius: 4px; } + +.filter-label { + background: url("/images/images/marketplace-search-icon.png") no-repeat scroll left 7px rgba(0, 0, 0, 0); + color: #30739C; + float: left; + margin-bottom: 0; + margin-top: 5px; + padding-left: 25px; + padding-right: 20px; + padding-top: 8px; + text-transform: uppercase; + font-size: 12px; } + +input#name-term { + height: 40px; + width: 250px; + font-size: 12px; + padding: 5px 10px; + border: 1px solid #e8e8e8; + color: #30739C; + border-radius: 4px; } + +input#name-term::-webkit-input-placeholder { + color: #30739C; + font-size: 12px; } + +select#service-term { + height: 40px; + width: 200px; + padding: 5px 10px; + position: relative; + border-radius: 4px; + color: #30739C; + background: #fff; + border: 1px solid #e8e8e8; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + display: inline-block; + cursor: pointer; + font-size: 12px; + font-weight: 400; } + +label#service-label { + position: relative; } + +label#service-label:after { + content: '>'; + color: #30739C; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + right: 14px; + top: 6px; + padding: 0 0 6px; + border-bottom: 1px solid #e8e8e8; + position: absolute; + pointer-events: none; + font-size: 14px; + font-weight: 400; } + +label#service-label:before { + content: ''; + right: 6px; + top: 0px; + width: 20px; + height: 20px; + background: #f8f8f8; + position: absolute; + pointer-events: none; + display: block; } + +@media (max-width: 767px) { + .filter-label { + width: 100%; + margin-bottom: 10px; } + input#name-term { + display: block; + width: 100%; + margin-bottom: 10px; } + select#service-term { + min-width: 400px; } } + +ul.resource-links { + padding: 0; + margin: 0 0 30px; } + +ul.resource-links li { + list-style: none; + display: block; } + +ul.resource-links li a { + background-image: url('../images/resource-link-icon.png'); + background-repeat: no-repeat; + background-position: 93% 50%; + background-color: #edf2f7; + padding: 15px 15px; + margin: 0 0 5px; + display: block; + border-radius: 4px; } + +ul.resource-links li a:hover { + text-decoration: none; + background-color: #DAE1EB; } + +.add-your-course { + border-radius: 4px; + border: 1px solid #30739C; + background: #fff; + padding: 20px; + font-size: 13px; } + +/*404 Page*/ +.four-o-four-wrapper { + text-align: center; + margin: 50px auto; } + +.four-o-four-wrapper img { + width: 100%; + max-width: 650px; + margin: 50px 0 70px; } + +.four-o-four-wrapper p { + color: #8a959e; } + +.four-o-four-wrapper a { + color: #30739C; + text-decoration: none; } + +.four-o-four-links { + margin-top: 50px; } + +.four-o-four-links a { + color: #30739C; + padding: 0 10px; + text-decoration: none; } + +@media (max-width: 767px) { + .four-o-four-links a { + padding: 0 5px; } } + +/*End 404 Page*/ +/*Blog Page*/ +.blog-title { + width: 100%; + background: url(/images/images/summit-promo-bkgd1.jpg) no-repeat center center; + background-size: cover; + padding: 50px 0; + text-align: center; } + +.blog-o { + max-width: 80px; + opacity: 0.9; } + +.blog-title h1 { + color: white; + font-weight: 400; + font-size: 45px; + margin: 10px 0; } + +.blog-title h1 span { + font-size: 16px; + display: block; + padding-top: 10px; + color: white; + font-weight: 300; } + +.container.blog { + margin-top: 30px; } + +.post { + margin-bottom: 60px; } + +.post-byline { + border-bottom: 1px dotted #c5e2ea; + border-top: 1px dotted #c5e2ea; + margin-bottom: 15px; + padding: 12px 0; + font-size: 12px; } + +.post-byline p { + margin-bottom: 0; } + +.post-byline .name a { + color: #DA422F; } + +.post-byline .postDate { + text-align: right; + color: #2A4E68; } + +.entry h1, .entry h2, .entry h3, .entry h3 a { + color: #2A4E68; + font-weight: 300; } + +.entry h1 { + font-size: 24px; } + +.entry h2 { + font-size: 20px; } + +.entry h3 { + font-size: 18px; } + +.entry h3 a { + text-decoration: underline; } + +#sidebar { + background: #edf2f7; + padding: 15px; + border-radius: 4px; + margin-top: 0; } + +#sidebar ul { + margin: 0; } + +#sidebar ul li { + font-size: 12px; } + +.creative-commons { + text-align: center; + margin-top: 40px; + font-size: 12px; } + +.creative-commons img { + margin-bottom: 10px; } + +.navigation a { + background: #30739C; + padding: 5px 10px; + border-radius: 4px; + color: white; } + +/*End Blog Page*/ +/*Vancouver Summit Landing Page*/ +.summit-landing-wrapper { + position: relative; + width: 100%; + height: 100%; + text-align: center; + padding: 70px 0; + background: url('../images/summit-vancouver-bkgd.jpg') no-repeat 0 0; + background-size: cover; } + +img.summit-landing-logo { + max-width: 200px; + margin-bottom: 40px; } + +.save-the-date { + color: white; + margin-bottom: 0px; + font-size: 16px; + font-weight: 400; + text-transform: capitalize; } + +.summit-landing-wrapper h1 { + color: white; + font-weight: 300; + font-size: 20px; + margin: 8px 0 10px; + text-transform: uppercase; } + +.summit-landing-wrapper p { + color: white; } + +.summit-landing-wrapper .summit-location { + display: block; + font-weight: 400; + font-size: 60px; + color: white; + text-align: center; + text-transform: uppercase; + position: relative; + display: inline-block; + -webkit-margin-before: 0; + -webkit-margin-after: 0; } + +.summit-landing-wrapper .summit-location::before { + content: ""; + border-top: 1px solid #edf2f7; + width: 150px; + height: 5px; + position: absolute; + margin-right: 15px; + top: 50%; + right: 100%; } + +.summit-landing-wrapper .summit-location::after { + content: ""; + border-top: 1px solid #edf2f7; + width: 150px; + height: 5px; + position: absolute; + margin-left: 15px; + top: 50%; + left: 100%; } + +@media (max-width: 767px) { + .summit-landing-wrapper h1 { + font-size: 15px; } + .summit-landing-wrapper .summit-location { + font-size: 40px; } + .summit-landing-wrapper .summit-location::before { + width: 75px; } + .summit-landing-wrapper .summit-location::after { + width: 75px; } } + +.summit-date { + background: none; + font-size: 25px; + margin-top: 30px; + color: white; } + +.summit-date span { + display: block; + margin-top: 20px; + font-size: 12px; + font-weight: 300; + text-transform: uppercase; } + +.landing-social { + margin-top: 40px; } + +.landing-social .social-icons { + width: 25px; + min-height: 25px; + display: inline-block; + margin: 0 10px; } + +.landing-twitter { + background: url('../images/landing-twitter.png') no-repeat; + opacity: 0.8; } + +.landing-twitter:hover { + opacity: 1; } + +.landing-facebook { + background: url('../images/landing-facebook.png') no-repeat; + opacity: 0.8; } + +.landing-facebook:hover { + opacity: 1; } + +.landing-linkedin { + background: url('../images/landing-linkedin.png') no-repeat; + opacity: 0.8; } + +.landing-linkedin:hover { + opacity: 1; } + +.summit-landing-bottom { + position: absolute; + bottom: 0; + left: 50%; } + +.summit-landing-bottom p { + color: white; } + +.landing-footer { + position: relative; + left: -50%; } + +.landing-footer a { + width: 150px; + padding: 5px 0 0; + display: inline-block; + background: #DA422F; + text-align: center; + color: white; + border-top-left-radius: 2px; + border-top-right-radius: 2px; } + +.landing-footer a:hover { + background: #BD2723; } + +.landing-footer a img { + position: relative; + margin: 0; + padding: 0; + max-width: 100px; } + +.summit-landing-wrapper a i { + color: #edf2f7; } + +.summit-landing-wrapper a i:hover { + color: white; } + +/*End Vancouver Summit Landing Page*/ +/* site banner */ +.top-site-banner { + background-color: #F0F9FE; + color: #4D96C7; + padding-top: 10px; } + +.top-site-banner-button { + border-radius: 5px; + border: 1px solid #C6E5FC; + font-size: 90%; + padding: 0px 10px; + background-color: white; + display: inline-block; + color: #4D96C7; + text-transform: uppercase; } + +.top-site-banner-button:hover { + text-decoration: none; + background-color: #F0F9FE; } + +/* end of site banner */ + +/*News page*/ +.grey-bar.news { + margin-bottom: 0; + padding: 20px; + text-align: right; } + +.grey-bar.news a { + font-size: 12px; + text-transform: uppercase; + color: #30739C; } + +.grey-bar.news a:hover { + color: #2A4E68; + text-decoration: none; } + +.grey-bar.news a i { + margin-right: 5px; } + +.grey-bar.news a.manage-news-link { + color: #889E2F; + margin-right: 20px; } + +.grey-bar.news a.manage-news-link:hover { + color: #5A6E1D; } + +.carousel { + height: 350px; } + +.carousel-inner { + height: 350px; } + +.carousel-inner img { + min-height: 350px; + height: 100%; + min-width: 100%; + max-width: none; + width: auto; + opacity: 0.6; } + +.carousel-inner > .item > img, .carousel-inner > .item > a > img { + min-width: 100%; + max-width: none; + width: 100%; } + +@media (max-width: 767px) { + .carousel-inner > .item > img, .carousel-inner > .item > a > img { + width: auto; } } + +.carousel-inner .item { + height: 350px; + background: #2A4E68; } + +.carousel-control { + text-shadow: none; } + +.carousel-control i { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; } + +.carousel-control.right i { + right: 50%; + margin-top: -15px; + margin-right: -15px; } + +.carousel-control.left i { + left: 50%; + margin-top: -15px; + margin-left: -15px; } + +.carousel-caption { + text-shadow: none; + bottom: 60px; } + +.carousel-caption h3 { + color: white; } + +.carousel-caption a.more-btn { + display: block; + color: white; + background: #DA422F; + border-radius: 4px; + padding: 5px 10px; + margin: 0 auto 20px; + max-width: 150px; + text-transform: uppercase; + font-size: 12px; } + +.carousel-caption a.more-btn:hover { + text-decoration: none; + background: #B92623; } + +.newsFeatured { + margin: 40px 0 60px; + float: left; + text-align: left; + padding-bottom: 10px; + border-bottom: 1px solid #edf2f7; } + +.featuredImage { + position: relative; + width: 100%; + height: 180px; + overflow: hidden; + margin-bottom: 10px; + background: #30739C; } + +.featuredImage img { + width: 100%; + /* width: auto;*/ } + +.featuredHeadline { + position: absolute; + bottom: 0; + right: 0; + left: 0; + background: rgba(0, 0, 0, 0.6); + padding: 15px 10px; + font-weight: 400; + color: white; } + +.featuredHeadline .more { + display: none; + text-align: center; + margin: 30px auto 20px; + text-transform: uppercase; + font-weight: 600; + background: white; + border-radius: 2px; + padding: 10px; + width: 150px; + color: #333; } + +.featuredHeadline .more i { + margin-left: 8px; } + +.featuredHeadline .more:hover { + background: #eee; } + +.featuredImage:hover .featuredHeadline, .open .featuredHeadline { + top: 0; } + +.featuredImage:hover .more, .open .more { + display: block; } + +.featuredImage:hover .featuredDate { + display: none; } + +.featuredDate { + font-size: 12px; + position: absolute; + top: 5px; + left: 10px; + color: white; } + +.featuredSummary { + font-size: 12px; + color: #555; } + +ul.featured { + padding: 0; + margin: 0; } + +ul.featured li { + list-style: none; + margin-bottom: 30px; + border-radius: 4px; } + +@media (max-width: 767px) { + ul.featured li { + margin-bottom: 20px; } } + +.recentBox { + margin-bottom: 30px; } + +.itemTimeStamp { + font-size: 12px; + color: #999; + margin-left: 10px; + padding-left: 10px; + border-left: 1px solid #aaa; } + +.news-sidebar { + background: #edf2f7; + padding: 15px; + border-radius: 4px; + margin-top: 0; } + +.see-all-events { + float: right; } + +.see-all-events a { + font-size: 12px; } + +.eventBlock { + padding-left: 15px; + font-size: 12px; } + +.eventBlock h3 { + margin-bottom: 15px; } + +.eventBlock .event { + margin-bottom: 20px; } + +.eventBlock .event.top { + margin-top: 20px; } + +/*End News page*/ +/*Single News Page*/ +.newsHome { + margin: 20px 0 30px; } + +.newsHome a { + text-transform: uppercase; + font-size: 12px; } + +.newsHome i { + margin-right: 10px; } + +.news-single h1 { + margin-bottom: 60px; } + +.news-summary { + background: #edf2f7; + color: #30739C; + padding: 30px; + text-align: center; + width: 80%; + margin: -10px 10% 60px; + border-radius: 4px; } + +.news-byline { + border-bottom: 1px dotted #c5e2ea; + border-top: 1px dotted #c5e2ea; + margin: 40px 0 15px; + padding: 18px 0 10px; + font-size: 12px; } + +.news-byline a.link { + color: #DA422F; } + +.news-byline p.postDate { + color: #2A4E68; + text-align: right; } + +/*End Single News Page*/ +/*Videos Home Page*/ +.main-video-wrapper { + width: 100%; + background: #222; + height: auto; + margin: 0 0 30px; + text-align: center; + -moz-box-sizing: border-box; + box-sizing: border-box; } + +a.main-video { + position: relative; + display: block; + max-width: 617px; + margin: 0 auto; + border-left: 1px solid #eee; + border-right: 1px solid #eee; } + +a.main-video .video-description-wrapper { + position: absolute; + display: block; + background: rgba(0, 0, 0, 0.7); + bottom: 0; + left: 0; + right: 0; + top: 230px; + text-align: left; + z-index: 1000; + padding: 20px; } + +@media (max-width: 767px) { + a.main-video .video-description-wrapper { + top: 60%; } } + +@media (max-width: 480px) { + a.main-video .video-description-wrapper { + top: 50%; } } + +a.main-video .video-description-wrapper .video-description { + width: 80%; + float: left; } + +a.main-video .video-description-wrapper .video-description h3 { + color: white; + font-size: 22px; + font-weight: 600; + width: 100%; + height: 25px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } + +a.main-video .video-description-wrapper .video-description p { + color: white; + font-size: 13px; + line-height: 1.2; + font-weight: 400; + padding: 0; + display: block; + width: 100%; + height: 15px; + margin: 0 auto; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + +a.main-video:hover .video-description-wrapper { + top: 0; } + +a.main-video:hover .video-description-wrapper .video-description h3 { + height: 10%; + white-space: normal; } + +a.main-video:hover .video-description-wrapper .video-description p { + height: 90%; + white-space: normal; } + +@media (max-width: 480px) { + a.main-video:hover .video-description-wrapper { + top: 50%; } + a.main-video:hover .video-description-wrapper .video-description h3 { + height: 25px; + white-space: nowrap; } + a.main-video:hover .video-description-wrapper .video-description p { + height: 15px; + white-space: nowrap; } } + +.main-video img { + margin: 0 auto; + width: 100%; + max-width: 615px; + max-height: 100%; + display: block; + position: relative; + z-index: 1; } + +.play-btn { + float: right; + color: white; + font-size: 40px; + width: 20%; + margin-top: 5px; + text-align: center; } + +.play-btn img#play { + max-width: 70px; + max-height: 70px; } + +.featured-row { + width: 100%; + background: #2A4E68; + padding: 0; + position: relative; + display: block; + margin-bottom: 50px; } + +.featured-row h2 { + color: white; + font-weight: 400; + font-size: 24px; } + +.featured-row h2 span { + font-weight: 400; + font-size: 12px; + color: #edf2f7; + margin-left: 20px; } + +.featured-row:after { + top: 100%; + left: 10%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + border-color: rgba(42, 78, 104, 0); + border-top-color: #2A4E68; + border-width: 15px; + margin-left: -15px; } + +.daily-recap-wrapper .video-thumb-title { + text-align: center; } + +.video-thumb { + /*background: $lightblue;*/ + text-align: center; + width: 100%; + height: 0; + position: relative; + display: table; + overflow: hidden; + margin-bottom: 20px; + -moz-box-sizing: border-box; + box-sizing: border-box; } + +.thumb-play { + display: none; + background-image: url("//www.openstack.org/themes/openstack/images/landing-pages/auto/play-button.png"); + background-repeat: no-repeat; + background-position: center center; + background-color: rgba(0, 0, 0, 0.3); + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; } + +.video-thumb:hover .thumb-play { + display: block; } + +@media (max-width: 767px) { + .video-thumb .thumb-play { + display: block; + background-color: transparent; } } + +.video-thumb img.video-thumb-img { + max-width: 100%; + width: 100%; } + +.video-thumb p { + color: #C6CDD6; + font-size: 14px; + font-weight: 700; + display: table-cell; + vertical-align: middle; } + +.sort-row { + background: #edf2f7; + width: 100%; + min-height: 50px; + padding: 25px 0; + position: relative; + display: block; + margin: 50px 0; + color: #2A4E68; } + +.sort-left { + float: left; } + +.sort-left i { + color: #b4c5d6; + line-height: 1; + margin-right: 10px; } + +.sort-left i:hover { + color: #2A4E68; + cursor: pointer; } + +.sort-left i.active { + color: #2A4E68; } + +.sort-right { + float: right; + font-size: 12px; + text-transform: uppercase; + font-weight: 600; } + +.sort-right i { + margin-left: 10px; + font-weight: 700; + font-size: 14px; } + +.video-thumb-title { + margin: -10px 0 0; + color: #2A4E68; + font-size: 12px; + font-weight: 400; + width: 100%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + +.video-thumb-speaker { + color: #2A4E68; + font-size: 12px; + font-weight: 600; + margin-bottom: 40px; + width: 100%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + +@media (max-width: 767px) { + .daily-recap-wrapper .video-thumb-title { + margin-bottom: 40px; } + .video-thumb-title, .video-thumb-speaker { + text-align: center; } } + +.video-thumb-description { + display: none; } + +.video-dropdown > .dropdown-menu { + margin: 20px -20px 0; + padding: 10px 0; + min-width: 230px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + left: -99%; + right: 100%; + background-color: #edf2f7; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0); + box-shadow: none; } + +/*.video-dropdown>.dropdown-menu:after, .video-dropdown>.dropdown-menu:before { + bottom: 100%; + right: 25%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} +.video-dropdown>.dropdown-menu:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 15px; + margin-left: -15px; +} +.video-dropdown>.dropdown-menu:before { + border-color: rgba(170, 170, 170, 0); + border-bottom-color: #aaaaaa; + border-width: 15px; + margin-left: -16px; +}*/ +.video-dropdown > .dropdown-menu li a { + text-transform: uppercase; + padding: 13px 20px; + font-size: 12px; + color: #2A4E68; } + +.video-dropdown > .dropdown-menu li a:hover { + color: white; + background: #2A4E68; } + +.video-dropdown > .dropdown-menu li a:focus { + outline: none; } + +/*End Videos Home Page*/ +/* Change Video Gallery View */ +@media (min-width: 768px) { + .video-list .col-lg-3, .video-list .col-md-3, .video-list .col-sm-3 { + width: 100%; } + .video-list .video-thumb { + max-width: 270px; + width: 24%; + float: left; + margin-right: 1%; } + .video-list .video-details { + margin: 10px 0 0 1%; + float: left; + width: 74%; } } + +.video-list .video-thumb-speaker { + margin-bottom: 20px; } + +.video-list .video-details, .video-list .video-thumb-title, .video-list .video-thumb-speaker { + text-align: left; } + +.video-list .video-thumb-title { + font-size: 14px; + font-weight: 600; } + +.video-list .video-thumb-description { + color: #2A4E68; + font-size: 12px; + display: block; + overflow: hidden; } + +@media (min-width: 1180px) { + .video-list .video-thumb-description { + max-height: 130px; } } + +@media (min-width: 991px) and (max-width: 1179px) { + .video-list .video-thumb-description { + max-height: 100px; } } + +@media (min-width: 768px) and (max-width: 990px) { + .video-list .video-thumb-description { + max-height: 70px; } } + +/* End Change Video Gallery View */ +/*Video Inner Page*/ +.single-video-details { + margin: 60px auto; } + +.single-video-details h3 { + text-align: left; } + +.single-video-details strong { + color: #2A4E68; } + +.video-share { + text-align: right; + float: right; } + +.video-share a i { + font-size: 22px; + margin-left: 20px; + vertical-align: middle; + color: #759bb7; } + +.video-share a i:hover { + color: #2A4E68; } + +@media (max-width: 767px) { + .video-share { + float: none; + text-align: center; + margin: -20px 0 20px; + padding-top: 20px; + padding-bottom: 20px; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; } + .video-share a i { + margin: 0 10px; } } + +.video-share a i.fa-twitter { + font-size: 24px; + margin-bottom: -1px; } + +p.single-video-description { + margin: 10px 0 40px; } + +.video-categories a { + margin-left: 10px; + text-decoration: underline; } + +.video-tags { + margin-top: 15px; } + +.video-tags a { + background: #edf2f7; + font-size: 10px; + font-weight: 600; + border-radius: 3px; + margin-left: 10px; + padding: 5px 10px; } + +.video-speakers { + margin-top: 15px; + display: block; } + +.video-speakers p a { + margin-left: 0; + text-decoration: underline; } + +.video-speakers .twitter-follow-button { + margin-left: 10px; } + +.video-media-title { + margin: 0 0 10px; + display: block; } + +@media (max-width: 767px) { + .video-media-wrapper { + margin-top: 30px; } } + +.media-btn-wrapper { + float: left; + margin-top: 10px; } + +a.media-btn { + background: #2A4E68; + color: white; + padding: 10px 20px; + border-radius: 4px; + border: 0; } + +a.media-btn:hover { + text-decoration: none; + background: #16283A; } + +a.media-btn i { + margin-right: 10px; } + +a.media-btn.right { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + margin-left: -2px; + border-left: 1px solid #3E71A4; } + +a.media-btn.left { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + margin-right: -2px; + border-right: 1px solid #122231; } + +/*End Video Inner Page*/ +/*Docs Main*/ +.top-docs-wrapper { + width: 100%; + background: #edf2f7; + padding: 60px 0; } + +.top-docs-wrapper h1 { + text-align: left; } + +.top-docs-wrapper p { + color: #2A4E68; } + +.top-docs-wrapper hr { + border-color: #b1c9da; + margin: 40px 0; } + +.top-docs-wrapper h3 { + text-align: left; + text-transform: capitalize; + font-weight: 300; + font-size: 24px; } + +a.overview-btn.docs-btn { + border-radius: 2px; + text-transform: capitalize; + margin-right: 2%; + width: 31.33333%; + text-align: center; + line-height: 50px; + height: 50px; + padding: 0 10px; } + +a.overview-btn.docs-btn i { + font-size: 25px; + display: inline-block; + color: white; + margin-left: 5px; + height: 50px; + line-height: 50px; + vertical-align: middle; } + +.docs-main-search-form { + width: 98%; + margin-top: -20px; + float: left; + position: relative; } + +i.docs-search-icon { + position: absolute; + top: 17px; + left: 15px; + color: #C0CDDB; } + +.docs-main-search { + border: 2px solid #D5DDE7 !important; + border-radius: 2px; + height: 37px !important; + margin: 7px 0 0 0; + padding-left: 35px; + background: #fff !important; + width: 100%; + -webkit-transition: width 4s; + transition: width 4s; + -webkit-border-horizontal-spacing: 0 !important; + -webkit-border-vertical-spacing: 0 !important; } + +.docs-main-search:focus { + outline: none; } + +input.docs-main-search::-webkit-input-placeholder { + color: #C0CDDB; + font-size: 12px; + font-weight: 400; } + +input.docs-main-search:-moz-placeholder { + /* Firefox 18- */ + color: #C0CDDB; + font-size: 12px; + font-weight: 400; } + +input.docs-main-search::-moz-placeholder { + /* Firefox 19+ */ + color: #C0CDDB; + font-size: 12px; + font-weight: 400; } + +input.docs-main-search:-ms-input-placeholder { + color: #C0CDDB; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; } + +.superuser-wrapper { + text-align: center; } + +@media (max-width: 767px) { + .superuser-wrapper { + display: none; } } + +.superuser-wrapper p { + margin-top: 10px; + font-size: 14px; + font-weight: 300; } + +.superuser-wrapper p strong { + display: block; + font-size: 12px; + font-weight: 600; } + +.mid-docs-wrapper { + background: white; + padding: 30px 0 25px; + border-top: 1px solid #edf2f7; + border-bottom: 1px solid #edf2f7; } + +.mid-docs-wrapper h2 { + color: #2A4E68; + margin: 0 0 5px; } + +.mid-docs-wrapper p { + color: #30739C; + font-weight: 300; } + +.docs-dropdown > a { + background: #2A4E68; + padding: 20px 5px; + text-align: center; + font-size: 13px; + color: white; } + +.docs-dropdown a { + width: 100%; + display: block; + border-radius: 4px; } + +@media (max-width: 767px) { + .docs-dropdown { + margin: 30px 0 10px; } } + +.docs-dropdown > a:hover, .docs-dropdown > a:focus { + text-decoration: none; + color: white; + background: #30739C; } + +.docs-dropdown i { + margin-left: 10px; + font-size: 18px; } + +.docs-dropdown .dropdown-menu { + width: 100%; + margin-top: 10px; } + +.docs-dropdown > .dropdown-menu:after, .docs-dropdown > .dropdown-menu:before, .docs-sidebar-dropdown:before, .docs-sidebar-dropdown:after { + bottom: 100%; + left: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; } + +.docs-dropdown > .dropdown-menu:after, .docs-sidebar-dropdown:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; + border-width: 15px; + margin-left: -15px; } + +.docs-dropdown > .dropdown-menu:before, .docs-sidebar-dropdown:before { + border-color: rgba(170, 170, 170, 0); + border-bottom-color: #aaaaaa; + border-width: 16px; + margin-left: -16px; } + +.docs-dropdown > .dropdown-menu > li.dropdown-header, .docs-sidebar-dropdown > li.dropdown-header { + text-align: left; + padding: 10px 20px; + margin: 10px 0; + border-bottom: 1px solid #edf2f7; + text-transform: uppercase; + color: #333; + font-weight: 400; } + +.docs-dropdown > .dropdown-menu > li.dropdown-header:first-child { + margin-top: 0; } + +.docs-dropdown > .dropdown-menu > li > a, .docs-sidebar-dropdown > li > a { + padding: 10px 25px; + text-align: left; + font-size: 13px; + color: #2A4E68; } + +.docs-toc { + background: white; + padding-top: 80px; + padding-bottom: 20px; } + +.docs-toc h3 { + margin-bottom: 30px; + font-size: 18px; + font-weight: 600; + padding-left: 10px; } + +.docs-toc h3 i { + font-size: 25px; + margin-right: 10px; } + +.docs-toc a { + font-size: 1.1em; + line-height: 1.3; + font-weight: 400; + color: #4c97c3; + display: block; + padding: 10px; } + +.docs-toc a:hover { + background: #edf2f7; + text-decoration: none; } + +.docs-link-sections { + margin: 0 0 10px; } + +.docs-contribute-wrapper { + padding-bottom: 10px; + text-align: center; } + +a.overview-btn.contribute-btn { + background: #DA422F; + color: white; + padding: 10px 0; + display: block; + float: none; + text-transform: capitalize; + width: 250px; + margin: 20px auto; } + +a.overview-btn.contribute-btn:hover { + background: #B52522; } + +a.overview-btn.contribute-btn i { + margin-left: 10px; } + +/*End Docs Main*/ +/*Docs Book View*/ +.docs-book-wrapper, .docs-search-wrapper { + margin-top: 40px; + margin-bottom: 40px; } + +@media (max-width: 767px) { + .docs-sidebar { + margin-top: 20px; + padding-top: 20px; + border-top: 1px solid #edf2f7; } } + +.docs-sidebar-search { + display: block; } + +.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { + margin-left: 0; } + +.docs-sidebar-releases { + float: left; + margin: 20px 0 0; + width: 100%; } + +.docs-sidebar-releases button, .docs-sidebar-releases div.docs-sidebar-release-select { + background: #2A4E68; + color: #edf2f7; + display: inline-block; + text-align: center; + padding: 20px 0; + height: 60px; + border-radius: 0; } + +.docs-sidebar-releases button:hover, .docs-sidebar-releases button:focus { + color: white; + background: #1D354D; } + +.docs-sidebar-releases button.docs-sidebar-home { + width: 25%; + border-right: 1px solid #1c3b53; } + +.docs-sidebar-releases button.docs-sidebar-home i { + font-size: 20px; + line-height: 1; } + +.docs-sidebar-releases div.docs-sidebar-release-select { + font-size: 11px; + width: 75%; + vertical-align: middle; + border-left: 1px solid #496e8a; } + +.docs-sidebar-releases button.docs-sidebar-release-select i { + margin-left: 10px; } + +.docs-sidebar-dropdown { + right: 0; } + +.docs-sidebar-toc { + background: #edf2f7; + float: left; + padding: 0; + color: #2A4E68; + width: 100%; + border-top: 1px solid #edf2f7; } + +.docs-sidebar-section { + border-bottom: 1px solid #c8d8e5; + cursor: pointer; } + +.docs-sidebar-section:hover { + background: #BCCFDE; } + +#table-of-contents.docs-sidebar-section { + background-color: transparent; +} + +.docs-sidebar-section.active { + background: #D8E0EA; + padding: 0; + cursor: default; } + +.docs-sidebar-section h4 { + font-size: 14px; + width: 100%; + height: 100%; + font-weight: 700; } + +a.docs-sidebar-section-title { + display: block; + width: 100%; + padding: 10px 20px; + color: #2A4E68; } + +a.docs-sidebar-section-title:hover { + text-decoration: #BCCFDE; } + +.docs-sidebar-section.active a.docs-sidebar-section-title:hover { + cursor: default; } + +.docs-sidebar-section.active h4 { + margin-bottom: 20px; } + +.docs-sidebar-section.active ol { + list-style: none; + max-height: 2000px; + -webkit-transition: max-height 2s ease; + transition: max-height 2s ease; } + +.docs-sidebar-section ol { + counter-reset: section; + display: block; + max-height: 0; + margin: 0; + padding: 0 20px; + width: 100%; + list-style-position: inside; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + -webkit-transition: max-height 0s ease; + transition: max-height 0s ease; } + +.docs-sidebar-section.active > ol:last-child { + margin-bottom: 30px; } + +.docs-sidebar-section ol a { + color: #2A4E68; } + +.docs-sidebar-section ol lh { + font-weight: 700; + font-size: 12px; + padding-bottom: 10px; + width: 100%; } + +.docs-sidebar-section ol > li { + max-height: 0; + margin-left: 0; + font-size: 12px; + line-height: 2; + width: 97%; + list-style-position: inside; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + -webkit-transition: max-height 0s ease; + transition: max-height 0s ease; } + +.docs-sidebar-section ol.active > li:last-child { + margin-bottom: 20px; + max-height: 2000px; + -webkit-transition: max-height 2s ease; + transition: max-height 2s ease; } + +.docs-sidebar-section ol.active li > ul { + max-height: 0; } + +.docs-sidebar-section ol.active li, .docs-sidebar-section ol.active li.active > ul, .docs-sidebar-section ol.active li.active, .docs-sidebar-section ol.active li.active ul, .docs-sidebar-section ol.active li.active ul li { + display: list-item; + max-height: 2000px; + -webkit-transition: max-height 2s ease; + transition: max-height 2s ease; } + +.docs-sidebar-section ol li ul { + padding: 0; + margin: 0; + list-style: none; + counter-increment: none; } + +.docs-sidebar-section ol li ul li:before { + content: " "; } + +.docs-sidebar-section ol li > ul > li { + list-style: none; + margin-left: 20px; + counter-increment: none; } + +li.docs-has-sub > a { + font-weight: 700; } + +li.docs-has-sub:before { + content: "+"; + padding: 0 5px; + margin-right: 5px; + background: #C2CAD8; + border-radius: 4px; } + +li.docs-has-sub.open:before { + content: "-"; + padding: 0 6px; } + +.docs-header { + position: relative; } + +.docs-actions { + text-align: right; + margin-top: 35px; } + +.docs-actions i { + margin-left: 0; + padding: 0 5px; + font-size: 20px; + color: #999999; } + +.docs-actions i:hover { + color: #333; } + +.docs-actions i.fa-rss { + color: #FA600A; } + +.docs-actions i.fa-cloud-download { + color: #30739C; } + +.docs-actions .fa-info-circle { + border-left: 1px solid #dae5ee; + color: #5bb449; + padding: 0 10px; } + +.docs-actions .fa-info-circle:hover { + color: #36782A; } + +.docs-actions .fa-info-circle.docs-info-off { + color: #999; } + +.docs-actions .fa-bug { + border-left: 1px solid #dae5ee; + color: #DA422F; + padding: 0 10px; } + +.docs-actions .fa-bug:hover { + color: #9A201D; } + +.docs-actions .fa-angle-double-left { + border-left: 1px solid #dae5ee; + color: #DA422F; + padding: 0 10px; } + +.docs-actions .fa-angle-double-left:hover { + color: #9A201D; } + +.docs-actions .fa-angle-double-right { + border-left: 1px solid #dae5ee; + color: #DA422F; + padding: 0 10px; } + +.docs-actions .fa-angle-double-right:hover { + color: #9A201D; } + +.tooltip { + background: none; + white-space: nowrap; } + +.docs-byline { + border-top: 1px solid #edf2f7; + border-bottom: 1px solid #edf2f7; + padding: 10px; + font-size: 10px; + color: #9eb5c3; + text-transform: uppercase; } + +.docs-browse { + float: right; + font-size: 14px; + color: #6f91a6; + text-transform: uppercase; } + +.docs-updated { + float: left; } + +a.docs-edit { + float: right; + color: #9eb5c3; } + +a.docs-edit:hover { + color: #2A4E68; + text-decoration: none; } + +a.docs-edit i { + margin-right: 5px; } + +.docs-book-wrapper h5 { + font-size: 14px; + font-weight: 700; + color: #2A4E68; + margin: 20px 0; } + +.docs-top-contents ul { + list-style: none; + padding: 3px; + margin: 0 0 5px 0; } + +.docs-top-contents ul li a { + text-decoration: underline; } + +.docs-body a { + text-decoration: underline; + color: #30739C; } + +a.headerlink { + color: #fff; } + +a.headerlink:hover { + color: #30739C; } + +a.gloss { + background: #edf2f7; + color: #2A4E68; + padding: 2px 5px; + text-decoration: none; } + +a.gloss:hover { + background: #D4DCE6; } + +a.gloss:focus { + outline: none; } + +a.gloss.off { + background: transparent; + padding: 0; + color: #333; + cursor: default; } + +pre { + background-color: #333; + color: #fff; + overflow: auto; + margin: 0 0 10px; + padding: 20px 30px; } + +pre code, pre .line-number { + font-family: "Courier New", Courier, Monospace; + font-weight: normal; + font-size: 14px; + color: white; + display: block; } + +pre .line-number { + float: left; + margin: 0 1em 0 -1em; + border-right: 3px solid #5bb449; + text-align: right; } + +pre .line-number span { + display: block; + padding: 0 0.5em 0 1em; } + +pre .cl { + display: block; + clear: both; } + +.popover { + color: #2A4E68; } + +.admonition { + background: #eee; + border-left: 4px solid; + border-radius: 4px; + padding: 20px; + margin: 30px 0; } + +.admonition h3 { + font-size: 18px; + font-weight: 600; } + +.admonition h3 i { + margin-right: 5px; + font-size: 22px; } + +.admonition.note { + background: #edf2f7; + border-color: #2A4E68; + color: #2A4E68; } + +.admonition.note a { + color: #2A4E68; } + +/* BB: The following eight rules, four "important" and four "warning", + originally had names "docs-important" and "docs-warning" */ + +.admonition.important { + background: #FEFFBE; + border-color: #D7AA16; + color: #D7AA16; } + +.admonition.important a { + color: #e8be15; } + +.admonition.important h3 { + color: #e8be15; } + +.admonition.important h3 i { + color: #e8be15; } + +.admonition.warning { + background: #FED3D9; + border-color: #DA422F; + color: #DA422F; } + +.admonition.warning h3 { + color: #DA422F; } + +.admonition.warning h3 i { + color: #DA422F; } + +.admonition.warning a { + color: #DA422F; } + +/* BB: added the adminition-title rule to bolden the adminition title */ +.admonition-title { + font-weight: 600; +} + +.docs-tags { + width: 100%; + margin-bottom: 30px; } + +a.docs-tag { + background: #edf2f7; + padding: 3px 6px; + border-radius: 4px; + display: inline-block; + margin: 0 5px 0 0; + font-size: 12px; + color: #30739C; } + +.docs-byline.bottom { + margin-bottom: 30px; } + +.docs-license { + /* margin-top: 30px; */ + color: #555; + font-size: 12px; + border-right: 1px solid #edf2f7; } + +@media (max-width: 767px) { + .docs-license { + border-right: 0; + border-bottom: 1px solid #edf2f7; + padding-bottom: 20px; + margin-bottom: 20px; } } + +.docs-license a { + color: #555; + font-size: 12px; + text-decoration: underline; } + +.docs-license a:hover { + color: #222; } + +.docs-license img { + float: left; + margin: 5px 15px 20px 0; } + +.docs-actions-wrapper { + margin-top: 10px; } + +a.docs-footer-actions { + display: block; + color: #555; + text-transform: uppercase; + font-size: 11px; + margin-bottom: 15px; } + +a.docs-footer-actions i { + font-size: 18px; + margin-right: 10px; } + +a.docs-footer-actions:hover { + color: #222; } + +/*End Docs Book View*/ +/*Docs Search View*/ +.docs-search-wrapper h2 { + text-align: center; } + +.docs-search-count { + text-align: right; + font-size: 11px; + font-weight: 600; + color: #2A4E68; + border-bottom: 1px solid #edf2f7; + margin: 20px 0; + padding-bottom: 15px; } + +.docs-result { + margin: 20px 0; + padding: 20px 0; + border-bottom: 1px solid #edf2f7; } + +.docs-result h3 a { + font-size: 16px; + font-weight: 600; + text-decoration: underline; + color: #30739C; } + +.docs-result h3 a:hover { + color: #2A4E68; } + +.docs-result p { + font-size: 14px; } + +.docs-result p span { + font-style: italic; } + +.docs-result p span:after { + content: "..."; + margin-left: 5px; + margin-right: 5px; } + +.docs-result .docs-search-link { + font-size: 12px; + color: #666; + text-decoration: none; } + +.docs-result .docs-search-link:hover { + color: #333; } + +.docs-pagination { + text-align: center; } + +ul.pagination li a { + margin: 0 3px; + border-radius: 4px; + border: 3px solid #edf2f7; + color: #30739C; + font-weight: 400; + font-size: 14px; } + +ul.pagination li.active a, ul.pagination li.active a:hover { + border-color: #30739C; + color: #2A4E68; + background: white; } + +ul.pagination li a:hover { + border-color: #C2CAD8; + background: white; } + +/*End Docs Search View*/ +/*webui Popover styles*/ +.webui-popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + width: 276px; + min-height: 50px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + background-clip: padding-box; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } + +.webui-popover.top, .webui-popover.top-left, .webui-popover.top-right { + margin-top: -10px; } + +.webui-popover.right, .webui-popover.right-top, .webui-popover.right-bottom { + margin-left: 10px; } + +.webui-popover.bottom, .webui-popover.bottom-left, .webui-popover.bottom-right { + margin-top: 10px; } + +.webui-popover.left, .webui-popover.left-top, .webui-popover.left-bottom { + margin-left: -10px; } + +.webui-popover-inner .close { + font-family: arial; + margin: 5px 10px 0 0; + float: right; + font-size: 20px; + font-weight: bold; + line-height: 20px; + color: #000000; + text-shadow: 0 1px 0 #fff; + opacity: 0.2; + filter: alpha(opacity=20); + text-decoration: none; } + +.webui-popover-inner .close:hover, .webui-popover-inner .close:focus { + opacity: 0.5; + filter: alpha(opacity=50); } + +.webui-popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; } + +.webui-popover-content { + padding: 9px 14px; + overflow: auto; } + +.webui-popover-inverse { + background-color: #333333; + color: #eeeeee; } + +.webui-popover-inverse .webui-popover-title { + background: #3b3b3b; + border-bottom: none; + color: #eeeeee; } + +.webui-no-padding .webui-popover-content { + padding: 0; } + +.webui-no-padding .list-group-item { + border-right: none; + border-left: none; } + +.webui-no-padding .list-group-item:first-child { + border-top: 0; } + +.webui-no-padding .list-group-item:last-child { + border-bottom: 0; } + +.webui-popover > .arrow, .webui-popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } + +.webui-popover > .arrow { + border-width: 11px; } + +.webui-popover > .arrow:after { + border-width: 10px; + content: ""; } + +.webui-popover.top > .arrow, .webui-popover.top-right > .arrow, .webui-popover.top-left > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; } + +.webui-popover.top > .arrow:after, .webui-popover.top-right > .arrow:after, .webui-popover.top-left > .arrow:after { + content: " "; + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; } + +.webui-popover.right > .arrow, .webui-popover.right-top > .arrow, .webui-popover.right-bottom > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); } + +.webui-popover.right > .arrow:after, .webui-popover.right-top > .arrow:after, .webui-popover.right-bottom > .arrow:after { + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #ffffff; } + +.webui-popover.bottom > .arrow, .webui-popover.bottom-right > .arrow, .webui-popover.bottom-left > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; } + +.webui-popover.bottom > .arrow:after, .webui-popover.bottom-right > .arrow:after, .webui-popover.bottom-left > .arrow:after { + content: " "; + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; } + +.webui-popover.left > .arrow, .webui-popover.left-top > .arrow, .webui-popover.left-bottom > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); } + +.webui-popover.left > .arrow:after, .webui-popover.left-top > .arrow:after, .webui-popover.left-bottom > .arrow:after { + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #ffffff; + bottom: -10px; } + +.webui-popover-inverse.top > .arrow, .webui-popover-inverse.top-left > .arrow, .webui-popover-inverse.top-right > .arrow, .webui-popover-inverse.top > .arrow:after, .webui-popover-inverse.top-left > .arrow:after, .webui-popover-inverse.top-right > .arrow:after { + border-top-color: #333333; } + +.webui-popover-inverse.right > .arrow, .webui-popover-inverse.right-top > .arrow, .webui-popover-inverse.right-bottom > .arrow, .webui-popover-inverse.right > .arrow:after, .webui-popover-inverse.right-top > .arrow:after, .webui-popover-inverse.right-bottom > .arrow:after { + border-right-color: #333333; } + +.webui-popover-inverse.bottom > .arrow, .webui-popover-inverse.bottom-left > .arrow, .webui-popover-inverse.bottom-right > .arrow, .webui-popover-inverse.bottom > .arrow:after, .webui-popover-inverse.bottom-left > .arrow:after, .webui-popover-inverse.bottom-right > .arrow:after { + border-bottom-color: #333333; } + +.webui-popover-inverse.left > .arrow, .webui-popover-inverse.left-top > .arrow, .webui-popover-inverse.left-bottom > .arrow, .webui-popover-inverse.left > .arrow:after, .webui-popover-inverse.left-top > .arrow:after, .webui-popover-inverse.left-bottom > .arrow:after { + border-left-color: #333333; } + +.webui-popover i.icon-refresh { + display: block; + width: 30px; + height: 30px; + font-size: 20px; + top: 50%; + left: 50%; + position: absolute; + background: url(../img/loading.gif) no-repeat; } + +@-webkit-keyframes rotate { + 100% { + -webkit-transform: rotate(360deg); } } + +@keyframes rotate { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.newSubNav { + width: 85%; } + +.newSubNav ul { + padding: 0px; + margin-top: 30px; + margin-left: -10px; } + +.newSubNav ul:nth-child(2) { + border-top: 1px solid #E8E8E8; + padding-top: 30px; } + +.newSubNav li { + list-style: none; } + +.newSubNav a { + color: #8A959E; + text-transform: uppercase; + font-size: 12px; + padding: 15px 20px; + display: block; } + +.newSubNav a.current, .newSubNav a.current:hover { + background-color: #EDF2F7; + font-weight: bold; + color: #2D709B; } + +.newSubNav a:hover { + text-decoration: none; + color: black; } + +.newSubNav .fa-chevron-right { + float: right; + margin-top: 2px; + color: #C6D8E4; } + +li#start a { + color: #75C320; } + +li#openstack-shared-services { + padding-bottom: 20px; + border-bottom: 1px solid #E8E8E8; } + +li#start { + margin-top: 20px; } + +fieldset { + border: 1px solid #CCCCCC; + padding: 20px 17px 20px 17px; + margin-bottom: 20px; } + +fieldset ul { + list-style: none; } + +input[type="radio"] { + margin-left: 0px; } + +input[type="checkbox"] { + margin-left: 0px !important; } + +input[type="checkbox"], input[type="radio"] { + display: inline-block; } + +div.tooltip-inner { + max-width: 350px; +} + +table.highlighttable { + width: 100%; +} + +.docs-sidebar-section ul ul { + padding-left: 0px; + margin-left: 10px; +} + +.docs-sidebar-section > ul:not(.current) li > ul { + display: none; +} + +li.toctree-l2:not(.current) > ul { + display: none; +} + +.docs-body .section h1 { + display: none; +} + +.docs-top-contents a[href="#"] { + display: none; +} + +.docs-top-contents h5 { + margin-bottom: 10px; +} + +.docs-top-contents { + padding: 10px; +} diff --git a/_templates/openstackdocs/static/css/native.css b/_templates/openstackdocs/static/css/native.css new file mode 100644 index 000000000..bffc5c9be --- /dev/null +++ b/_templates/openstackdocs/static/css/native.css @@ -0,0 +1,69 @@ +.hll { background-color: #404040 } +.c { color: #999999; font-style: italic } /* Comment */ +.err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.g { color: #d0d0d0 } /* Generic */ +.k { color: #6ab825; font-weight: bold } /* Keyword */ +.l { color: #d0d0d0 } /* Literal */ +.n { color: #d0d0d0 } /* Name */ +.o { color: #d0d0d0 } /* Operator */ +.x { color: #d0d0d0 } /* Other */ +.p { color: #d0d0d0 } /* Punctuation */ +.cm { color: #999999; font-style: italic } /* Comment.Multiline */ +.cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ +.c1 { color: #999999; font-style: italic } /* Comment.Single */ +.cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ +.gd { color: #d22323 } /* Generic.Deleted */ +.ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ +.gr { color: #d22323 } /* Generic.Error */ +.gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +.gi { color: #589819 } /* Generic.Inserted */ +.go { color: #cccccc } /* Generic.Output */ +.gp { color: #aaaaaa } /* Generic.Prompt */ +.gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ +.gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ +.gt { color: #d22323 } /* Generic.Traceback */ +.kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */ +.kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */ +.kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */ +.kp { color: #6ab825 } /* Keyword.Pseudo */ +.kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */ +.kt { color: #6ab825; font-weight: bold } /* Keyword.Type */ +.ld { color: #d0d0d0 } /* Literal.Date */ +.m { color: #3677a9 } /* Literal.Number */ +.s { color: #ed9d13 } /* Literal.String */ +.na { color: #bbbbbb } /* Name.Attribute */ +.nb { color: #24909d } /* Name.Builtin */ +.nc { color: #447fcf; text-decoration: underline } /* Name.Class */ +.no { color: #40ffff } /* Name.Constant */ +.nd { color: #ffa500 } /* Name.Decorator */ +.ni { color: #d0d0d0 } /* Name.Entity */ +.ne { color: #bbbbbb } /* Name.Exception */ +.nf { color: #447fcf } /* Name.Function */ +.nl { color: #d0d0d0 } /* Name.Label */ +.nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */ +.nx { color: #d0d0d0 } /* Name.Other */ +.py { color: #d0d0d0 } /* Name.Property */ +.nt { color: #6ab825; font-weight: bold } /* Name.Tag */ +.nv { color: #40ffff } /* Name.Variable */ +.ow { color: #6ab825; font-weight: bold } /* Operator.Word */ +.w { color: #666666 } /* Text.Whitespace */ +.mf { color: #3677a9 } /* Literal.Number.Float */ +.mh { color: #3677a9 } /* Literal.Number.Hex */ +.mi { color: #3677a9 } /* Literal.Number.Integer */ +.mo { color: #3677a9 } /* Literal.Number.Oct */ +.sb { color: #ed9d13 } /* Literal.String.Backtick */ +.sc { color: #ed9d13 } /* Literal.String.Char */ +.sd { color: #ed9d13 } /* Literal.String.Doc */ +.s2 { color: #ed9d13 } /* Literal.String.Double */ +.se { color: #ed9d13 } /* Literal.String.Escape */ +.sh { color: #ed9d13 } /* Literal.String.Heredoc */ +.si { color: #ed9d13 } /* Literal.String.Interpol */ +.sx { color: #ffa500 } /* Literal.String.Other */ +.sr { color: #ed9d13 } /* Literal.String.Regex */ +.s1 { color: #ed9d13 } /* Literal.String.Single */ +.ss { color: #ed9d13 } /* Literal.String.Symbol */ +.bp { color: #24909d } /* Name.Builtin.Pseudo */ +.vc { color: #40ffff } /* Name.Variable.Class */ +.vg { color: #40ffff } /* Name.Variable.Global */ +.vi { color: #40ffff } /* Name.Variable.Instance */ +.il { color: #3677a9 } /* Literal.Number.Integer.Long */ diff --git a/_templates/openstackdocs/static/css/styles.css b/_templates/openstackdocs/static/css/styles.css new file mode 100644 index 000000000..a3b47da55 --- /dev/null +++ b/_templates/openstackdocs/static/css/styles.css @@ -0,0 +1,1308 @@ +/*! + * Start Bootstrap - Landing Page Bootstrap Theme (http://startbootstrap.com) + * Code licensed under the Apache License v2.0. + * For details, see http://www.apache.org/licenses/LICENSE-2.0. + */ + +body, +html { + width: 100%; + height: 100%; +} + +body, +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Open Sans", Helvetica, Arial, sans-serif; + font-weight: 400; +} +h2 { + color: #284d68; + font-size: 34; + font-weight: 300; + margin-bottom: 25px; +} +h5 { + color: #da3d27; + margin-bottom: 0; +} + +dd { + margin-left: 20px +} + +ol.loweralpha { + list-style-type: lower-alpha; +} + +.lead { + font-size: 18px; + font-weight: 400; +} + +/*Header Navigation*/ +.brand-wrapper { + margin: 10px 0; + padding-right: 20px; + float: left; + border-right: 1px solid #eee; + min-width: 135px; +} +@media (max-width: 767px) { + .brand-wrapper { + border-right: none; + } +} +a.navbar-brand { + background: url('../images/openstack-logo-full.png') left no-repeat; + height: 35px; + width: 135px; +} +@media (min-width: 768px) and (max-width: 1025px) { + .brand-wrapper { + width: 75px; + min-width: 75px; + margin-top: 0; + } + a.navbar-brand { + background: url('../images/openstack-logo-vert.png') left no-repeat; + margin-left: 0px !important; + height: 54px; + width: 59px; + } +} +@media (max-width: 767px) { + a.navbar-brand { + margin-left: 15px; + } +} +.navbar-default { + border: none; + border-radius: 0px; + background: #fff; + margin-bottom: 0; + padding: 20px 0; +} +.navbar-default .container { + background-color: white; +} +@media (min-width: 768px) and (max-width: 1200px) { + .navbar-default .container { + width: 100%; + } +} +ul.navbar-main { + display: none; + float: right; +} +@media (min-width: 768px) and (max-width: 1097px) { + ul.navbar-main { + display: block; + } +} +@media (max-width:767px) { + ul.navbar-main { + display: block; + margin-right: 30px; + width: 90%; + } +} +.navbar-default ul.navbar-main>li>a { + color: #8a959e; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +@media (min-width: 768px) and (max-width: 1025px) { + ul.navbar-main { + margin-top: 1px; + } + .navbar-default ul.navbar-main>li>a { + font-size: 11px; + padding: 15px 8px; + } +} +.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { + background: #fff; +} +.navbar-nav>li>.dropdown-menu { + margin-top: 10px; + padding: 10px 0; + min-width: 230px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.navbar-nav>li>.dropdown-menu:after, .navbar-nav>li>.dropdown-menu:before { + bottom: 100%; + left: 25%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} + +.navbar-nav>li>.dropdown-menu:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; + border-width: 15px; + margin-left: -15px; +} +.navbar-nav>li>.dropdown-menu:before { + border-color: rgba(170, 170, 170, 0); + border-bottom-color: #aaaaaa; + border-width: 16px; + margin-left: -16px; +} +@media (max-width: 767px) { + .navbar-nav>li>.dropdown-menu:after, .navbar-nav>li>.dropdown-menu:before { + display: none; + } + + .navbar-nav>li>.dropdown-menu:after { + display: none; + } + .navbar-nav>li>.dropdown-menu:before { + display: none; + } +} +i.fa-caret-right { + margin-left: 8px; +} +.navbar-nav>li>.dropdown-menu li a{ + text-transform: uppercase; + padding: 13px 20px; + font-size: 12px; + color: #8a959e; +} +.navbar-nav>li>.dropdown-menu li a:hover { + color: #333; +} +.navbar-nav>li>.dropdown-menu li a:focus { + outline: none; +} +@media (max-width: 767px) { + .navbar-default ul.navbar-main>li>a i.fa-caret-down { + display: none; + } +} +.navbar-default .navbar-toggle { + border: none; +} +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background: transparent; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #5A5A5A; + height: 3px; + border-radius: 3px; +} +.search-container { + position: relative; + display: none; + float: left; + width: 84%; +} +@media (min-width: 768px) and (max-width: 1200px) { + .search-container { + width: 80%; + } +} +@media (max-width:767px) { + .search-container { + display: none; + } +} +.search-icon { + display: none; + padding: 17px 20px 16px; + float: left; + text-transform: uppercase; + color: #8a959e; + font-size: 12px; + font-weight: 400; +} +.search-icon:hover { + cursor: pointer; + color: #8a959e; +} +.search-icon i { + margin-right: 5px; + color: #8a959e; +} +@media (max-width: 767px) { + .search-icon { + display: none !important; + } +} +.header-search-form { + position: absolute; + z-index: 1000; + left: 20px; + width: 100%; + -webkit-transition-property: width; + -webkit-transition-duration: 1s; + -webkit-transition-timing-function: linear; + /* Standard syntax */ + transition-property: width; + transition-duration: 1s; + transition-timing-function: linear; +} +@media (max-width:767px) { + .header-search-form { + display: none; + } +} +.mobile-search-form { + display: none; + position: relative; + width: 100%; +} +@media (max-width: 767px) { + .mobile-search-form { + display: block; + } +} +.header-search { + border: 2px solid #dae5ee; + border-radius: 4px; + height: 35px; + margin: 7px 0 0 0; + background: #fff; + width: 100%; + -webkit-transition: width 4s; + -moz-transition: width 4s; + -ms-transition: width 4s; + -o-transition: width 4s; + transition: width 4s; +} +.header-search::-webkit-input-placeholder { + color: #8a959e; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; +} + +.header-search:-moz-placeholder { /* Firefox 18- */ + color: #8a959e; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; +} + +.header-search::-moz-placeholder { /* Firefox 19+ */ + color: #8a959e; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; +} + +.header-search:-ms-input-placeholder { + color: #8a959e; + font-size: 12px; + text-transform: lowercase; + font-weight: 400; +} +.header-search:focus { + border-radius: 4px; + outline: none; + border: 2px solid #3D84B6; +} +.close-search { + position: absolute; + top: 17px; + right: 6px; + color: #dae5ee; + z-index: 1001; + font-size: 16px +} +.close-search:hover { + color: #3D84B6; + cursor: pointer; +} +@media (max-width:767px) { + .close-search { + display: none !important; + } +} +.show { + display: block; +} +@media (max-width:767px) { + .show { + display: none; + } +} + +/*End Header Navigation*/ + +/*Hero*/ + +.intro-header { + padding-top: 0px; + padding-bottom: 0; + text-align: center; + color: #f8f8f8; + background: url(/images/hero-bkgd1.jpg) no-repeat center center; + background-size: cover; + position: relative; +} + +.intro-message { + position: relative; + padding-top: 110px; + padding-bottom: 110px; +} +@media(max-width:1199px) { + .intro-message { + padding-bottom: 50px; + } +} + +.intro-message > h1 { + margin: 0; + font-size: 3em; + font-weight: 300; + text-align: center; + font-family: "Open Sans", Helvetica, Arial, sans-serif; + width: 100%; +} + +@media(max-width:767px) { + .intro-message > h1 { + font-size: 3em; + } +} +.intro-divider { + width: 400px; + border-top: 1px solid #f8f8f8; + border-bottom: 1px solid rgba(0,0,0,0.2); +} + +.intro-message > h3 { + text-shadow: none; + text-align: left; + font-weight: 300; + font-size: 24px; + margin-top: 10px; +} +.hero-credit { + position: absolute; + bottom: 30px; + right: 30px; + color: #fff; + opacity: 0.5; +} +.hero-credit:hover { + opacity: 1; +} + +/*Hero Promo, add .featured to .intro-header*/ +.intro-header.featured { + text-align: center; + background: url(/images/summit-promo-bkgd1.jpg) no-repeat center center; + min-height: 420px; + background-size: cover; + position: relative; +} +.intro-header.featured .intro-message { + padding-bottom: 50px; +} +.promo-btn-wrapper { + +} +a.promo-btn { + color: #fff; + font-size: 24px; + font-weight: 300; + background: transparent; + border: 2px solid #fff; + border-radius: 4px; + padding: 20px 35px; + margin: 0 auto; + text-align: center; + min-width: 370px; + display: inline-block; +} +a.promo-btn:hover { + text-decoration: none; + background: rgba(255, 255, 255, 0.2); +} +a.promo-btn i.fa-chevron-right { + background: transparent; + border: 2px solid #fff; + border-radius: 100px; + padding: 0; + font-size: 14px; + margin-left: 10px; + width: 30px; + height: 30px; + line-height: 2.1; +} +p.promo-dates { + display: inline-block; + margin-top: 10px; + font-weight: 400; +} + +/*End Hero*/ + +/*Overview Section*/ +.overview-section { + padding: 80px 0; +} +@media (max-width: 767px) { + .overview-section { + padding-top: 40px; + } +} +.overview-section h2 { + color: #284d68; + font-size: 34px; + font-weight: 300; + margin-bottom: 25px; +} +.overview-section p { + color: #888; + font-size: 16px; + font-weight: 300px; + line-height: 1.4; +} +.overview-section a { + color: #4c97c3; + text-decoration: underline; +} +.btn-wrapper { + float: left; + width: 100%; + text-align: center; +} +@media (max-width: 980px) { + .overview-left { + margin-bottom: 50px; + } +} +a.overview-btn { + float: left; + background: #4c97c3; + color: #fff; + text-transform: uppercase; + border-radius: 4px; + padding: 15px 25px; + text-decoration: none; + margin-top: 5px; + margin-bottom: 5px; +} +a.overview-btn:hover { + background: #2e729a; +} +a.overview-btn.left-btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right: 1px solid #3f81a7; + margin-right: 0; +} +a.overview-btn.right-btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left: 1px solid #73b8e1; + margin-left: 0; +} +.release-text { + display: block; + text-align: left; + color: #636568; + font-size: 13px; +} +.overview-section .img-responsive { + max-width: 550px; +} +.overview-right { + text-align: center; +} +.control-cloud-graphic { + max-width: 600px; + margin: 0 auto 15px; +} +a.demo-link { + font-size: 13px; + font-weight: 400; + text-decoration: none; + color: #34789A; + background: #F0F9FE; + padding: 10px 25px; + border-radius: 4px; +} +a.demo-link:hover { + color: #34789A; + background: #CDD9E2; +} +a.demo-link i { + margin-left: 5px; + font-size: 14px; +} + +/*When Featured, Add Class .featured to .overview-section*/ +.overview-section.featured .overview-right { + background: #E8EEF5; + border-radius: 4px; + text-align: center; + padding: 20px; + margin-top: 50px; +} +@media (max-width: 1200px) { + .overview-section.featured .overview-right { + margin-top: 50px; + } +} +.overview-section.featured .overview-right h3 { + color: #3D84B6; + text-align: center; +} +.overview-section.featured .overview-right p { + color: #333; + font-size: 13px; +} +.overview-section.featured .overview-right img.promo-graphic { + max-width: 350px; + margin: 20px auto; +} + +/*End Overview Section*/ + +/*Customers Section*/ +.customers-row { + padding: 80px 0; + text-align: center; + background: #edf2f7; +} +.customers-row h2 { + text-transform: capitalize; + margin-bottom: 0; +} +.customer-logos-wrapper { + margin: 15px 0; +} +.customer-logos { + position: relative; + padding: 20px 0; +} +@media (max-width: 767px) { + .customer-logos { + position: relative; + padding: 20px 0; + width: 80%; + margin: 0 auto; + } +} +.logo-hover { + background: #dee2e8; + border-radius: 3px; +} +.logo-hover:after { + content: ' '; + height: 0; + position: absolute; + width: 0; + border: 10px solid transparent; + border-top-color: #dee2e8; + top: 100%; + left: 50%; + margin-left: -10px; +} +.customers-description { + margin: 40px 0; + color: #284d68; + text-align: center; +} +.customers-description p { + padding: 20px 50px; + border-top: 1px solid #dee2e8; + border-bottom: 1px solid #dee2e8; + display: inline; +} +@media (max-width: 767px) { + .customers-description p { + display: block; + } +} +.customers-action { + margin-top: 40px; + text-align: center; +} +a.customer-btn { + background: #2e729a; + color: #fff; + text-transform: uppercase; + border-radius: 4px; + padding: 15px 25px; + text-decoration: none; + border-style: none; +} +a.customer-btn:hover { + background: #173D5B; + color: #fff; +} + +/*When Featured, Add Class .featured to .customers-row*/ +.customers-row.featured .customer-logos-wrapper { + width: 50%; + max-width: 1000px; + margin: 40px 25% 0; + border-top: 1px solid #DDE3E8; + padding-top: 20px; +} +.customers-row.featured .customer-logos-wrapper hr { + color: #333; +} +.customers-row.featured .customer-logos img { + width: 90%; + max-width: 100px; +} +.customers-row.featured .customer-logos:hover { + background: none; +} +.customers-row.featured .customer-logos:hover:after { + display: none; +} +.customers-row.featured .customers-action { + margin-top: 0; +} +.customers-row.featured button.customer-btn { + background: none; + border-radius: 0; + padding: 0; + text-decoration: underline; + color: #2e729a; + text-transform: capitalize; +} +.featured-description { + width: 85%; + margin: 40px auto; +} +@media (max-width: 767px) { + iframe { + width: 90%; + } +} +/*End Customers Section*/ + +/*Community Section*/ +.community-section { + padding: 75px 0; + background: url('../images/community-bkgd.jpg') no-repeat center center; + background-size: cover; + min-height: 350px; +} +.community-section.featured { + background: url('../images/community-bkgd2.jpg') no-repeat center center; + background-size: cover; +} +.community-graphic { + max-width: 650px; + margin: 0 auto; +} +@media (max-width: 1200px) { + .community-graphic { + margin-bottom: 20px; + } +} +.community-section h2 { + color: #fff; +} +.community-section p { + color: #fff; +} +@media (max-width: 1200px) { + .community-section h2 { + text-align: center; + } + .community-section p { + text-align: center; + } +} +a.community-btn { + font-size: 16px; + font-weight: 400; + background: transparent; + border: 1px solid #fff; + border-radius: 3px; + margin-top: 10px; + padding: 8px 30px 8px 40px; + color: white; + float: left; +} +a.community-btn i { + margin-left: 10px; +} +a.community-btn:hover { + text-decoration: none; + background: rgba(255, 255, 255, 0.2); +} + +/*When Featured, add .featured to .community-section*/ +.community-section.featured h3 { + color: #fff; +} +@media (max-width: 1200px) { + .community-section.featured h3 { + text-align: center; + } +} +.designate-logo { + max-width: 302px; + margin: 50px 0 20px; +} +@media (max-width: 1200px) { + .designate-logo { + margin: 50px auto 20px; + } +} +.default-community { + background-color: rgba(5, 54, 86, 0.7); + border-radius: 4px; + padding: 30px; + text-align: center; +} +@media (max-width: 1200px) { + .default-community { + margin-top: 50px; + } +} +.default-community h2 { + margin-top: 0; +} +.community-graphic.small { + max-width: 450px; + margin: 20px auto; +} +a.featured-link { + display: block; + background: #b9301d; + padding: 10px 20px; + border-radius: 2px; + width: 80%; + text-decoration: none; + margin: 10px auto 0; + color: #fff; + font-weight: 600; +} +a.featured-link:hover { + text-decoration: none; + background: #831917; +} + +/*End Community Section*/ + +/*News and Events Section*/ +.news-section { + padding: 70px 0; +} +.news-section h2 a { + font-size: 14px; + color: #559bc4; + font-weight: 400; + margin-left: 30px; +} +.news-section h2 a:hover { + color: #28709a; + text-decoration: none; +} +.event-ad, .news-ad { + width: 100%; + max-width: 560px; + margin-bottom: 20px; +} +.news-wrapper { + /*float: left;*/ +} +.news-section .news-wrapper ul { + margin: 30px 0; + padding-start: 0; + -webkit-padding-start: 0; +} +.news-section .news-wrapper ul li { + list-style: none; +} +.single-event, .eventBlock .event { + float: left; + width: 100%; + padding: 15px 10px; + border-bottom: 1px solid #ebeff4; +} +.single-event:hover, .eventBlock .event:hover { + background: #f9f9f9; +} +.single-event.last, .eventBlock .event.last { + border-bottom: none; +} +.left-event { + float: left; + width: 20%; +} +@media (min-width: 768px) and (max-width: 981px) { + .left-event { + width: 25%; + } +} +@media (max-width: 767px) { + .left-event { + width: 15%; + } +} +.event-details { + float: left; + margin-left: 3%; + width: 62%; +} +@media (min-width: 768px) and (max-width: 981px) { + .event-details { + width: 72%; + } +} +.right-event { + float: right; + width: 13%; +} +@media (min-width: 768px) and (max-width: 981px) { + .right-event { + display: none; + } +} +.date, .news-type, .planet-type { + background: #fff; + border: 2px solid #b9301d; + border-radius: 4px; + padding: 5px 15px; + color: #b9301d; + font-size: 10px; + width: 100%; + text-align: center; + float: left; + margin-top: 5px; +} +.event-name, .news-title { + display: block; + font-size: 14px; + font-weight: 600; + color: #333; + width: 100%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.location, .news-date { + display: block; + float: left; + font-style: italic; + color: #333; + font-weight: 300; +} +.right-arrow { + float: right; + background: #d9dfe5; + border-radius: 100px; + width: 30px; + height: 30px; + padding: 6px 10px; + color: #fff; + margin-right: 10px; + margin-top: 5px; + display: none; +} +.single-event:hover .right-arrow { + display: block; +} +.news-type { + border: 2px solid #2a4d67; + color: #2a4d67; +} +.planet-type { + border: 2px solid #74c99f; + color: #74c99f; +} +.see-more-bottom { + width: 100%; + float: left; + text-align: center; + margin-top: 40px; +} +.see-more-bottom a { + color: #2e729a; + text-decoration: none; + padding: 5px 15px; + border-radius: 4px; + background: ; + font-size: 12px; + font-weight: 400; + border: 2px solid #2e729a; +} +.see-more-bottom a i { + margin-left: 10px; + font-size: 11px; +} +/*End News and Events Section*/ + +/*Photo Row*/ +.photo-row-wrapper { + width: 100%; + color: #eee; + max-height: 240px; + margin: 80px 0 10px; + overflow: hidden; +} +@media (max-width: 765px) { + .photo-row-wrapper { + display: none; + } +} +.photo-container { + width: 4000px; + max-height: 240px; + margin-left: -30px; +} +.photo-container img { + margin: 0 10px 0 0; + max-width: 22%; + max-height: 240px; +} + +/*End Photo Row*/ + +/*Footer*/ +footer { + background: #333333; + padding: 70px 0; +} +.footer-links h3 { + color: #fff; + font-size: 14px; + font-weight: 400; +} +.footer-links ul { + margin-left: 0; + padding-start: 0; + -webkit-padding-start: 0; +} +.footer-links ul li a { + color: #aaa; + font-size: 12px; + font-weight: 400; + list-style: none; + margin-left: 0; +} +.social-icons { + width: 40px; + min-height: 40px; + display: inline-block; + margin-right: 10px; +} +.footer-twitter { + background: url('../images/footer-twitter.png') no-repeat; +} +.footer-twitter:hover { + background: url('../images/footer-twitter-hover.png') no-repeat; +} +.footer-facebook { + background: url('../images/footer-facebook.png') no-repeat; +} +.footer-facebook:hover { + background: url('../images/footer-facebook-hover.png') no-repeat; +} +.footer-linkedin { + background: url('../images/footer-linkedin.png') no-repeat; +} +.footer-linkedin:hover { + background: url('../images/footer-linkedin-hover.png') no-repeat; +} +.footer-youtube { + background: url('../images/footer-youtube.png') no-repeat; +} +.footer-youtube:hover { + background: url('../images/footer-youtube-hover.png') no-repeat; +} +.newsletter-form { + margin: 10px 0 30px; + width: 100%; +} +.newsletter-form label { + color: #aaa; + font-size: 12px; + font-weight: 300; + display: block; +} +.newsletter-input { + display: inline-block; + background: transparent; + border: 2px solid #888; + border-radius: 4px; + color: #888; + font-size: 12px; + font-weight: 400; + padding: 10px 15px; + width: 70%; +} +@media (max-width: 767px) { + .newsletter-input { + width: 70%; + } +} +.newsletter-input::-webkit-input-placeholder { + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} + +.newsletter-input:-moz-placeholder { /* Firefox 18- */ + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} + +.newsletter-input::-moz-placeholder { /* Firefox 19+ */ + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} + +.newsletter-input:-ms-input-placeholder { + color: #888; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.newsletter-input:focus { + outline: none; + border: 2px solid #666; +} +.newsletter-btn { + margin-left: 1%; + display: inline-block; + background: transparent; + border: 2px solid #4c97c3; + border-radius: 4px; + color: #4c97c3; + font-size: 12px; + font-weight: 400; + padding: 10px 15px; + text-transform: uppercase; + width: 27%; +} +@media (max-width: 767px) { + .newsletter-btn { + width: 18%; + margin-left: 2%; + padding: 10px; + } +} +.newsletter-btn:hover { + border: 2px solid #888; + color: #999; +} +.fine-print { + margin-top: 20px; + color: #aaa; + font-size: 12px; +} +.fine-print a { + color: #aaa; + text-decoration: underline; +} +.fine-print a:hover { + color: #fff; +} +.footer-bottom { + background: #222; + padding: 15px 0; + text-align: center; + width: 100%; +} +.feedback-input { + display: inline-block; + background: #222; + border: 2px solid #444; + border-radius: 4px; + color: #777; + font-size: 12px; + font-weight: 400; + padding: 10px 20px; + width: 310px; +} +@media (max-width: 767px) { + .feedback-input { + width: 70%; + } +} +.feedback-input::-webkit-input-placeholder { + color: #555; + font-size: 12px; + font-weight: 400; +} + +.feedback-input:-moz-placeholder { /* Firefox 18- */ + color: #555; + font-size: 12px; + font-weight: 400; +} + +.feedback-input::-moz-placeholder { /* Firefox 19+ */ + color: #555; + font-size: 12px; + font-weight: 400; +} + +.feedback-input:-ms-input-placeholder { + color: #555; + font-size: 12px; + font-weight: 400; +} +.feedback-input:focus { + outline: none; + border: 2px solid #666; +} +.feedback-btn { + margin-left: 11px; + display: inline-block; + background: #222; + border: 2px solid #666; + border-radius: 4px; + color: #777; + font-size: 12px; + font-weight: 400; + padding: 10px 30px; +} +@media (max-width: 767px) { + .feedback-btn { + width: 18%; + margin-left: 2%; + padding: 10px; + } +} +.feedback-btn:hover { + border: 2px solid #888; + color: #999; +} +/*End Footer*/ + +/*General Inner Page Styles*/ +.navbar-default.inner { + border-bottom: 1px solid #ddd; +} + +/*End General Inner Page Styles*/ + +/*Events Page*/ +.eventsBanner { + height: 150px; + padding: 20px +} +.eventsPhotoCaption { + background: rgba(0,0,0,0.3); + border-radius: 4px; + padding: 10px; + color: white; +} +.news-section.full { + padding: 20px 0; +} +.eventTitleArea { + text-align: center; + margin: 40px 0; +} +.eventTitleArea h1 { + color: #333; + font-weight: 300; +} +.postEvent { + float: left; + width: 100%; + height: 130px; + padding: 30px 5%; + background: #F4F5F8; + margin: 20px 0 10px; + text-align: center; +} +.postEvent p { + margin-bottom: 20px; +} +.postEvent a { + background: #2e729a; + padding: 10px 25px; + border-radius: 4px; + color: #fff; +} +.eventBlock { + float: left; + width: 100%; +} +.eventBlock.summit .date { + border-color: #255E88; + color: #255E88 ; +} +.eventBlock.past h2 { + margin-top: 50px; +} +.eventBlock.past .date { + border-color: #555; + color: #555; +} +.eventButton a { + +} +/*End Events Page*/ + +/*Community Page*/ +.communityBoxes { + margin: 30px 0 10px; + font-size: 13px; +} +.communityBoxes h2 { + font-size: 20px; + font-weight: 400; + margin-bottom: 15px; +} +.communityBoxes h2 a { + color: #CD281E; +} +.developersRow { + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; + padding: 20px 30px; + margin-bottom: 30px; +} +.devLabel { + float: left; + margin-right: 30px; + font-weight: 700; +} +ul#developerActivity { + float: left; + padding-left: 0; + margin: 0; +} +ul#developerActivity li { + list-style: none; + display: inline-block; +} +ul#developerActivity li a { + font-weight: 700; + color: #222; +} +ul#developerActivity li span { + background: #E8EEF5; + padding: 5px 10px; + border-radius: 4px; + margin-right: 5px; + color: #255E88; + font-size: 11px; + font-weight: 400; +} +/*End Community Page*/ diff --git a/_templates/openstackdocs/static/favicon.ico b/_templates/openstackdocs/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..f3b9bf9c440bad810cf0508569216543bb96bf11 GIT binary patch literal 1150 zcmb``T}V?=00;0Z^jxCtqdT|VeYwrKHC@=MrDj-^FGe2(JtRF@5Y$6vSPCXRq}ie* z5Gt@t5g&Tclxb3_HYMFl|oUQl>_suD^JebAf{;zoM zpU3Mr-!buFiTOOUjD-b}q{4{ij}^O-%->;@IvNcNGJW3fKk5XCUk95swY z;fBpViu^tC`IGo_&=?z;&0AmMa_!_Fd9$M$)LKayc?LIj?ro3Vqq9~)Z*F0>=LX5x zA)GutiHgc8xNpp$;odB4S&fX&+zeOFD2^PRh~*_@{aRBKL-YUQ%6W&v1OG2C6E2bc z*2)+xy)at)VX=E*b&!3U<;Nyx08ZBkL+8%U8^iv??_=xFE9i#7*2U;7T@XxUj~Y5b z_pMxLhg|)uHl*m<&^Iu}^3i{AZhjfm^z;%!6Y~fR&%x{ag6=0XxZgU7n(HCvRA~Uc L&mvil16JcFha9?* literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/docs/license.png b/_templates/openstackdocs/static/images/docs/license.png new file mode 100644 index 0000000000000000000000000000000000000000..822491edb993b072fc183a2ce23adfa8c94cee7c GIT binary patch literal 4739 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 RjS2t&002ovPDHLkV1k=~?l=Gd literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/docs/superuser1.png b/_templates/openstackdocs/static/images/docs/superuser1.png new file mode 100644 index 0000000000000000000000000000000000000000..5c8fa01162623ff9bf4a37c7410d5da1df71d013 GIT binary patch literal 18616 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 s!KelLV%nOH+a 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 literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/docs/superuser3.png b/_templates/openstackdocs/static/images/docs/superuser3.png new file mode 100644 index 0000000000000000000000000000000000000000..b07e9fe0dec09be00af47f4fa83dce23124aa386 GIT binary patch literal 12403 zcma)jbyQT}7w^y|4Fi$`3_XCLqIAQM!qBC}fOHQ?mvjx?Dc#+O62bsd64FX3EnNa{ z{QlnGZ@sndTKBFw_wN1Kd!N|nbM{1OYA6vC(h&jx0AgjRJPduG1^_Ue@o~{lQk|)$ z=-Xot1p^OlXKN2Hb2lr14BXkm3Z(34{?-a+We)dtMOldh08gluJg;>;gH0}{W{cdE-gtN z$dXJs^g4pPF*z`VmX);*&W4*$9sg;aogVv3);96_^M3K$o=dN;%C5@J%FY`RU5T|L z5rj`^SsC-}rFQSo-O8HPqYx1O|NoT*cl$}D^X6br`2968BjaEEW6Q#`uDtlu4RNWP z8?S?x@lAM0j*@MJgiMe}=Uwnto*7o~H^VRA6s{U_vCc8aA<|h?KmJ&jc+hW?3BCdi zPdE)~2pE>?GL&QFxcZL7Xlqi4GxE3j`irLSrYt|-Y238P3s>B}xZ$}=I-|?JYM_40 z44Mty+SwlRX%uB(ZLz(4_flRx7E7Ol4 zxzS-$F9JlEDWTWy#!zgxx9VHUus@_93J(okZsSWL(*H5mkcd1RJ?i4GrMu0&joznP$M4`hsg?Xk7ks$T@-VQ� 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 eJ}3+ literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/docs/superuser4.png b/_templates/openstackdocs/static/images/docs/superuser4.png new file mode 100644 index 0000000000000000000000000000000000000000..1563fef23aac32364f469153b2d0324dc5bebfce GIT binary patch literal 11727 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 Qz}qD+qas}?X&U_h0S3nDv;Y7A literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/footer-facebook-hover.png b/_templates/openstackdocs/static/images/footer-facebook-hover.png new file mode 100644 index 0000000000000000000000000000000000000000..89bb5d15eaa6cd5d472e9fb467e49c6eb1f1b547 GIT binary patch literal 1099 zcmV-R1ho5!P)QqKNg_;9X*HwQlBnLZR4@xEFv=o?AOee|l%ljEic%l?RD7t_ zzBCon{s;ae!?=!n*WGpx{MebDoqPXt?wxzjIcw|h@7Me=J8*#vkOGoH0$9N7gP<35 zgAULF+QGQFp_rH$%Z_Y{0+)lsU_V%)_)uTKRZs(Z0xi%1PJse2kKerq&7cju1E0Vz zURwx~fD@#H9bhG|je<*{0(b%;Fq=;u%OSc6&VeTi-m`&C^nNy{$T#4Iz(#)sMt~|% z%<~7J6ui}DXRF!nHlEi?yAV1y-DLM>QJ{(9hUG~?W&p%#Y$KE29A+O)0|Nt5zIsqR zcMD|6905DQQ!O}_3hr=@-v)clp7iFyYKr^H2_7tQ8rx21Us>$ia)|eVBJc<70-cH- zt^-%NjQj-?V2lF18a&p?zJ{c440Y~w0v(1YDEGs2!?10 z5ECs%Bej(10);%oqUn!Cn$GW9y%;mt1%Bqi zi*`LKks#m$cpRYRV`LWhwo!{{a@h@APBWK!2q+3ioa`9DfIkO)tdB zSv-8S?nxQqKErkwE|$d4J`vbu2*tz2bS+&X@VQ|gg^TH0I_ylUHKvBPP%Fb4XrmUf z77_T25wPT~X<^{KG-?q|?RMt64ZK(!1_IsuY``uvuE&El%=mLy4G7inI+@syQqyF> z+QV{$tc#T)^j;M;)x&!|=A5L03-xwT7y|DVGNBg@$Gs&@9>e%oGO7Mw;!+JGR|fBS ztSSq&jKw5m-{MDZtZJ*kBOs|}9mEyQR9Prv86uA1w=0O^TR=1=Kv6~r|WNa6~{Q&LPPPQd&&SxKcAa2Ol>XzAZ`1q$gGRCwCVnOjH{VHC$_x7Ez7EHjWU zQV-e&L6Ksqg&NdL7a}OFh$tmXE321?ipT=rDzb|fU7*sQf+7S9rIf<7APR2}T@@d6 zp_`U#Y5!CIkzrY9XJ&VE5B!)NXXc#$_kAkZ0Mo&EUhf5+ zpdB=UTF?jv%?5IqynhBL0Gq)~o%_auDPTTW&%b>Fx4?PO5om!i-~`A8;r!cMPz~xq z3-|!O@!A9s51b$!tOT>cA#ea(0mpzV5CS)_)l)e{cfeWjOy?OFdC6Y0fi(8M_}k56 zA^qvTOM2oj(t(Jp;gDtf5a-Q?*wZ=mQA3}VjNvdVFcRDa`QRs8x*Rks{#!GB70`D+ zV?`PjD6Odgt2j&<9O6LR1^RX|R)x2o^d_(rtO4D8!5fs|Sp#EqGiIqTfg8b2@B^#{ zttJC51UER1{N}s&ivmWnR>taM?3|GV#%NklWTEGZI4N)Cq^H-6Kw%4SxMcBbjPN+G^6_ElSs9O_$*yK4k_5a1 zPXjc4^!xE_J++9YWD%If3)P$!M%#v{MJ!Wh?nOMQGwEoX=6ATqwFMs6#jcz1UB@{w zNdzWp)<`pUP3PKLVpX83B~gYrjwc_3IBZ``-mhwjvvVp?G|6T#tk>lI!-=oMkD!k= zztg#-sV3R=d(C;L)gTV4jbTr^Ogx*R`TZG8@_65l`_cF)wI^kWyEMyPs8~FYT_UiJ zC-Xu`psJ-!1isL`N1mL@xkYK5htEd<2bs70(+1U_d5EOl#Y2nbB27SYsbXRUja z7xP0vU?Gp9X;94vrD}7t=5>yuI428ww^~W60z0@JA@kyyQ51NNny#w*H`*FP-78rE z@0DLiFl&?+ZPP9h%4a4reRFbKMBM^bUm=<2j#8x0gw=@ku+l%psYr_IIc&Yr z<*}2?SE&+&O>{-G;>bq$VSa&GEL#&;Xh&)GWaQpWa-}!e*_o+;Go?-vagaY P00000NkvXXu0mjf4BP@1 literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/footer-linkedin-hover.png b/_templates/openstackdocs/static/images/footer-linkedin-hover.png new file mode 100644 index 0000000000000000000000000000000000000000..b403e446f96e58633923989e67536b180b5958ba GIT binary patch literal 1119 zcmV-l1fctgP)&ODuU4QBAWH=qf$fmh%?_{MW{ zK^#Z~sUQO^=DAUD5tM>{BLrsgS4VM)u7PvlsUOj^fYpqC7Pm+ra6n-FWCezR3!sq4 z4?r<^sr;WU<9*lhxI*p=p}*X1c2^b(8Yyl>ekn*dK%ByRq%)c$^wBstI2h_{1SN7e zK&I>wun{~{%&}x}mwWsc*rt!9s|c1++-GiZv&1R9cPf2l(znMY-VXMFA7B&cR7^HR ztdqWm#W$8Z$DP1P%`Z4$a^&W{z;sZ@tl-WnneOCCU(f4|jH39ir%^(a z;5u0D<$6_1w3WrBqA4~F*-DzC_LJ`1OmN7{^?wUrtBJ`Wmk*Nc!v@{Cbbp#3ZJBPA zJqES>EScfFi{8eQg{hGgfxVh^XO#8nj-4)A08bXjzr7-`OH+ymi>X?=MBob^qy~{d zRZEAJO|`<-&@$D^kbf=IBGw`TpR}4g95x`PkE3la_@d|ujr0+>enanqUf+>hz0mX@i z!>*d9e$D!yWm6p}amn;4R)XmDyX%YVSaM5ge;XtOKwJWSiO(vCtMxWnDB&2w#`4>4 zqCPu)*yyv^m*J5-LDJpdWBvAsb3vm`?)i{DWImIF=#Bb1-I6iHW-j+EP|b4PhDIR l(amyBhC-A2H^grN1^{uX6tS1^83X_T002ovPDHLkV1lXQ8WaEk literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/footer-linkedin.png b/_templates/openstackdocs/static/images/footer-linkedin.png new file mode 100644 index 0000000000000000000000000000000000000000..5394b72dac56651f2f06f559d6069c78589d3076 GIT binary patch literal 1144 zcmV-;1c&>HP)|gc2z$QmI~AjG#1oXp=N;rH6>>q1CsnY|$coD76Tpjle=Ft!RBI+=4R8e6Sl- zwr~yW|Hc2*FwDJouFcr};K$rq&iVdx&Y5$*?_5_wL4no{bAv>X0;YmkFaq@F{V$*u zG=ayU8ax7B!8!^H^7)Y<4`hK+exB9^7J-GJodf)V=A1pCk9PVj3M6nDSO>m= z1)xE5-WurZD}87B5*Vd>gUt@NoLNh5(e>akGlBc~W!(fNTF+Yvziye}_ZkI`25Z0% zu*pv)>0A*yIY~#_EHa-OR#Vd-fw`bJ=cRf-6%=#1ldo+K%h_r5oOgSxy4_?2A2=DH z0^?jY*nzGt=20}cRa7Fa@(SDwQ1}2>1&z^)6JxcOT0~Q#2u$UTN}Y3Gb`T5)31A#} z;ef!O)FPH5V`&OcYAh5U55oCdB9#{Kfz!eW-E$w=3Nak313)vl1v)JFso|VBHH=O* zi|ecm;K{o4RiKpd;UV4i%M2*?gI2}#&P{!Y~ zG8{3v5%`2BGeSt9((>5N zq*`NY=n4UGE@~007J(0$NK4*2Jp=?!rxwxl$jw~$EN|w7fWUknMN^lW2PJFsGUtu| zkK*E)(0f%TsRX{|c7&|Wg?=hX;22Sq@_M1+db*)pv*Et4v3``A&Zzwx{Ys+tO6G#> z|Im8bTwz4RPP3%Rqw9ZZk)$3Jm!#{tjrvU`<62z7kXu6gt01li#KqB91S9maKsyWa z23Ht_)-ok<$`a{g7=3QAvi0F*c7KEM+a2x;+HF$jZTh%QpI)oGTe1zYh~3=}oMN~> z!KSI?7V8YBkHz#E)c#;6C+q& z{I85LGw;4-dXiss-psq_|IWR0&bgPbwzk%Y!2BQp27^q{9VCMmy#EOz4fx1=tw0*c z0NG$T=)!vqU^`d=YGNU95`T4jPSIho5!?tPdOk3K(VxU6@*dqbx_cLa=; zH3CL~n}#=*1x|5|p8ylBk+h58W{P{q1@4tNgJWmY*I4>?o#M%04)_AbfX9Z%hKN0; zub}wGR8Mshm}vS1i#?8#p_V;f@P7?b)@C$Uqy)qTSd7ue6;2^GPn0_S+>sj8!SsmC9(oKnb3~RVqtoS}i zE%Q_a{VY={e50<}INS}6gQFVak~v12&AlMU7zC<7KZyFLfj|@o;-9Om*J-LN5pl1; zbqA-T`O9W%2;Ai$P8EP@T>J9eBAaJQs6{jd{HBs~p3`AxZJ59d8O=n8=emKRno(ZH zS+TCkU(_NtSOoUvMX}3(&rE+$=L;nck}S_zoyAlhtrCGxOs%+^Jz=*~8HKodw);BUfT8pHBAh=3I>dWFxhM$y6szm9gHx*8DMf>SdBnM>VWcqF&IUwP97I zP`d3tUI?mn2nEo(Sy zHlIP-DdMdA;zXtr`FA#3E3wZ$g;aX!}WMob1xFE$(UE@L(XTWB6k)7< z6T4K554_i!?VChvpz;3^@J_H?M0#LZtVt`EBo>YBgNDS nf1-$|Z09Z;5&k#CZvh4X%$-muOBn6500000NkvXXu0mjf@P%HO literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/footer-twitter.png b/_templates/openstackdocs/static/images/footer-twitter.png new file mode 100644 index 0000000000000000000000000000000000000000..b0aa366d4352962a373cf9b52de36b9719b9191b GIT binary patch literal 1280 zcmV+b1^@bqP)5L3b6_*_+&(l5siKF5{ef@gAr|gFe(Hu6^cTm!6FZ+ zlp+BH3L!8t@dDZk`Y-eCdNQ8NKFkcR)?N&L$+VB)$MvZfSqQT7)--Ao%@wAq1=s;mO5#rvW~{LY&; zimgHEww1Q#(sm2Js(l68+q8>m4AZp?ak=d!+AiR$J*p?81h$Er#UUp6#-MVx5g&)} z*_I~o4sowIDsB?ng38-Ad>z4ebDY4Dp*NUc;hu}?$pxVi92F(-X;#)}Vrg*lZ7HkU z0{o(4fftB-#Gm4!;QzCEXt*0qLjvy;!-z}05f2W}=*W8EIntZOz@J#9bzILe?`n&l z>m}|EL(@M3jal6AN{qwT#I2s<#*jf4kh{%B5a8|iw@8bRi5(Hozsg_Jly|!lYiO7F zGREmN-fXsqz~$uOxCAhZPFWr^ox0Itni}lJDO~7eIHK%qf~fW6o2>XKyI5T3*~<&X zhcRiflh2b);1zt?kkH@{q0e_QGz-Jw0IT<$2H&xH*co%(X&IjnP28kByR7K@2*T2S z@hRJ=si8TSW^0*;N%`8W&W3F?U-rb@Y%BN^aXl30?Wo_=?2nY|PRr;jHkUzYvsrA% zSbYb}81HtZTp!x_<~K^E}|vU7T$W zZNW;l6&}@{i=zijU>{#DNqMM`oyPtW#MusdvB!N*OP>k+hA)#+9_l9so>zjv7s$_P z=Co|eQ&b0(hPi}?2E_CdRtl(mcM*~*myiPFn2~&H>_q#Lf35OPwbFhRVY>LRIbuf{KSCgBkdpP?@ zTq(Zw6jx6{Kj11!CvYG6wu*^doX+foX+0}&YRX&<5Hv&Fm~qZ7M$;Sa{3bj^?ySV} z>YUK;-{Y)?bCvf<^hddVoLKrf8wl&M%f$y77ttIF`U0ET|D4Sf7{YdXaZ6EUXYucO zD7Q@rjogFbL#5(L-ocjJcD}2`xRX#Qjl)+pmEAjOCkyrlE7^>8Qxa6l8t^d+pAYyP zeGE|Df6Uf?y=N_w)vV1g@Ua@71HPwQM+mGo+^15DtntX#zM*6dZJvgY8Tia}J~&9= zZYC2n5{|AzQmfB^u37!{BD0VP)kgWO8TNyz_rDcU}2$>a` znzv5hk?+7^nQ_mod)fv*?9QB-`F(fh%=~74YuUE#OCtF}C8z@xpag6NxqLniK7$c3 z1O~xV@WUFy}Bh3VJ{**uy%RB+Rl_)_Lz}H^;uh zsS_k$N||PlWjBTqb;yR7Qj6C4Q9X;_zqrxi_ANduzee}Qqy^% z+7CW)XloR|Dhs@^Q=dM7T!p>;d@eNk-A5n#utKLyMprYzODS^91cOH04rD zp5Nu@nAQ<{-DTcGR@JxPsa8|Rav?AfSN{yBsUtxNSd5NE_Jo&|&4YBDtE z!8!VCu_%74mRLLZeLimQwZePo&hj~+OJM{OR6YhwgMq`MsH5Lr+DbZr*%TMR>`O9$S)&MGHm52CypDU5Dg-Q6-EM9TK@w(JizWoz!#-0M zqjm<-FMwDQt}Vv4MnQCIm48Fj)BTmuU4|Uzycqw65XZSk$^H%TSAYQkML3IkPvXx{ P00000NkvXXu0mjfRny&E literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/footer-youtube.png b/_templates/openstackdocs/static/images/footer-youtube.png new file mode 100644 index 0000000000000000000000000000000000000000..de9bc49cb25654264092ec66bf0067bbbe2d8999 GIT binary patch literal 1209 zcmV;q1V;ObP)VlE@6&4cdsHy)UiPz7VwcAuFT>inLOrPnPy6C?qgbDk*HILfdFn{9sejVl|fa zKk$F`7~ZP$rUO65dGp>q|9kJd_ndR}WM*b6O)xJ=0b{^0&>wUGZTS0FPy?QV+n@~G z0*y```5fNg6|4gDK{u28T7ft)2+ZWQx8O9$2G!vf7!P)XC7>m*y#U3a98`hV;4^<~ z3wnSgkOtC0FR%q{1Si2R5D16BS?qOtPSII#1l%xrCP40T)I4A$M_<}o$hit&(l6V%vWDim@wD zdQ$+VaGFMQioweaAjQrxk}_Mm#bSg_>542-N9n;6RcDIpRJ~b zMbz|n)vN$5Kt7{Fs6~U#U0luk$izZxITR?GwyRl*BmpnMb)CkRhFP3yJvpVJ zR!%LVDMbX14zFwQ7khFFX;$0bkThM-JPu0-xqmIEX_>`y9*Y_I zECOpa;ZDzf+7S4hpAs&gu_Wkb3g!OSLu5*9;!9IWCm2G>6%G<+hhawZhU+@13Z1F_P37yqD?xyG#V$WFakeYpTuz zmt7QCqH`^kT13+=FKgX={^-|vAdfG8xJ^zPjvC~I3NdF60B$>XM)90p-YY%7mttN55fpN`H48@O>x&)#u`J>)6W2#2E715A1L5!;eB z=g~)lojlIS3fbcfR{V2_dIWrp8~Yng@NdWTO-5^!^6v;(eT8J7+ewkO6HPOF$4Y-M zw<0O3d$ad`n{CuEd}S#v9HJ|lh$9E#+qeS9GW_*tp&hHq^W@&AOy^3KCjJ}Zj{pMz X9=id5Wq=@u`q-Vg)$iTp$_>+Z`gMptx2gn8*D!{ui!K?FQ=} zH?Xd{pt$&AAhW_8|9KxoF0L)FVBuPK^2Fx|Eyj5b!A2T$_)fYrI-Fn;YEaSX(VW82 zk<8BB^ zyg~ZU!^v%pW2>hJf)$GceOB@lW%IqbM+#%`yV*4 zSpoDBFs3Ycm>47vZsmyO|lq3pQPK+9JJ1v_kOAB<7PPOi?B$_+<{i4+h5@D_X*USQo*^ zaDpSuK*RrF;UPy+wgi?0O$Mhka~zylKP%{ViMg8^3Tnt4Ind5xl01vC$yt$sYs%r1 o3nDTyF1RxtpYS1rRbWl(0YARY!rMM@@~&Y>OFO^ag@M5u0Ak7h$N&HU literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/openstack-logo-full.png b/_templates/openstackdocs/static/images/openstack-logo-full.png new file mode 100644 index 0000000000000000000000000000000000000000..60ab0e1eb97ff1f38812021a8171642fdf99e4b8 GIT binary patch literal 3180 zcmV-y43qPTP)`&8P(u<(LINR~ER$K@>;F&wr;wi1vnl!0k|`@#x?dQ;=Na6`DYru>mE9M>NtzgRZF}zfPlhfXp(`u0wbU%r|LuOGp_zl%gYya>2_`SKG;q=5-{jHsOux=b;Pz~XAyVQ@Q52WmW-oC%oX3)4 zO@aaaEEyKw^ zbG58VX=%W(>!Z##HvOA1dm4bmosyVzA}+cU2XZ2Vh@GD2r2Nj2!`UuydObx3Gi}?bui$55#;~X!rXU4vk>@Z;L|ksUSS+-J^`LAQ_!TmZZR`oA!_4|Kr`fG1Ne=mhZV5Nqs$u_q{SG-xLD4W{d#flMRZXV7nq zq;f(z@VhjJzm;qSvy{HT^}stoc5N#z?qO)Mf$M-58}mx7=%Kb9Iz)?uLG49g%!2+~ zRbO9rs;ZI|oIS%T>+0GAjup^sqs>OM`~a40pnrx*6v43=_)vph}!nFPEWq(LgpyO`Fp1$ZK@1>Nu-=uZ$f9uMLBz%K)5k=%4z57IQ6&!F!Z z^HZFM^g00?$8H1uF7P_w*IH2aZ=pd@KL$LS@Pp%pf7xGDTzU9xxqh^w?CS}1_|K=| zzj{pw;6SB6Ljc6nkwTk<@9`RpcNN6zshvdu^c3I;z(pj#9^`Gp+?ljV8iDU7;5SJ2 z_b{%K)esNPGxYm|fR|8T3Rw$-9wY@-(+N!^(5|8JIi~nyIo%_>sBb-iFOm3V>YokD zz1^g2T*r^;_C?@32w1;sWouW_`{t28gQvOBpviF%KzbxNoo2B*Q2f|14FFbOE6ZzK ziCYT_xXa^VLY+`IayN9_i5DRjNXcp>OJ zMT#}LilHxGd}+AfYy!cP1bhU`cv=VcccO!hv=W~Cc?j9lP&#Zrv^Zv$)tZaBjeIJr zaMiMMmy4BNtY%-FuVTd)s*k~rEDIAH9s?u*irm3ToolkwQ#=!TrfNC8(%JMrJz~z} zjFVci9u8r%HyQn)9DK2@bUVS~_dMjU4f#D3TQEA&22G@PqaceGbRXT05Dy2n?+`c) zGUA}_CYNOHYZrkMeH42!Q*G*gsxLJFzYyYdYp7K50?b+Z0}g}E=c2Ciz3a85F=F_|ho& zW5%HnsDj!Ii#44y-B(j9np?CQxK$6pY5fS4u&y1o5|v`3KEQDnhupB}d*F9!LzoZU z?id1F!1Cti=5lg#_<7|>C|S(Ftc=uMi8eV);(>}N1~kcBwf#gmx#5!3hG&w6>+`0u zN@}A)+0g)qdNEVCn5&9f0~Be(SQ*S=_4_u9KA-8n$wKB$atC)|i~~wRg)9IC)`S5J zbZ5BVPYP?cA|o3r3~}n^g8OsRbuY3g1MmQZq$n(v12{S?P1Tql)rQ9$g6VH)MKNj! zb2XYQsJNc@THsIG;SMkh`YUyzHTf8n-X)A_-XNC|O#v!qSvxJ{oMC35Mmjwo)?*xi zVseKcVBo5-YlqxIJYu#Ib}PA7D9QvBuP`>tGJd>oJis z7+mWJBTj(+do9G9EL>b`ghA|6WI<=++Oo5=z2IgRP>rcbx`GNm+0N(7glqG6A0xeW zfpS9uNP;Pb5WiNZU9JrP<)S6{5#8oc{UI1VXk@sc6+qFng+s@vMq%~*AZiardRLIA8rE~`nfBEf@2DwK&nw<7`&40>Y2h!ZX$iaY*Ex6=i8qf%ju ziRrA#olF$uM^G6ZX$Q@%3C}LE08~d(atm2dO$!#xD3^D>knE^^X0PS|#h;HP9Hni~EDH4$q(~DT8rb-)^eJVw#LK znxnMVE&><~Wfy`BTBwIe*~wIt!{2X$@olZ_>s;E$`9hVq86Z<8=SZI&Iw!1|V2U3pM^u)%e@gE+Y5<;*FVcQO7^8ajPzmug0(I+TM~g zF*4_xB5^MWHbQ&rnBZ1qCn)Y$RP|gVya)!BGhy5+b*!M%x!IH!KPncv;QDj=p7R!^ zq<4u$HyFbYd`)e@$Xu%7{8H#Ew=n0g5Bs0JVtTF`$CQ9kF5Cvo;f3& zPx{EF%JMww-zrp%%~s?TfN2wDM@!*)J$@t%0HjB1x}-O!oyeHZ+T4B?4LcXdCFbH9 zi#~C_S}Lur!%zPJ3=LY1^@)k#bBxe zzeEQR*H&uIm_Q!Cy-Xp?lSsj<;X?BTD`u{V92bg$fm#aBNJ&!wATi)fI)P?lY<62* zw{FQjCY>vOD-(Wy0q9ENT)bI?{GRA zWJOl%oT~A?f?e=ge~AQOjO5K9k9rX}B6K|hq!}b70219L$#Ny6p|!_uN;m=_31kIz z4UKwat8Q?BAWfZie-nVC%D&mwPAig)f_4*_phSX=qsbX5&*~9 zh&rwTfFObG5lLCK_an7c(60Qfz#pkFX zRY@)0SAo(iBU^kO0t9LJusbC1EYX~^u3n!ns-eE#UFWKEGhO%SOvj>8WA;7wc>cC= zV7pVY*Qpcho!MJ+I-Gj%-Z$&3R + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_templates/openstackdocs/static/images/openstack-logo-vert.png b/_templates/openstackdocs/static/images/openstack-logo-vert.png new file mode 100644 index 0000000000000000000000000000000000000000..a705b59bc497214262844b3e6e3d9b67e6237afb GIT binary patch literal 2539 zcmV*y-Du#9DiT(oy^H4kLD)14JCW$H+$~x***K)@7wSDcF&QfX^Lc} zLlv`J$g+Vv&U1krMtoUz#1MbI&>eZ~&SUla#^d>NtYkqTBW}Q1oae+5qdaA_{rAMo z!%aQWZL5yezwo}0-Mg?X+o8%esu15{aub?B_}?J>I0)|7il+AtUQwK~Z}2Mh0XTUrk2cK*l17$NRv;1;7lmjx zOc_~NT3RfnlF4<`CRnTWq^?;T;X>Wxtpd?}aSfzI$V%IFYKqI5C9aXAi0ddNvSwpI zCrNb-&ozKB&;dm><{&Lx+4)$l9MZPyuSCHEcvRfz$S8m-QjTgFogaB zGyrFTdY}%dh3hZ|acPpC;nv4!5Q{T&k+4`+Q4LzbBbw`w7>zUM>gXt@U|e^ZK!@FI5RupH0BPoJZ|4~ zuY1N-5>RCFHp)|ec8cueNbBp)k=nm_U67@HGO}VI((A@dbBK+)=}IQqDDa;N;+)Na z!=#CgX@YV&v{TxH!EcRa3wx+y7L7rho$k4zrlaS4%;+`Z>8dIf3ZA2QO2jY_sl^1g zk{5Fw^0j1>jg6!gSGw9}H&o2JK@2=5wN4##c*3%+F-+5ygM~h4W@8}K9D$DwMGfEc zwP#fOLlr4<6e*qeO%&OU8y`{X>+7_p3m3IOz^`UxWH~=|yv;3Ba4N*pB?2`mgKv%D&$2V+z9fGH)lF;L|17DNv%^5m5+1ApX~PSJLIo-@5)5T zn*rtWz&N-=DPBuw^Q0~>w{{0JUq1cr01JW<$?{CE&{a9w@!Ud$6(Mhurct9JAI~*A z;^|_^O+~4pVCcgL@`+j7_LDzUQ91O~2oN=}&)rK21@T z+uKEFZCY29)J$}Bb+w7a&VMIwxcI;W>&z7^R-BPiymi!UtxL&W_q7k2#!_ z221+LLGlQwk`xM!+rK6uH+YPi&da@W~9`MEMMY7v~pHBEm#oD!Nr_%)N z+_|&CRz^D)9c6x8(-~1au3O{U(bj+t#jl{Qh0ACn=}n&>@N#f}67>`ET}r=XF)$tY9WKuRr*Zup zU`@mZ;5hz2jhsTm3%LHKjVPTu(0iSeT(_F5=#+xu=AW=%Jx0$(eJT%N7Dq$Jfy?;6 zQ1rd^`#Mm_ZGVAsjr*o&p8(!LS++&H4NC#Lr^4_Ruw2KWMSE3h1( zHM82*W(IG)%9+^DtU)6^#xqW*7f%2?P?ydUrF0kYY3^?}@C`2iF=+`;$}PZKqVMhC zAAm-HB()BbqVVi~KFV3feN-|L(t?-x`7~J-JR$Z(&mn1VvB;97_CduC0Mz&}u+rLx zTM|YceWgP0W=SoUfE49lBJ!wfX5yswi)~x6r&0GR@~40x@DVO2>769C16~D4Wt;eU zq>g8R-fygszXY@bdr6I%uwVg^{ zH;l3SEr|Z3cgL2( zn~I)_Yn;QmbzcpG(#I0@eHg@}yc_zswP6wi-wMnlOG`xgzx^nctaKV#UN0tuKm z5wGP|4sPse7aPV+3R}uHR-@(Y%a)-m7}w}FfWCg2jk;f2g}A1`poAazIr5tvCHdJe z+t=akmP#Rgl%GYCx)}raGXWx0%)a><{6ED6RCXTF literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/images/openstack-logo-vert.svg b/_templates/openstackdocs/static/images/openstack-logo-vert.svg new file mode 100644 index 000000000..dcade04c3 --- /dev/null +++ b/_templates/openstackdocs/static/images/openstack-logo-vert.svg @@ -0,0 +1,286 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_templates/openstackdocs/static/images/search-icon.png b/_templates/openstackdocs/static/images/search-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd5bb9f9e85540166383c79ed2b586933e7ae7b GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngj!3HE3xL=O}Qj#UE5hcO-X(i=}MX3yqDfvmM z3ZA)%>8U}fi7AzZCsS>JigtLqIEGZ*O8WEvzdiHL2G(NLxWAHc0U{T&Y#~*3Na6`RKRDn`d%%-sL|c+&ImWsgQX>E=LjLg$9-+6KjT# zEE4P)2iPYhI^_8GJmU}8uf$xt!ou{BhJe4U3Qsw@ICB=BbI}l0lx%od)4;&Y Z5NvL9miyVke?UJlc)I$ztaD0e0s!+=V1fVu literal 0 HcmV?d00001 diff --git a/_templates/openstackdocs/static/js/bootstrap.min.js b/_templates/openstackdocs/static/js/bootstrap.min.js new file mode 100644 index 000000000..7c1561a8b --- /dev/null +++ b/_templates/openstackdocs/static/js/bootstrap.min.js @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.2.0 (http://getbootstrap.com) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.2.0",d.prototype.close=function(b){function c(){f.detach().trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",c).emulateTransitionEnd(150):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.2.0",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),d[e](null==f[b]?this.options[b]:f[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b).on("keydown.bs.carousel",a.proxy(this.keydown,this)),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.2.0",c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},c.prototype.keydown=function(a){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.to=function(b){var c=this,d=this.getItemIndex(this.$active=this.$element.find(".item.active"));return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}if(e.hasClass("active"))return this.sliding=!1;var j=e[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:g});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,f&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(e)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:g});return a.support.transition&&this.$element.hasClass("slide")?(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one("bsTransitionEnd",function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger(m)),f&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(b=!b),e||d.data("bs.collapse",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};c.VERSION="3.2.0",c.DEFAULTS={toggle:!0},c.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},c.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var c=a.Event("show.bs.collapse");if(this.$element.trigger(c),!c.isDefaultPrevented()){var d=this.$parent&&this.$parent.find("> .panel > .in");if(d&&d.length){var e=d.data("bs.collapse");if(e&&e.transitioning)return;b.call(d,"hide"),e||d.data("bs.collapse",null)}var f=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[f](0),this.transitioning=1;var g=function(){this.$element.removeClass("collapsing").addClass("collapse in")[f](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return g.call(this);var h=a.camelCase(["scroll",f].join("-"));this.$element.one("bsTransitionEnd",a.proxy(g,this)).emulateTransitionEnd(350)[f](this.$element[0][h])}}},c.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},c.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var d=a.fn.collapse;a.fn.collapse=b,a.fn.collapse.Constructor=c,a.fn.collapse.noConflict=function(){return a.fn.collapse=d,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(c){var d,e=a(this),f=e.attr("data-target")||c.preventDefault()||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),g=a(f),h=g.data("bs.collapse"),i=h?"toggle":e.data(),j=e.attr("data-parent"),k=j&&a(j);h&&h.transitioning||(k&&k.find('[data-toggle="collapse"][data-parent="'+j+'"]').not(e).addClass("collapsed"),e[g.hasClass("in")?"addClass":"removeClass"]("collapsed")),b.call(g,i)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.2.0",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('