diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 38c70b718..000000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -plantuml.jar -/_build -/.tox - diff --git a/Makefile b/Makefile deleted file mode 100644 index fe710c701..000000000 --- a/Makefile +++ /dev/null @@ -1,159 +0,0 @@ -# Makefile for Sphinx documentation - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = _build - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " pdf to make PDF using rst2pdf" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - -clean: - -rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html -W $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/fuel.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/fuel.qhc" - -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/fuel" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/fuel" - @echo "# devhelp" - -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -pdf: - $(SPHINXBUILD) -b pdf $(ALLSPHINXOPTS) $(BUILDDIR)/pdf - @echo - @echo "Build finished; the PDF file is in $(BUILDDIR)/pdf." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -texinfo: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo - @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." - @echo "Run \`make' in that directory to run these through makeinfo" \ - "(use \`make info' here to do that automatically)." - -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - @echo - @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." - -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." diff --git a/README.rst b/README.rst new file mode 100644 index 000000000..86e34d67c --- /dev/null +++ b/README.rst @@ -0,0 +1,10 @@ +This project is no longer maintained. + +The contents of this repository are still available in the Git +source code management system. To see the contents of this +repository before it reached its end of life, please check out the +previous commit with "git checkout HEAD^1". + +For any further questions, please email +openstack-discuss@lists.openstack.org or join #openstack-dev on +Freenode. diff --git a/_images/deliverables/d_install_rpm.png b/_images/deliverables/d_install_rpm.png deleted file mode 100644 index 666f816a2..000000000 Binary files a/_images/deliverables/d_install_rpm.png and /dev/null differ diff --git a/_images/deliverables/d_install_w_internet.png b/_images/deliverables/d_install_w_internet.png deleted file mode 100644 index be37102e7..000000000 Binary files a/_images/deliverables/d_install_w_internet.png and /dev/null differ diff --git a/_images/deliverables/d_install_wo_internet.png b/_images/deliverables/d_install_wo_internet.png deleted file mode 100644 index 736b3de66..000000000 Binary files a/_images/deliverables/d_install_wo_internet.png and /dev/null differ diff --git a/_images/deliverables/scr_change_hostname.png b/_images/deliverables/scr_change_hostname.png deleted file mode 100644 index 0ad592102..000000000 Binary files a/_images/deliverables/scr_change_hostname.png and /dev/null differ diff --git a/_images/deliverables/scr_change_pass_ui.png b/_images/deliverables/scr_change_pass_ui.png deleted file mode 100644 index e29c5af44..000000000 Binary files a/_images/deliverables/scr_change_pass_ui.png and /dev/null differ diff --git a/_images/deliverables/scr_fuel_log_in.png b/_images/deliverables/scr_fuel_log_in.png deleted file mode 100644 index 37721487c..000000000 Binary files a/_images/deliverables/scr_fuel_log_in.png and /dev/null differ diff --git a/_images/deliverables/scr_fuel_setup.png b/_images/deliverables/scr_fuel_setup.png deleted file mode 100644 index 96c4c2747..000000000 Binary files a/_images/deliverables/scr_fuel_setup.png and /dev/null differ diff --git a/_images/deliverables/scr_ironic_baremetal_nic_example.png b/_images/deliverables/scr_ironic_baremetal_nic_example.png deleted file mode 100644 index 393b6bd2c..000000000 Binary files a/_images/deliverables/scr_ironic_baremetal_nic_example.png and /dev/null differ diff --git a/_images/deliverables/scr_partition-disks.png b/_images/deliverables/scr_partition-disks.png deleted file mode 100644 index 0cabd39ec..000000000 Binary files a/_images/deliverables/scr_partition-disks.png and /dev/null differ diff --git a/_images/deliverables/scr_plugin_versioning.png b/_images/deliverables/scr_plugin_versioning.png deleted file mode 100644 index 5eabe9cf1..000000000 Binary files a/_images/deliverables/scr_plugin_versioning.png and /dev/null differ diff --git a/_images/source/d_install_w_internet.svg b/_images/source/d_install_w_internet.svg deleted file mode 100644 index 0b7c0c7bc..000000000 --- a/_images/source/d_install_w_internet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/_images/source/d_install_wo_internet.svg b/_images/source/d_install_wo_internet.svg deleted file mode 100644 index 44498d0e2..000000000 --- a/_images/source/d_install_wo_internet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/_images/title-page.png b/_images/title-page.png deleted file mode 100644 index 371c74d62..000000000 Binary files a/_images/title-page.png and /dev/null differ diff --git a/_templates/fuel.style b/_templates/fuel.style deleted file mode 100644 index 7db34640a..000000000 --- a/_templates/fuel.style +++ /dev/null @@ -1,50 +0,0 @@ -#embeddedFonts: [ [ "PT Sans" ], [ "PT Mono" ], [ "PT Serif" ] ] -# ["PT_Sans-CaptionBold.ttf", "PT_Sans-Bold.ttf", PT_Sans-Italic.ttf, PTF75F.ttf, PT_Sans-BoldItalic.ttf, -# PT_Sans-Narrow.ttf, PTF76F.ttf, PT_Sans-Bold_0.ttf, PT_Sans-NarrowBold.ttf, -# PTZ55F.ttf, PT_Sans-Caption.ttf, PT_Sans-Regular.ttf] - -fontsAlias: - stdBold: PT Sans Bold - stdBoldItalic: PT Sans Bold Italic - stdFont: PT Sans - stdItalic: PT Sans Italic - stdMono: PT Mono - stdMonoBold: PT Mono Bold - stdMonoBoldItalic: PT Mono Bold - stdMonoItalic: PT Mono - stdSans: PT Sans - stdSansBold: PT Sans Bold - stdSansBoldItalic: PT Sans BoldItalic - stdSansItalic: PT Sans Italic - stdSerif: PT Serif - -pageSetup: - firstTemplate: coverPage -# size: LETTER - -pageTemplates: - coverPage: - frames: [] - [0cm, 0cm, 100%, 100%] - background : _images/title-page.png - showHeader : false - showFooter : false - oneColumn: - frames: [] - [0cm, 0cm, 100%, 100%] - showHeader : true - showFooter : true - -styles: - seealso: - backColor: transparent - borderColor: transparent - parent: admonition - - seealso-heading: - parent: heading - fontName: PT Sans - fontSize: 150% - keepWithNext: true - spaceBefore: 0 - spaceAfter: 10 diff --git a/_templates/openstackdocs/css.html b/_templates/openstackdocs/css.html deleted file mode 100644 index 60204a95f..000000000 --- a/_templates/openstackdocs/css.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/_templates/openstackdocs/footer.html b/_templates/openstackdocs/footer.html deleted file mode 100644 index 9c35ce118..000000000 --- a/_templates/openstackdocs/footer.html +++ /dev/null @@ -1,56 +0,0 @@ - diff --git a/_templates/openstackdocs/header.html b/_templates/openstackdocs/header.html deleted file mode 100644 index 8071d1f07..000000000 --- a/_templates/openstackdocs/header.html +++ /dev/null @@ -1,107 +0,0 @@ - diff --git a/_templates/openstackdocs/layout.html b/_templates/openstackdocs/layout.html deleted file mode 100644 index 919315e46..000000000 --- a/_templates/openstackdocs/layout.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - -{% 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 deleted file mode 100644 index bdecb0158..000000000 --- a/_templates/openstackdocs/license_cc.html +++ /dev/null @@ -1,9 +0,0 @@ - - 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 deleted file mode 100644 index cccd5e366..000000000 --- a/_templates/openstackdocs/localtoc.html +++ /dev/null @@ -1,4 +0,0 @@ -{%- if display_toc %} -
Contents
-{{ toc }} -{%- endif %} diff --git a/_templates/openstackdocs/navigation.html b/_templates/openstackdocs/navigation.html deleted file mode 100644 index 8a78522b4..000000000 --- a/_templates/openstackdocs/navigation.html +++ /dev/null @@ -1,29 +0,0 @@ - diff --git a/_templates/openstackdocs/script_footer.html b/_templates/openstackdocs/script_footer.html deleted file mode 100644 index 707c6b921..000000000 --- a/_templates/openstackdocs/script_footer.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/_templates/openstackdocs/script_search.html b/_templates/openstackdocs/script_search.html deleted file mode 100644 index 98c9e9e86..000000000 --- a/_templates/openstackdocs/script_search.html +++ /dev/null @@ -1,28 +0,0 @@ - - diff --git a/_templates/openstackdocs/sidebartoc.html b/_templates/openstackdocs/sidebartoc.html deleted file mode 100644 index f37e70558..000000000 --- a/_templates/openstackdocs/sidebartoc.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
- -
-
-
-
-

