/* LINK COLOR: #55ade3 */

/* Ricardo - Generic styles */

/* Chrome, Safari, Opera */
@-webkit-keyframes openmenu {
    0%   { left: -300px; }
    100% { left: 0px; }
}

/* Standard syntax */
@keyframes openmenu {
    0%   { left: -300px; }
    100% { left: 0px; }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes closemenu {
    0%   { left: 0px; }
    100% { left: -300px; }
}

/* Standard syntax */
@keyframes closemenu {
    0%   { left: 0px; }
    100% { left: -300px; }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes openlogin {
    0%   { left: -300px; }
    100% { left: 0px; }
}

/* Standard syntax */
@keyframes openlogin {
    0%   { left: -300px; }
    100% { left: 0px; }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes closelogin {
    0%   { left: 0px; }
    100% { left: -300px; }
}

/* Standard syntax */
@keyframes closelogin {
    0%   { left: 0px; }
    100% { left: -300px; }
}

.loadersmall {
  border: 5px solid #f3f3f3;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@font-face { 
	font-family: 'alte'; 
	src: url('css3/fonts/alte.eot');
	src: url('css3/fonts/alte.woff') format('woff'), 
	url('css3/fonts/alte.ttf') format('truetype'), 
	url('css3/fonts/alte.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* latin */
@font-face {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('css3/fonts/nunito/v16/XRXW3I6Li01BKofA6sKUYevIWzgPDA.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

#chessModal {
	
}

#chessModal .modal-content {
		
}

h1, h2, ul, ol {
	margin: 0;
}

.carousel-control { 
 	width: 4% !important;
}

.carousel-control.left, .carousel-control.right {
	background-image: none !important;
}

.jump {
	clear: both;
	height: 0;
	overflow: hidden;
}

form input[type=text], form input[type=password], form select {
	background: white !important;
	/*border: 1px solid #001929 !important;*/
	padding: 6px 10px !important;
	margin: 0;
	height: auto !important;
	font-size: 1.3em !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	border-radius: 10px !important;
	vertical-align: middle !important;
	color: #001929 !important;
	border: #001929 solid 1px !important;
}

#login_area form label+label+label { margin-top: 22px; float: right; }
#login_area form label+label+label .bt_start { font-size: 1.3em !important; }

label {
	font-weight: normal !important;
}

.bt_start, .green_button, .blue_button, .blue_button_small, .button-orange1, .button, .button-small-yellow {
	background: #001929 !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	border-radius: 10px !important;
	padding: 5px 10px !important;
	color: white !important;
	text-decoration: none !important;
	font-size: 1.4em !important;
	border: none !important;
	font-weight: normal !important;
	font-family: 'Nunito', Tahoma, Geneva, sans-serif !important;
	height: auto !important;
	/*width: auto !important;*/
}

.button-disabled {
	background: #848484 !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	border-radius: 10px !important;
	padding: 5px 10px !important;
	color: white !important;
	text-decoration: none !important;
	font-size: 1.4em !important;
	border: none !important;
	font-weight: normal !important;
	font-family: 'Nunito', Tahoma, Geneva, sans-serif !important;
	height: auto !important;
	/*width: auto !important;*/
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default  {
	font-size: 10px !important;
}


.bt_start:hover {
	background: white !important;
	color: #001929 !important;
}

.bt_start_white {
	color: white !important;
	background: #cc513d !important;
}

.bt_start_sky {
	color: white !important;
	background: #55ade3 !important;
}

.green_button {
	background: #cc513d !important;
}

.button-orange1 {
	color: white !important;
	background: #cc513d !important;
}

#top { /*width: 100%; background: #3D3D3D;*/ }
#ham, #login_responsive { display: none; }


#top.open_ham {
	-webkit-animation-name: openmenu; /* Chrome, Safari, Opera */
	-webkit-animation-duration: .5s; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 0s; /* Chrome, Safari, Opera */
	animation-name: openmenu;
	animation-duration: .5s;
	animation-delay: 0s;
	left: 0px;
}
					
#top.close_ham {
	-webkit-animation-name: closemenu; /* Chrome, Safari, Opera */
	-webkit-animation-duration: .5s; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 0s; /* Chrome, Safari, Opera */
	animation-name: closemenu;
	animation-duration: .5s;
	animation-delay: 0s;
	left: -300px;
}

#login_area.open_login {
	-webkit-animation-name: openlogin; /* Chrome, Safari, Opera */
	-webkit-animation-duration: .5s; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 0s; /* Chrome, Safari, Opera */
	animation-name: openmenu;
	animation-duration: .5s;
	animation-delay: 0s;
	left: 0px;
}
					
#login_area.close_login {
	-webkit-animation-name: closelogin; /* Chrome, Safari, Opera */
	-webkit-animation-duration: .5s; /* Chrome, Safari, Opera */
	-webkit-animation-delay: 0s; /* Chrome, Safari, Opera */
	animation-name: closemenu;
	animation-duration: .5s;
	animation-delay: 0s;
	left: -300px;
}

#board_js {
	margin-top: 20px;
}

#board_js table tr td input {
	width: auto !important;
}

#board_js table table tr td {
	width: auto !important;
}

.pag {
	margin: 20px 0;
	text-indent: -5000px;
}

.pag tr td b, .pag tr td a {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
	line-height: auto;
	padding: 5px 10px;
	display: block;
	margin: 0 0 0 4px;
	background: #001929;
	float: left;
	/*width: 20px;
	height: 20px;*/
	color: white !important;
	text-decoration: none;
	text-indent: 0px;
}

.pag tr td b {
	background: #55ade3;
}

.pag tr td a:hover {
	background: #55ade3;
	color: #001929;
	text-decoration: none;
}

.alert {
	display: none;
	position: fixed;
	width: 50%;
	left: 25%;
	top: 10px;
	margin: 0 auto;
	z-index: 10000;
}

/*  Ricardo - Generic styles End  */

* { 
padding: 0; 
margin: 0;
} 

.hide {
	display: none;
}

body {
	background: #fff url(images3/bg_header.png) repeat-x top left;
	color: #001929;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	/*font: .7em/1.5em verdana, arial, sans;*/
	text-align:center;

}

p { margin:0 0 8px 0 }

.clear_both { clear:both; }


/* --- Accesibilidad ------------- */


/* ------ headings ---------------------*/
h3 {
	font-size: 0.9em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	/*padding-bottom:5px;*/
}

h4{
	/*font-family:Georgia, "Times New Roman", Times, serif;*/
	font-size:28px;
	font-weight:normal;
	color:#333333;
}


h5{
	background:url(images/bullet_v2.gif) no-repeat left top;
	padding-left:10px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#333333;
	padding-bottom:10px;
}


/* --- Links -------------------------------- */

a:link, a:visited { 
color: #337ab7;
/*color: #55ade3;*/
/*text-decoration: underline*/
}

a:hover { 
	color: #cc513d; 
}




a img { 
	border: none; 
}


h2.title a:link, h2.title a:visited, h3.title a:link, h3.title a:visited {
color: #222;
text-decoration: none;

}

/* --- Header -------------------------------- */

#header {

height: 146px;
}

#header h2, #header .title {
	/*background: url(images/lg.gif) no-repeat 0 0;*/
	/*padding-top:10px;*/
	padding-left:3px;
	font-size: 3em;
	color:#FFFFFF;
	font-family:Tahoma;
	font-weight:bold;
}

#header h2 a, #header .title a {
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	font-family: 'Nunito', Tahoma, Geneva, sans-serif;
	margin: 0;
}

#header .title, #header h2, #header h1, #header .subtitle {
	color: #FFFFFF;
	margin: 0 !important;
	padding: 0 !important;
	
}

#header h2 {
	 line-height: 1.3em;
	 font-size: 3.1em !important;
	 padding-top: 5px !important;
 }
 
 #header h1 {
	 line-height: 1em;
	 font-size: 1.2em !important;
 }

#header .title {
	 line-height: 1.3em;
	 font-size: 3.1em !important;
	 padding-top: 5px !important;
 }
 
 #header .subtitle {
	 line-height: 1em;
	 font-size: 1.2em !important;
 }

/* Ricardo - Slider */

#carousel_chess .banner_slider {
	width: 50%;
	/*background-color: #c6eaff;*/
	font-family: 'Nunito', Tahoma, Geneva, sans-serif;
	color: #001929;
	float: left;
	padding-bottom: 20px;
	text-align: center;
	min-height: 270px;
}

#carousel_chess .banner_slider:last-child {
	/*background-color: #001929;*/
	color: white;
}

#carousel_chess .light {
	background: #c6eaff url(images3/bg_banner_light.png) right top no-repeat;
}

#carousel_chess .dark {
	background: #001929 url(images3/bg_banner_dark.png) left top no-repeat;
}

#carousel_chess .banner_slider h2 {
	padding: 15px 30px 0 80px;
	margin: 0;
	font-size: 3em;
	font-weight: bold;
	text-align: left;
}

#carousel_chess .banner_slider p {
	padding: 15px 30px 10px 80px;
	margin: 0;
	font-size: 1.8em;
	text-align: left;
}

#carousel_chess .banner_slider:last-child h2, #carousel_chess .banner_slider:last-child p {
	padding-left: 30px;
	padding-right: 80px;
}

#carousel_chess .banner_slider .bt_start {
	display: block;
	margin: 10px auto 0 auto;
	width: 80px;
	text-align: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	height: 100px;
	width: 100px;
	outline: black;
	background-image: none;
	position: relative;
	top: 30%;
}

.carousel-control-next-icon:after
{
	content: '>';
	font-size: 30px;
	color: white;
}

.carousel-control-prev-icon:after {
	content: '<';
	font-size: 30px;
}

/* Slider End */



#top {
/*	padding-bottom:20px;
	height: 34px;
*/
/*float: right;
text-align: right;
padding: 3px;*/
}


#top, #footer {

font-size: 110%
}

#top a {
color:#E5E5E5;
text-decoration: none;
/*padding: 10px;*/
}

#top a:hover {
color: #cc513d;
/*background: url(images/arr_h_v2.gif) no-repeat center top;*/
}

#top a.current {
color: #fff;
font-weight:bold;
/*background: url(images/arr_h_v2.gif) no-repeat center top;*/
}

#opbar {
float: right;
text-align: right;
}


#opbar a {
color: #ccc;
text-decoration: none;
float: left;
padding: 3px;
}


/* --- LOG IN -------------------------------------- */
#login_area {
	height: 146px;
	/*width: 50%;*/
	float: right;
	color: #fff;
	padding-top: 20px;
}

#login_area input {
	margin: 5px 5px 0 0 !important;
}

#login_area a {
	color: #55ade3;
}

/*#login_area td {
	text-align: left;
	padding-right: 12px;
}
#login_area .button {
	color: #545454;
	font-family: Tahoma, Helvetica, Sans-serif;
	padding: 2px 3px;

}*/

#login_box {
/*	padding-top:5px;
	position: absolute;
	left: 620px;
	z-index: 2;*/
	font-size: 1.2em;
	}

#logged_box {
	padding-top:70px;
	text-align:right;
	z-index: 2;
	font-size: 2em;
	}
	
#login_area input.input {
	border:#9F9F9F 1px solid;
	font-size:12px;
	height:16px;
	padding-top:2px;
	margin-top:5px;
	margin-bottom:5px;
}

label.placeholder span{
	color:#333;
	position:absolute;  
	padding-top:9px;
	padding-left:3px;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:12px;
	display:block;
}

#login_area input.partial{
	color:#999;
}

label.placeholder.partial span{
	color:#999;
}

label.placeholder.hidden span{
	display:none;
	color:#F00;
}

/* --- Estructura ---------------------------------- */

#wrap {
	max-width: 1260px; 
	width: 95%; 
	margin: 0 auto; 
	position: relative;
	text-align: left;
	display:block;

}


#login {
padding-left:20px;
width:510px;
height:73px;
display:none;
}

.error{
color:#FF0000;
font-weight:bold;
}

#main, #article {
	/*width:671px;*/
	width: 70%;
	min-height:330px;
	padding-bottom:20px;
}

#main h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	font-weight:bold;
	/*color:#cc513d
	color:#072C67;;*/
	color:#0E5589;
	/*margin-top: 40px;*/
}



#main h2 {
	font-family:Arial, Helvetica, sans-serif;
	/*color:#cc513d;*/
	/*color:#072C67;*/
	color:#0E5589;
	font-weight:bold;
	font-size:22px;
	padding-bottom:10px !important;
}

#main h2 {
	font-family:Arial, Helvetica, sans-serif;
	/*color:#072C67;*/
	color:#0E5589;
	font-weight:bold;
	font-size:18px;
	padding-bottom:20px;
}

#sidebar {
	display:block;
	margin-bottom: 20px;
	width: 28%;

}

#sidebar h2{
	font-size:16px;
}

.ms #main, .sm #sidebar {

float:left;
}
.ms #sidebar, .sm #main {
float:right;

}

#main2 {
	/*width:550px;*/
	width: 70%;
	padding-bottom:10px;
}

#sidebar2 {
	display:block;
	margin-bottom: 20px;
	/*width:374px;*/
	width: 28%;

}

.ms #main2, .sm #sidebar2 {

float:left;
}
.ms #sidebar2, .sm #main2 {
float:right;

}

#main3 {
/*width:603px;*/
width: 70%;
padding-bottom:20px;
}

#sidebar3 {
	display:block;
	margin-bottom: 20px;
	/*width:313px;*/
	width: 28%;

}

.ms #main3, .sm #sidebar3 {

float:left;
}
.ms #sidebar3, .sm #main3 {
float:right;

}

#main2 h1, #main3 h1{
font-family:Arial, Helvetica, sans-serif;
font-size:22px;
font-weight:normal;
color:#cc513d;
font-weight:bold;
/*padding-bottom:5px;*/
}

#main3 h2{
	font-size:150%;
}

#main2 h3{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:18px;
font-weight:normal;
color:#000000
}

#main_sr {
width:330px;
}

#sidebar_sr {
	display:block;
	margin-bottom: 20px;
	width:598px;

}

.ms #main_sr, .sm #sidebar_sr {

float:left;
}
.ms #sidebar_sr, .sm #main_sr {
float:right;

}

/*#main, #main2, #main3, #sidebar, #sidebar2, #sidebar3 {
	margin-top: 20px;
}*/

#main, #main3, #sidebar, #sidebar2, #sidebar3 {
	margin-top: 20px;
}

#mainfull {
	/*width: 936px; */
	margin: 20px auto 20px auto;
	text-align: left;
}

#mainfull h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	font-weight:bold;
	color:#cc513d;
}

#mainfull h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#333333;
}

#mainfull .title {
font-family:Arial, Helvetica, sans-serif;
font-size:22px;
font-weight:bold;
color:#cc513d;
}


.percent {
font-family:Tahoma;
font-size:10px;
color:#FFFFFF
}

#mainfull p, #main p{
	padding:7px 0;
	line-height: 1.5em;
}

#sidebar.wide_sidebar, #sidebar2.wide_sidebar, #sidebar3.wide_sidebar {
	width: 40%;
}

#main.wide_main, #main2.wide_main, #main3.wide_main {
	width: 58%;
}

/* --- Footer -------------------------------- */



#footer {
	max-width: 1260px; 
	width: 100%; 
	padding: 20px 0;
	border-top:#CCCCCC 1px solid;
	margin: 0 auto; 
	position: relative;
	text-align: left;
	display:block;
	clear:both;
	/*font-size:10px;*/
	color:#666666;
}

#middle {
	position:relative;
	clear: both
	}

.column-a {width:210px; float:left; margin:0px 20px 40px 0;}
.column-b {width:210px; float:left; margin:0px 20px 40px 0;}
.column-c {width:210px; float:left; margin:0px 20px 40px 0;}
.column-d {width:210px; float:left; margin:0px 0 40px 0;}
#footer a {color:#666666; text-decoration:none; font-weight:normal;}
#footer a:hover {color:#666666;}
.column-a ul li, .column-b ul li, .column-c ul li, .column-d ul li {list-style-type:none; padding:3px 0;}

/*#ft p {
float: left;
font-size:9px;
}

#ft a:link {
color:#666666;
}

#ft a:visited{
color:#666666;
}

.feeds {
float:right;
}

.feeds p
{
text-align: right;
}*/


.clear {
	clear:both;
}

input.submit {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
width:99px;
height:21px;
padding: 1px;
}

.btn {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
}

.button {
	font-size: 0.9em;;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 1px;
}

/*input.text {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
width:405px;
}*/

