/*! normalize.css 2012-02-07T12:37 UTC - http://github.com/necolas/normalize.css */

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */

audio:not([controls]) {
    display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
    display: none;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
    margin: 0;
}


/* =============================================================================
   Links
   ========================================================================== */

/*
 * Addresses outline displayed oddly in Chrome
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover,
a:active {
    outline: 0;
}


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.75em;
    margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

mark {
    background: #ff0;
    color: #000;
}

/*
 * Addresses margins set differently in IE6/7
 */

p,
pre {
    margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
    quotes: none;
}

/* 2 */

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

/*
 * Addresses margins set differently in IE6/7
 */

dl,
menu,
ol,
ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7
 */

menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7
 */

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
    margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
    margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button,
input {
    line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
    *overflow: visible;  /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}


/* =============================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ui-multiselect { padding:2px 0 2px 4px; text-align:left }
.ui-multiselect span.ui-icon { float:right }
.ui-multiselect-single .ui-multiselect-checkboxes input { position:absolute !important; top: auto !important; left:-9999px; }
.ui-multiselect-single .ui-multiselect-checkboxes label { padding:5px !important }

.ui-multiselect-header { margin-bottom:3px; padding:3px 0 3px 4px }
.ui-multiselect-header ul { font-size:0.9em }
.ui-multiselect-header ul li { float:left; padding:0 10px 0 0 }
.ui-multiselect-header a { text-decoration:none }
.ui-multiselect-header a:hover { text-decoration:underline }
.ui-multiselect-header span.ui-icon { float:left }
.ui-multiselect-header li.ui-multiselect-close { float:right; text-align:right; padding-right:0 }

.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000 }
.ui-multiselect-checkboxes { position:relative /* fixes bug in IE6/7 */; overflow-y:scroll }
.ui-multiselect-checkboxes label { cursor:default; display:block; border:1px solid transparent; padding:3px 1px }
.ui-multiselect-checkboxes label input { position:relative; top:1px }
.ui-multiselect-checkboxes li { clear:both; font-size:0.9em; padding-right:3px }
.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label { text-align:center; font-weight:bold; border-bottom:1px solid }
.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label a { display:block; padding:3px; margin:1px 0; text-decoration:none }

/* remove label borders in IE6 because IE6 does not support transparency */
* html .ui-multiselect-checkboxes label { border:none }

/*!
 * jQuery UI CSS Framework 1.8.20
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
.ui-helper-clearfix:after { clear: both; }
.ui-helper-clearfix { zoom: 1; }
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*!
 * jQuery UI CSS Framework 1.8.20
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=\\'PT%20Sans\\',%20\\'Lucida%20Grande\\',%20Helvetica,%20Arial,%20sans-serif&fwDefault=normal&fsDefault=100%&cornerRadius=4px&bgColorHeader=d12907&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=cccccc&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=e8e8e8&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=cccccc&fcContent=333333&iconColorContent=222222&bgColorDefault=e8e8e8&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=cccccc&fcDefault=333333&iconColorDefault=333333&bgColorHover=ffffff&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=333333&fcHover=000000&iconColorHover=000000&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=d12907&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=d12907&fcHighlight=ffffff&iconColorHighlight=ffffff&bgColorError=ffcccc&bgTextureError=01_flat.png&bgImgOpacityError=95&borderColorError=ff0000&fcError=ff0000&iconColorError=ff0000&bgColorOverlay=333333&bgTextureOverlay=07_diagonals_medium.png&bgImgOpacityOverlay=0&opacityOverlay=70&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family: 'PT Sans', 'Lucida Grande', Helvetica, Arial, sans-serif; font-size: 100%; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: 'PT Sans', 'Lucida Grande', Helvetica, Arial, sans-serif; font-size: 1em; }
.ui-widget-content {
	border: 1px solid #cccccc;
	background: #e8e8e8 url(/img/ui/ui-bg_flat_75_e8e8e8_40x100.png) 50% 50% repeat-x;
	color: #333333;
	/* MIGUEL CHANGED */
	background: white;
}
.ui-widget-content a { color: #333333; }
.ui-widget-header { border: 1px solid #cccccc; background: #d12907 url(/img/ui/ui-bg_highlight-soft_75_d12907_1x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
.ui-widget-header a { color: #ffffff; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #e8e8e8 url(/img/ui/ui-bg_glass_75_e8e8e8_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #333333; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #333333; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
		border: 1px solid #333333;
		background: #E4E4C1;
		font-weight: normal;
		color: #000000;
		/* MIGUEL CHANGED */
		border-color: silver;
	}
.ui-state-hover a, .ui-state-hover a:hover { color: #000000; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(/img/ui/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #d12907; background: #d12907 url(/img/ui/ui-bg_glass_55_d12907_1x400.png) 50% 50% repeat-x; color: #ffffff; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #ffffff; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #ff0000; background: #ffcccc url(/img/ui/ui-bg_flat_95_ffcccc_40x100.png) 50% 50% repeat-x; color: #ff0000; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ff0000; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ff0000; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(/img/ui/ui-icons_222222_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(/img/ui/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(/img/ui/ui-icons_ffffff_256x240.png); }
.ui-state-default .ui-icon { background-image: url(/img/ui/ui-icons_333333_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(/img/ui/ui-icons_000000_256x240.png); }
.ui-state-active .ui-icon {background-image: url(/img/ui/ui-icons_454545_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(/img/ui/ui-icons_ffffff_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(/img/ui/ui-icons_ff0000_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }

/* Overlays */
.ui-widget-overlay { background: #333333 url(/img/ui/ui-bg_diagonals-medium_0_333333_40x40.png) 50% 50% repeat; opacity: .70;filter:Alpha(Opacity=70); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(/img/ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*!
 * jQuery UI Autocomplete 1.8.20
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete { position: absolute; cursor: default; }	

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.20
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
	list-style:none;
	padding: 2px;
	margin: 0;
	display:block;
	float: left;
}
.ui-menu .ui-menu {
	margin-top: -3px;
}
.ui-menu .ui-menu-item {
	margin:0;
	padding: 0;
	zoom: 1;
	float: left;
	clear: left;
	width: 100%;
}
.ui-menu .ui-menu-item a {
	text-decoration:none;
	display:block;
	padding:.1em .4em;
	line-height:1.5;
	zoom:1;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}
/*!
 * jQuery UI Dialog 1.8.20
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
/*!
 * jQuery UI Slider 1.8.20
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*!
 * jQuery UI Progressbar 1.8.20
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
/* ----------------------------------------- *
 * Layout
 * ----------------------------------------- */

body, html {
	color: #666;
    font-family: Arial;
    font-size: 14px;
    line-height: 1.6;
}

/*a {
    text-decoration: none;
    color: #E67B1A;
}
a, a:visited {
    border: medium none;
    color: #E67B1A;
    cursor: pointer;
}
a:hover {
    color: #E67B1A;
}*/

div.easy_social_box.vertical {
    height: 68px;
    width: 250px;
}





#wrapper {
	min-height: 100%;
	position: relative;
}
#stickycontent {
	padding-bottom: 102px;
	margin: 0px auto;
	overflow: hidden;
	width: 1000px;
	border: 0px solid #CCC;
}
/*#header {
	background-color: #333333;
	height: 119px;
	overflow: hidden;
}
#logo {
	float: left;
    overflow: hidden;
    padding: 20px 0;
    width: 240px;
}
#logo img { width: 230px; }
#header nav {
	float: left;
    height: 39px;
    overflow: hidden;
    padding: 30px 0;
    width: 720px;
}
#stripe {
	background: url("/assets/images/ui-orange-content.png") no-repeat scroll center top #D24300;
    height: 20px;
    overflow: hidden;
    clear:both;
}*/

.fixedwidth-wrapper {
	margin: 0 auto;
    overflow: hidden;
    width: 1000px;
    border: solid #ccc 0px;
}



input {
	border-radius: 0 !important;
}


/* HEADER (Logo, Top Right Nav, Contact Button) */

.topNavContainer {
	width:1000px;
	margin-left:auto;
	margin-right:auto;
	margin-top:20px;
}

#topnav {
	width:720px;
	float:right;
	font-size:11px;
	text-align:right;
}

.search-field {
	margin-top:5px;
}

.search-button {
    border: 0px solid #006;
    background: #b4b3b3;
    color:#fff;
    text-transform:uppercase;
    padding:3px 5px 3px 5px;
    font-weight:bold;
}

.search-button:hover {
    background: #777;
    cursor:pointer;
}

.getHelpBox {
	border:0px solid #000;
	width:240px;
	height:30px;
	float:right;
	background-color:#e67b1a;
	text-align:center;
	color:#fff;
	font-weight:bold;
	font-size:16px;
	border-radius: 5px 5px 0px 0px;
	margin-bottom:0px;
	margin-top:25px;
	padding-top:5px;
}

.getHelpArrow img{
	margin-left:5px;
}

.topnavLink a {
	font-size:11px;
	text-align:right;
	margin-left:10px;
	margin-right:10px;
	text-decoration:none;
	text-decoration:none;
	margin-right:8px;
	margin-left:8px;
	color:#333 important!;
}

.topnavLink a:hover {
	color:#d5390b important!;
}



#header {
    background: none repeat scroll 0 0 #fff;
    /*height: 0px;*/
    overflow: visible;
}



#header .header .right .navicontainer {
    background: url("") no-repeat scroll left top #333;
    float: left;
    margin-left:80px;
    height: 35px;
    overflow: hidden;
    background-color: #333;
}

#header input[type="submit"] {
    background-color: #b6b6b6;
    border: medium none;
    border-radius: 0px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    padding: 6px;
    text-transform: uppercase;
    width: auto;
	font-family:arial;
}

#header input[type="submit"]:hover {
    background-color: #777;
    color: #fff;
}


