/* --- RESET --- */

select,
.dropdown,.dropdown2{
	margin-bottom: 30px;
	display: inline-block; float: left;
}

.dropdown,.dropdown2{
	margin-right: 8px;
}


pre.prettyprint{background:#141414;color:#f8f8f8;}
pre.prettyprint span.str,pre.prettyprint span.atv{color:#8f9d6a;}
pre.prettyprint span.kwd,pre.prettyprint span.pun{color:#cda869;}
pre.prettyprint span.com{color:#5f5a60;font-style:italic;}
pre.prettyprint span.typ{color:#9b703f;}
pre.prettyprint span.lit{color:#cf6a4c;}
pre.prettyprint span.pln{color:#7587a6;}
pre.prettyprint span.tag{color:#ac885b;}
pre.prettyprint span.atn{color:#e0c589;}
pre.prettyprint span.dec{color:#494949;}
pre.prettyprint{
	border: 0 none !important;
	background: transparent !important;
}



/* --- DEMO METRO THEME --- */

/* PREFIXED CSS */

.metro,
.metro div,
.metro li,
.metro div::after,
.metro .carat,
.metro .carat:after,
.metro .selected::after,
.metro:after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.metro .selected::after,
.metro.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.metro{
	position: relative;
	width: 49%;
	cursor: pointer;
	margin-bottom: 30px;
	font-weight: 200;
	background: #fff;
	border:1px solid #333333;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	float: left;
}
.metro:nth-child(2){
	float: right;
}
.metro.open{
	z-index: 2;
}

.metro:hover{
	background: #f4f4f4;
}

.metro:after{
	content: '';
	position: absolute;
	right: 3px;
	bottom: 15px;
	top: 15px;
	width: 100px;
	border-left: 1px solid #666;
	background: transparent;
}

.metro.focus:after{
	/*background: #0180d1;*/
}

/* CARAT */

.metro .carat,
.metro .carat:after{
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -4px;
	border: 8px solid transparent;
	border-top: 8px solid #000;
	z-index: 2;

	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50% 20%;
	-ms-transform-origin: 50% 20%;
	transform-origin: 50% 20%;

}

.metro .carat:after{
	margin-top: -10px;
	right: -8px;
	border-top-color: #f8f8f8;
}

.metro:hover .carat:after{
	border-top-color: #f4f4f4;
}

.metro.focus .carat{
	border-top-color: #f8f8f8;
}

.metro.focus .carat:after{
	border-top-color: #0180d1;
}

.metro.open .carat{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* OLD SELECT (HIDDEN) */

.metro .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.metro select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.metro.touch select{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */

.metro .selected,
.metro li{
	display: block;/*width: 82%;*/ vertical-align: middle; text-align: left;
	font-size: 18px; color: #666666;
	line-height: 1;
	padding: 15px 18% 15px 12px;
	overflow: hidden;
	white-space: nowrap;
}
.logined .metro{
	position: relative;
	width: 30%;
	margin-right: 22px;
	float: left;
}
.logined .metro .selected,
.logined .metro li{
	padding: 15px 8% 15px 12px;
	font-size: 18px;
}

.logined .metro:after{
	width: 70px;
}

/* CARAT */

.logined .metro .carat,
.logined .metro .carat:after{
	/*right: 40px;
	top: 50%;
	margin-top: -4px;*/

}
/*.metro .selected {
	width: 82%;
}*/
.metro .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;

	border-radius: 0 2px 2px 0;
	/*box-shadow: inset -55px 0 25px -20px #f8f8f8;*/
}

.metro:hover .selected::after{
	box-shadow: inset -55px 0 25px -20px #f4f4f4;
}

/* DROP DOWN WRAPPER */

.metro div{
	position: absolute;
	height: 0;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: -1px;
	background: #f8f8f8;
	overflow: hidden;
	opacity: 0;
}

.metro:hover div{
	background: #f4f4f4;
}

/* Height is adjusted by JS on open */

.metro.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.metro.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;

	box-shadow: inset 0 -50px 30px -35px #f8f8f8;
}

.metro.scrollable:hover div::after{
	box-shadow: inset 0 -50px 30px -35px #f4f4f4;
}

.metro.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.metro ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	border:1px solid #666;
	box-shadow: 0 5px 5px rgba(0,0,0,.5);
}

.metro.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.metro li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.metro li.focus{
	background: #0180d1;
	position: relative;
	z-index: 3;
	color: #fff;
}

.metro li.active{
	background: #0180d1;
	color: #fff;
}


/* --- DEMO metro_news THEME --- */

/* PREFIXED CSS */

.metro_news,
.metro_news div,
.metro_news li,
.metro_news div::after,
.metro_news .carat,
.metro_news .carat:after,
.metro_news .selected::after,
.metro_news:after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.metro_news .selected::after,
.metro_news.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.metro_news{
	position: relative;
	width: 172px;
	cursor: pointer;
	margin-bottom: 30px;
	font-weight: 200;
	background: #fff;
	border:1px solid #cccccc;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	float: left;
}
.metro_news:nth-child(2){
	float: right;
}
.metro_news.open{
	z-index: 2;
}

.metro_news:hover{
	background: #f4f4f4;
}

.metro_news:after{
	content: '';
	position: absolute;
	right: 3px;
	bottom: 15px;
	top: 15px;
	width: 40px;
	border-left: 1px solid #cccccc;
	background: transparent;
}

.metro_news.focus:after{
	/*background: #0180d1;*/
}

/* CARAT */

.metro_news .carat,
.metro_news .carat:after{
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -4px;
	border: 8px solid transparent;
	border-top: 8px solid #cccccc;
	z-index: 2;

	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50% 20%;
	-ms-transform-origin: 50% 20%;
	transform-origin: 50% 20%;

}
.metro_news .carat:after{
	margin-top: -10px;
	right: -8px;
	border-top-color: #f8f8f8;
}

.metro_news:hover .carat:after{
	border-top-color: #f4f4f4;
}

.metro_news.focus .carat{
	border-top-color: #f8f8f8;
}

.metro_news.focus .carat:after{
	border-top-color: #0180d1;
}

.metro_news.open .carat{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* OLD SELECT (HIDDEN) */

.metro_news .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.metro_news select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.metro_news.touch select{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */



.metro_news .selected,
.metro_news li{
	display: block;/*width: 82%;*/ vertical-align: middle; text-align: center;
	font-size: 24px; color: #999999;
	line-height: 1;
	padding: 10px 0 10px 0;
	overflow: hidden;
	white-space: nowrap;
}
/*.metro_news .selected {
	width: 82%;
}*/
.metro_news .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;

	border-radius: 0 2px 2px 0;
	/*box-shadow: inset -55px 0 25px -20px #f8f8f8;*/
}

.metro_news:hover .selected::after{
	/*box-shadow: inset -55px 0 25px -20px #f4f4f4;*/
}

/* DROP DOWN WRAPPER */

.metro_news div{
	position: absolute;
	height: 0;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: -1px;
	background: #f8f8f8;
	overflow: hidden;
	opacity: 0;
}

.metro_news:hover div{
	background: #f4f4f4;
}

/* Height is adjusted by JS on open */

.metro_news.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.metro_news.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;

	/*box-shadow: inset 0 -50px 30px -35px #f8f8f8;*/
}

.metro_news.scrollable:hover div::after{
	box-shadow: inset 0 -50px 30px -35px #f4f4f4;
}

.metro_news.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.metro_news ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}

.metro_news.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.metro_news li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.metro_news li.focus{
	background: #0180d1;
	position: relative;
	z-index: 3;
	color: #fff;
}

.metro_news li.active{
	background: #0180d1;
	color: #fff;
}

@media screen and (min-width: 1403px) and (max-width: 1600px) {

}
@media screen and (min-width: 1200px) and (max-width: 1402px) {

	.metro .selected,
	.metro li{
		font-size: 14px!important;
		padding: 15px 18% 15px 15px!important;text-align: left;
	}

}
@media screen and (min-width: 1000px) and (max-width: 1199px) {

	.metro .selected,
	.metro li{
		font-size: 14px!important;
		padding: 15px 18% 15px 15px!important;text-align: left;
	}
	/*.metro .selected {
        width: 82%;
    }*/

}
@media screen and (max-width: 999px){

	.metro .selected,
	.metro li{
		font-size: 14px!important;
		padding: 15px 18% 15px 6px!important;text-align: left;
	}
}