.input{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
font-style:normal;
padding:1px;
}

.input2{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
font-style:normal;
border:none;
background-color:#FFE2D0;
}

.newst {
font-family:"Trebuchet MS";
font-size:10px;
color:#FFFFFF;
}

.newsb {
font-family:"Trebuchet MS";
font-size:22px;
color:#000000;
}

.newstb {
font-family:Georgia, "Times New Roman", Times, serif;
font-size:28px;
color:#000000
}

.news {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
color:#000000
}

.newsts {
font-family:Georgia, "Times New Roman", Times, serif;
font-size:20px;
color:#000000
}

.newss {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
color:#000000
}

.left_blue
{
	/*background-image:url(img/table/blue.gif);
	background-repeat:no-repeat;*/
	background-color:#cc513d;
	/*border-color:#333333;*/
	/*border-top:1px solid #C9CFD3;
	border-left:1px solid #C9CFD3;
	border-right:1px solid #C9CFD3;*/
	width:162px;
	height:28px;
	padding-left:15px;
	color:#fff;
}

.left_grey
{
	/*background-image:url(img/table/blue.gif);
	background-repeat:no-repeat;*/
	background-color:#c6eaff;
	width:162px;
	height:27px;
	padding-left:15px;
	color:#001929;
/*	border:1px solid #C9CFD3;*/


}

.buttons{
height:28px;
border-bottom:1px #C9CFD3 solid;
}


.buttons li
{
	list-style:none;
	line-height:28px;
	margin-left:8px;
	display:inline;
	float:left;
}

.buttons li a
{
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#B7010D;
	text-decoration:none;
	height:28px;
	line-height:28px;
	width:177px;
/*	cursor: hand;*/
}

.buttons li a:hover
{
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	line-height:28px;
	color:#B7010D;
	text-decoration:none;
}



.table1 {
	border-spacing: 0;
	border-collapse: collapse;
}

.table1 td {
	padding: 4px 6px;
}

/*.link
{
	height:28px;
	line-height:20px;
	border-bottom:1px #B7010D solid;
	margin-bottom:28px;
	color:#B7010D;
}*/

.sep10{ height:10px; }
.sep20{ height:20px; }
.sep3{

height:3px;

}

.bkm_cat{
font-size:14px;
font-weight:bold
}

.linkt
{
/*background:url(css3/bg2.gif);*/
	height:20px;
	line-height:20px;
	text-align:center;
	font-size: 0.9em;
	/*border-top: 1px #174674 solid;*/
	border-top:1px #B7010D solid;
	margin-top:28px;
	color:#B7010D;
}



hr {
	border: 0;
	height: 1px;
	background: #B7010D;
}

.help_title    { font-weight: bold; color: #646464; padding-top: 40px; }

.questions {
  padding: 0px 0px 0px 20px;
}
.helpful_links
{
padding-top: 10px;

}

.helpful_links 
{
  /*list-style-position: outside;*/
  /*list-style-type: circle;*/
  /*list-style-position: outside;*/
  list-style: none;
}


/* search results */

.stable {
	margin-top: 10px;
}

.stable thead{
	/*background-image:url(images/thead_bg.gif);
	background-repeat:repeat-x;*/
	background-color: #55ade3;
	color: #fff;
	font-weight:bold;
	font-size: 1em;
}

.stable a:link{
color: #337ab7;
/*color: #55ade3;*/
}

.stable thead a{
	color: #fff;
	text-decoration:none;
}

.stable thead a:link {
	color:#fff;
	text-decoration:none;
}


.stable thead a.visited{
	color:#fff;
	text-decoration:none;
}

.stable tbody{
	color: #001929;
}

.stable tr{
	/*height:24px;*/
}

.stable td{
	padding: 10px;
	width: auto !important;
	
}

.stable .delete{
	text-decoration:line-through;
	font-style:italic;
}

.stable .edited{
	font-style:italic;
}



.stable a:hover{
color: #337ab7;
/*color: #55ade3;*/
}


.stable .light{
	background: #FFFFFF;
}

.stable .dark{
 background: #F0F0F0;

}

/* another table */

.atable thead{
	/*background-image:url(images/thead_bg.gif);
	background-repeat:repeat-x;*/
	background-color: #cc513d;
	color: #fff;
	font-weight:bold;
}

.atable a:link{
color:#B7010D;
}

.atable thead a{
	color:#fff;
	text-decoration:none;
}

.atable thead a:link {
	color:#fff;
	text-decoration:none;
}


.atable thead a.visited{
	color:#fff;
	text-decoration:none;
}

.atable tbody{
	color: #001929;
	font-size: 0.9em;
}

.atable tr{
	height:24px;
}

.atable td{
	padding-left:10px;
	
}

.atable .light{
	background: #c6eaff;
}

.atable .dark{
 background: #c6eaff;

}

/* tournament table*/

.ttable thead{
	/*background-image:url(images/thead_bg.gif);
	background-repeat:repeat-x;*/
	background-color:#55ade3;
	color:#fff;
	font-weight:bold;
	text-align:center;
}

.ttable a:link{
color:#cc513d;
}

.ttable thead a{
	color:#fff;
	text-decoration:none;
}

.ttable thead a:link {
	color:#fff;
	text-decoration:none;
}


.ttable thead a.visited{
	color:#fff;
	text-decoration:none;
}

.ttable tbody{
	color:#333;
	font-size: 0.9em;
	text-align:center;
}

.ttable tbody td{
	background: #c6eaff;
}

.ttable tr{
	height:24px;
}

.ttable td{
	width:116px;
	border-bottom:1px #fff solid;
	border-right:5px #fff solid;
}

.ttable a:hover{
color:#cc513d;
}


table.hoverable tr.hover
{
	background-color: #598CA9!important;
	color:#ffffff!important;
	cursor: pointer!important;
}

moves{
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.moves a{
color:#000000;
text-decoration:none;
font-weight:normal
}

.moves a:visited {
color:#000000
}

.moves a:hover {
color:#000000
}

.moves .current {
	padding:2px;
	background:#FFFFCC;
	font-weight:bold;
	border:#B7010D 1px solid;
	}

.moves .forward{
	color:#828282;
	}

.moves .forward a:hover {
color:#000000
}

.opmoves{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height:23px;
}

.opmoves a{
color:#000000;
text-decoration:none;
font-weight:normal
}

.opmoves a:visited {
color:#000000
}

.opmoves a:hover {
color:#000000
}

.opmoves .current {
	padding:2px;
	background:#FFFFCC;
	font-weight:bold;
	border:#B7010D 1px solid;
	}

.opmoves .forward{
	color:#828282;
	}

.opmoves .forward a:hover {
color:#000000
}

#comments .header{
	padding:5px;
	background:#EEEEEE;
	border:#CCCCCC 1px solid;
	}

#comments .cleft{
	float:left;
	width:300px;
	line-height:16px;
}

#comments .cright{
	text-align:right;
	line-height:16px;

}

#comments .body{
	padding:12px;clear:both;display:block;background-color:#fafaf7;border:1px solid #e6e3d9;border-top:0px;margin-bottom:18px}

.error2{
color:#B7010D;
font-weight:bold;
}

.searchbk{
	background-image:url(images/bg3.gif);
	background-repeat:repeat-x;
	height:500px;
}

div.notice-alert
{
	padding:10px;
	/*border:1px solid #DA2F16;*/
	/*font:12px Verdana, Arial, Helvetica, sans-serif;*/
	color: white;
	background-color: #bd0000;
	font-weight: bold;
	text-align: center;
}

div.notice-supporter
{
	padding:10px;
	/*border:1px solid #DA2F16;*/
	/*font:12px Verdana, Arial, Helvetica, sans-serif;*/
	color:#DE3301;
	background-color:#FFFFCC;
	font-weight:600;
/*	line-height: 20px;*/
	font-size: 1.1em;
	text-align:center;
}

div.notice-ad
{
	padding:10px;
	/*border:1px solid #55ade3;*/
	/*font:11px Verdana, Arial, Helvetica, sans-serif;*/
	
	background-color:#FEFEE9;
	margin-bottom:20px;
	text-align:center;
}

div.notice-ad strong{
	color:#55ade3;
}

div.notice-new
{
	/*background:url(images/new_corner.gif) no-repeat;*/
	padding:10px;
	/*border:1px solid #B7010D;*/
	font:12px Verdana, Arial, Helvetica, sans-serif;
	color:#000;
	background-color:#FFFFCC;
	margin-bottom:20px;
	text-align:center;
}

.light{
 background:#E7F0F5;

}

.dark{
 background:#DDCCD1;

}

.players{
height:28px;
border-bottom:1px #55ade3 solid;
}

.players li
{
	list-style:none;
	line-height:28px;
	margin-right:5px;
	display:inline;
	float:left;
	width:21px;
	text-align:center;
	
}

.players li a
{
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#55ade3;
	text-decoration:none;
	height:28px;
	line-height:28px;
	width:177px;
/*	cursor: hand;*/
}

.players li a:hover
{
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	line-height:28px;
	color:#55ade3;
	text-decoration:none;
}

.main_search {
	margin-left:20px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	color:#B7010D;
	}
	


div.box_link
{
	margin-top:5px;
	padding-right:10px;
	padding-left:10px;
	padding-bottom:2px;
	padding-top:2px;
	background:#B7010D;
	color:#FFFFFF;
/*	cursor:hand;*/
	line-height:17px;
	text-decoration:none;
	text-align:center;
}

.box_link a, .box_link a:hover
{
	color:#FFFFFF;
	text-decoration:none;
}

.buttons2{

/*border-bottom:1px #B7010D solid;*/
}

.buttons2 li
{
	list-style:none;
	/*line-height:15px;*/
	margin-right: 3px;
	display:inline;
	float:left;
}

.text_button
{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	background: url(images/btn_bk2.gif) repeat-x;
	
	color:#000;
/*	cursor:hand;*/
	border:#B7939D 1px solid;
	text-decoration:none;
	text-align:center;
	width:70px;
	
}

.text_button.disabled {
	border:#CCC 1px solid;
	background-color:#EAEAEA;
	color:#949494;
	cursor:default;
	}

.flink {
	color:#B7010D;
	text-decoration:underline;
/*	cursor:hand;*/
	}

.info_box {
	clear:left;
	margin: 10px 0 10px 10px !important;
	margin: 10px 0 10px 5px;
	width: 98%;
	padding: 0;
	/*background: url(images/shadowAlpha.png) no-repeat bottom right !important;
	background: url(images/shadow.gif) no-repeat bottom right;*/
	 
}

.note {
	/*background: url(images/bulb.gif) no-repeat;*/
	background: #c6eaff;
	position:relative;
	bottom:6px;
	right: 6px;
	padding:10px;
	padding-left:40px;
	margin: 20px 0px 0px 0px;
	text-align: left;
	/*border: 1px solid #ba501c; */
	color: #2e2e2e;
	/*background-color:#FFFFEC;*/
	/*background: #FFF9E6;*/
	
	/*border: 1px solid #CCCCCC; 
	color: #000000;
	background: #FFFFFF;*/
}

.tellafriend {
	background: url(images/envelope.gif) no-repeat;
	position:relative;
	padding:5px;
	padding-left:40px;
	margin: 0px 0px 0px 0px;
	text-align: left;
	border: 1px solid #CF0010; 
	color: #FFFFFF;
	background-color:#A9010E;
	position: absolute;
	left: 750px;
	top:20px;
/*	cursor:hand;*/
	

	/*background: #FFF9E6;*/
	
	/*border: 1px solid #CCCCCC; 
	color: #000000;
	background: #FFFFFF;*/
}

#fleft {
	float:left;
	}

#fright {
	float:right;
	}
	
.fleft {
	float:left;
	}

.fright {
	float:right;
	}		
	
.column50 {
	width:50%;
}

#rightbar {
	display:block;
	
	/*width:244px;*/

}

.ms #rightbar {
float:right;

}	



#tabs{
	height: 33px;
	/*border-bottom: 5px #c6eaff solid;*/
	padding-bottom:1px;
	margin-top: 20px;
	padding-bottom: 10px;
}



#tabs h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 2em;
	font-weight:bold;
	color:#cc513d;
	/*padding: 20px 10px;*/
}

#tabs-p{
	height:34px;
	/*background:url(images/tab-bk-profile.png) no-repeat;*/
}



/* TABS */	
#tabnav 	{
	/*height: 26px;*/
	margin: 0;
	padding-left: 10px;
	padding-top: 4px;
	margin-bottom: 10px;
	}
#tabnav li 	{
	margin: 0; 
	padding: 0;
	display: inline;
	list-style-type: none;
  	}
#tabnav a:link, #tabnav a:visited	{
	float: left;
	background: #55ade3;
	/*line-height: 14px;*/
	/*padding: 4px 27px 6px 27px;*/
	width:120px;
	/*padding-top: 4px;
	padding-bottom: 6px;*/
	padding: 5px 10px;
	margin-right: 10px;
	text-align:center;

	/*border-left:1px #ccc solid;
	border-right:1px #ccc solid;
	border-top:1px #ccc solid;*/
	text-decoration: none;
	color: #001929;
	}
#tabnav .active a:link, #tabnav .active a:visited 	{
	/*border:1px #C9CFD3 solid;*/
	/*border-bottom: 1px solid #fff;*/
	background: #001929;
	color: #55ade3;
	font-weight: normal;
	}
#tabnav a:hover	{
	color: #cc513d;
	}
	
/* TAB 2 */

#tabnav_s 	{
	font-size:9px;
	height: 16px;
	margin: 0;
	padding-left: 10px;
	padding-top: 3px;
	margin-bottom: 10px;
	margin-top:9px;
	}
#tabnav_s li 	{
	margin: 0; 
	padding: 0;
	display: inline;
	list-style-type: none;
  	}
#tabnav_s a:link, #tabnav_s a:visited	{
	float: left;
	background: #eee;
	line-height: 10px;
	/*padding: 4px 27px 6px 27px;*/
	padding:0px 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-right: 10px;
	text-align:center;

	border-left:1px #ccc solid;
	border-right:1px #ccc solid;
	border-top:1px #ccc solid;
	text-decoration: none;
	color: #666;
	}
#tabnav_s .active a:link, #tabnav_s .active a:visited 	{
	/*border:1px #C9CFD3 solid;
	border-bottom: 1px solid #fff;*/
	background: #cc513d;
	color: #fff;
	font-weight: normal;
	}
#tabnav_s a:link.online, #tabnav_s a:visited.online 	{
	/*border-bottom: 1px solid #85b67mainfullb;
	border-top: 1px solid #ddffd6;
	border-right: 1px solid #5d7f56;*/
	background: #c6eaff;
	color: #001929;
	font-weight: normal;
	text-decoration: blink;
	}
#tabnav_s a:hover.online {
	color: #c6eaff;
	}
#tabnav_s a:hover	{
	color: #001929;
	}	
	
/*  TABS ADJUSTABLES */	
	
#tabnava 	{
	margin: 0;
	padding: 0 20px 0 20px;
	padding-top: 4px;
	margin: 20px 0 0 20px;
	border-bottom: 3px solid #001929;
	height: 31px;
	}
#tabnava li 	{
	margin: 0; 
	padding: 0;
	display: inline;
	list-style-type: none;
  	}
#tabnava a:link, #tabnava a:visited	{
	float: left;
	background: #55ade3;
	line-height: 14px;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
	color: #001929;
	
	/*padding: 4px 27px 6px 27px;*/

	padding: 4px 11px 6px 11px;

	margin-right: 5px;
	text-align:center;
	
/*	border-left:1px #ccc solid;
	border-right:1px #ccc solid;
	border-top:1px #ccc solid;*/
	
	text-decoration: none;
	color: #001929;
	}
#tabnava .active a:link, #tabnava .active a:visited 	{
	/*border:1px #CBCBCB solid;
	border-bottom: 1px solid #fff;*/
	background: #001929;
	color: #fff;
	font-weight: normal;
	}
#tabnava a:hover	{
	color: #001929;
	}
	
#tabnava-p 	{
	height: 26px;
	margin: 0;
	padding-left: 20px;
	padding-top: 4px;
	margin-bottom: 10px;
	}
#tabnava-p li 	{
	margin: 0; 
	padding: 0;
	display: inline;
	list-style-type: none;
  	}