#header input {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    box-shadow: 1px 1px 3px #eee inset;
    color: #999;
    font-size: 12px;
    padding: 4px;
    width: 150px;
    border-radius: 0px;
    margin-right: 5px;
}

/* Eof HEADER (Logo, Top Right Nav, Contact Button) */



/* Main top nav */

.tb-megamenu{
  position: relative;
  background-color: #000;
}

.tb-megamenu .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
}

.tb-megamenu .nav {
    margin: 0px;
    list-style: outside none none;
    padding: 0px !important;
}

.tb-megamenu .nav > li {
    float: left;
    margin-left: 0px;
}
.tb-megamenu .nav > li > a {
    display: block;
    border-right: 1px solid #222;
	border-top: 0px none;
	color: #FFF;
	font-size: 18px;
	font-weight: normal;
	padding: 13px 26px;
	text-shadow: none;
	text-transform: uppercase;
}

.tb-megamenu .nav li a:hover {
	background-color: #eff0f5 !important;
  color: #0e4a86 !important;
  text-decoration: none !important;
}

.tb-megamenu:after {
    clear: both;
}
.tb-megamenu:before, .tb-megamenu:after {
    content: "";
    display: table;
    line-height: 0;
}

/* Eof main top nav */
#contentheader {
	overflow: hidden;
	border-bottom: #E67B1A 6px solid;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	margin-top: 0;
	margin-bottom: 0;
	/*padding: 20px 30px 0;*/
	position: relative;
}
#contentheader h1, #contentheader h2 {
	float: left;
	color: #333;
	margin-left: 20px;
	margin-bottom: 25px;
}
#contentheader h1 {
	margin-bottom: 0.15em;
}
#contentheader h1 a,
#contentheader h1 a:hover {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}
#contentheader h2 {
	font-size: 1.25em;
	clear: left;
	color: #777;
	}

h2 {
	text-align: left;
	margin-top: 2em;
	font-size: 1.75em;
}
/*header h2 {
	margin-top: 0;
}*/
code {
	display: block;
	text-align: left;
	background-color: #F0F0F0;
	border: 1px solid #333;
	font-family: Monaco, monospaced;
	padding: 15px;
}
#contentheader nav {
	float: right;
	height: 100%;
	position: absolute;
	top: 50%;
	margin-top: -24px;
	right: 50px;
}
#contentheader nav.signout {
	top: 100%;
	font-size: 19px;
	right: 18px;
	color: #aaa;
	font-family: 'Yanone Kaffeesatz', 'Lucida Grande', 'Trebuchet MS', sans-serif;
}
#contentheader nav.signout span {
	color: #888;
}
#contentheader nav.signout a {
	color: #E67B1A;
}

