
/* ------ DEFAULTS ------ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{
	display: block;
}

table{
	border-spacing: 0;
	border-collapse: collapse;
}

h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}

a{
	text-decoration: none;
}

nav li{
	list-style-type: none;
	display: inline-block;
}

/* ------ GLOBAL ------ */

html, body {
	height: 100%;
}

section{
	min-height: 100%;	
	max-width: 960px;
}



.clear{
	clear: both;
}

.clearfix{
	clear: both;
	overflow: hidden;
}

.spacer{
	clear: both;
	height: 40px;
}

.ib{
	display: inline-block;
}

.ab{
	position: absolute;
}

.caps{
	text-transform: uppercase;
}

.left{
	float: left;
}

.right{
	float: right;
}

.hidden{
	visibility: hidden;
}

.trans{
	opacity: 0;
}

.break{
	width: 100%;
	height: 0;
	margin: 0;
}

.wf{
	-webkit-transform: translate3d(0,0,0);
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

.ns{
	-webkit-user-select: none;
	-moz-user-select: none;
  	user-select: none;
}

.just{
	text-align: justify;
}

.just::after{
	content: '';
	display: inline-block;
	width: 100%;
	height: 0;
}

.anim150{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.anim250{
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}



body{
	background: #fff;
	font-family: 'Source Sans Pro', sans-serif;
}

.wrapper{
	margin:auto;
	max-width: 900px;
	margin-left: 30px;
}

#winners{
	margin-bottom: 10px;
}

/* CONTROLS STYLES */

.controls{
	height: 100px;
	line-height: 100px;
}

.group{
	display: inline-block;
}

.button,
.drop_down{
	display: inline-block;
	width: 107px;
	height: 31px;
	line-height: 30px;
	padding: 0 8px;
	background: #c3bdb8;
	vertical-align: middle;
	margin-right: 10px;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.drop_down{
	width: auto;
	margin: 0 0 0 20px;
	background: none;
	color: #c3bdb8;
	padding: 0;
	position: relative;
	letter-spacing: 2px;
	z-index: 999;
}

.drop_down span{
	position: relative;
	padding-right: 20px;
}

.drop_down span::after,
.drop_down span::before{
	position: absolute;
	top: 8px;
	right: 3px;
	display: block;
	content: '';
	border: 6px solid transparent;
	border-top: 7px solid #c3bdb8;
}

.drop_down span::before{
	top: 6px;
	border-top-color: #fff;
	z-index: 10;
}

.drop_down:hover span::after{
	border-top-color: #333;
}

.drop_down ul{
	position: absolute;
	opacity: 0;
	max-height: 0;
	right: -3px;
	background: #fff;
	padding: 10px;
	min-width: 140px;
	text-align: right;
	overflow: hidden;
	
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.drop_down:hover ul{
	opacity: 1;
	max-height: 500px;
}

.drop_down:hover span{
	color: #333;
}

.drop_down li{
	display: block;
	text-transform: none;
	color: #808080;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom: 10px;
	
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	-ms-transition: all 150ms;
	transition: all 150ms;
}

.drop_down li:after{
	content: '';
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	top: 1px;
	margin-left: 6px;
	border: 1px solid #ccc;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.drop_down li:last-of-type{
	margin: 0;
}

.drop_down li:hover{
	color: #59514c;
}

.drop_down li.active{
	color: #e96d51;
	font-weight: 400;
}

.drop_down li.active:after{
	background: #e96d51;
	border-color: #e96d51;
}

.button.active{
	background: #e96d51;
}

.button i{
	position: relative;
	display: inline-block;
	background: #fff;
	width: 17px;
	height: 17px;
	margin-right: 8px;
	top: 3px;
}

.button i:before,
.button i:after{
	content: '';
	position: absolute;
	display: block;
	background: #c3bdb8;
}

#ToGrid i:before,
#ToGrid i:after{
	width: 100%;
	height: 3px;
	top: 7px;
}

#ToGrid i:after{
	width: 3px;
	height: 100%;
	top: 0;
	left: 7px;
}

#ToList i:before,
#ToList i:after{
	width: 100%;
	height: 4px;
	top: 3px;
}

#ToList i:after{
	top: 10px;
}

.button.active i:before,
.button.active i:after{
	background: #e96d51;
}

/* FAIL ELEMENT */

#winners{
	position: relative;
}

.fail_element{
	position: absolute;
	opacity: 0;
	top: 100px;
	text-align: center;
	width: 50%;
	left: 25%;
	line-height: 1.4;
	font-size: 30px;
	font-weight: 300;
}

.fail .fail_element{
	opacity: 1;
}

/* LIST VIEW STYLES */


#winners.list .list_header{
	height: 38px;
	line-height: 38px;
	background: #f9f9f9;
	text-align: right;
	color: #59514c;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#winners.list .meta{
	display: inline-block;
	width: 205px;
	text-align: center;
	line-height: 99px;
	border-left: 1px solid #d7d7d7;
	height: 100%;
	vertical-align: top;
}

#winners.list .list_header .meta{
	line-height: 38px;
	border: 0 none;
}

#winners.list .meta.name{
	float: left;
	text-align: left;
	width: auto;
	border-left: 0 none;
}
#winners.list .meta.year{
	width: 100px;
}
#winners.list .meta.rank{
	width: 100px;
}
#winners.list .meta.rec{
	width: 120px;
}
	
#winners.list .list_header .meta.name{
	padding-left: 15px;
}

#winners.list .list_header .meta span{
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 7px 0 0;
	cursor: pointer;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#winners.list .list_header .meta span:after{
	content: '';
	position: absolute;
	top: 9px;
	left: 7px;
	border: 5px solid transparent;
}