#tabnava-p a:link, #tabnava-p a:visited	{
	/*-moz-border-radius-bottomleft:8px;
	-moz-border-radius-bottomright:8px;
	-moz-border-radius-topleft:8px;
	-moz-border-radius-topright:8px;*/
	
	float: left;
	
	line-height: 14px;
	/*padding: 4px 27px 6px 27px;*/

	padding: 4px 11px 6px 11px;

	margin-right: 5px;
	text-align:center;
	
	/*border:1px #DFDFDF solid;*/
	
	text-decoration: none;
	color: #001929;
	}
#tabnava-p .active a:link, #tabnava-p .active a:visited 	{
	/*-moz-border-radius-bottomleft:8px;
	-moz-border-radius-bottomright:8px;
	-moz-border-radius-topleft:8px;
	-moz-border-radius-topright:8px;	
	border:1px #C9CFD3 solid;*/
	
	background: #c6eaff;
	color: #001929;
	font-weight: normal;
	}
#tabnava-p a:hover	{
		/*-moz-border-radius-bottomleft:8px;
	-moz-border-radius-bottomright:8px;
	-moz-border-radius-topleft:8px;
	-moz-border-radius-topright:8px;*/
	color: #001929;
	background: #c6eaff;
	/*border:1px #C9CFD3 solid;*/
	}
	
/* END */

.elo {
	font-size:14px;
	font-weight:normal;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}


/* -- NEW BUTTON -- */


.submit input, .button3, .button-secondary, .button-highlighted {
	-moz-border-radius-bottomleft:3px;
	-moz-border-radius-bottomright:3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
	border-style:solid;
	border-width:1px;
	cursor:pointer;
	font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,Verdana,sans-serif;
	font-size:12px;
	line-height:1.5em;
	padding:3px 5px;
	text-decoration:none;
	outline: none;
}

input.button-small {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-width:0px;
	cursor: pointer;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	text-align:center;
	/*height: 25px;*/
	vertical-align: middle;
	
	padding: 3px 6px;
	
	text-decoration:none;
	outline: none;
	
	color: #FFF;
	background: #001929;
	min-width: 40px;
}

input.button-small-green, input.button-small-blue {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-width: 0px;
	cursor:pointer;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.4em;
	text-align: center;
	vertical-align: middle;
	/*height: 25px;*/
	
	padding: 3px 6px;
	text-decoration:none;
	outline: none;
	
	color: #FFF;
	background: #001929 !important;
	min-width: 50px;
	/*-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	border-width:0px;
	cursor:pointer;
	
	font-family:Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	text-align:center;
	font-weight:bold;
	
	line-height:20px;
	height:24px;
	
	padding:2px 3px 5px 3px !important;
	
	text-decoration:none;
	outline: none;
	
	color:#FFF;
	background:#346734;
	min-width:50px;*/
}

input.button-small-blue { /*background:#0E5589 !important; */padding:2px 10px 5px 10px !important; }

input.button-small-#c6eaff {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	border-width:0px;
	cursor:pointer;
	/*font-family:Verdana, Arial, Helvetica, sans-serif;*/
	font-family:Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	text-align:center;
	font-weight:bold;
	
	line-height:20px;
	height:24px;
	
	padding:2px 3px 5px 3px !important;
	
	text-decoration:none;
	outline: none;
	
	color:#FFF;
	background:#CE9100;
	min-width:50px;
}

input.button-small-#c6eaff2 {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	border-width:0px;
	cursor:pointer;
	/*font-family:Verdana, Arial, Helvetica, sans-serif;*/
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:center;
	font-weight:bold;
	
	line-height:34px;
	height:34px;
	
	padding:2px 15px 5px 15px !important;
	
	text-decoration:none;
	outline: none;
	
	color:#FFF;
	background:#FF6600;
	min-width:50px;
	text-transform:uppercase;
}


div.button-small {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-width:0px;
	cursor: pointer;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	text-align:center;
	height: 25px;
	vertical-align: middle;
	
	padding: 3px 6px;
	
	text-decoration:none;
	outline: none;
	
	color: #FFF;
	background: #001929;
	min-width: 50px;
}

.button-highlighted {
	font-weight:bold;
}

.button-secondary{
	background-color:#CEE1EF !important;
}

.button-small[disabled], .button-small:disabled {
	background-color:#CCCCCC;
	border:#999999 1px solid;
	color:#FFFFFF;
}

.button-small[disabled]:hover, .button-small:disabled:hover {
	color: #FFFFFF;
}

.button-small-disabled {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-width: 0px;
	cursor:pointer;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	text-align: center;
	vertical-align: middle;
	height: 25px;
	
	padding: 3px 6px;
	text-decoration:none;
	outline: none;
	
	color: #FFF;
	filter: alpha(opacity=50); 
	opacity: 0.5; 
	-moz-opacity: 0.50;
	background: #848484;
	min-width: 50px;
}

.submit input:hover, .button3:hover {
	border-color:#fff;
}

.submit input:hover, .button3:hover, .button-secondary:hover ,.button-small:hover{
	color:#fff;
}

.button-secondary:hover {
	border-color:#328AB2;
}


.inputbutton {
	background-color:#3B5998;
	border-color:#D9DFEA #0E1F5B #0E1F5B #D9DFEA;
	border-style:solid;
	border-width:1px;
	color:#FFFFFF;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	font-size: 0.9em;
	padding:2px 15px 3px;
	text-align:center;
}

.inputbutton2 {
	background-color:#9E010D;
	border-color:#D9DFEA #0E1F5B #0E1F5B #D9DFEA;
	border-style:solid;
	border-width:1px;
	color:#FFFFFF;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	font-size: 0.9em;
	padding:2px 15px 3px;
	text-align:center;
}

.button-big{
	-moz-border-radius-bottomleft:6px;
	-moz-border-radius-bottomright:6px;
	-moz-border-radius-topleft:6px;
	-moz-border-radius-topright:6px;
	background:#C52C10 none repeat scroll 0 0;
	color:#FFFFFF;
	cursor:pointer;
	padding:8px 10px;
	border-style:solid;
	border-width:1px;
	cursor:pointer;
	font-family:"Lucida Grande",Verdana,"Bitstream Vera Sans",Arial,sans-serif;
	line-height:22px;
	font-weight:bold;
	font-size:13px;
}

.news_line {
	border-top:1px solid #E39FAB;
	color:#4E8ABE;
	font-size: 0.9em;
	line-height:16px;
	margin:0 0 15px;
	padding:5px 10px 20px;
	text-align:center;
	width:80%;
}

#contribs{
	margin-top:20px;
	border:#CCCCCC 1px solid;
	background-color:#FBFBFB;
	padding:10px;
	color:#666;
}



.blclear {clear: both;}


#article {
width:671px;
}

#article h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	font-weight:bold;
	color:#cc513d;
}

.ms #article {
	float:left;
}

#article h2 {
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
	font-weight:bold;
	font-size:18px;
	padding-bottom:10px !important;
}

#article p {
	padding: 7px 0;
	text-align:justify;
}

/* articles' table */
#article table {
	margin:1em 1em 1em 0;	
}

#article table thead{
	/*background-image:url(images/thead_bg.gif);
	background-repeat:repeat-x;*/
	background-color:#4B596D;
	color:#fff;
	font-weight:bold;
	font-size: 0.9em;
}

#article table  a:link{
color:#55ade3;
}

#article table  thead a{
	color:#fff;
	text-decoration:none;
}

#article table  thead a:link {
	color:#fff;
	text-decoration:none;
}


#article table  thead a.visited{
	color:#fff;
	text-decoration:none;
}

#article table  tbody{
	color:#333;
	font-size: 0.9em;
}

#article table  tr{
	/*height:24px;*/
	
}

#article table  td, #article table  th{
	padding-left:10px;
	border-bottom:1px #ccc solid;
	padding: 7px 5px ;
	
}

#article table a:hover{
color:#55ade3;
}


#article table  .light{
	background:#FFFFFF;
}

#article table .dark{
 background:#F7F7F7;

}


#logo{
	width: 45%;
	float:left;
	height: 146px;
	padding-top: 20px;
}

#logo img {
	float:left;
	margin-right: 10px;
}


#header .title {
/*background: url(images/lg.gif) no-repeat 0 0;*/
padding-top:10px;
padding-bottom:0px !important;
margin-bottom:0px !important;
font-family:Tahoma;
font-size:40px;
color:#FFFFFF;
font-family:Tahoma;
font-weight:bold;
}

#header .title a {
text-decoration: none;
color:#FFFFFF;
}

#search_block {
	/*background:url(images/search_bk_2.png) no-repeat scroll 50% #ffffff;*/
	/*max-width: 500px; */
	
}

#search_block #search_block_main, #search_block_search_pos #search_block_search_pos_main {
	/*	background:url("images/box_blue_bg_v2.gif") no-repeat scroll left bottom transparent;
	*/
	background: #c6eaff;
	/*max-width: 500px; */
	text-align: left;
	width: 100%;
	max-width: 900px;

}

#search_block_main, #search_block_search_pos_main, #search_block_tournament{
	clear:both;
	padding:0px;
	/*margin:auto;*/
	width: 100%;
	max-width: 550px;
	
}

#search_block_search_pos #search_block_search_pos_main {
	max-width: 100%;
}

#search_block_tournament{
	/*border-radius: 10px;*/
	background: #c6eaff;
	/*border: solid 1px #cccccc;*/
	max-width: 100%;
}

#search_block_tournament #content{
	/*max-width: 900px;*/
}

#content h1 a, #content h1 {
	color: #001929;
}

#search_block .top {
/*	background:url("images/box_blue_top_a_v2.gif") no-repeat scroll left top transparent;
*/	height:12px;
	padding:0px;
	margin:0px;
	display:block;
	line-height:1px;
	border-top: 3px solid #001929;
}

#search_block #content {
	padding:15px 30px;
	/*max-width: 500px;*/
}

#search_block #content span{
	display:block;
}

#search_block input.text {
	border:#9F9F9F 1px solid;
	font-size:12px;
	height:19px;
	padding-top:2px;
	margin-top:5px;
}

#search_block select {
	border:#9F9F9F 1px solid;
	font-size:12px;
	height:23px;
	padding-top:2px;
	margin-top:5px;
}

#search_block .long{
	width:212px;
}

#search_block .mid{
	width:150px;
}

#search_block .short{
	width:100px;
}

#search_block .shorter{
	width:50px;
}

#search_block label, #search_block .lleft{
	padding-top:15px;
	display:block; 
/*	width:300px;*/

}



#search_block label.right, #search_block .lright{
padding-top:15px;
	display:block; 
	/*width:300px;*/
}

#search_block ul, #search_block_search_pos ul{
	list-style:none outside;	
	margin:0px;
	padding:0px;
}

#search_block li, #search_block_search_pos li, #search_block_opening_explorer li{
	display:inline;
	float:left;
	/*line-height:28px;*/
	text-align:center;
	font-family:Tahoma, Geneva, sans-serif;
	font-weight:bold;
	-webkit-border-top-left-radius: 10px;
	-moz-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
	
}

#search_block .search_game{
	/*background:url("images/box_search_games_bk_v2.gif") repeat scroll 0 0 transparent;*/
	background: #001929;
	border-right: solid 1px #c6eaff;
	color: white;
	/*width:124px;	*/
	padding: 5px 10px;
}

#search_block .search_position{
	/*background:url("images/box_search_position_bk_v2.gif") repeat scroll 0 0 transparent;*/
	background: #55ade3;
	border-right: solid 1px #c6eaff;
	color: #001929;
	/*width:124px;	*/
	padding: 5px 10px;
}

#search_block .opening_explorer{
	/*background:url("images/box_opening_explorer_bk_v2.gif") repeat scroll 0 0 transparent;*/
	background: #55ade3;
	border-right: solid 1px #c6eaff;
	color: #001929;
	/*width:124px;	*/
	padding: 5px 10px;
}

#search_block li a, #search_block_search_pos li a{
	color:#001929;
	text-decoration:none;
}

#search_block .bottom, #search_block_search_pos .bottom{
	display:block;
	margin:0 auto;
	clear:both;
	padding-top:20px;
}

#search_block #advanced_search{
	display:block;
	margin:0 auto;
	clear:both;
	padding-top:20px;
}

#search_block #adv_search{
	padding-top:20px;
}

a.grey-button {
	line-height:1.2em;
	padding: 4px 10px;
	background:#888888;
	-moz-border-radius:11px 11px 11px 11px;
	-moz-box-sizing:content-box;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	font-weight:bold;
	color:#FFF;
	text-decoration:none;
}

.blue_button_lnk{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:bold;
	-moz-border-radius: 14px 14px 14px 14px;
	padding:4px 12px !important;
	background:url("css3/images/button_grad_blue_v2.png") repeat-x scroll left top #21759B;
	text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
	color:#FFF;
	cursor:pointer;
	line-height:1.4em;
}

a.blue_button_lnk , a:hover.blue_button_lnk {
	color:#FFF;
	text-decoration:none;
}

.blue_button {
	border: 0;
	cursor: pointer;
	height: 29px;
	line-height: 25px;
	padding: 0 0 7px 0;
	position: relative;
	display: block;
	margin: 0 auto;
	/*width: 220px;*/
	background:url("images/blue_button_v2.gif") no-repeat;
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:bold;
	text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
}

.blue_button_small {
	border: 0;
	cursor: pointer;
	height: 29px;
	line-height: 25px;
	padding: 0 0 7px 0;
	position: relative;
	margin: 0 auto;
	/*width: 136px;*/
	background:url("images/blue_button_small_v2.gif") no-repeat;
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:bold;
	text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
}
.green_button {
	border: 0;
	cursor: pointer;
	height: 29px;
	line-height: 25px;
	padding: 0 0 7px 0;
	position: relative;
	display: block;
	margin: 0 auto;
	width: 200px;
	background:url("images/green_button_v2.gif") no-repeat;
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:bold;
	text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
}


.box{
	/*background:url("images/sidebar_box_bg_v2.gif") no-repeat scroll left bottom transparent;*/
	margin-bottom:15px;
	padding-bottom:15px;
}

#sidebar .box h2{
/*	background:url("images/sidebar_box_top_bg_v2.gif") no-repeat scroll left top transparent;
*/	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
/*	font-style:italic;
*/	font-weight:bold;
	text-indent:16px;
	padding-top:11px;

}

#sidebar .box h3 {
	font-family:Verdana, Geneva, sans-serif;
	font-weight:normal;
	text-indent:16px;
	font-size: 0.9em;
	color:#999999;
	margin-bottom:15px;
}

#sidebar .box .content{
	padding:0 16px 0;
}

#sidebar .box .bottom {
	display: block;
	height: 22px;
	line-height: 22px;
	margin: 0 auto;
	text-align: center;
}

.box_grey{
/*	background:url("images/sidebar_box_grey_v2.gif") no-repeat scroll left bottom transparent;
*/	margin-bottom:15px;
	padding-bottom:15px;
}

#sidebar .box_grey h2{
/*	background:url("images/sidebar_box_grey_top_v2.gif") no-repeat scroll left top transparent;
*/	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
	font-style:italic;
	font-weight:bold;
	text-indent:16px;
	padding-top:11px;

}

#sidebar .box_grey h4{
/*	background:url("images/sidebar_box_grey_top_v2.gif") no-repeat scroll left top transparent;
*/	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#333333;
	font-style:normal;
	font-weight:bold;
	text-indent:16px;
	padding-top:11px;

}


#sidebar .box_grey h2 span{
	font-style:normal !important;
}

#sidebar .box_grey h3 {
	font-family:Verdana, Geneva, sans-serif;
	font-weight:normal;
	font-size: 0.9em;
	color:#999999;
	margin-bottom:15px;
	padding:10px 16px 0;
}

#sidebar .box_grey .content{
	padding:0 16px 0;
}

#sidebar .box_grey .bottom {
	display: block;
	height: 22px;
	line-height: 22px;
	margin: 0 auto;
	text-align: center;
}

.box_blue_side{
	/*background:url("images/sidebar_box_blue_v2.gif") no-repeat scroll left bottom transparent;*/
	background: #001929;
	margin-bottom:15px;
	padding-bottom:15px;
}

#sidebar .box_blue_side h2{
	/*background:url("images/sidebar_box_blue_top_v2.gif") no-repeat scroll left top transparent;*/
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color: #fff;
/*	font-style:italic;
*/	font-weight:bold;
	text-indent:16px;
	padding-top:11px;

}

#sidebar .box_blue_side h4{
	background:url("images/sidebar_box_blue_top_v2.gif") no-repeat scroll left top transparent;
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#333333;
	font-style:normal;
	font-weight:bold;
	text-indent:16px;
	padding-top:11px;

}