#page-header {
    margin-top:-15px;

.page-title {
    background-color: #ff9630;
    background-image:url('https://www.percona.com/sites/all/themes/percona2015/images/bg-page-top-inside.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 25px;

h4 {
    color: #fff;
    font-size: 1.2em;
    font-family: "Open Sans";
    text-align: center;
    font-weight: 900;
    line-height: 50px;
}

h2 {
    color: #fff;
    font-size: 3.91667em;
    font-family: "Open Sans";
    text-align: center;
    font-weight: 900;
    line-height:50px;
.first-word {
    font-weight: 300;
}

img {
    width: 100px;
    height: 100px;
    margin-right: 25px;
}
}
h2.smaller {
    font-size: 2.91667em;
}

}

.page-header {
    border-bottom: none;
}


}

#content {
	/*border-right: 1px solid #CCC;
	border-left:  1px solid #CCC;*/
	background-color: #FFF;
	padding: 20px;
	padding-bottom: 40px;
}
p {
	text-align: left;
	font-size: 13px;
	font-family: "Open Sans",sans-serif;
}




/* Header main percona.com navigation menu */
/*#main-navigation {
	background: #FFFFFF;
	border-radius: 5px;
	height: 27px;
	padding: 4px 10px;
	list-style-type: none;
	margin:0;
	float: left;
}
#main-navigation li {
	display: inline;
}
#main-navigation li a {
	color: #000000;
    display: inline-block;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    height: 17px;
    line-height: 14px;
    padding: 6px 10px 4px;
    text-decoration: none;
}
#main-navigation li a:hover {
	background-color: #f0f0f0;
	border-radius: 5px;
}
#search {
	float: right;
    height: 35px;
    overflow: hidden;
    padding: 0 ;
    width: 35px;
}
#search-dropdown {
	position: absolute;
	width: 230px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #333;
	padding: 5px 15px 10px;
	display: none;
}
#search-dropdown:before {
	position: absolute;
  	display: block;
  	content: "";
  	border-color: transparent transparent #ffffff transparent;
  	border-style: solid;
  	border-width: 10px;
  	height:0;
  	width:0;
  	top:-16px;
  	right:0.7em;
}
#search-dropdown input {
	border: 1px solid #C0C0C0;
    outline: medium none;
    padding: 4px;
    width: 210px;
    border-radius: 0;
    margin: 0 auto;
    font-size: 14px;
}
#search-dropdown label {
	font-size: 14px;
}*/
/* Main Navigation menu */
nav#main-nav {

	border-top: none;
	opacity: .4;

}
nav#main-nav:hover {
	opacity: 1;
}
nav#main-nav ul {
	margin:0 1em;
	padding: 0;
}
nav#main-nav li {
	font-family: 'Yanone Kaffeesatz','Lucida Grande','Trebuchet MS', sans-serif;
	font-size: 1.1em;
	float: left;
	padding: 0;
}
nav#main-nav li.right {
	float: right;
}
nav#main-nav li a {
	color: black;
	display: block;
	padding: .4em 1.4em;
	text-decoration: none;
	font-weight: normal;
}
nav#main-nav li.active a {
	color: white;
	background: #E0521F;
}
nav#main-nav:hover li.active a {
	background: #e49d83;
}
nav#main-nav li a:hover {
	color: white;
	background-color: #E67B1A; /* If No gradients desired */
}
nav#main-nav:hover li.active a:hover {
	background: #e49d83;
	cursor: default;
}

/* ----------------------------------------- *
 * Error Pages
 * ----------------------------------------- */
#content.errorLayout {
	padding: 60px;
}
#content.errorLayout h1 {
	font-size: 15em;
	line-height: .5em;
	color: #E0521F;
}
#content.errorLayout h2 {
	font-size: 4em;
	line-height: 1em;
	color: #333;
	padding: 20px;
    margin: 0;
    margin-top: 1em;
}
#content.errorLayout .errorMain {
	margin-top: 50px;
	float: left;
	width: 22em;
}
#content.errorLayout .errorMessage {
	float: right;
	width: 11em;
	font-size: 1.3em;
	padding: 50px;
    padding-top: 0
}




/* ----------------------------------------- *
 * Content Sections
 * ----------------------------------------- */
section {
	padding-bottom: 3em;
	text-align: left;
}
section:not(:last-child) {
	border-bottom: 1px #CCC solid;
}
section header {
	text-align: center;
	margin-bottom:0;
}



/* ----------------------------------------- *
 * Web font API
 * ----------------------------------------- */
.wf-loading h1 { /* Not showing other font while loading */
	visibility: hidden;
}
.wf-inactive h1 { /* Activating headers in case of timeout */
	visibility: auto;
}




/* ----------------------------------------- *
 * Fonts
 * ----------------------------------------- */
body {
	font-family: "Open Sans",sans-serif;
	font-size: 100%;
	line-height: 1.375em;  /* 16x1.125=22px */
}
#content h1{
	
	font-size: 25px;
	line-height: 23px;
	font-weight: bold;
	vertical-align:middle;
	text-transform: uppercase;
	color: #333;
	border-bottom: 2px solid #E67B1A;
	margin: 15px 0 0;
}

#content h2 {
    color: #333;
    
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    margin: 30px 0px 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #E67B1A;
    position: relative;
    overflow: hidden;
}
#content h2.center {
	text-align: center;
}
#content h3 {
	border-bottom: 1px solid #E0E0E0;
    color: #000000;
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
    margin: 30px 0 15px;
    padding: 0 0 3px;
    text-align: left !important;
}
#contentheader h1 {
	
	font-size: 3.3em;
	/*line-height: 1.3em;*/
	/* letter-spacing: .1em; */
	font-weight: bold;
	 text-shadow: #999 1px 2px 2px;
	 /*margin-top: 0px;*/
	overflow: visible;
}
h2 strong, h2 em {
	color: #E0521F;
	font-style: normal;
}




/* ----------------------------------------- *
 * Content
 * ----------------------------------------- */
a, a:link, a:active, a:hover, a:visited {
	color: #E67B1A;
	text-decoration: none;
}
a:hover {
	color: #D12907;
	text-decoration: underline;
}
#header {
	/*margin-bottom:1em;*/
}

.btn-info {
	color: #ffffff !important;
}