#winners.list .list_header .meta span.asc:after{
	border-top: 7px solid #c3bdb8;
}

#winners.list .list_header .meta span.desc:after{
	top: 4px;
	border-bottom: 7px solid #c3bdb8;
}

#winners.list .list_header .meta span:hover{
	background: #c3bdb8;
}

#winners.list .list_header .meta span.asc:hover:after{
	border-top-color: #f0ebe5;
}

#winners.list .list_header .meta span.desc:hover:after{
	border-bottom-color: #f0ebe5;
}

#winners.list .list_header .meta span.active.asc:after{
	border-top-color: #e96d51;
}

#winners.list .list_header .meta span.active.desc:after{
	border-bottom-color: #e96d51;
}


#winners.list .mix{
	display: none;
	opacity: 0;
	padding: 18px 0 14px;
	border-bottom: 1px solid #d7d7d7;
	text-align: right;
	height: 135px;
	width: 100%;
	line-height: 99px;
	background: #fff;
	vertical-align: top;
	font-weight: 300;
}

#winners.list .mix .meta *{
	line-height: 1;
}

#winners.list .mix .meta p,
#winners.list .mix .meta ul{
	display: inline-block;
	vertical-align: middle;
	list-style: none;
}

#winners.list .mix .meta li{
	margin-bottom: 5px;
}

#winners.list .titles{
	display: block;
	vertical-align: middle;
	max-width: 520px;
}
#winners.list .titles h2{
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
	color: #47a497;
	letter-spacing: 2px;
	margin-bottom: 3px;
	line-height: 1.2 !important;
/*	padding-top: 20px;*/
	max-width: 520px;
}

#winners.list .titles p{
	margin-left: 15px;
}

#winners.list .titles h2{
	margin-left: 15px;
}

#winners.list .titles .cate-type{
	color: #47a497;
	font-weight: bolder;
}
#winners.list .more{
	margin-top: 8px;
	cursor: pointer;
	color: #000;
}
.more{
	font-weight: 400;
}
#winners.grid .more{
	font-weight: 400;
}

/* GRID VIEW STYLES */

#winners.grid{
	text-align: justify;
}

#winners.grid .list_header,
#winners.grid .meta{
	display: none;
}

#winners.grid .meta.name{
	position: absolute;
	width: 100%;
	top: 0;
	display: block;
}

#winners.grid .mix{
	display: none;
	opacity: 0;
	position: relative;
	width: 20%;
	padding-top: 20%;
	margin-bottom: 3%;
	background: #f9f9f9;
	height: 170px;
/*	margin-right: 2.5%;
	margin-left: 2.5%;*/
}
#winners.grid .gap{
	display: inline-block;
	width: 20%;
}
#winners.grid .titles{
	position: relative;
	width: 90%;
	max-width: 250px;
	height: auto;
	margin-top: 75%;
	margin: 53.5% auto 0;
	top: -80px;
	padding: 10px 0;
	/*background: #fff;*/
	/*background: rgba(255,255,255,.8);*/
	background: #f9f9f9;
	text-align: center;
}

#winners.grid .titles h2{
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
	color: #47a497;
	letter-spacing: 2px;
	margin-bottom: 3px;
}

#winners.grid .titles p{
	font-weight: 400;
	text-indent: -2px;
}

#winners.grid .more{
	cursor: pointer;
}
.cate-type{
	color: #47a497;
}
#winners.grid .titles p em{
	display: none;
}


.hidden{
	display: none;
}
.gap{
	list-style: none;
}

.div_more{
	z-index: 9999;
	position: absolute;
	background-color: #fff;
	border: 1px solid #D1C9C2; 
	width: 648px; 
	margin-top: 10px;
	padding:  7px 15px; 
	text-align: left; 
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
	box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.more_info{
	float: left;
	width: 280px;
	padding-top: 15px;
}
img{
	/*float: left;*/
	padding-top: 15px;
	cursor: pointer;
}
.more_img{
	float: left;
	margin: 0;
	width: 350px;
}
.div_more.grid{
	width: 370px;
}
.div_more.grid.right_most{
	margin-left: -210px;
	width: 370px;
}
.div_more.grid .more_info{
	float: left;
	width: 350px;
	padding-left: 15px;
}
#filterBy{
	display: inline-block;
	color: #c3bdb8;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.p_click{
	float: left;
	font-size: 10px;
	color:#777;
}
.othertitle, .titless {
	border-bottom: 1px solid #efefef;
}
#winners.list .mix.provider .titles h2{
	color: #53697a;
}

#winners.list .mix.provider .titles .cate-type{
	color: #53697a;
}
#winners.list .mix.sponsor .titles h2{
	color: #47a497;
}
#winners.grid .mix.provider .titles h2{
	color: #53697a;
}
#winners.grid .mix.provider .titles .cate-type{
	color: #53697a;
}
#winners.grid .mix.sponsor .titles h2{
	color: #47a497;
}

#winners.grid .mix.sponsor .titles h2.highlight{
	color: #993300;
}
#winners.grid .mix.sponsor .titles .cate-type.highlight{
	color: #993300;
}
#winners.list .mix.sponsor .titles h2.highlight{
	color: #993300;
}
#winners.list .mix.sponsor .titles .cate-type.highlight{
	color: #993300;
}
#winners.grid .mix.provider .titles h2.highlight{
	color: #993300;
}
#winners.grid .mix.provider .titles .cate-type.highlight{
	color: #993300;
}
#winners.list .mix.provider .titles h2.highlight{
	color: #993300;
}
#winners.list .mix.provider .titles .cate-type.highlight{
	color: #993300;
}