#sidebar .box_blue_side h2 span{
	font-style:normal !important;
}

#sidebar .box_blue_side h3 {
	font-family:Verdana, Geneva, sans-serif;
	font-weight:normal;
	font-size: 0.9em;
	color:#999999;
	margin-bottom:15px;
	padding:10px 16px 0;
}

#sidebar .box_blue_side .content{
	padding:0 16px 0;
}

#sidebar .box_blue_side .bottom {
	display: block;
	height: 22px;
	line-height: 22px;
	margin: 0 auto;
	text-align: center;
}

#sidebar .sidebar_item_header{
	border-top:solid #81BFF2 1px;
	clear:left;
	margin-top:15px;

	text-align:left;
}

#sidebar .sidebar_item_header h2{
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
/*	font-style:italic;
*/	font-weight:bold;
	padding:0px;
	margin:0px;
	text-indent:0px;
	background:none;
}



#menu-sidebar ul{
	list-style:none;
}

#menu-sidebar li{
	margin-top:10px;
	margin-left:10px;
}

#menu-sidebar li a{
	display:block;
	margin-top:5px;
	margin-bottom:3px;
	font-weight:bold;
}

img.flag {
	padding-bottom:1px;
	padding-right:1px;
	border-bottom:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
}

#recomm_sites h2{
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
/*	font-style:italic;
*/	font-weight:bold;
	text-indent:16px;
	padding-top:11px;
	margin-bottom:10px;
}

#top_chess_players .name{
	padding-left:10px;
}

#top_chess_players .player{
	float:left;
	width:210px;
	margin-bottom:11px;
}

#top_chess_players .rating{
	float:right;
}

#latest_games #nav{
	padding-right:10px;
	float:right;
}


#latest_games .content{
	clear:both;
}

#latest_games ul{
	list-style:none;
}

#latest_games li{
	margin-top:10px;
}

#latest_games li a{
	display:block;
	margin-top:5px;
	margin-bottom:3px;
}

#latest_games dt{
	margin-top:10px;
}

#latest_games dd{
	margin-top:5px;
}

#latest_games .c_button_prev {
	border: 0;
	cursor: pointer;
	height: 8px;
	line-height: 8px;
	position: relative;
	display: block;
	margin: 0 auto;
	width: 11px;
	background:url("images/recent_games_prev_v2.png") no-repeat;
}

#latest_games .c_button_next{
	border: 0;
	cursor: pointer;
	height: 8px;
	line-height: 8px;
	position: relative;
	display: block;
	margin: 0 auto;
	width: 11px;
	background:url("images/recent_games_next_v2.png") no-repeat;
	margin-top:3px;
}

#most_viewed_articles ul{
	list-style:none;
}

#most_viewed_articles li{
	margin-top:10px;
}

#sidebar #banner_opening_explorer{
	background:url("images/chess_opening_explorer_v2.png") repeat scroll 0 0 transparent;
	height:132px;
	margin-bottom:15px;
}

#sidebar #banner_opening_explorer a{
	height:132px;
	color:#fff;
	text-decoration:none;
}

#sidebar #banner_opening_explorer .title{
	text-decoration:none;
	display:block;
	font-size:20px;
	font-family:"Calibri",Arial, Helvetica, sans-serif;
	padding: 10px 0 0 10px ;
}
#sidebar #banner_opening_explorer .title a{
	text-decoration:none;
}

#sidebar #banner_opening_explorer .content{
	text-decoration:none;
	display:block;
	width:130px;
	position:relative;
	left:10px;
	top:10px;
}

#sidebar #banner_opening_explorer .lnk{
	text-decoration:underline;
	display:block;
	width:130px;
	position:relative;
	left:10px;
	top:18px;
}

#sidebar #banner_search_position{
	background:url("images/banner_search_position_v2.png") repeat scroll 0 0 transparent;
	height:132px;
	margin-bottom:15px;
}

#sidebar #banner_search_position a{
	height:132px;
	text-decoration:none;
	color:#FFF;
}

#sidebar #banner_search_position .title{
	text-decoration:none;
	display:block;
	font-size:20px;
	font-family:"Calibri",Arial, Geneva, sans-serif;
	padding: 10px 0 0 10px ;
}

#sidebar #banner_search_position .content{
	text-decoration:none;
	display:block;
	width:130px;
	position:relative;
	left:10px;
	top:5px;
}

#sidebar #banner_search_position .lnk{
	text-decoration:underline;
	display:block;
	width:130px;
	position:relative;
	left:10px;
	top:15px;
}

#sidebar #banner_support_us{
/*	background:url("images/banner_support_v2.png") repeat scroll 0 0 transparent;
*/	/*height:132px;*/
	padding: 10px;
	margin-bottom: 15px;
	background: #cc513d;
	color: white;
	font-size: 1.2em;
}

#sidebar #banner_support_us a {
	color: white;
}

#sidebar #banner_support_us a .title {
	text-decoration:none;
	display: block;
	padding: 10px 0;
	font-size: 1.3em;
}

/*#sidebar #banner_support_us a{
	height:132px;
	text-decoration:none;
	color:#FFF;
}

#sidebar #banner_support_us .title{
	text-decoration:none;
	display:block;
	font-size:20px;
	font-family:"Calibri",Arial, Geneva, sans-serif;
	padding: 10px 0 0 10px ;
}

#sidebar #banner_support_us .content{
	text-decoration:none;
	display:block;
	width:227px;
	position:relative;
	left:10px;
	top:5px;
}

#sidebar #banner_support_us .lnk{
	text-decoration:underline;
	display:block;
	width:175px;
	position:relative;
	left:10px;
	top:15px;
}*/

#sidebar #banner_tell_your_friends {
	/*background:url("images/banner_tell_your_friends_v2.png") repeat scroll 0 0 transparent;
	height:132px;*/
	margin-bottom:15px;
	padding: 10px;
	margin-bottom: 15px;
	background: #cc513d;
	font-size: 1.2em;
}

#sidebar #banner_tell_your_friends a {
	color: white;
}

#sidebar #banner_tell_your_friends a .title {
	text-decoration: none;
	display: block;
	padding: 10px 0;
	font-size: 1.3em;
}

/*#sidebar #banner_tell_your_friends a{
	height:132px;
	color:#fff;
	text-decoration:none;
}

#sidebar #banner_tell_your_friends .title{
	text-decoration:none;
	display:block;
	font-size:20px;
	font-family:"Calibri",Arial, Helvetica, sans-serif;
	padding: 10px 0 0 10px ;
}
#sidebar #banner_tell_your_friends .title a{
	text-decoration:none;
}

#sidebar #banner_tell_your_friends .content{
	text-decoration:none;
	display:block;
	width:130px;
	position:relative;
	left:10px;
	top:10px;
}

#sidebar #banner_tell_your_friends .lnk{
	text-decoration:underline;
	display:block;
	width:130px;
	position:relative;
	left:10px;
	top:18px;
}*/




#box_features{
	overflow:hidden;
	
}

#box_features_content {
	/*background:url("images/box_features_v2.gif") no-repeat;*/
	padding:15px;
}

#box_features #box_features_content_box{
	padding:0 30px 0 0;
}

#box_features h2{
	font-family:Arial, Helvetica, sans-serif;
	font-style:normal;
	/*font-size:20px;*/
	margin-bottom:5px;
	font-weight:normal;
	color:#cc513d;
}

#box_features h2 strong{
/*	font-style:italic;
*/}

#box_features h4{
/*	font-size:16px;
*/	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
}

#box_features ul{
	list-style:none;
	padding-top:20px;
}

#box_features li{
/*	background:url("images/bullet_box_lite_v2.png") no-repeat scroll 0 5px transparent;
*/	padding:0 0 1em 1.3em;
	line-height:1.4;	
}

#box_features li strong{
	font-family:Verdana, Geneva, sans-serif;
/*	font-size:12px;
*/}

#box_features #bottom{
	clear:both;
/*	background:url("images/box_features_bottom_v2.gif") no-repeat;
*/	height:11px;
	margin-bottom:20px;
}

#box_features .and_more{
	font-weight:bold;
	display:block;
	text-indent:15px;
	padding-bottom:20px;
}

#home_news h2{
	margin-bottom:0px;
	color:#cc513d;
}

#home_news h3{
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bold;
	font-size:16px;
	margin:auto;
	padding:0px;
}

#home_news h3 a{
	text-decoration:none;
}

#home_news h4{
	font-family:Verdana, Geneva, sans-serif;
	font-weight:normal;
	font-size: 0.9em;
	color:#7F7F7F;
	margin:auto;
	padding:0px;
}

#home_news ul{
	list-style:none outside;	
}

#home_news li{
	margin-top:20px;
}

#home_news .image{
	float:left;
	width: 5%;
	text-align: left;
}

#home_news .text{
	float: left;
	width: 95%;
	font-size: 1.3em;
}

#home_news .text h3 {
	font-size: 1.2em;
	padding: 5px 0;
}

#home_news p{
	margin:20px 0px;
}

#home_news .bottom{
	clear:both;
	width:100%;
	height:1px;
	background:url(images/1px_grey_v2.png) repeat-x;
}

#home_news .older_entries{
	text-align:right;
	display:block;
	padding-top:20px;
}


/* OPENING EXPLORER */

#search_block_opening_explorer #search_block_opening_explorer_main {
	/*background:url("images/box_blue_bg_c_v2.gif") no-repeat scroll left bottom transparent;*/
	/*background: #c6eaff;*/
	border-top: 3px solid #001929;
}

#search_block_opening_explorer_main {
	clear:both;
	padding:0px;
	width: 100%;
	max-width: 550px;
}

#search_block_opening_explorer .top {
	/*background:url("images/box_blue_top_c_v2.gif") no-repeat scroll left top transparent;*/
	height:12px;
	padding:0px;
	margin:0px;
	display:block;
	line-height:1px;
}

#search_block_opening_explorer .full_top{
	background:url("images/box_blue_top_d_v2.gif") no-repeat scroll left top transparent !important;
}

#search_block_opening_explorer #content {
	padding:5px 7px 10px;
	max-width: 500px; 
	text-align: left;
}

#search_block_opening_explorer ul{
	list-style:none outside;	
	margin:0px;
	padding:0px;
}

#search_block_opening_explorer li{
	display:inline;
	float:left;
	/*line-height:28px;*/
	text-align:center;
	font-family:Tahoma, Geneva, sans-serif;
	font-weight:bold;
}

#search_block_opening_explorer li a{
	color:#001929;
	text-decoration:none;
}

#search_block_opening_explorer .search_game, #search_block_search_pos .search_game {
/*	background:url("images/box_search_games_u_bk_v2.gif") repeat scroll 0 0 transparent; */	
	background: #55ade3;
	border-right: solid 1px #c6eaff;
	color: #001929;	
	/*width:160px;*/
	padding: 5px 10px;
}

#search_block_opening_explorer .search_position, #search_block_search_pos .search_position {
/*	background:url("images/box_search_position_bk_v2.gif") repeat scroll 0 0 transparent;*/	
	background: #55ade3;
	border-right: solid 1px #c6eaff;
	color: #001929;	
	/*width:160px;*/
	padding: 5px 10px;
}

#search_block_opening_explorer .opening_explorer, #search_block_search_pos .opening_explorer {
	/*background:url("images/box_opening_explorer_bk_s_v2.gif") repeat scroll 0 0 transparent;*/
	background: #001929;
	border-right: solid 1px #c6eaff;
	color: white;
	/*width:160px;*/
	padding: 5px 10px;	
}

.fen{
	padding-top:10px;
	clear:both;
}

.fen input{
	padding:3px;
	max-width:400px;
}

#main2 #rel_ops{
	padding-top:30px;
	width:500px;
}

#main2 #rel_ops h3{
	/*font-weight:bold;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 0.9em;*/
	font-size: 16px;
    font-weight: normal;
    margin: 0;
	font-family: "Lucida Grande","Lucida Sans Unicode",helvetica,arial,verdana,sans-serif;
	border-bottom: 3px solid #EEEEEE;
}

#main2 #op_exp_flip{
	/*float:right;
	padding-right:50px;*/
	
}

#main2 #op_exp_flip a{
	text-decoration:none;
}

#main2 #rel_ops li{
	list-style:none;
	line-height:18px;
	font-weight:bold;
	padding-left:10px;
}

#main2 #rel_ops li a{
	font-weight:normal;
}

#search_block_search_pos #content {
	padding:5px 10px 15px;
	/*max-width: 550px;*/
}

#search_block_search_pos .top {
	/*background:url("images/box_blue_top_b_v2.gif") no-repeat scroll left top transparent;*/
	height:12px;
	padding:0px;
	margin:0px;
	display:block;
	line-height:1px;
	border-top: 3px solid #001929;
}

#search_block_search_pos .search_game{
	/*background:url("images/box_search_games_u_bk_v2.gif") repeat scroll 0 0 transparent;*/
	background: #55ade3;
	border-right: solid 1px #c6eaff;
	color: #001929;
	/*width:124px;*/
	padding-left: 5px 10px;
}

#search_block_search_pos .search_position{
	/*background:url("images/box_search_position_bk_s_v2.gif") repeat scroll 0 0 transparent;*/
	background: #001929;
	border-right: solid 1px #c6eaff;
	color: white;
	/*width:124px;*/
	padding-left: 5px 10px;
}

#search_block_search_pos .opening_explorer{
	/*background:url("images/box_opening_explorer_bk_v2.gif") repeat scroll 0 0 transparent;*/
	background: #55ade3;
	border-right: solid 1px #c6eaff;
	color: #001929;
	/*width:183px;*/	
}

#search_block_search_pos select {
	border:#9F9F9F 1px solid;
	font-size:12px;
	height:23px;
	padding-top:2px;
	/*width:130px;*/
}



#search_block_search_pos .search_games{
	padding-left:15px;
}

#helpful_links {
	background: #001929;
	margin-top: 30px;
}


#helpful_links .bottom{
	padding-top:10px;
}

#search_block_search_pos #search_opts{
	padding-top:20px;
}

#search_opts label{
	padding-top:3px;

	display:block;
}

#eco_search h2{
margin-bottom:0px;
text-indent:16px !important;
padding-top:10px !important;
}

.red{
	color:#C60000 !important;
}

#signup {
	background: #c6eaff;
	padding: 10px;
}

#main #signup form label, #main #signup form .indent{
	padding: 8px 0;
	margin: 5px 0 5px 10px;
	display: block;
	}
	
#main #signup form label input {
	width: 210px;
	display: block;
	}

input.text {
	border:#9F9F9F 1px solid;
	font-size:12px;
	height:19px;
	padding-top:2px;
	margin-top:5px;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	}

#main #signup .verylong{
	width:300px;
}

#main #signup #homepage{
	padding: 13px 0px 13px 10px;
}

#main #signup #my_games{
	padding: 13px 0px 13px 10px;
}

#main #signup #my_games span{
	margin-top:5px !important;
	display:block;
}

#main #signup #my_games label{
	display:inline !important;
}

#main #signup #my_games label input{
	display:inline !important;
	width:auto !important;
}


#main #signup textarea{
	font-family:Verdana,Arial,Helvetica,sans-serif;
	padding-top:2px;
	margin-top:5px;
	font-size:12px;
}

#main #signup #aliases_desc{
	width:200px;
	margin-left:15px;
	padding-top:3px;
	color:#999;
}

#main #signup form div select, #main #signup form label select {
border:1px solid #9F9F9F;
font-size:12px;
height:23px;
margin-top:5px;
padding-top:2px;
}

#main .remember {
	padding-left:10px;	
	clear:both;
}

#register_small {
	padding-top:25px;
}

#signup hr {
	border: 0;
	height: 1px;
	background: #001929;
	margin: 10px 0 10px 0;
}

#signup .signup_hint{
	color:#999999;
}

#signup .signup_hint_edit{
	color:#999999;
	padding-left:10px;
}

.items_desc{
	margin-left:15px;
}

#link_to_page_mygames {
	text-align:right;
}

#link_to_page_mygames input.text{
	width:400px;
	color:#333;
}

#badges_banners h3{
	font-size:18px;
	padding-top:15px;
}

#badges_banners textarea{
	font-size:10px;
	margin-top:15px;
}

#badges_banners table{
	margin-bottom:20px;
}

#badges_banners td{
	padding-top:20px;
	vertical-align:middle;
	text-align:center;
}

#profile #left_column{
	float:left;
	width: 30%;
	color:#F00;
}

#profile #left_column img{
	/*width: 100%;*/
}