/* ----------------------------------------- *
 * Result Box (for wizard and advisor)
 * ----------------------------------------- */
#result {
	border: 10px solid #333;
	border-bottom: dashed 1px #CCC;
	border-top: dashed 1px #CCC;
	height: 305px;
	margin: 30px auto;
	outline: none;
	overflow:hidden;
	padding: 0 20px;
	text-align: center;
	/* width: 740px; */
}
#result textarea {
	border: none;
	border-radius: 0;
	background: transparent;
	color: black;
	font-family: "Monaco", monospace;
	font-size: .75em;
	height: 305px;
	outline: none;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0;
	text-align: left;
	width: 100%;
}
pre {
	font-family: "Monaco", monospace;
	color: black;
}




/* ----------------------------------------- *
 * Other
 * ----------------------------------------- */
section.ui-cta p {
	text-align:center
}
section.buttons {
	padding: 30px;
}



/* ----------------------------------------- *
 * Commons
 * ----------------------------------------- */
.ui-align-right {
	text-align: right !important;
}
.ui-align-left {
	text-align: left !important;
}
.ui-align-center {
	text-align: center !important;
}
.ui-float-left {
	float: left;
}
.ui-float-right {
	float: right;
}
.ui-contain-floats {
	overflow: auto;
}
.ui-center-wrapper {
	margin: 0 auto;
	text-align: center;
}
.ui-block {
	display: block;
}
.ui-hidden {
	display: none;
}
.ui-margin-top {
	margin-top: 3em;
}
.ui-clear {
	clear: both!important;
}
.ui-width-30 {
	width: 30px;
}
.ui-width-40 {
	width: 40px;
}
.ui-width-50 {
	width: 50px;
}
.ui-width-80 {
	width: 80px;
}
.ui-width-90 {
	width: 90px;
}
.ui-width-100 {
	width: 100px;
}
.ui-width-110 {
	width: 110px;
}
.ui-width-130 {
	width: 130px;
}
.ui-width-140 {
	width: 140px;
}
.ui-width-160 {
	width: 160px;
}
.ui-width-180 {
	width: 190px;
}
.ui-width-200 {
	width: 200px;
}
.ui-width-250 {
	width: 250px;
}
.ui-width-270 {
	width: 270px;
}
.ui-width-300 {
	width: 300px;
}
.ui-width-350 {
	width: 350px;
}
.ui-width-400 {
	width: 400px;
}
.ui-width-25p {
	width: 25%;
}
.ui-width-50p {
	width: 50%;
}
.ui-width-60p {
	width: 60%;
}
.ui-width-70p {
	width: 70%;
}
.ui-width-90p {
	width: 90%;
}
.ui-minwidth-40 {
	min-width: 40px;
}
.ui-minwidth-80 {
	min-width: 80px;
}
.ui-minwidth-85 {
	min-width: 85px;
}
.ui-minwidth-90 {
	min-width: 90px;
}
.ui-minwidth-100 {
	min-width: 100px;
}
.ui-minwidth-120 {
	min-width: 120px;
}
.ui-minwidth-150 {
	min-width: 150px;
}
.ui-minwidth-180 {
	min-width: 180px;
}
.ui-minwidth-190 {
	min-width: 190px;
}
.ui-minwidth-200 {
	min-width: 200px;
}
.ui-minwidth-400 {
	min-width: 400px;
}
.ui-maxwidth-180 {
	max-width: 180px;
}
.ui-maxwidth-190 {
	max-width: 190px;
}
.ui-maxwidth-200 {
	 max-width: 200px;
}

.ui-fixed-width-font {
	font-family: Consoles, Monaco, "Lucida Console", monospace;
}
.ui-clickable {
	cursor: pointer;
}
.ui-nowrap {
	white-space: nowrap;
}


/* ----------------------------------------- *
 * Buttons & Call To Action & Cancel
 * ----------------------------------------- */
.ui-button,
.ui-dialog-buttonset button {
	background-color: white;
	/*border-radius: 20px;
	border-width: 3px;
	border-style: solid;*/
	display: inline-block;
	font-family: "Yanone Kaffeesatz",'Lucida Grande','Trebuchet MS', sans-serif !important;
	font-size: 1.3em !important;
	letter-spacing: .1em;
	line-height: 1.5em !important;
	padding: 5px 20px !important;
	height: auto !important;
	text-align: center;
	text-decoration: none !important;
	width: auto !important;
}
.ui-button:hover,
.ui-dialog-buttonset button:hover {
	/*background-color: #D12907;
	border-color: #D12907;*/
	color: white;
}
.ui-button-small,
.ui-dialog-buttonset button {
	border-radius: 0px;
	display: inline-block;
	font-size: 1.1em !important;
	padding: 0 10px !important;
}
.ui-button-big {
	font-size: 2em !important;
	padding: 10px 30px !important;
}
.ui-button-xsmall {
	border-radius: 5px;
	display: inline-block;
	font-size: .9em !important;
	padding: 0 10px !important;
	border: none;
}
.ui-cta {
	background-color: #E67B1A;
	border-color: #E67B1A;
	color: white !important;
}
.ui-cta:hover {
	/*background-color: #D12907;*/
	/*border-color: #D12907;*/
	/*color: white;*/
}
.ui-cancel {
	background-color: #F0F0F0 !important;
	border-color: #333 !important;
	color: #333 !important;
}
.ui-cancel:hover {
	background-color: white !important;
	border-color: black !important;
	color: black !important;
}

/* buttons shadow */
.ui-button.ui-cta {
	/*box-shadow: 2px 2px 5px 0 #999;*/
}
.ui-button.ui-cancel {
	/*box-shadow: 2px 2px 5px 0 #999;*/
}
.ui-button.ui-button-xsmall {
	box-shadow: none;
}

input[disabled=disabled],
button[disabled=disabled] {
	color: #F0F0F0 !important;
	background-color: #FFF !important;
	border-color: #F0F0F0 !important;
	box-shadow: none!important;
}
button em {
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
}
button:hover em {
	text-decoration: underline;
	font-style: normal;
	font-weight: bold;
}