{{ _('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 deleted file mode 100644 index 702d8ccab..000000000 --- a/_templates/openstackdocs/static/css/bootstrap.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * 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 deleted file mode 100644 index 36de8d3c6..000000000 --- a/_templates/openstackdocs/static/css/combined.css +++ /dev/null @@ -1,4682 +0,0 @@ -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; -} - -.docs-sidebar-section > ul li:not(.current) > ul { - display: none; -} - -li.toctree-l2:not(.current) > ul { - display: none; -} - -.docs-sidebar-section li.current > a { - font-weight: bold; -} - -.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 deleted file mode 100644 index bffc5c9be..000000000 --- a/_templates/openstackdocs/static/css/native.css +++ /dev/null @@ -1,69 +0,0 @@ -.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 deleted file mode 100644 index a3b47da55..000000000 --- a/_templates/openstackdocs/static/css/styles.css +++ /dev/null @@ -1,1308 +0,0 @@ -/*! - * 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 deleted file mode 100644 index f3b9bf9c4..000000000 Binary files a/_templates/openstackdocs/static/favicon.ico and /dev/null differ diff --git a/_templates/openstackdocs/static/images/docs/license.png b/_templates/openstackdocs/static/images/docs/license.png deleted file mode 100644 index 822491edb..000000000 Binary files a/_templates/openstackdocs/static/images/docs/license.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/docs/superuser1.png b/_templates/openstackdocs/static/images/docs/superuser1.png deleted file mode 100644 index 5c8fa0116..000000000 Binary files a/_templates/openstackdocs/static/images/docs/superuser1.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/docs/superuser2.png b/_templates/openstackdocs/static/images/docs/superuser2.png deleted file mode 100644 index a4d669140..000000000 Binary files a/_templates/openstackdocs/static/images/docs/superuser2.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/docs/superuser3.png b/_templates/openstackdocs/static/images/docs/superuser3.png deleted file mode 100644 index b07e9fe0d..000000000 Binary files a/_templates/openstackdocs/static/images/docs/superuser3.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/docs/superuser4.png b/_templates/openstackdocs/static/images/docs/superuser4.png deleted file mode 100644 index 1563fef23..000000000 Binary files a/_templates/openstackdocs/static/images/docs/superuser4.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-facebook-hover.png b/_templates/openstackdocs/static/images/footer-facebook-hover.png deleted file mode 100644 index 89bb5d15e..000000000 Binary files a/_templates/openstackdocs/static/images/footer-facebook-hover.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-facebook.png b/_templates/openstackdocs/static/images/footer-facebook.png deleted file mode 100644 index 531d98878..000000000 Binary files a/_templates/openstackdocs/static/images/footer-facebook.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-linkedin-hover.png b/_templates/openstackdocs/static/images/footer-linkedin-hover.png deleted file mode 100644 index b403e446f..000000000 Binary files a/_templates/openstackdocs/static/images/footer-linkedin-hover.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-linkedin.png b/_templates/openstackdocs/static/images/footer-linkedin.png deleted file mode 100644 index 5394b72da..000000000 Binary files a/_templates/openstackdocs/static/images/footer-linkedin.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-twitter-hover.png b/_templates/openstackdocs/static/images/footer-twitter-hover.png deleted file mode 100644 index 44f1e75d1..000000000 Binary files a/_templates/openstackdocs/static/images/footer-twitter-hover.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-twitter.png b/_templates/openstackdocs/static/images/footer-twitter.png deleted file mode 100644 index b0aa366d4..000000000 Binary files a/_templates/openstackdocs/static/images/footer-twitter.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-youtube-hover.png b/_templates/openstackdocs/static/images/footer-youtube-hover.png deleted file mode 100644 index 615339fd2..000000000 Binary files a/_templates/openstackdocs/static/images/footer-youtube-hover.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/footer-youtube.png b/_templates/openstackdocs/static/images/footer-youtube.png deleted file mode 100644 index de9bc49cb..000000000 Binary files a/_templates/openstackdocs/static/images/footer-youtube.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/loading.gif b/_templates/openstackdocs/static/images/loading.gif deleted file mode 100644 index 6a56815b2..000000000 Binary files a/_templates/openstackdocs/static/images/loading.gif and /dev/null differ diff --git a/_templates/openstackdocs/static/images/openstack-logo-full.png b/_templates/openstackdocs/static/images/openstack-logo-full.png deleted file mode 100644 index 60ab0e1eb..000000000 Binary files a/_templates/openstackdocs/static/images/openstack-logo-full.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/openstack-logo-full.svg b/_templates/openstackdocs/static/images/openstack-logo-full.svg deleted file mode 100644 index a2ca0b554..000000000 --- a/_templates/openstackdocs/static/images/openstack-logo-full.svg +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/_templates/openstackdocs/static/images/openstack-logo-vert.png b/_templates/openstackdocs/static/images/openstack-logo-vert.png deleted file mode 100644 index a705b59bc..000000000 Binary files a/_templates/openstackdocs/static/images/openstack-logo-vert.png and /dev/null differ diff --git a/_templates/openstackdocs/static/images/openstack-logo-vert.svg b/_templates/openstackdocs/static/images/openstack-logo-vert.svg deleted file mode 100644 index dcade04c3..000000000 --- a/_templates/openstackdocs/static/images/openstack-logo-vert.svg +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/_templates/openstackdocs/static/images/search-icon.png b/_templates/openstackdocs/static/images/search-icon.png deleted file mode 100644 index dfd5bb9f9..000000000 Binary files a/_templates/openstackdocs/static/images/search-icon.png and /dev/null differ diff --git a/_templates/openstackdocs/static/js/bootstrap.min.js b/_templates/openstackdocs/static/js/bootstrap.min.js deleted file mode 100644 index 7c1561a8b..000000000 --- a/_templates/openstackdocs/static/js/bootstrap.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * 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('