#profile #left_column a{
	margin-top:8px !important;
	display:block;
}

#profile #right_column{
	float:right;
	width: 69%;
}

#profile #right_column .separator{
	border-bottom:#ccc solid 1px;
	line-height:14px;
	height:14px;

}


#profile #right_column .separator span{
	background:#FFF;
	padding:2px 5px 2px 0;
	font-weight:bold;
	float:left;
	bottom:1px;
	z-index:1000;
}

#profile #right_column dt{
	float:left;
	width:140px;
	padding-top:10px;
	color:#666;
}

#profile #right_column dd{
	/*float:right;
	width:350px;*/
	padding-top:10px;	
}

#profile .flag{
	vertical-align:bottom;
}

#profile .space{
	clear:both;
	padding-top:20px;	
}

#profile .p_meter {
	background:none repeat-x scroll 0 0 #FFFFFF;
	border:1px solid #333333;
	display:block;
	height:12px;
	margin-left:10px;
	width:100px;
}

#profile #profile-completeness{
	background-color:#DDF0F8;
	border:#99CCE6 1px solid;
	height:72px;
	padding:7px 0px;
	margin-top:15px;
	text-align:left;
	color:#333;
}

#profile .percentage{
	display:block;
	text-align:center;	
	margin-bottom:7px;
}

#profile-completeness a{
	display:block;
	text-align:center;
}

table.moves_table {
	text-align:center;
	border-left:#999 1px solid;
	border-right:#999 1px solid;
	border-bottom:#999 1px solid;
}

table.moves_table th{
	border-top:#999 1px solid;
	padding:4px !important;
	width:40px;
}

table.moves_table td{
	border-top:#999 1px solid;
	padding:4px !important;
	width:40px;
	text-align:left;
}

.currMove{
	background:#CCC;
	padding:4px;
}

.opex_repertoire{
	margin-top:10px;
	margin-bottom:10px;
	display:block;
}

.ab_options ul{
	list-style:none outside;	
	margin:0px;
	padding:0px;
}

.ab_options li{
	display:inline;
	float:left;
	line-height:28px;
	text-align:center;
	font-family:Tahoma, Geneva, sans-serif;
	font-weight:bold;
}


/*#top ul{
	list-style:none outside none;
}

#top li{
	float:left;
	z-index:100 !important;
	line-height:11px !important;
}
*/
#top .rightop{
	margin-left:115px;
}

#top .rightop_logged{
	margin-left:60px;
}

#repertoire_player{
	margin-top:10px;
	border:#7EBEF2 1px solid;
}

#repertoire_player #lside{
	width:50%;
	float:left;
}

#repertoire_player #lside .icon{
	padding-left:5px;
	float:left;
}

#repertoire_player #lside .link{
	padding-top:3px;
	padding-left:5px;
	float:left;
}

#repertoire_player #rside{
	width:50%;
	float:right;
	text-align:right;
}

#repertoire_player #rside .icon{
	padding-right:5px;
	float:right;
}

#repertoire_player #rside .link{
	padding-top:3px;
	padding-left:10px;
	float:left;
}


.main_box{
	background:url("images/box_main_bg_v2.gif") no-repeat scroll left bottom transparent;
	margin-bottom:15px;
	padding-bottom:15px;
	width:641px;
	margin: 0 auto;
	margin-top:50px;
}

.main_box h2{
	background:url("images/box_main_top_v2.gif") no-repeat scroll left top transparent;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	color:#333333;
	font-weight:bold;
	text-indent:16px;
	line-height:27px;
	

}


.main_box .content{
	padding:16px;
}

.main_box  #upload_photo{
	padding:20px 90px;
}

.main_box  #upload_photo span{
	display:block;
	padding:5px 0 30px;
	color:#666;
}

.main_box  #upload_photo a{
	padding-left:20px;
}

.main_box  #upload_photo .button-small{
	padding-left:10px !important;
	padding-right:10px !important;	
}

.main_box  #upload_photo_thumb{
	text-align:center;
}

.main_box  #upload_photo_thumb form{
	padding-top:20px;
}

.main_box  #upload_photo_thumb .button-small{
	padding-left:10px !important;
	padding-right:10px !important;	
}

.main_box  #upload_photo_thumb a{
	padding-left:20px;
}

#search_result_players{
	margin-bottom:15px;
}

#search_result_players span{
	display:block;
	text-indent:280px;
	margin-bottom:5px;
}

#search_result_players table{
	border:#999 1px solid;
	width:375px;
	margin:0 auto;
}

#search_result_players table td{
	border-bottom:0px !important;
}

#search_result_players td.games{
	text-align:center;
	width:145px;
}

/* --- News results -- */

table.results-table {
    border-collapse: collapse;
    /*border: 1px solid #000000;*/
	margin-top: 8px;
	color: #001929;
	/*font-size: 1.3em;*/
	width: 100%;
}

table.results-table tr:nth-child(odd){ background: #c6eaff; }

table.results-table th, table.results-table td {
   /* font-family: verdana, arial, helvetica, tahoma;
    font-size: 0.9em;;
    color: #333333;
    padding: 6px;
    border: 1px solid #666666;*/
	padding: 10px;
}
table.results-table th {
    background-color: #55ade3;
	color:#FFFFFF;
	font-weight: bold;
}

tr.highlight td {
   background-color: #e2e2e2;
   font-weight: bold;
}

#profile h3{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
}

#profile #current_rating{
	float:left;
	width:360px;
	margin-top:25px;
}

#profile #rating_evolution{
	float:right;
	width:275px;
	margin-top:25px;
}

#profile .tbl_current_rating{
	width:100%;
}

#profile .tbl_current_rating thead{
	font-weight:bold;
}

#profile .tbl_current_rating tr{
	height:20px;
}

.subselect{
	text-align:right;
	
	margin:8px 0 5px;
}

.subselect ul{
	list-style:none outside none;
	display:inline;	
	padding:0;

}

.subselect li{
	display:inline;
}

.subselect .current{
	font-weight:bold;
}

#profile #solving_history{
	padding-top:60px;
}

#solving_history .good{
	color:#008400;
	//font-weight:bold;
}

#solving_history .wrong{
	color:#900;
	//font-weight:bold;
}

.tablenav{
 clear:both;
 height:30px;
 vertical-align:middle;
 margin:6px 0 4px;	
}

.tablenav .actions{
	height:30px;
	line-height:30px;
}

.hight tbody tr{
	vertical-align:top;
}

.hight tbody td{
	padding:7px 0 0 10px;
	line-height:1.5em;
	height:48px;
}

#main form select {
border:1px solid #9F9F9F;
font-size:12px;
height:23px;
/*margin-top:5px;
padding-top:2px;*/
}

select option{
	padding-right:10px;
}

select {
border:1px solid #9F9F9F;
font-size:12px;
height:23px;
margin-top:5px;
padding-top:2px;
}

#main form select option{
	padding-right:10px;
}

.new-ratings{
	width:200px;
	/*padding-left:47px;*/
	margin: 0 auto;
}


.new-ratings ul{
	list-style:none outside;
}

#contributions ul, #last_session ul, #problem-stats ul, #session-type ul, #problem-details ul, #common-mistakes ul, #rating-puzzles ul{
	list-style:none outside;
	padding-top:15px;
}

.new-ratings li{
	margin-bottom:5px;
	height:20px;
	clear:both;
}

#contributions li, #last_session li, #problem-stats li, #session-type li, #problem-details li, #common-mistakes li, #rating-puzzles li{
	margin-bottom:5px;
	height:20px;
	clear:both;
}

.dotted{
	background:url("images/dots.gif") repeat-x scroll center bottom transparent;
}

.dotted-h{
	line-height:18px;
	height:30px;
	margin-bottom:25px !important;
}

.dotted-t{
	background:url("images/dots.gif") repeat-x scroll center transparent;
	background-position:top;
	display:block;
	padding-top:7px;
}

.new-ratings dt{
	float:left;	
}

#contributions dt, #last_session dt, #problem-stats dt, #session-type dt, #problem-details dt, #common-mistakes dt, #rating-puzzles dt{
	float:left;
}
.new-ratings dd{
	float:right;
}

#contributions dd, #last_session dd, #problem-stats dd, #session-type dd, #problem-details dd, #common-mistakes dd, #rating-puzzles dd{
	float:right;
}


#rating-puzzles h4 .comment{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color:#999;
	}


.box_blue{
	background:url("images/puzzle_tselector_main_v2.png") no-repeat scroll left bottom transparent;
	margin-bottom:15px;
	padding-bottom:15px;
}

.box_blue .top{
	background:url("images/puzzle_tselector_top_v2.png") no-repeat scroll left top transparent;
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
	font-style:italic;
	font-weight:bold;
	text-indent:16px;
	padding-top:11px;

}

.box_blue .content{
	padding:0 16px 0;
}

#profile #tselector{
	margin-top:25px;
}

#profile #tselector dt{
	float:left;
	width:120px;
	clear:both;
	height:30px;
	padding-top:10px;
}

#profile #tselector dt.notop{
	height:20px !important;
}

#profile #tselector dd{
	float:left;
	width:400px;
}

#profile .data{
	margin-top:50px;
}

#profile .data .subselect{
	text-align:left !important;
}

#profile #mycollections, #profile #mypuzzles{
	margin-top:25px;
}

.tablewo thead{
	/*background-image:url(images/thead_bg.gif);
	background-repeat:repeat-x;*/
	background-color:#4B596D;
	color:#fff;
	font-weight:bold;
	font-size: 0.9em;
}

.tablewo a:link{
color:#55ade3;
}

.tablewo thead a{
	color:#fff;
	text-decoration:none;
}

.tablewo thead a:link {
	color:#fff;
	text-decoration:none;
}


.tablewo thead a.visited{
	color:#fff;
	text-decoration:none;
}

.tablewo tbody{
	color:#333;
	font-size: 0.9em;
}

.tablewo tr{
	vertical-align:top;
}

.tablewo thead td{
	padding-left:10px;
	vertical-align:middle;
	height:24px;	
}

.tablewo tbody td{
	padding:7px 0 0 10px;
	height:24px;
	line-height:1.3em;
}

.tablewo td.actions_row{
	border-bottom:1px #ccc solid;
	padding-top:2px;
}

.tablewo .delete{
	text-decoration:line-through;
	font-style:italic;
}

.tablewo .edited{
	font-style:italic;
}



.tablewo a:hover{
color:#55ade3;
}


.tablewo .light{
	background:#FFFFFF;
}

.tablewo .dark{
 background:#F0F0F0;

}

#mycollections #table_actions, #mypuzzles #table_actions{
	margin-top:4px;
}

#modal-dialog{
	text-align:left;
}

#modal-dialog form label{
	padding: 8px 0;
	margin: 5px 0 5px 10px;
	display: block;
	}
	
#modal-dialog form label input {
	width: 190px;
	display: block;
	}

#puzzle-solving #heading{
	font-size:18px;
	font-weight:bold;
	margin-top: 20px;
	/*height:45px;*/
}

#puzzle-solving #heading #title{
	height:30px;	
}

#puzzle-solving #heading #report-as{
	height:30px;	
}

#puzzle-solving #heading #puzzle_id{
		font-size:18px;
	font-weight:bold;
}

#puzzle-solving #heading span{
	font-size: 0.9em;
	font-weight:normal;
}

#puzzle-solving-content-left{
	width: 40%;
	float: left;
}

#puzzle-solving-content-left #you_play{
	font-family:Arial, Helvetica, sans-serif;
	text-align:center;
	font-size:18px;
	padding-bottom:10px;
	height:26px;
}

#puzzle-solving #giveup-buttons{
	padding-top:10px;
}

#composition{
	padding-top:5px;
	font-size:12px;
	font-weight:bold;
	color:#333;
}

#composition #stipulation{
	float:left;
}

#composition #material{
	float:right;
	padding-right:25px;
}

#puzzle-solving #board-buttons{
	padding-top:5px;
}

#puzzle-solving-content-right{
	width: 45%;
	float: right;
}

#puzzle-solving-content-right.puzzle_of_the_day{
	/*width:236px !important;*/
}

#puzzle-solving-content-right #timer{
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
}

#puzzle-solving-content-right #complete_sol{
	padding-top:5px;
}

#puzzle-solving-content-right #timer span{
	font-size:18px;
	font-weight:normal;
}



#puzzle-solving-content-right #moves{
	padding-top:10px;
	font-size:12px;
}

#puzzle-solving-content-right #solved-correct #message{
	background-color:#b8f7b8;
	/*background-color:#C6FFC6;*/
	/*border:#336633 1px solid;*/
	width:100%;
	text-align:center;
	margin-top:7px;
}

#puzzle-solving-content-right #solved-correct #message span{
	display:block;
	padding:15px 0;
	font-weight:bold;
	font-size: 1em;
	/*font-size:13px;*/
}

.new-ratings span{
	font-size:11px !important;
	padding:0px !important;
	font-weight:normal !important;
	display:inline !important;
}

#puzzle-solving-content-right #solved-incorrect #message{
	background-color:#ff8b89;
	/*background-color:#c6eaff;*/
	/*border:#FFB300 1px solid;*/
	width:100%;
	text-align:center;
	margin-top:7px;
}

#puzzle-solving-content-right #solved-incorrect #message span{
	display:block;
	padding:15px 0;
	font-weight:bold;
	font-size: 1em;
	/*font-size:13px;*/
}

#puzzle-solving-content-right #solved-giveup #message{
	background-color:#ff8b89;
	/*background-color:#c6eaff;*/
	/*border:#FFB300 1px solid;*/
	width:100%;
	text-align:center;
	margin-top:7px;
}

#puzzle-solving-content-right #solved-giveup #message span{
	display:block;
	padding:15px 0;
	font-weight:bold;
	font-size: 1em;
	/*font-size:13px;*/
}


#puzzle-solving-content-right #view-puzzle{
	margin-bottom:15px;
}

#puzzle-solving-content-right #view-puzzle #message{
	background-color:#E5E5E5;
	/*border:#999 1px solid;*/
	width:100%;
	text-align:center;
}

#puzzle-solving-content-right #view-puzzle #message p {margin: 0px; padding:10px; line-height:1.5em; }

#puzzle-solving-content-right #navbar{
	padding:10px 0px;
}

#puzzle-solving-content-right #puzzle-user-rating{
	padding-top:20px;
}

#puzzle-solving-content-right #puzzle-user-rating .title, #puzzle-solving-content-right .title{
	font-weight:bold;
	padding-bottom:10px;
}

.rating-cap{
	padding-left:10px;
}

#puzzle-solving-content-right #puzzle-user-rating #comment{
	color:#666;
	padding-top:5px;
	clear:both;
}

#puzzle-solving-themes{
	padding-top:20px;
}

#puzzle-solving-themes .title{
	font-weight:bold;
}

#puzzle-solving-themes .theme{
	float:left;
	vertical-align:middle;
	padding-right:10px;
	padding-top:10px;
}

#puzzle-solving-themes .theme div{
	padding-bottom:3px;
	display:inline;

}

#puzzle-solving-themes #add-tag{
	clear:both;
	padding-top:10px;
}

#puzzle-solving-content-right #loading{
	padding-top:10px;
	font-size:14px;
}

#problem-stats .subselect{
	text-align:center;
	margin:20px 0px 0px 0px !important;
}

#problem-stats .content span{
	display:block;
}

#social_links{
	margin-top:20px;
}

#social_links a{
	margin-bottom:10px;
	display:block;
}


.box_grey_2{
	/*background:url("images/sidebar_box_grey2_v2.png") no-repeat scroll left bottom transparent;*/
	margin-bottom:15px;
	padding-bottom:15px;
}

#sidebar .box_grey_2 h2{
	/*background:url("images/sidebar_box_grey2_top_v2.png") no-repeat scroll left top transparent;*/
	font-size:14px;
	font-family:Verdana, Geneva, sans-serif;
	/*color:#333333;*/
	font-style:normal;
	font-weight:bold;
	text-indent:16px;
	padding-top:15px;
	height:40px;
	background: #001929;
	color: white;

}

#sidebar .box_grey_2 h3{
	/*background:url("images/sidebar_box_grey2_h_v2.png") no-repeat scroll left top transparent;*/
	font-size:14px;
	font-family:Verdana, Geneva, sans-serif;
	/*color:#333333;*/
	font-style:normal;
	font-weight:bold;
	text-indent:10px;
	padding-top:8px;
	height:32px;
	margin-top:20px;
	clear:both;
	background: #001929;
	color: white;

}

#sidebar .box_grey_2 .content{
	padding:0 8px 0;
}