.taglist {
	padding-left: 0;
	margin: 0;
}
.taglist li {
	list-style-type: none;
	border-style: solid;
	display: inline-block;
	font-family: "Yanone Kaffeesatz",'Lucida Grande','Trebuchet MS', sans-serif;
	font-size: 1.6em;
	letter-spacing: .1em;
	line-height: 1.5em;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
	font-size: .9em;
	padding: 0 10px;
	border: none;
	background-color: #333;
	border-color: #E0521F;
	color: white !important;
	width: auto !important;
	margin-right: .5em;
	margin-bottom: .1em;
}

/* ----------------------------------------- *
 * Wizard UI logic
 * ----------------------------------------- */
#wizard .w-question,
.w-text {
	display: none;
}
#wizard #w-done,
#wizard #w-next,
#wizard #w-back,
#wizard #w-skip {
	display: none;
}
#wizard #w-next,
#wizard #w-done,
#wizard #w-skip {
	float: right;
}
#wizard #w-back {
	float: left;
}




/* ----------------------------------------- *
 * Tables
 * ----------------------------------------- */
table {
	margin: 0 auto;
	width: 100%;
	border-radius: 5px;
	border: none;
}
td, th {
	border: 1px solid #CCC;
	border-left: none;
	border-right: none;
	padding: 1px 15px;
	text-align: left;
	vertical-align: middle;
}
th {
	background-color: transparent;
	border: none;
	color: #666;
}
tr {
	border: none;
}
tbody tr:nth-child(odd) {
	background-color: #F5F5F5;
}
tr.deleted {
	background-color: #AAAAAA;
}
td input[type="checkbox"], th input[type="checkbox"] {
	margin: 0;
}
td a {
	display: block;
}




/* ----------------------------------------- *
 * Floats containing
 * http://nicolasgallagher.com/micro-clearfix-hack/
 * ----------------------------------------- */
.ui-cf:before,
.ui-cf:after {
	content:"";
	display:table;
}
.ui-cf:after {
	clear:both;
}
.ui-cf {
	zoom:1;
}




/* ----------------------------------------- *
 * Notifications & Messages
 * ----------------------------------------- */
.notifications {
	padding: 0;
	font-size: 1em;
	border-radius: 0;
	margin: 0;
	background-color: white;
	text-align: center;
}
.notifications.main {
	margin-bottom: 0;
}
.notifications p {
	text-align: center;
	margin: 10px;
}
.notifications div {
	border-radius: 5px;
	border-width: 1px;
	border-style: solid;
	padding: 0 30px;
	margin-bottom: 30px;

	border-radius: 0;
	border-width: 1px 0;
	padding: .5em 1em;
	border-color: #CCC;
	text-align: center;
}
.error {
	background-color: #FDD !important;
	border-color: red !important;
}
.warning {
	background-color: #FFD;
	border-color: yellow;
}
.notice {
	background-color: #D4F4B8;
	border-color: green;
}
.error-text {
	background-color: #FDD;
	border-color: darkred;
	padding: .15em;
	color: darkred;
}
.notice-text {
	background-color: #D4F4B8;
	border-color: green;
	padding: .15em;
	color: darkgreen;
}
.js-message {
	display: none;
}

.ui-twoCols {
	padding: 0 30px;
}
.ui-twoCols div {
	float: left;
	width: 50%;
}
.ui-twoCols div:first-child {
	text-align: left;
}
.ui-twoCols div:last-child {
	text-align: right;
}



/* ----------------------------------------- *
 * jQuery UI Dialogs
 * ----------------------------------------- */

.dialog {
	display: none;
}
#share-dialog .server {
	font-size: 1.2em;
}
#share-dialog .server label {
	font-weight: bold;
}
#share-dialog .server input {
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 0;
	margin-top: .3em;
	margin-bottom: 1.2em;
	width: 412px;
}
#share-dialog .notshared {
	display: none;
}
.ui-dialog {
	padding: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em .7em;
	position: relative;
	background: #333;
	vertical-align: middle;
	font-family: 'Lobster','Yanone Kaffeesatz','PT Sans',sans-serif;
	font-size: 2.4em;
	line-height: 1em;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border: 0;
	border-bottom: 6px solid #E0521F;
}
.ui-menu .ui-menu-item a {
	padding:.05em .4em;
}

/* ----------------------------------------- *
 * Feedback
 * ----------------------------------------- */

#feedback {
	text-decoration: none;
	background-color: #333;
	/*border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;*/
	outline: 1px solid #333;
	border: 2px solid white;
	border-bottom: none;
	letter-spacing: .07em;
	font-weight: bold;
	color: white;
	top: 21em;
	right: -80px;
	cursor: pointer;
	position: fixed;
	z-index: 2000; /* 1000 is the jquery overlay */
	margin: 0;
	padding:.5em 1em;

	-moz-transform:rotate(-90deg);
	-moz-transform-origin: top left;

	-webkit-transform: rotate(-90deg);
	-webkit-transform-origin: top left;

	-o-transform: rotate(-90deg);
	-o-transform-origin: top left;

	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}
#feedback:hover {
    padding-top: .1em;
}
#feedback-form-dialog textarea {
	height: 8em;
}
#feedback-form-dialog .thanks {
	display: none;
	text-align: center;
	font-size: 4.5em;
	color: #E0521F;
	font-weight: bold;
	line-height: 1em;
	margin: .55em auto;
}



/* ----------------------------------------- *
 * jQuery UI Customizations
 * ----------------------------------------- */

/* we don't use a close button yet */
.ui-dialog-titlebar-close {
	display: none;
}

/* ----------------------------------------- *
 * Controls
 * ----------------------------------------- */

.buttonsLeftTextRight {
	position: relative;
	padding: 0 30px;
}
.buttonsLeftTextRight.unpadded {
	padding: 0;
}
.buttonsLeftTextRight > input, .buttonsLeftTextRight > button, .buttonsLeftTextRight > a {
	float: left;
	margin-right: 1em;
}
.buttonsLeftTextRight p {
	position: absolute;
	right: 30px;
	margin: 0;
	text-align: right;
}
.buttonsLeftTextRight.unpadded p {
	right: 0;
}

.buttonsRightTextLeft {
	position: relative;
	padding: 0 30px;
}
.buttonsRightTextLeft > input, .buttonsRightTextLeft > button, .buttonsRightTextLeft > a {
	float: right;
	margin-left: 1em;
}
.buttonsRightTextLeft p {
	position: absolute;
	left: 30px;
	margin: 0;
	text-align: left;
}

/* ----------------------------------------- *
 * Miscelaneous
 * ----------------------------------------- */

.ui-visible-when-row-hovered {
	visibility: hidden;
}
tr:hover .ui-visible-when-row-hovered {
	visibility: visible;
}


/* Clickable rows */
table.clickable-rows tbody tr:hover {
	background-color: #E4E4C1;
}
table.clickable-rows tbody {
	cursor: pointer;
}
table.clickable-rows tbody tr:not(:hover) a.ui-button {
	background-color: #666;
}


/* ----------------------------------------- *
 * Twitter Bootstrap
 * ----------------------------------------- */

 .collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
     -moz-transition: height 0.35s ease;
      -ms-transition: height 0.35s ease;
       -o-transition: height 0.35s ease;
          transition: height 0.35s ease;
}

.collapse.in {
  height: auto;
}

.input-small {
	width: 110px!important;
}
.input-medium {
	width: 150px!important;
}
.input-large {
	width: 210px!important;
}

/* ----------------------------------------- *
 * Expandable Rows
 * ----------------------------------------- */
table.has-collapsable-rows tbody tr {
	background-color: white;
}
table.has-collapsable-rows tbody tr:nth-child(4n+1) {
	background-color: whiteSmoke;
}
table.has-collapsable-rows tbody tr:nth-child(2n) {
	background-color: #E4E4C1;
}
table.has-collapsable-rows tbody tr:nth-child(2n) td {
	border: none;
}
table.has-collapsable-rows tbody tr.status-expanded {
	background-color: #E4E4C1;
}
table.has-collapsable-rows tbody tr.status-expanded td {
	border-bottom: none;
}
table.has-collapsable-rows td.expand-trigger {
	padding: 0;
}
table.has-collapsable-rows td.expand-trigger {
	background-image: url('/img/expand.20.png');
	background-repeat: no-repeat;
	background-position: center center;
	width: 30px;
	cursor: pointer;
}
table.has-collapsable-rows tr.status-expanded td.expand-trigger {
	background-image: url('/img/collapse.20.png');
}
table.has-collapsable-rows td div {
	/* font-family: Monaco, Consolas, monospace; */
	/* font-size: .9em; */
	/* line-height: 1.2em; */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
table.has-collapsable-rows tr.status-expanded td div {
	overflow: auto;
	white-space: normal;
}

.footer-container {
    width: 100%;
    left: 0;
    margin: 0;
    position: absolute;
}


/* ----------------------------------------- *
 * Forms
 * ----------------------------------------- */
.ui-center-wrapper > form {
	padding: 0;
}

fieldset {
	border: none;
}
input,
textarea {
	border: 3px solid #CCC;
	border-radius: 25px;
}
input,
textarea,
select {
	font: 1em 'PT Sans', 'Lucida Grande', Helvetica, Arial, sans-serif;
	color: #333;
    background-color: white;
	padding-left: 20px;
	width: 300px;
	outline: none;
	vertical-align: middle;
}
textarea {
	width: 310px;
	height: 100px;
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 1em;
}
select {
	border: 3px solid #CCC;
	border-radius: 5px;
	padding: 3px;
	width: 320px;
}
option {
	font-size: 1em;
}
input[type=radio],
input[type=checkbox] {
	width: auto !important;
	height: auto !important;
	margin-right: 20px;
	border: 1px solid #cccccc;
	border-radius: 0 !important;
}
input[type=text],
input[type=password] {
	padding-top: 5px;
	padding-bottom: 5px;
}
input[type=password] {
	font-family: sans-serif;
	font-size: 1.2em;
	letter-spacing: .2em;
}



/* ----------------------------------------- *
 * One Column Form
 * ----------------------------------------- */

form.oneCol  {
	margin: 40px auto 0 auto;
	width: 460px;
}
form.oneCol fieldset {
	padding: 0 30px 30px 30px;
	background-color: transparent;
	width: 400px;
	text-align: left;
}
form.oneCol fieldset:first-child {
	padding-top: 20px;
	border-top: 1px solid #CCC;
}
form.oneCol fieldset:nth-child(even) {
	/* background-color: #FAFAFA; */
}
form.oneCol fieldset:last-child {
	background-color: transparent;
	text-align:center;
	border-top: 1px solid #CCC;
	margin: 0;
	padding: 30px;
	position: relative;
}
form.oneCol label {
	color: #333;
	font-size: 1.2em;
	float: left;
	line-height: 1.750em;
	vertical-align: middle;
	text-align: left;
	width: 340px;
}
form.oneCol input,
form.oneCol select {
	float:left;
	color: #333;
	padding-left: 20px;
	border: 1px solid #CCC;
	border-radius: 25px;
	width: 380px;
	outline: none;
}
form.oneCol input[type=checkbox] {
	padding: 1px;
    margin-top: .5em;
}
form.oneCol input[type=button],
form.oneCol input[type=submit] {
	width: auto;
}

/** DEPRECATED. Use .buttonsRightTextLeft and .buttonsLeftTextRight **/
form.oneCol fieldset:last-child input {

}
form.oneCol fieldset:last-child p {
	position: absolute;
	right: 30px;
	margin: 0;
	text-align: right;
}



/* ----------------------------------------- *
 * One Column Form in jQueryUI Dialogs
 * ----------------------------------------- */

form.oneColDialog  {
	margin-top: 20px;
}
form.oneColDialog fieldset {
	padding: 0;
	padding-bottom: 15px;
	background-color: transparent;
	text-align: left;
}
form.oneColDialog label {
	color: #333;
	font-size: 1.2em;
	float: left;
	line-height: 1.750em;
	vertical-align: middle;
	text-align: cccleft;
	width: 100%;
}
form.oneColDialog input,
form.oneColDialog textarea {
	box-sizing: border-box;
	float:left;
	color: #333;
	padding-left: 20px;
	border: 1px solid #999;
	border-radius: 15px;
	width: 100%;
	outline: none;
}


/* ----------------------------------------- *
 * Two Cols Form
 * ----------------------------------------- */

form.twoCols  {
	margin: 40px auto 0 auto;
	border-top: 1px solid #CCC;
	padding-top: 25px;
}
form.twoCols fieldset {
	padding: 0;
	padding-bottom: 42px;
	background-color: transparent;
	width: 360px;
    min-height: 76px;
	float: left;
	text-align: left;
	clear: right;
}
form.twoCols fieldset:nth-child(even) {
	padding-right: 30px;
	padding-left: 30px;
}
form.twoCols fieldset:nth-child(odd) {
	padding-right: 30px;
	padding-left: 30px;
}
form.twoCols fieldset:last-child {
	/* background-color: #FAFAFA; */
	width: 800px;
	text-align:center;
	border-top: 1px solid #CCC;
	padding: 0;
	margin: 0;
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
}
form.twoCols fieldset.half-width {
	width: 147px;
	width: 150px;
}
form.twoCols fieldset.double-width {
	width: 720px;
}
form.twoCols fieldset.double-height {
	min-height: 152px;
}
form.twoCols label {
	color: #333;
	font-size: 1.1em;
	float: left;
	line-height: 42px;
	vertical-align: middle;
	text-align: left;
	width: 340px;
}
form.twoCols input,
form.twoCols select {
	float:left;
	color: #333;
	padding-left: 20px;
	border: 1px solid #CCC;
	width: 300px;
	outline: none;
    border-radius: 25px;
}
form.twoCols select {
    border-radius: 5px;
    width: 320px;
}
form.twoCols input[type=button],
form.twoCols input[type=submit] {
	width: auto;
}
form.twoCols fieldset:last-child {
	padding: 30px;
}
form.twoCols fieldset:last-child input {
	position: absolute;
	left: 450px;
}
form.twoCols fieldset:last-child p {
	margin: 0;
}
form.twoCols fieldset.error {
	padding-bottom: 0;
    min-height: 118px; /* fix thin white space between two error fieldsets */
}

/* Error fieldsets in dialogs should keep white background */
.dialog fieldset.error {
	background-color: transparent !important;
}

/* Inline labeled checkboxes */
label.checkbox {
	font-size: 1em!important;
	line-height: 1.275em!important;
}
/* ----------------------------------------- *
 * Query Advisor
 * ----------------------------------------- */
#p-advisor form {
	text-align: left;
}
#p-advisor form fieldset.error {
	background-color: transparent !important;
}
#p-advisor textarea {
	height: 140px;
	margin: 0;
	outline: none;
	padding: 10px 20px;
	text-align: left;
	border-radius: 0;
	background: transparent;
	color: black;
	font-family: "Monaco", monospace;
	font-size: .75em;
	line-height: 1.25em;
	text-align: left;
	width: 800px;
}