#sidebar .box_grey_2 .bottom {
	display: block;
	height: 22px;
	line-height: 22px;
	margin: 0 auto;
	text-align: center;
}

#sidebar .already_supporter{
	background:url(images/oneline_bk_v2.png) no-repeat scroll left top transparent;
	height:39px;
	margin-bottom:20px;
	font-family:Tahoma, Geneva, sans-serif;
	text-align:center;
	line-height:39px;
}

#sidebar #puzzle_day_sidebar h3{
	color:#333;
}

.supporter_button {
	text-align: center;
	/*background: url("images/supporter_bk_v2.png") no-repeat scroll 0 0 transparent;*/
	border: 5px solid #c6eaff;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	margin: 0 auto;
	/*height: 62px; */
	width: 580px;
	padding: 5px 0 ;
}

.gray-columns-top{
	/*background:url("images/supporters_pricing_top_v2.png") no-repeat scroll 286px 0 transparent;*/
	margin-top:20px;
	/*padding-left:100px;*/
	background: #001929;
}

.gray-columns-middle{
	/*background:url("images/supporters_pricing_mid_v2.png") no-repeat scroll 286px bottom transparent;*/
	/*padding-left:100px;	*/
	
}

.gray-columns-middle .columns li {
	/*border-bottom: solid 1px #001929;*/
}

.gray-columns-middle .columns li:nth-child(even){ background: #c6eaff; }

.columns{
	line-height:20px;
	list-style:none outside;
}

.columns h3{
	font-family:Tahoma, Geneva, sans-serif;
	font-size:16px;
	font-weight:bold;
	color: #fff;
}

.columns li{
	overflow:hidden;
	width:100%;
}

.columns div{
	float:left;
	height:52px;
	line-height:52px;
	/*margin-left:15px;*/
	width: 20%;
	text-align:center;
	color:#666;
}

.columns .price{
	height:40px;
	line-height:14px;
}

.columns .first-column{
	text-align:left;
	width: 58%;
	margin:0px;
	padding: 0px;
	color: #001929;
	font-size: 1.3em;
	padding-left: 5%;
}

.columns .tick{
	background:url(images3/ok.png) no-repeat scroll 50% 50% transparent;
	width: 20%;
	margin:0px;
	padding: 0px;
	padding-top: 15px;
}

.columns .tickwc{
	background:url(images3/ok.png) no-repeat scroll 50% 7px transparent;
	margin:0px;
	padding: 0px;
	/*padding-top: 25px;
	line-height:30px;
	height:30px;*/
	width: 20%;
	padding-top: 15px;
}

.columns .ntick{
	background:url(images3/no.png) no-repeat scroll 50% 50% transparent;
	margin:0px;
	padding: 0px;
	width: 20%;
	padding-top: 15px;
}

/* Simple tip */

/*.tooltip{
   position: absolute;
   padding: 10px 13px;
   z-index: 2;
   
   color: #303030;
   background-color: #f5f5b5;
   border: 1px solid #DECA7E;
   
   font-family: sans-serif;
   font-size: 12px;
   line-height: 18px !important;
   text-align: center;
   height:auto !important;
   width:auto !important;
   float:none !important;
   max-width:350px;
}*/

/* End Simple tip */

.table_optip td {vertical-align:top; height:20px}

#supporters_lightbox {
	padding:30px 20px;
}

#supporters_lightbox h3 {
	font-family:Arial, Helvetica, sans-serif;
	color:#cc513d;
	font-weight:bold;
	font-size:22px;
	padding-bottom:10px !important;
}

/* diagram */
	.diagram {position: relative; overflow: hidden; color: #000000; font-size: 13px; padding: 10px; text-align: center; width: 480px; background: none repeat scroll 0% 0% #F5F5F5; border: 1px solid #CCCCCC; }
	.diagram .title{ font-size:16px; font-weight:bold; padding-bottom:5px; }
	.diagram .players {font-weight:bold; border:0px !important; height:auto !important; }
	.diagram .diagram-board {padding:10px 0px;}
	.diagram .eco {font-weight:normal; }
	.diagram .caption {width:510px; text-align:left; margin:0 auto;}


/* Images
-------------------------------------------------------------- */

#home_news img {
	margin: 0;
	max-width: 640px;
}
#home_news .attachment img {
	max-width: 900px;
}
#home_news .alignleft,
#home_news img.alignleft {
	display: inline;
	float: left;
	margin-right: 24px;
	margin-top: 4px;
}
#home_news .alignright,
#home_news img.alignright {
	display: inline;
	float: right;
	margin-left: 24px;
	margin-top: 4px;
}
#home_news .aligncenter,
#home_news img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#home_news img.alignleft, 
#home_news img.alignright, 
#home_news img.aligncenter {
	margin-bottom: 12px;
}
#home_news .wp-caption {
	background: #f1f1f1;
	line-height: 18px;
	text-align: center;
	margin-bottom: 20px;
	padding: 4px;
}
#home_news .wp-caption img {
	margin: 5px 5px 0;
}
#home_news .wp-caption p.wp-caption-text {
	margin: 5px;
	color: #888;
	font-size: 12px;
}
#home_news .wp-smiley {
	margin:0;
}
#home_news .gallery {
	margin: auto;
}
#home_news .gallery .gallery-item {
	float: left;
	margin-top: 0;
	text-align: center;
	width: 33%;
}
#home_news .gallery img {
	border: 2px solid #cfcfcf;
}
#home_news .gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	margin: 0 0 12px;
}
#home_news .gallery dl {
	margin: 0;
}
#home_news .gallery img {
	border: 10px solid #f1f1f1;
}
#home_news .gallery br+br {
	display: none;
}

#puzzles_options .option {
	/*background:url(images/bk_puzzles_v2.gif) no-repeat;
	width:671px;*/
	background: #c6eaff;
	min-height: 100px;
	clear:both;
	margin-bottom:10px;
}

#puzzles_options .off{
	background:url(images/bk_puzzles_off_v2.gif) no-repeat !important;
	min-height: 100px !important;
	color:#AAA !important;
}

#puzzles_options .off h2{
	color:#AAA !important;
}
	
#puzzles_options .option .content{
	padding:9px 15px;
}

#puzzles_options .off .content{
	padding:11px 15px !important;
}

#puzzles_options .option .main{
	float:left;
	padding-left:22px;
	width: 60%; 
}

#puzzles_options .option .main h2{
	padding-bottom:0px !important;
}

#puzzles_options .option .button_start{
	float:right;
	margin-top:39px;
	max-width: 15%;
	font-size: 0.9em;
}

/*a.button{
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bold !important;
	color:#FFF;
	text-decoration:none;
	background:#f2f2f2 url(images/btn_bk_#c6eaff_v2.png) repeat-x scroll left top;
border:#F3890B 1px solid;
	float:right;clear:right;
	position:relative;top:-5px;
	text-decoration:none;
	font-size:12px!important;
	line-height:16px;
	padding:4px 8px;cursor:pointer;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box;
	
}*/


#puzzles_options .option-2{
	clear:both;
	padding-bottom:50px;
}

#puzzles_options .option-2 p{
	/*font-size: 12px;*/
	line-height:1.5em;
}

#puzzles_options .option-2 a.button{
	float:none !important;
	padding:4px 25px !important;
}

#puzzles_options .option-2 ul{
	margin:10px;
	list-style-type:disc;
	padding-left:20px;
}

#puzzles_options .option-2 li{
		/*font-size: 12px;*/
	line-height:1.5em;
	display:list-item;
}

#puzzles_options #puzzles_op2 .fleft {
	width: 30%;
}

#puzzles_options .option-2 .fleft img {
	max-width: 100%;
}

#puzzles_options .option-2 .fright {
	width: 60%;
}

.subtitle-puzzles{
	font-size:16px;
	font-weight:bold;
	color:#cc513d;
}

.top_players{
	min- height: 210px;
	background: #001929;
	color: white;
}

.top_players a {
	color: #55ade3;
}

.top_players h2 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.top_players li{
	list-style:none;
	padding:0px 15px;
}

.top_players .name{
	
}

.top_players .player{
	float:left;
	width:180px;
	margin-bottom:11px;
}

.top_players .content, .title .content  {
	width: 90% !important;
	margin: 0 auto !important;
}

.top_players .content ul li, .top_players .title ul li {
	width: 200px !important;
}

.top_players .box{
	height:
}

.top_players .content{
	padding-top:20px !important;
	padding-right:0px !important;
	padding-left:0px !important;
}

.top_players #nav {
	padding-top: 10px;
	padding-bottom: 10px;
	background: white;
	color: #001929;
}

.top_players #nav .left{
	float:left;
	padding-left:10px;
}

.top_players #nav .right{
	float:right;
	padding-right:10px;
}

.top_players #nav .title{
	text-align:center;
	width:190px;
	float:left;
	font-size:12px;
	font-weight:bold;
}

.top_players #nav .title li{
	width:160px;
}

#recent_puzzles h2{
	padding-top:15px;
}

#recent_puzzles ul{
	list-style:none outside;	
	margin:0px;
	padding:0px;
}

#recent_puzzles li{
	float:left;
	width: 30%;
	/*background:url(images/bk_puzzles_recet_v2.gif) no-repeat;*/
	background: #c6eaff;
	min-height: 290px;
	margin-right: 3%;
	text-align:center;
}

#recent_puzzles li.first{
	margin-left:0px !important;
}

#recent_puzzles li .title{
	font-size:18px;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bold;
	padding-top:10px;
	color: #001929;
}

#recent_puzzles li .puzzle{
	padding-top:25px;
	padding-bottom:5px;
}

#recent_puzzles li img {
	max-width: 100%;
}

#settings {
	padding-top: 10px;
}

#settings h3{
	margin-bottom:14px;
	border-bottom:1px solid #CCC;
}

#settings .data {
	padding-left:30px;	
	clear:both;
}

#settings .data table {
	width: 100%;
}

#home-banners{
	height:154px;
	margin-bottom:15px;
}

#home-banners .banner{
	height:154px;
}

#home-banners a{
	text-decoration:none;
	cursor:hand;
}

#home-banners .title{
	padding-top:10px;
	padding-left:17px;
	font-family:"Calibri",Arial,Tahoma, Geneva, sans-serif;
	font-size:26px;
	font-weight:bold;
	color:#0088CC;
	width:250px;
}


#home-banners .content{
	
	width:145px;
	position:relative;
	left:17px;
	top:5px;	
	color:#333;
	height:84px;
}

#home-banners .lnk{
	padding-left:17px;
	font-weight:bold;
	color:#333;
}

#home-banners .over .lnk{
	color:#0088CC !important;}

#home-puzzles{
	height:154px;
	float:left;
	width:307px;
	margin-right:7px;
	background:url("images/home-banners-bk.png") scroll no-repeat;
}

#home-puzzles.off{
	background-position:0px -308px;
}

#home-puzzles.over{
	background-position:0px -462px;
}

#home-explorer{
	height:154px;
	float:left;
	width:307px;
	background:url("images/home-banners-bk.png") scroll no-repeat;
}

#home-explorer.off{
	background-position:0px 0px;
}

#home-explorer.over{
	background-position:0px -154px !important;
}

#home-search{
	height:154px;
	float:right;
	width:307px;
	background:url("images/home-banners-bk.png") scroll 0 0 no-repeat;
}

#home-search.off{
	background-position:0px -616px;
}

#home-search.over{
	background-position:0px -770px;
}

#common-mistakes table{
	padding-top:10px;
}
.mistakes thead tr{
	font-weight:bold;
	background:none;
}

.mistakes thead td, .mistakes td{
	text-align:right;
}

.mistakes td.first{
	text-align:left;
}

.mistakes tr{
	height:25px;
	background:url("images/dots.gif") repeat-x scroll center bottom transparent;
}

.mistakes tr.last{
	background:none !important;
}

#banner-puzzles-supp{
	//height:261px;
	margin-bottom:15px;
	/*width:243px;*/
	/*background:url("images/banner-puzz-supp-bk.png") scroll no-repeat;*/
	background: #55ade3;
}

#banner-puzzles-supp .title{
	font-family:Tahoma, Geneva, sans-serif;
	font-size:20px;
	text-align: left;
	color: #fff;
	padding: 15px 0 0 15px;
}

#banner-puzzles-supp .content{
	font-family: Verdana, Geneva, sans-serif;
	padding: 15px;
	color: #fff;
}

#banner-puzzles-supp .inner{
	/*height:261px;
	width:243px;*/
}

#banner-puzzles-supp a{
	text-decoration:none;
	cursor:hand;
}

.orange { color: #cc513d !important; font-size: 2em  !important; padding: 15px 0; }

#dialog-solution p{
	padding-top:10px !important;
}
#dialog-solution p textarea{
	padding:5px;
	margin-bottom:15px;
}



#puzzle_day {
	/*background:url(images/search_bk_2.png) no-repeat scroll 50% #ffffff;*/
	
	
	
}

#puzzle_day {
	background:url("images/box_blue_bg_v2.gif") no-repeat scroll left bottom transparent;

}

#puzzle_day {
	clear:both;
	padding:0px;
	margin:auto;
}

#puzzle_day .top {
	background:url("images/box_blue_top_e_v2.gif") no-repeat scroll left top transparent;
	height:12px;
	padding:0px;
	margin:0px;
	display:block;
	line-height:1px;
}

#puzzle_day #content {
	padding:15px 30px;
	text-align: left;
	max-width: 500px;
}


#puzzle_day #help{
	color:#060;
	font-weight:bold;
}

#puzzle_day #link-to-puzzles{
	padding-top:15px;
	line-height:20px;
	text-align:center;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:14px;
}

/*.button-orange1 {}

a.button-orange1 {
	padding: 8px 0 10px 22px;
	font-size: 12px !important;
	color: #360000;
	text-decoration: none;
	font-weight: bold;
	background: url(images/button-orange2-left.png) no-repeat top left;
	line-height: 14px;
}

a.button-orange1 span {
	padding: 8px 15px 10px 0;
	background: url(images/button-orange2-right.png) no-repeat top right;
}
		
@media screen and (-webkit-min-device-pixel-ratio:0) {
	#nexts a.button-orange1 {
		line-height: 40px;
	}
}
	
a.button-orange1.secure-pay span {
	padding: 8px 34px 10px 0;
	background: url(img/button-orange2-secure-right.png) no-repeat top right;
}
		
a.button-orange-cart {
	display: block;
	margin: 0 auto !important;
	height: 30px;
	line-height: 27px;
	width: 199px;
	font-weight: bold;
	color: #370000;
	text-align: center;
	font-size: 12px;
	text-decoration: none;
	background: url(img/btn-orange-cart.png) no-repeat top left;
}*/

#google_plusone{
	padding:15px 0;
	text-align:center;
}

#google_plusone h3{
	padding-bottom:10px;
	color:#0088CC;
	text-align:left !important;
	font-size:12px;	
}


#loginbox {
	/*font-family:Arial;*/
    /*background: none repeat scroll 0 0 #F9F9F9;*/
	background: #c6eaff;
    /*border: 1px solid #CCCCCC;*/
    /*border-radius: 5px 5px 5px 5px;*/
    margin: 15px auto;
    padding: 15px 20px;
    max-width: 700px;
	width: 100%;
	text-align:left;
	/*font-size:12px;*/
	color: #001929;
}

#loginbox .title { color:#333; font-weight:bold; font-family:Arial; /*border-bottom:#CCCCCC 1px solid;*/ padding-bottom: 10px; color:#0E5589;}
#loginbox  .fleft { width: 48%; /*border-right: solid 1px #e7e7e7;*/ }
#loginbox .fright { width: 48%; }
#loginbox .fleft .title, #loginbox .fright .title { padding-bottom: 10px; font-size: 26px; font-wright: bold; }
#loginbox .subtitle { /*font-size: 16px;*/ font-weight:bold; }
#loginbox .inputbig { /*font-size: 16px;*/ color: #888; margin: 6px 0; width: 250px; padding: 2px; }
#loginbox .join_button { cursor: pointer; margin: 5px 0; color: #888; overflow: visible; /*font-size: 13px;*/ padding: 2px 8px; vertical-align: middle; font-weight: bold; }
#loginbox #error_label { background: none repeat scroll 0 0 #FFCCCC; border-radius: 3px 3px 3px 3px; color: #CC0000; padding: 8px; margin-right: 40px; }
#loginbox .inputerror { background: #FFEBEB; }
#loginbox ul { margin: 0; padding: 0; /*font-size: 16px;*/ line-height: 1.5em; list-style-type: none; }
#loginbox p { margin: 3px 0 15px; line-height: 1.6em; } 
#loginbox ul { margin: 3px 0 25px; line-height: 1.6em; }
#loginbox ul li { margin-left: 0; }