#p-advisor label {
	font-family: 'Yanone Kaffeesatz','Lucida Grande','Trebuchet MS', sans-serif;
	font-size: 1.5em;
	line-height: 1.125em;
}
#p-advisor label em {
	color: #E0521F;
	font-style: normal;
}
#p-advisor h2 em {
	/*color: #E0521F;*/
}
#p-advisor fieldset:last-child {
	padding: 0 30px 0 30px;
	margin-top: 1em;
}
#p-advisor section {
	border: none;
	margin: none;
	/* padding-bottom: 0; */
}
#p-advisor #advices p {
	margin: 0;
}

/* Advices */
#p-advisor ul {
	margin: 0;
	margin-bottom: 1em;
	padding: 0;
}
#p-advisor .advice {
	list-style-type: none;
	background-position: 30px 20px;
	background-repeat: no-repeat;
	border-top: 1px #CCC solid;
	padding: 1em 110px 1em 110px;
	min-height: 58px;
}
#p-advisor .advice:last-child {
	border-bottom: 1px #CCC solid;
}
#p-advisor .advice-crit {
	background-image: url('/img/advisor/crit.48.png');
}
#p-advisor .advice-warn {
	background-image: url('/img/advisor/warn.48.png');
}
#p-advisor .advice-note {
	background-image: url('/img/advisor/note.48.png');
}
#p-advisor .advice-ok {
	background-image: url('/img/advisor/ok.48.png');
}
#p-advisor .advice .summary {
	font-weight: bold;
}

/* Collapsed Advices */
#p-advisor .advice.collapsed {
	background-position: 40px 13px;
	/*padding: .5em 40px .5em 110px;*/
	min-height: 25px;
}
#p-advisor .advice.collapsed.advice-crit {
	background-color: rgb(255,214,214);
	background-image: url('/img/advisor/crit.32.png');
}
#p-advisor .advice.collapsed.advice-warn {
	background-color: rgb(255,231,146);
	background-image: url('/img/advisor/warn.32.png');
}
#p-advisor .advice.collapsed.advice-note {
	background-color: rgb(250,250,180);
	background-image: url('/img/advisor/note.32.png');
}
#p-advisor .advice.collapsed.advice-ok {
	background-color: #D4F4B8;
	background-image: url('/img/advisor/ok.32.png');
	cursor: auto;
}

/* colors when hoovered */
#p-advisor .advice.collapsed.advice-crit:hover {
	background-color: rgba(255,214,214,.4);
}
#p-advisor .advice.collapsed.advice-warn:hover {
	background-color: rgba(255,231,146,.4);
}
#p-advisor .advice.collapsed.advice-note:hover {
	background-color: rgba(250,250,180,.4);
}

/* Advices start collapsed */
#p-advisor .advice.collapsed p {
	display: none;
}
#p-advisor .advice p.summary {
	/* display: none; */
}
#p-advisor .advice.collapsed p.summary {
	display: block;
}
#p-advisor .advice p.rule {
	color: #666;
	margin-top: .5em;
}
#p-advisor .advice p em {
	font-weight: bold;
	font-style: normal;
}

/* Expand/Collapse trigger */
#p-advisor .advice {
	position: relative;
	cursor: pointer;
}
#p-advisor .advice .expand-collapse-trigger {
	background: transparent url('/img/collapse.20.png') no-repeat ;
	width: 20px;
	height: 100%;
	position: absolute;
	right: 2em;
	top: 23px;
	opacity: .5;
}
#p-advisor .advice.collapsed .expand-collapse-trigger {
	background-image: url('/img/expand.20.png');
}
#p-advisor .advice:hover .expand-collapse-trigger {
	opacity: 1;
}