#loginbox table td{ padding: 6px 0; }
#loginbox .message { color:#0E5589; font-weight:bold; padding-bottom: 0px !important; margin-bottom: 0px;}

#opening-notes {
	/*width:500px;*/
	width: 95%;
	margin: 0 auto;
	margin-top:20px;
}

#opening-notes h2{
	font-size: 16px;
    font-weight: normal;
    margin: 0;
	font-family: "Lucida Grande","Lucida Sans Unicode",helvetica,arial,verdana,sans-serif;
	border-bottom: 3px solid #EEEEEE;
}

#opening-notes #notes-body{
	margin-top: 15px;
}

#opening-notes .create-note{
	/*background-color: #FFFAE7;*/
	background: #001929;
   /* border: 1px solid #CCCCCC;*/
    border-radius: 3px 3px 3px 3px;
   /* box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);*/
    padding: 12px;
    text-align: center;
	color: white;
}

#opening-notes .create-note a{
	font-size:18px;
}

#notes-message {display:none;}
#notes-message h3{
    font-family: "Lucida Grande","Lucida Sans Unicode",helvetica,arial,verdana,sans-serif;
    font-size: 16px;
    font-weight: normal;
    color:#333333 !important;
}

#notes-message a{
	font-size:14px;
}

/*#ecotree{
	font-size:12px;
}*/

#ecotree .line{
	padding-left:5px;
}

#ecotree .opname{
	width:250px;
	float:left;
}

#ecotree .opmoves{
	float:right;
	width:50%;
}

.box_sidebar{/*border:1px solid #CCC;*//*border-radius:14px 14px 14px 14px;*/margin-bottom:10px;overflow:hidden;background:#c6eaff}
.box_sidebar .content{padding:10px}

#inline-supporter{
	/*font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;*/
	font-size: 14px;
	font-weight: normal;
}
#inline-supporter h4{
	font-size: 24px;
	color: #EE3B43;
	text-align: center;
	font-weight: normal;
}

.sdialogButton {
	background-color:#ee3b44;
	border:1px solid #ee3b44;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
}
.sdialogButton:hover {
	background-color:#ee3b44;
}
.sdialogButton:active {
	position:relative;
	top:1px;
}

#mainfull #search_block .lleft{
	width: 400px !important;
}



#mainfull #search_block .right{
	/*width: 400px !important;*/
}

#faq_new {
	width: 100%;
	color: #001929;
}

#faq_new dl dd {
	font-size: 1.4em;
}

#faq_new a {
	color: #104b70;
}

#faq_new dt {
	font-size: 1.4em;
	padding: 10px 0;
}

#faq_new dl:last-child dd {
	font-size: 1.1em;
	margin-bottom: 10px;
}

#faq_new dd p {
	line-height: 1.2em;
}


@media (max-width: 1400px){
	body {
		font-size: 1.2em;
	}
}

@media (max-width: 1200px){
	#puzzle-solving-content-right {
		width: 35%;
	}
}

@media (max-width: 1100px){
    #board_play, #board_play_popup, #div_board_play_search{
            width: 75% !important;
    }
}

@media (max-width: 1000px){
	
	body {
		font-size: 1.5em !important;
	}
	
    #board_play, #board_play_popup, #div_board_play_search{
            width: 65% !important;
    }
    
	.game_list_board, .game_list_moves{
		width: 100% !important;
	}
	
    #divsep100{
            padding-top: 0px !important;
    }
	
	#content label.fright, #content select, #content #eco{
		width: 100% !important;
	}
	#content label span{
		float: left;
		display: block;
		width: 100% !important;
	}
	#table-serach{
		width: 100% !important;
	}
	
	#table_left{
		width: 100% !important;
	}
	#table_right{
		width: 100% !important;
	}
	
	#col-mov, #col-eco, #col-img, #rel_ops{
		display: none;
	}

	.up1000{
		display: none;
	}
	
	#top { width: 300px; position: absolute; top: 146px; left: -300px; z-index: 100; background: white; }
	#ham { position: absolute; top: 0; width: 40px; height: 40px; background: #cc513d url(images3/icon_ham.png) left center no-repeat; position: absolute; left: 100%; display: block; margin-left: -40px; z-index: 101; }
	
	#login_responsive { display: block; width: 100%; font-size: 2em; color: white; background: #55ade3; text-align: center; line-height: 68px;  /*margin-bottom: 20px;*/ vertical-align: middle; height: 68px; }
	#login_responsive a { color: #001929; text-decoration: none; }
	#login_responsive a:hover { color: white; }
	
	#login_area { height: auto; width: 300px; position: absolute; top: 206px; left: -300px; z-index: 99; background: #001929; margin: 0; text-align: center; padding-bottom: 20px; }
	#login_area form label { width: 80%; float: none; }
	#login_area form label+label+label { margin-top: 0; float: none; }
	
	
	
	
	#wrap {
		width: 100%; 
		margin: 0 auto;
	}
	
	#main, #sidebar, #main2, #sidebar2, #article {
		width: 95%!important;
		margin: 0 auto;
		float: none !important;
	}
	
	.GameTextLayer-Popup {
		height: auto !important;
		max-height: 300px;
	}
	
	.board-play-popup {
		min-height: auto !important;
	}
	
	#sidebar.wide_sidebar, #sidebar2.wide_sidebar, #sidebar3.wide_sidebar {
		width: 95%;
	}
	
	#main.wide_main, #main2.wide_main, #main3.wide_main {
		width: 95%;
	}
	
	#mainfull {
		width: 95%;
		margin: 20px auto;
	}
	
	#logo {
		width: 95%;
		margin: 0 auto;
		float: none;
		padding-top: 40px;
	}
	
	#logo img {
		max-width: 20%;
		height: auto !important;
	}

	#logo h2 {
		font-size: 2.4em;
	}

	/* Ricardo - Slider */
	
	.carousel-control { 
		width: 10% !important;
	}

	#carousel_chess .banner_slider {
		width: 100%;
		float: none;
	}
	
	#carousel_chess .banner_slider h2 {
		font-size: 2.2em;
		padding-left: 30px;
		padding-right: 30px;
	}
	
	#carousel_chess .banner_slider p {
		font-size: 1.7em;
		padding-left: 30px;
		padding-right: 30px;
	}
	
	#carousel_chess .banner_slider:last-child h2, #carousel_chess .banner_slider:last-child p {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	#carousel_chess .banner_slider .bt_start {
		display: inline;
		width: auto;
	}
	
	#search_block ul li, #search_block_opening_explorer ul li, #search_block_search_pos ul li {
		font-size: 0.9em;
	}
	
	.fright {
		float: none !important;
	}
	
	#home_news .image{
		width: 10%;
	}
	
	#home_news .text{
		width: 90%;
	}
	
	#footer {
		width: 90%; 
	}
	
	#tabs #fleft {
		float: none;
		text-align: center;
	}
	
	#profile #left_column{
		float: none;
		width: 95%;
		margin: 0 auto;
		text-align: center;
	}
	
	#profile #right_column{
		float: none;
		width: 95%;
		margin: 0 auto;
	}
	
	#puzzles_options .option-2 .fleft {
		width: 100%;
	}

	#puzzles_options .option-2 .fright {
		width: 100%;
	}
	
	.column-a { float: none; }
	.column-b { float: none; }
	.column-c { float: none; }
	.column-d { float: none; }
	
	#puzzle-solving-content-right, #puzzle-solving-content-left {
		width: 100%;
		float: none;
	}
	
	.supporter_button {
		background: #fff;
		border: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		width: 100%;
	}
	
	.supporter_button table {
		width: auto !important;
	}
	
	.supporter_button table input {
		margin-left: 3px !important;
	}
	
	
	#tabnava {
		margin: 20px 0 0 0;
		border-bottom: none;
		height: auto;
	}
	#tabnava li {
		margin: 0;
		padding: 0;
		display: inline;
		list-style-type: none;
	}
	#tabnava a:link, #tabnava a:visited	{
		border-radius: 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		margin-bottom: 5px; 
	}

	.buttons2 li{
		margin-bottom: 5px;
	}
	
	#loginbox fleft, #loginbox fright {
		float: none;
		width: 100%;
	}
	
	#profile #right_column dt, #profile #right_column dd {
		/*float: none;*/
		/*width: 40%;*/
		/*font-size: 1.3em;*/
	}
	
	#puzzle-solving-content-right{
		width: 100%;
		float: none;
	}
	
	#puzzle-solving-content-left{
		width: 100%;
		float: none;
	}
	

	/* Ricardo - Slider End */
	

}

@media (max-width: 700px){
    #signin-right {
		width: 100% !important;
    }
    
    #modal_content_id {
		width: auto !important;
    }

	.sticky-wrapper .__fs-branding{
		display: none !important;
	}
}

@media (max-width: 630px){

	body {
		font-size: 1.3em !important;
	}

	#col-welo, #col-belo, #col-dat, #col-ctry, #col-open, #col-birth, #col-fide, #col-title, #opmoves{
		display: none;
	}
	
	#desktopdiv{
		display: none;
	}
	
	#mobilediv{
		display: block !important;
	}
	
    #board_play, #board_play_popup, #div_board_play_search{
            width: 98% !important;
    }
    
	
	#blname, #wlname{
		width: 150px !important;
	}
	
	#bname, #wname{
		width: 100px !important;
	}
	
	#sidebar3, #main3{
		width: 100% !important;
	}

	#sort_endgames{
		width: 100% !important;
		float: left;
	}
}

@media (max-width: 400px){
	#main, #sidebar, #main2, #sidebar2, #article {
		width: 98%!important;
		margin: 0 auto;
		float: none !important;
	}

	.green_button {button-small
		width: 150px;
	}

	.long_h1 {
		font-size: 18px;
	}
	
	.stable td{
		padding: 7px;
		width: auto !important;
	}

	body {
		font-size: 1.2em !important;
	}

    #col-played {
            display: none;
    }

	#col-tour, #col-bars{
		display: none;
	}
	
	#chart_analysis{
		width: 390px !important;
	}
}

@media (max-width: 330px){
	.stable td{
		padding: 5px;
		width: auto !important;
	}

	body {
		font-size: 1.1em !important;
	}

	#chart_analysis{
		width: 300px !important;
	}
}