#help-dialog li {
	margin-bottom: .5em;
	list-style-position: outside;
}
#help-dialog li:last-child {

}
#help-dialog li ul {
	padding: 0;
	margin: 0;
	margin-top: .5em;
}
#help-dialog li li {
	list-style-type: none;
	border: none;
	padding: 0;
}
/* ----------------------------------------- *
 * Home Page
 * ----------------------------------------- */
#p-homepage section {
	/*float: left;*/
	width: 100%;
	border-bottom: none;
}
#p-homepage section:nth-child(even) {
	/*margin-left: 70px;*/
}
#p-homepage section .ss {
	float: right;
	
	margin: 30px 10px 10px 20px;
	border: 1px solid #ccc;
	box-shadow: 4px 4px 2px #aaa;
	width: 200px;
}
#p-homepage nav.buttons {
	border-top: 1px #CCC solid;
}
#p-homepage section p {
	text-align: justify;
	
}
#p-homepage section .ui-btn-container {
	width: 485px;
	text-align: center;
}

#p-homepage section h2 {
	text-align: left;
	font-weight: bold;
	/* padding-left: 25px; */
}
#p-homepage header {
	margin-bottom: 1em;
	margin-top: 1em;
	border-bottom: 1px #CCC solid;
	padding-bottom: 20px;
}
#p-homepage section header {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding-bottom: 0;
}

#p-homepage .ui-cf {
	width: 75%;
	border-right: 1px solid #ccc;
	float: left;
	padding-right: 10px;
}
#p-homepage .right-col {
	width: 22%;
	float: right;
	padding-left: 10px;
}

#p-homepage .right-col .box {
	font-size: 0.85em;
}

#p-homepage .right-col ul {
	padding-left: 0;
	margin-top:0;
	list-style-type: none;
}
#p-homepage .right-col h4 {
	font-size: 1.05em;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.5em;
	/*background: url("/assets/images/boxes_header_bulletpoint.png") no-repeat scroll left center transparent;*/
	border-bottom: 2px solid #E67B1A;
	padding: 3px 0 3px;
}

#p-homepage .right-col #social-share {
	margin-top: 2em;
}

/* ----------------------------------------- *
 * Dashboard
 * ----------------------------------------- */
#p-dashboard section {
	border: none;
}




/* ----------------------------------------- *
 * Configurations List logic
 * ----------------------------------------- */
#p-dashboard a.shared {
	display: none;
}
#p-dashboard a.notshared {

}
#p-dashboard tr.shared .shared {
	display: block;
}
#p-dashboard tr.shared .notshared {
	display: none;
}

/* ----------------------------------------- *
 * Wizard Form
 * ----------------------------------------- */
#wizard {
	margin-top: 40px;
}
#wizard form .texts {
	width: 400px;
	float: left;
	margin-bottom: 20px;
}
#wizard form .inputs {
	float: right;
	padding: 0;
	padding-bottom: 20px;
	width: 350px;
	text-align: left;
}
#wizard fieldset {
	padding: 25px;
	padding-bottom: 0;
	border:  none;
	border-top: 1px solid #CCC;
}
#wizard fieldset:nth-child(2n+1) {
	background-color: rgb(251,251,251);
}
#wizard fieldset:first-child {
	border-top: none;
	background-color: transparent;
	padding: 25px;
	padding-top: 0;
}
#wizard fieldset:last-child {
	border-bottom: none;
	background-color: transparent;
}
#wizard fieldset.check-all {
	background-color: #DDFFBB;
}
#wizard .texts {
	text-align: left;
}
#wizard .texts label {
	color: #333;
}
#wizard .texts label strong {
	color: #E0521F;
}
#wizard p {
	text-align: left;
}
#wizard label {
	color: #333;
	vertical-align: middle;
}
#wizard label em {
	color: #E0521F;
	font-style: normal;
}
#wizard ul,
#wizard ol {
	padding: 0;
	margin: 0;
}
#wizard ul li,
#wizard ol li {
	list-style-type: none;
	text-align: left;
}

/* Font Sizes */
#wizard .texts label {
	font-family: 'Yanone Kaffeesatz','Lucida Grande','Trebuchet MS', sans-serif;
	font-size: 1.35em;
	line-height: 1.125em
}
#wizard .texts p {
	/*font-size: .9em;*/
}

/* Wizard Progress Bar */
#wizard #progressbar {
	height: 30px;
	float: left;
	width: 610px;
	display: inline-block;
}


/* ----------------------------------------- *
 * Form Validation
 * ----------------------------------------- */
#wizard form .errors {
	float: right;
	padding: 0;
	padding-bottom: 20px;
	width: 350px;
	text-align: left;
	color: red;
}
fieldset.error .errors {
	display: block;
}
fieldset.error input,
fieldset.error select,
fieldset.error textarea,
fieldset.servererror input,
fieldset.servererror select,
fieldset.servererror textarea {
	border-color: #CD0A0A !important;
}
fieldset div.errors label {
	color: #CD0A0A !important;
	background-color: transparent !important;
	font-size: .9em !important;
	float: left;
	font-family: 'PT Sans', 'Lucida Grande', Helvetica, Arial, sans-serif !important;
}
/* Labels of required checkboxes are red if not valid */
fieldset.error .inputs label {
	color: #CD0A0A !important;
}



/* ----------------------------------------- *
 * Wizard Buttons *
 * ----------------------------------------- */
#wizard input[type=submit],
#wizard input[type=button] {
	border-radius: 30px;
	font-family: "Yanone Kaffeesatz",'Lucida Grande','Trebuchet MS', sans-serif;
	font-size: 2em;
	letter-spacing: .1em;
	line-height: 1.2em;
	margin-bottom: 20px;
	padding: 5px 25px;
	width: auto;
	color: white;
	background-color: #E0521F;
	border-color: #E0521F;
	/*
	color: #E57436;
	background-color: #DDD;
	--
	color: #333;
	border-color: #D12907;
	background-color: white;
	--
	color: #D12907;
	border-color: #D12907;
	background-color: white;
	*/
}
#wizard input[type=submit]:hover, #wizard input[type=button]:hover {
	background-color: #D12907;
	border-color: #D12907;
	color: white;
}

/* ----------------------------------------- *
 * Wizard Result Page *
 * ----------------------------------------- */
#send-to-friend-dialog .error {

}
#send-to-friend-dialog .success {
	display: none;
}
#send-to-friend-dialog fieldset {
	padding: 1em;
}