/*dropdown*/
ul.dropdown { text-align: left; width: 100%; margin: 0; padding: 0; background:  url(images3/bg_menu.gif) repeat-x; height: 68px; }
ul.dropdown li { display: inline-block !important; margin: 0; padding: 0; }
ul.dropdown li a { display: block; height: 34px; line-height: 34px; padding: 0 15px; }
ul.dropdown li a.arrow_menu { background: url(images3/arrow_menu.png) right center no-repeat; }
/*ul.dropdown li:hover ul.hidesubmenu { display: block; }*/
ul.dropdown li:hover ul { display: block; }
ul.dropdown ul { position: absolute; }
ul.dropdown ul li { height: 34px; background: #001929; overflow: hidden; margin: 0; padding: 0; }							  
ul.dropdown ul li a { background: #001929; height: 34px; }
ul.sub_menu { /*background: #001929;*/ overflow: hidden; margin: 0; padding: 0; }
/*ul.dropdown ul.hidesubmenu { display: none; }*/
ul.dropdown ul { display: none; }

@media (max-width: 1000px){
	ul.dropdown { background: white; color: #001929 !important; width: 100%; height: auto; }
	ul.dropdown li { width: 100%; display: compact !important; border-bottom: 1px solid #d6d6d6; }
	ul.dropdown li a { background: url(images3/arrow.png) right center no-repeat; font-size: 1.5em; display: block; height: auto; line-height: auto; padding: 6px 4%; width: 100%; color: #001929 !important; }
	ul.dropdown li a.arrow_menu { background: none; }
	ul.dropdown li a {  } 
	ul.dropdown ul { margin: 0; width: 100%; position: relative; }
	ul.dropdown ul li { color: #55ade3 !important; background: none; border: none; padding: 0; margin: 0; }							  
	ul.dropdown ul li a { color: #55ade3 !important; background: url(images3/arrow.png) right center no-repeat; padding: 0 0 6px 8%; width: 95%; font-size: 1.3em; }
	
	ul.sub_menu { height: auto; background: none; }
	/*ul.dropdown ul.hidesubmenu { display: block; }*/
	ul.dropdown ul { display: block; }
}

#365chess_rail_right{
	height:auto !important;
	overflow:hidden !important;
}/*
* jQuery UI CSS Framework
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
*/

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
.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:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.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%; }
/* Accordion
----------------------------------*/
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
/* IE7-/Win - Fix extra vertical space in lists */
.ui-accordion a { zoom: 1; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }/* Autocomplete
----------------------------------*/
.ui-autocomplete { position: absolute; cursor: default; }	
.ui-autocomplete-loading { background: white url('css3/images/ui-anim_basic_16x16.gif') right center no-repeat; }

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

/* Menu
----------------------------------*/
.ui-menu {
	list-style:none;
	padding: 2px;
	margin: 0;
	display:block;
}
.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:.2em .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;
}
/* Button
----------------------------------*/

.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; } 
button.ui-button-icons-only { width: 3.7em; } 

/*button text element */
.ui-button .ui-button-text { display: block; line-height: 1.4;  }
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
.ui-button-text-icon .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
input.ui-button { padding: .4em 1em; }

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/
.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */





/* Datepicker
----------------------------------*/
.ui-datepicker { width: 17em; padding: .2em .2em 0; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}/* Dialog
----------------------------------*/
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog . { padding: .5em 1em .3em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: 10px; color: white; } 
.ui-dialog .-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .-close span { display: block; margin: 1px; }
.ui-dialog .-close:hover, .ui-dialog .-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { 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 button { /*float: right; margin: .5em .4em .5em 0;*/ cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; margin: 0 auto; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable . { cursor: move; }
/* Progressbar
----------------------------------*/
.ui-progressbar { height:2em; text-align: left; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable
----------------------------------*/
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider
----------------------------------*/
.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; }/* Tabs
----------------------------------*/
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
/*
* jQuery UI CSS Framework
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* To view and modify this theme, visit http://jqueryui.com/themeroller/
*/


/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
.ui-widget-content { /*border: 1px solid #aaaaaa*//*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui_dialog/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
.ui-widget-content a { color: #222222/*{fcContent}*/; }
.ui-widget-header { /*border: 1px solid #aaaaaa*//*{borderColorHeader}*/; background: #cc513d/*{bgColorHeader}*/ /*url(images/ui_dialog/ui-bg_highlight-soft_75_cccccc_1x100.png)*//*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
.ui-widget-header a { color: #222222/*{fcHeader}*/; margin: 10px; float: right; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui_dialog/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; 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 #999999*//*{borderColorHover}*//*; background: #dadada*//*{bgColorHover}*/ /*url(images/ui_dialog/ui-bg_glass_75_dadada_1x400.png)*//*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui_dialog/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; 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 #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui_dialog/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui_dialog/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
.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(images/ui_dialog/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
.ui-widget-content .ui-icon {background-image: url(images/ui_dialog/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
.ui-widget-header .ui-icon {background-image: url(images/ui_dialog/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
.ui-state-default .ui-icon { background-image: url(images/ui_dialog/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {/*background-image: url(images/ui_dialog/ui-icons_454545_256x240.png)*//*{iconsHover}*//*;*/ }
.ui-state-active .ui-icon {background-image: url(images/ui_dialog/ui-icons_454545_256x240.png)/*{iconsActive}*/; }
.ui-state-highlight .ui-icon {background-image: url(images/ui_dialog/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui_dialog/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }

/* 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-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-right {  -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-all { /*-moz-border-radius: 4px*//*{cornerRadius}*//*; -webkit-border-radius: 4px*//*{cornerRadius}*//*; border-radius: 4px*//*{cornerRadius}*//*;*/ }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui_dialog/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui_dialog/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }



/* ui.theme */ 
/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1em&cornerRadius=4px&bgColorHeader=464646&bgTextureHeader=01_flat.png&bgImgOpacityHeader=100&borderColorHeader=ffffff&fcHeader=ffffff&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=ffffff&fcContent=222222&iconColorContent=222222&bgColorDefault=444444&bgTextureDefault=03_highlight_soft.png&bgImgOpacityDefault=60&borderColorDefault=666666&fcDefault=ffffff&iconColorDefault=888888&bgColorHover=555555&bgTextureHover=03_highlight_soft.png&bgImgOpacityHover=75&borderColorHover=666666&fcHover=ffffff&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=01_flat.png&bgImgOpacityActive=65&borderColorActive=666666&fcActive=F6921E&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
*/


/* MODIFIED TO BE SCOPED TO THE DEMOS PAGE - this prevents the documentation tabs & dialog from changing styles when the Themeroller bookmark is used to reskin demos */


/* Component containers
----------------------------------*/
#widget-docs.ui-widget, 
#demo-dialog.ui-widget { font-family: Trebuchet MS,Verdana,Arial,sans-serif; font-size: 1em; }

#widget-docs.ui-widget input, 
#widget-docs.ui-widget select, 
#widget-docs.ui-widget textarea, 
#widget-docs.ui-widget button,
#demo-dialog.ui-widget input, 
#demo-dialog.ui-widget select, 
#demo-dialog.ui-widget textarea, 
#demo-dialog.ui-widget button { font-family: Trebuchet MS,Verdana,Arial,sans-serif; font-size: 1em; }

#widget-docs .ui-widget-header, 
#demo-dialog .ui-widget-header { border: 1px solid #ffffff; background: #464646 url(images/ui_dialog/464646_40x100_textures_01_flat_100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }

#widget-docs .ui-widget-header a,
#demo-dialog .ui-widget-header a { color: #ffffff; }

#widget-docs .ui-widget-content,
#demo-dialog .ui-widget-content { border: 1px solid #ffffff; background: #ffffff url(images/ui_dialog/ffffff_40x100_textures_01_flat_75.png) 50% 50% repeat-x; color: #222222; }

#widget-docs .ui-widget-content a,
#demo-dialog .ui-widget-content a { color: #222222; }


/* Interaction states
----------------------------------*/
#widget-docs .ui-state-default, 
#widget-docs .ui-widget-content .ui-state-default,
#demo-dialog .ui-state-default, 
#demo-dialog .ui-widget-content .ui-state-default { border: 1px solid #666666; background: #555555 url(images/ui_dialog/555555_40x100_textures_03_highlight_soft_75.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; outline: none; }

#widget-docs .ui-state-default a, 
#demo-dialog .ui-state-default a { color: #ffffff; text-decoration: none; outline: none; }

#widget-docs .ui-state-hover, 
#widget-docs .ui-widget-content .ui-state-hover, 
#widget-docs .ui-state-focus, 
#widget-docs .ui-widget-content .ui-state-focus,
#demo-dialog .ui-state-hover, 
#demo-dialog .ui-widget-content .ui-state-hover, 
#demo-dialog .ui-state-focus, 
#demo-dialog .ui-widget-content .ui-state-focus { border: 1px solid #666666; background: #444444 url(images/ui_dialog/444444_40x100_textures_03_highlight_soft_60.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; outline: none; }

#widget-docs .ui-state-hover a,
#demo-dialog .ui-state-hover a { color: #ffffff; text-decoration: none; outline: none; }

#widget-docs .ui-state-active, 
#widget-docs .ui-widget-content .ui-state-active,
#demo-dialog .ui-state-active, 
#demo-dialog .ui-widget-content .ui-state-active { border: 1px solid #666666; background: #ffffff url(images/ui_dialog/ffffff_40x100_textures_01_flat_65.png) 50% 50% repeat-x; font-weight: normal; color: #F6921E; outline: none; }

#widget-docs .ui-state-active a,
#demo-dialog .ui-state-active a { color: #F6921E; outline: none; text-decoration: none; }


/* Interaction Cues
----------------------------------*/
#widget-docs .ui-state-highlight, 
#widget-docs .ui-widget-content .ui-state-highlight,
#demo-dialog .ui-state-highlight, 
#demo-dialog .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui_dialog/fbf9ee_40x100_textures_02_glass_55.png) 50% 50% repeat-x; color: #363636; }

#widget-docs .ui-state-error, 
#widget-docs .ui-widget-content .ui-state-error, 
#demo-dialog .ui-state-error, 
#demo-dialog .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui_dialog/fef1ec_40x100_textures_05_inset_soft_95.png) 50% bottom repeat-x; color: #cd0a0a; }

#widget-docs .ui-state-error-text, 
#widget-docs .ui-widget-content .ui-state-error-text,
#demo-dialog .ui-state-error-text, 
#demo-dialog .ui-widget-content .ui-state-error-text { color: #cd0a0a; }

#widget-docs .ui-state-disabled, 
#widget-docs .ui-widget-content .ui-state-disabled,
#demo-dialog .ui-state-disabled, 
#demo-dialog .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

#widget-docs .ui-priority-primary, 
#widget-docs .ui-widget-content .ui-priority-primary,
#demo-dialog .ui-priority-primary, 
#demo-dialog .ui-widget-content .ui-priority-primary { font-weight: bold; }

#widget-docs .ui-priority-secondary, 
#widget-docs .ui-widget-content .ui-priority-secondary,
#demo-dialog .ui-priority-secondary, 
#demo-dialog .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }


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

/* states and images */
#demo-frame-wrapper .ui-icon, 
#widget-docs .ui-icon,
#demo-dialog .ui-icon { width: 16px; height: 16px; background-image: url(images/ui_dialog/222222_256x240_icons_icons.png); }

#widget-docs .ui-widget-content .ui-icon, 
#demo-dialog .ui-widget-content .ui-icon {background-image: url(images/ui_dialog/222222_256x240_icons_icons.png); }

#widget-docs .ui-widget-header .ui-icon {background-image: url(images/ui_dialog/222222_256x240_icons_icons.png); }
#demo-dialog .ui-widget-header .ui-icon {background-image: url(images/ui_dialog/ui-icons_aaaaaa_256x240.png); }

#widget-docs .ui-state-default .ui-icon,
#demo-dialog .ui-state-default .ui-icon { background-image: url(images/ui_dialog/888888_256x240_icons_icons.png); }

#widget-docs .ui-state-hover .ui-icon, 
#widget-docs .ui-state-focus .ui-icon,
#demo-dialog .ui-state-hover .ui-icon, 
#demo-dialog .ui-state-focus .ui-icon {background-image: url(images/ui_dialog/454545_256x240_icons_icons.png); }

#demo-dialog .ui-widget-header .ui-state-hover .ui-icon, 
#demo-dialog .ui-widget-header .ui-state-focus .ui-icon {background-image: url(images/ui_dialog/ui-icons_aaaaaa_256x240.png); }

#widget-docs .ui-state-active .ui-icon,
#demo-dialog .ui-state-active .ui-icon {background-image: url(images/ui_dialog/454545_256x240_icons_icons.png); }

#widget-docs .ui-state-highlight .ui-icon,
#demo-dialog .ui-state-highlight .ui-icon {background-image: url(images/ui_dialog/2e83ff_256x240_icons_icons.png); }

#widget-docs .ui-state-error .ui-icon, 
#widget-docs .ui-state-error-text .ui-icon,
#demo-dialog .ui-state-error .ui-icon, 
#demo-dialog .ui-state-error-text .ui-icon {background-image: url(images/ui_dialog/cd0a0a_256x240_icons_icons.png); }


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

/* Corner radius */
#widget-docs .ui-corner-tl,
#demo-dialog .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; }

#widget-docs .ui-corner-tr,
#demo-dialog .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; }

#widget-docs .ui-corner-bl,
#demo-dialog .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; }

#widget-docs .ui-corner-br,
#demo-dialog .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }

#widget-docs .ui-corner-top,
#demo-dialog .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; }

#widget-docs .ui-corner-bottom,
#demo-dialog .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }

#widget-docs .ui-corner-right,
#demo-dialog .ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }

#widget-docs .ui-corner-left,
#demo-dialog .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; }

#widget-docs .ui-corner-all,
#demo-dialog .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; }


/* Overlays */
#widget-docs .ui-widget-overlay,
#demo-dialog .ui-widget-overlay { background: #aaaaaa url(images/ui_dialog/aaaaaa_40x100_textures_01_flat_0.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }

#widget-docs .ui-widget-shadow,
#demo-dialog .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui_dialog/aaaaaa_40x100_textures_01_flat_0.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; }/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
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,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  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 #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    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^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('css3/fonts/glyphicons-halflings-regular.eot');
  src: url('css3/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('css3/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('css3/fonts/glyphicons-halflings-regular.woff') format('woff'), url('css3/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('css3/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "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: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  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;
}
[role="button"] {
  cursor: pointer;
}
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: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 8px;
  margin-bottom: 4px;
}
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%;
}
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: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  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: bold;
}
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';
}
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%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  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;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.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-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  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;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #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: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 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: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  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 {
  min-height: 34px;
  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 {
  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;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #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,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  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,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  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 ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #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 .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  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 {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  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,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.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 {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  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:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  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:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  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:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  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.3333333;
  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-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  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: normal;
  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: #337ab7;
  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 dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@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 + .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,
.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:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-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-left-radius: 4px;
  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-right-radius: 4px;
  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-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.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.3333333;
  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: normal;
  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 {
  z-index: 2;
  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: #337ab7;
}
.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: #337ab7;
}
.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-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  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-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 .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.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 {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  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;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #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: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.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: #9d9d9d;
  }
  .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: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.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: #337ab7;
  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 {
  z-index: 2;
  color: #23527c;
  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: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.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;
  line-height: 1.3333333;
}
.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;
  line-height: 1.5;
}
.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: bold;
  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: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.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: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 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,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .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: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .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: #337ab7;
}
.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: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  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: #337ab7;
  -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-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 {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  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;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  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: #337ab7;
  border-color: #337ab7;
}
.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: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.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,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.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,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.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,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.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,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > 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,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.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,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 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,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-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,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  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,
.panel-group .panel-heading + .panel-collapse > .list-group {
  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: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.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,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #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: bold;
  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: transparent;
  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: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #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 {
  padding: 10px;
  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-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.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;
  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 {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  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);

  line-break: auto;
}
.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;
  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;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  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;
  margin-top: -10px;
}
.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;
  font-family: serif;
  line-height: 1;
}
.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: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .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-header:before,
.modal-header: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-header: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;*/
  display: none;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  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 !important;
  }
  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 !important;
  }
  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 !important;
  }
  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 !important;
  }
  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;
  }
}
/*# sourceMappingURL=bootstrap.css.map */
/*!
 * chessboard.js v0.3.0
 *
 * Copyright 2013 Chris Oakman
 * Released under the MIT license
 * https://github.com/oakmac/chessboardjs/blob/master/LICENSE
 *
 * Date: 10 Aug 2013
 */

/* clearfix */
.clearfix-7da63 {
  clear: both;
}

/* board */
.board-b72b1 {
  border: 2px solid #404040;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* square */
.square-55d63 {
  float: left;
  position: relative;

  /* disable any native browser highlighting */
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

/* 1 white square */
.white-1e1d9 {
  background-color: #EEEEEE;
  color: #7186B8;
}
/* 1 black square */
.black-1e1c4 {
  background-color: #7186B8;
  color: #EEEEEE;
}

/* 2 white square */
.white-1e1d7 {
  background-color: #f0d9b5;
  color: #b58863;
}
/* 2 black square */
.black-3c85d {
  background-color: #b58863;
  color: #f0d9b5;
}

/* 3 white square */
.white-1ee35 {
  background-color: #F8D7B0;
  color: #B55A31;
}
/* 3 black square */
.black-3ce35 {
  background-color: #B55A31;
  color: #F8D7B0;
}

/* 4 white square */
.white-d4e35 {
  background-color: #EEEED2;
  color: #478943;
}
/* 4 black square */
.black-d4e35 {
  background-color: #478943;
  color: #EEEED2;
}

/* 5 white square */
.white-d5e35 {
  background-color: #EFEFEF;
  color: #ABABAB;
}
/* 5 black square */
.black-d5e35 {
  background-color: #ABABAB;
  color: #EFEFEF;
}

/* 6 white square */
.white-d4b35 {
  background-color: #ECECD7;
  color: #8BA4C2;
}
/* 6 black square */
.black-d4b35 {
  background-color: #8BA4C2;
  color: #ECECD7;
}

/* 7 white square */
.white-d4c21 {
  background-color: #FFFFFF;
  color: #888899;
}
/* 7 black square */
.black-d4c21 {
  background-color: #888899;
  color: #FFFFFF;
}

/* 8 white square */
.white-c1121 {
  background-color: #F8D7B0;
  color: #B55A31;
  background-image: url(images/board/wood/60/w.png);
}
/* 8 black square */
.black-c1121 {
  background-color: #B55A31;
  color: #F8D7B0;
  background-image: url(images/board/wood/60/b.png);
}

/* 9 white square */
.white-c3321 {
  background-color: #F3D8B8;
  color: #9F7B61;
  background-image: url(images/board/marblebrown/60/w.png);
}
/* 9 black square */
.black-c3321 {
  background-color: #9F7B61;
  color: #F3D8B8;
  background-image: url(images/board/marblebrown/60/b.png);
}

/* 10 white square */
.white-c9921 {
  background-color: #E2DFE6;
  color: #478943;
  background-image: url(images/board/marblegreen/60/w.png);
}
/* 10 black square */
.black-c9921 {
  background-color: #478943;
  color: #E2DFE6;
  background-image: url(images/board/marblegreen/60/b.png);
}

/* 11 white square */
.white-c8821 {
  background-color: #B0B1B7;
  color: #696F74;
  background-image: url(images/board/metal/60/w.png);
}
/* 11 black square */
.black-c8821 {
  background-color: #696F74;
  color: #B0B1B7;
  background-image: url(images/board/metal/60/b.png);
}

/* highlighted square */
.highlight1-32417, .highlight2-9c5d2 {
  -webkit-box-shadow: inset 0 0 3px 3px yellow;
  -moz-box-shadow: inset 0 0 3px 3px yellow;
  box-shadow: inset 0 0 3px 3px yellow;
}

/* notation */
.notation-322f9 {
  cursor: default;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  position: absolute;
  color: #666666;
}
.alpha-d2270 {
  bottom: -22px;
  right: 3px;
}
.numeric-fc462 {
  top: 2px;
  left: -12px;
}
.spare-pieces-bottom-ae20f {
  padding-top: 12px;
}.treeview, .treeview ul { 
	padding: 0;
	margin: 0;
	list-style: none;
}

.treeview ul {
	background-color: white;
	margin-top: 4px;
}

.treeview .hitarea {
	background: url(scripts/jquery.treeview/images/treeview-default.gif) -64px -25px no-repeat;
	height: 16px;
	width: 16px;
	margin-left: -16px;
	float: left;
	cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
	display: inline;
	float:none;
}

.treeview li { 
	margin: 0;
	padding: 3px 0pt 3px 16px;
}

.treeview a.selected {
	background-color: #eee;
}

#treecontrol { margin: 1em 0; display: none; }

.treeview .hover { color: red; cursor: pointer; }

.treeview li { background: url(scripts/jquery.treeview/images/treeview-default-line.gif) 0 0 no-repeat; }
.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; }

.treeview .expandable-hitarea { background-position: -80px -3px; }

.treeview li.last { background-position: 0 -1766px }
.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(scripts/jquery.treeview/images/treeview-default.gif); }  
.treeview li.lastCollapsable { background-position: 0 -111px }
.treeview li.lastExpandable { background-position: -32px -67px }

.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }

.treeview-red li { background-image: url(scripts/jquery.treeview/images/treeview-red-line.gif); }
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(scripts/jquery.treeview/images/treeview-red.gif); } 

.treeview-black li { background-image: url(scripts/jquery.treeview/images/treeview-black-line.gif); }
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(scripts/jquery.treeview/images/treeview-black.gif); }  

.treeview-gray li { background-image: url(scripts/jquery.treeview/images/treeview-gray-line.gif); }
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(scripts/jquery.treeview/images/treeview-gray.gif); } 

.treeview-famfamfam li { background-image: url(scripts/jquery.treeview/images/treeview-famfamfam-line.gif); }
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(scripts/jquery.treeview/images/treeview-famfamfam.gif); } 


.filetree li { padding: 3px 0 2px 16px; }
.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; }
.filetree span.folder { background: url(scripts/jquery.treeview/images/folder.gif) 0 0 no-repeat; }
.filetree li.expandable span.folder { background: url(scripts/jquery.treeview/images/folder-closed.gif) 0 0 no-repeat; }
.filetree span.file { background: url(scripts/jquery.treeview/images/file.gif) 0 0 no-repeat; }
