/* @override /wp-content/themes/c77_awards/style.css */


/* @override 
	http://clients.smny.us/core77/wp-content/themes/c77_awards/style.css
	/wp-content/themes/c77_awards/style.css
*/

/*
Theme Name: 2011 Core77 Design Awards
Theme URI: http://base.smny.us
Description: 2011 Core77 Design Awards
Author: Studio Mercury
Version: 1.0
*/

/* @group bolerplate */

/* 
Reset default browser CSS. 
Based on work by Eric Meyer: 
http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}        

/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; }

h1 { font-size: 33px; line-height: 1; }
h2 { font-size: 19px; }
h3 { font-size: 15px; line-height: 18px;  }
h4 { font-size: 12px; line-height: 14px;  }
h5 { font-size: 11px; }
h6 { font-size: 12px; line-height: 14px; }

h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}       

h4 p {
  padding-bottom: 5px;
  padding-top: 5px;
}       

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

nav ul { list-style:none; }

blockquote, q { quotes:none; }

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

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; text-decoration: none; color: #cd6033; color: inherit;  }

a, a:active, a:visited { font-size:100%; vertical-align:baseline; background:transparent; text-decoration: none; color: #cd6033; color: inherit;  }

a:hover { color: #cd6033; -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;}

p a { color: #cd6033 !important;}

ins { background-color:#cd6033; color: #fff; text-decoration:none; }

mark { background-color: #cd6033; color: #fff; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; border-top: 1px dotted #919191; margin-top: 10px; margin-bottom: 10px; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% sans-serif; }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { 
	font-family: 'DroidSansRegular'; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color: #333}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { }
a:hover { }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; }

small { font-size:85%; }
strong, th { font-family: 'DroidSansBold'; font-weight: normal; font-style: normal; }

td, td img { vertical-align:top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background:rgba(0,0,0,.40); text-shadow: none;  }
::selection { background:rgba(0,0,0,.40); text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #333; } 


/* always force a scrollbar in non-IE 
html { overflow-y: scroll; }
*/

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999em; overflow:hidden; background-repeat: no-repeat; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }




/* 
   Primary Styles
   Author: Studio Mercury
		   for standard wordpress installs
*/

.clickable { cursor:  hand; cursor: pointer;}


/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none; }

  a, a:visited { !important; text-decoration: none; }

  a:after { content: " (" attr(href) ")"; } 

  abbr:after { content: " (" attr(title) ")"; }
  
  .ir a:after { content: ""; }  /* Don't show links for images */
  
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  
  img { page-break-inside: avoid; }

  @page { margin: 0.5cm; }

  p, h2, h3 { orphans: 3; widows: 3; }

  h2, h3{ page-break-after: avoid; }
}



/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  /* Prevent iOS, WinMobile from adjusting font size */
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } 
  
}

/* @end */



@font-face {
    font-family: 'DroidSansBold';
    src: url('webfonts/droidsans-bold-webfont.eot');
    src: url('webfonts/droidsans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('webfonts/droidsans-bold-webfont.woff') format('woff'),
         url('webfonts/droidsans-bold-webfont.ttf') format('truetype'),
         url('webfonts/droidsans-bold-webfont.svg#DroidSansBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'DroidSansRegular';
    src: url('webfonts/droidsans-webfont.eot');
    src: url('webfonts/droidsans-webfont.eot?#iefix') format('embedded-opentype'),
         url('webfonts/droidsans-webfont.woff') format('woff'),
         url('webfonts/droidsans-webfont.ttf') format('truetype'),
         url('webfonts/droidsans-webfont.svg#DroidSansRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
	font-family: 'Dutch801';
	src: url('webfonts/dutch801.eot');
	src: url('webfonts/dutch801.eot?#iefix') format('embedded-opentype'),
		url('webfonts/dutch801.woff') format('woff'),
		url('webfonts/dutch801.ttf') format('truetype'),
		url('webfonts/dutch801.svg#Dutch801BT-RomanHeadline') format('svg');
}




/* 
   WORDPRESS TEMPLATE STYLES
   Author: Studio Mercury
*/


html {
	background-color: #343535;
}

body{
	margin: auto;
	font-family: 'DroidSansRegular';
	color: #fff;
}


div#container{
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

label {
	font: 10px 'DroidSansBold';
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #b4b4b4;
	cursor: default;
}

hr {
	border: none;
	border-bottom: 1px dotted #919191;
}

.border-right {
	border-right: 1px dotted #919191;
}

.close {
	float: right;
	width: 20px;
	height: 20px;
	background-image: url(images/close.png);
	margin-top: -10px;
	margin-right: -10px;
}

a.white { color: #fff; }
a.white:hover { color: #919191; }

a { color: inherit; }

.serif {
	font-family: 'Dutch801';
}


/* @group navigation */

header {
	width: 100%;
	float: left;
	padding-top: 15px;
	padding-bottom: 25px;
	position: relative;
	z-index: 9999999 !important;
}

#main {
	float: left;
	width: 100%;
	padding-top: 50px;
	padding-bottom:50px;
}

#main.main-home {
	padding: 0px 0px 50px;
}

#c77-logo a {
	background-image: url(images/logo.png);
	float: left;
	width: 410px;
	height: 30px;
}

#navigation ul {
	float: right;
	list-style-type: none;
	margin:0;
	z-index: 10 !important;
}

#navigation ul li.navigation-item{
	float: left;
	text-transform: uppercase;
	font: 11px 'DroidSansBold';
	letter-spacing: 1px;
	color: #feffff;
}

a.front-awards-button {
	border: none !important;
	color: #fff;
	height: 25px;
	background: url(images/home-awards-arrow.png) no-repeat;
	cursor: default !imporant;
}

.navigation-item-home a {
	background-color: #fff !important;
	color: #cd6033;
}


#navigation ul li.navigation-item > a {
	padding: 5px;
	float: left;
	cursor: hand;
	cursor: pointer;
	margin-right: 9px;
	background-color: #343535;
	border: 1px solid #919191;
}

#navigation ul li.navigation-item a.active {
	color: #cd6033;
}

#navigation ul.subnavigation, #navigation ul.home-subnavigation{
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0;
}

.remindme{
	cursor: hand;
	cursor: pointer;
	font-size: 10px;
	margin-left: 5px;
}

.remindme a {
	float: right;
	padding-right: 15px;
}

ul.home-subnavigation {
	text-align: center;
	padding-top: 20px !important;
	margin-top: 15px !important;
	border-bottom: 1px dotted #919191;
}

#home-nav-spacer{
	display: block;
	height: 250px;
	width: 10px;
}

#navigation ul.subnavigation{
	display: none;
	z-index:999;
	background-color: #343535;
	width: 94%;
	border-bottom: 1px #919191 solid;
	padding: 40px 2% 10px 3%;
}

ul.subnavigation li, ul.home-subnavigation li{
	width: 33%;
	float: left;
	letter-spacing: 0px;
	text-transform: none;
	position: relative;
	font-family: 'DroidSansRegular';
	overflow: hidden;
}

.nav-column-item{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-bottom:5px;
	border: 1px solid #3f4242;
	width: 95%;
	text-align: left;
}

.nav-award-bar {
	position: absolute;
	width: 0px;
	height: 100%;
	background-color: #4c4d4d;
	z-index:-1;
}

.nav-award-title {
	font-size: 13px;
	text-transform: uppercase;
	padding: 5px 5px 5px 10px;
}

.nav-award-alt {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index:1000;
	top: 0;
	background-color: black;
}

.nav-award-alt-inner {
	padding: 5px 5px 5px 10px;
	text-transform: uppercase;
	font-size: 13px;
	color: #fffefe;
	background-color: #191919;
	font-family: 'DroidSansBold';
}

.nav-award-alt-inner a{
	display: block;
}

.nav-award-alt-inner a:hover{
	color: #fffefe;
}

.timer {
	padding-left: 15px;
}

/* @end */



/* @group Live Broadcast */

.live-broadcast {
	width: 1024px;
	height: 525px;
	z-index: 999;
	text-align: center;
	background-color: rgba(0,0,0,0.65);
}

.live-twitter-update {
	float: left;
	font-size: 14px;
	float:left;
	width: 800px;
	text-align: left;
	margin-left: 15px ;
	color: white !important;
	text-transform: none !important;
	font-family: 'DroidSansRegular';
}

.live-twitter-title {
    font-family: 'DroidSansBold';
	float: left;
	padding-left: 20px;
	color: #919191;
	padding-right: 5px;
	
}


.live-twitter-update a{
	color: #cd6033 !important;
}

#homepage-twitter-live{
	float: left;
	width: 98%;
	height: 56px;
	text-transform: uppercase;
	font: 12px 'Dutch801';
	padding: 1%;
	color: #cacaca;
}

.live-broadcast-title {
	text-transform: uppercase;
	font: 18px 'Dutch801';
	padding: 15px 10px 10px;
		padding-top: 35px;

}

.live-broadcast-text {
	text-transform: uppercase;
	font: 12px 'Dutch801';
	padding: 10px;
	color: #cacaca;
}


/* @end */



/* @group thumbnail-links */

.thumbnail-link{
	width: 250px;
	height: 150px;
	background-color: #515151;
}
.thumbnail-link .thumbnail-link-image{
	height: 130px;	
}
.thumbnail-link .thumbnail-link-title{
	color: #fffefe;
}

.thumbnail-link div.thumbnail-link-overlay{
	background-color: rgba(145,145,145,0.72);
	color: #fffefe;
	margin-top: -140px;
}

div.thumbnail-link-overlay div.overlay-top{
	margin-bottom: 15px;
}

div.thumbnail-link-overlay div.overlay-middle{
	margin-bottom: 15px;
}


/* @end */




/* @group homepage */
.homepage-video-submissions-container {
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	clear: both;
	float: left;
	margin-bottom: 75px;
	margin-top: 20px;
	border-bottom: 1px dotted #919191;
	border-top: 1px dotted #919191;
}

.home-video-submissions-info {
	float: left;
	width: 250px;
}

.home-video-submissions-title {
	font: 25px 'Dutch801';
	padding-bottom: 10px;
	margin-top: 15px;
}

.home-video-submissions-text {
	text-transform: uppercase;
	color: #cacaca;
}

.home-video-submissions {
	float: right;
	width: 735px;
}

.home-video-submissions .scrollable {
	float: left;
}

.home-video-submissions a.prev {
	float: left;
	width: 20px;
	height: 150px;
	background-image: url(images/carousel_prev.png);
	margin-top: 15px;
	cursor: pointer;
}

.home-video-submissions a.next {
	float: right;
	width: 20px;
	height: 150px;
	background-image: url(images/carousel_next.png);
	margin-top: 15px;
	cursor: pointer;
}


/* @end */













/* @group Recipients */

table#recipients{
	width: 100%;
	color: #d5d5d5;
}

table#recipients tr {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

table#recipients tr:nth-child(even) {
	background-color: #424242;
}

table#recipients tr:hover {
	background-color: #303030;
	cursor:  pointer;
	color: #fff;
}

table#recipients tr.title:hover {
	background: none;
	color: white;
}

table#recipients th.header:hover {
	color: #cd6033 !important;
}

table#recipients th.header {
	background: url(images/table-sorter-none.png) no-repeat right center;
}

table#recipients th.header:hover {
	color: #fff !important;
}

table#recipients th.header.headerSortUp {
	background: #2d2d2d url(images/table-sorter-up.png) no-repeat right center;
}

table#recipients th.header.headerSortDown {
	background: #2d2d2d url(images/table-sorter-down.png) no-repeat right center;
}

table#recipients th.blank-cell {
	background:  none !important;
}

table#recipients th {
	font-size: 10px;
	letter-spacing: 1px;
	font-weight: normal;
	font-style: normal;
	font-family: 'DroidSansBold';
	padding: 10px;
	cursor: pointer;
	border: 1px solid #6c6c6c;
	width: 16%;
	text-transform: uppercase;
	text-align: left;
}

table#recipients td {
	padding: 10px;
	vertical-align: center;
	text-align: left;
}

table#recipients td a:hover {
	color:  #fff;
}

.single-side-bar {
	width: 240px;
	float: left;
	position: absolute;
	left: 0;
	padding: 15px 45px 15px 15px;
	background-color: #343535;
}

.single-side-crumb-head {
	text-transform: uppercase;
	padding-bottom: 5px;
	font: 11px 'DroidSansBold';
}

.single-side-crumb-category {
	text-transform: uppercase;
	font: 11px 'DroidSansBold';
	border-bottom: 1px dotted #919191;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.single-side-crumb-recipient {
	text-transform: uppercase;
	font: 11px 'DroidSansBold';
	float: left;
	padding-right: 7px;
}

.single-side-crumb-pro {
	text-transform: uppercase;
	font: 11px 'DroidSansBold';
}

.single-side-designer {
	text-transform: uppercase;
}

.single-side-project {
	text-transform: uppercase;
	font-family: 'DroidSansBold';
	letter-spacing: 1px;
}

.single-side-client {
	text-transform: uppercase;
	font-family: 'DroidSansBold';
	letter-spacing: 1px;
}

ul.single-side-navigation {
	list-style: none;
	margin: 0;
	padding: 0px;
	float: left;
	width: 100%;
	clear: both;
	padding-bottom: 5px;
}

ul.single-side-navigation li {
	text-transform: uppercase;
	font: 11px 'DroidSansBold';
	letter-spacing: 1px;
}

ul.single-side-navigation li a {
	padding-bottom: 7px;
	padding-top: 7px;
	width: 100%;
	float: left;
	border-bottom: 1px dotted #919191;
	text-indent: 10px;
}

ul.single-side-navigation li a:hover {
	background-color: #232323;
	color: #cd6033;
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
}

ul.single-side-navigation li a:hover {
	cursor: pointer;
}
.side-single-winner-badge {
	width: 30px;
	height: 30px;
	background-image: url(images/winner_badge_30.png);
	float: right;
	margin-top: -5px;
}

.single-recipient-info {
	width: 730px;
	float: right;
	padding: 20px;
	background-color: #343535;
}

.single-recipient-info-left {
	float: left;
	width: 54%;
	padding-right: 3%;
	margin-right: 2%;
}

.single-recipient-info-right {
	float: right;
	width: 40%;
}

.single-recipient-jury-comments {
	font-size: 11px;
	line-height: 14px;
	color: #c8c8c8;
}

.single-recipient-jury-comments p {
	margin-bottom: 15px;
}

.single-recipient-jury-comments p strong {
	color: #fff;
	text-transform: uppercase;
}

.single-project-credits-label {
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
}

.single-project-credits {
	font-size: 13px;
	color: #c8c8c8;
}

.single-project-credits p {
	margin-bottom: 10px;
}

.single-project-title {
	text-transform: uppercase;
}

.single-project-description {
	color: #c8c8c8;
}



.single-qa {
	width: 600px;
	float: right;
	padding: 20px;
	background-color: #343535;
}

.single-recipient-qa {
	line-height: 14px;
	color: #c8c8c8;

}

.single-recipient-qa p {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 18px;
}

.single-recipient-qa p strong {
	color: #fff;
	text-transform: uppercase;
}

.single-hear-from-the-designer {
	width: 730px;
	float: right;
	padding: 20px;
	background-color: #343535;
	text-align: center;
}
.single-recipient-slide{
	position: absolute;
	right: 0;
}

.single-image-navigation {
	position: absolute;
	left: 0;
	background-color: #343535;
}

.prev-image {
	width: 25px;
	height: 25px;
	float: left;
	padding: 7px;
	background: url(images/img-nav-left.png) no-repeat center center;
	cursor: pointer;
}

.next-image {
	width: 25px;
	height: 25px;
	float: left;
	padding: 7px;
	background: url(images/img-nav-right.png) no-repeat center center;
	cursor: pointer;
}

.full-image {
	width: 35px;
	height: 25px;
	float: left;
	padding: 7px;
	background: url(images/img-nav-full.png) no-repeat center center;
	cursor: pointer;
}

/* @end */


/* @group Share Links */

.share-links {
	float: right;
	margin-top: 15px;
	clear: both;
}


.share-links-facebook {
	float: left;
	padding-right: 10px;
}

.share-links-twitter {
	float: left;
	padding-right: 10px;
}

.share-links-facebook-like {
	float: left;
}


/* @end */

div.column-left {
	width: 240px;
	float: left;
	position: absolute;
	left: 0;
	padding: 15px;
	background-color: #343535;
}

div.column-left-no-bkg {
	width: 240px;
	float: left;
	position: absolute;
	left: 0;
	padding: 15px;
}

.column-left h1 {
	padding-bottom: 15px;
	text-transform: uppercase;
	font-family: 'Dutch801';
	line-height: 40px;
}

.column-left p {
	font-size: 14px;
	line-height: 18px;
}

ul.column-left {
	list-style: none;
	margin: 0;
	padding: 0px;
}

ul.column-left li {
	text-transform: uppercase;
	font: 11px 'DroidSansBold';
	letter-spacing: 1px;
	color: #fff;
}

ul.column-left li a{
	float: left;
	width: 100%;
	height: 100%;
	padding-bottom: 15px;
	padding-top: 15px;
	border-bottom: 1px dotted #919191;
	text-indent: 7px;
	color: #fff;
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
	
}

ul.column-left li a:first{
	border-top: 1px dotted #919191;
}

ul.column-left li a.active{
	background-color: #191919;
	color: #cd6033;
}

ul.column-left li a:hover{
	background-color: #191919;
}

.column-left-label {
	font-size: 10px;
	font-family: 'Dutch801';
	letter-spacing: 1px;
}

div.column-left-white {
	width: 275px;
	float: left;
	position: absolute;
	left: 0;
	padding: 15px;
	color: #515151;
}

.column-left-white h1 {
	padding-bottom: 15px;
	text-transform: uppercase;
	font-family: 'Dutch801';
	line-height: 40px;
}

.inside {
	position: relative !important;
}

.column-right {
	width: 750px; 
	float: right;
}

.column-right-about {
	width: 550px;
	float: right;
	margin-right: 100px;
}

.column-right-about p{
	font-size: 14px;
	line-height: 18px;
	width: 550px;
	margin-bottom: 15px;
	-webkit-hyphens: auto;
}

.column-right p{
	font-size: 14px;
	line-height: 18px;
	width: 550px;
	margin-bottom: 15px;
	-webkit-hyphens: auto;
}

.column-right-inside {
	width: 700px; 
	float: right;
}

.sponsor-logo-left-column {
	padding-top: 50px;
	float: left;
	clear: both;
}










/* @group Homepage */

#homepage-banner {
	width: 1024px;
	height: 500px;
	overflow: hidden;
	color: #fff;
	z-index: -1;
	background-color: #000;
}

#home-broadcast-feature{
	float: left;
	width: 1024px;
	height: 500px;
	overflow: hidden;
	position: relative;
}

#home-broadcast-feature .items{
	width:20000em;
	position: absolute;
	float: left;
	height: 500px;
}

#home-broadcast-feature .items div{
	float: left;	
	margin: 0px;
	padding: 0px;
}

.home-live-info{
	width: 1024px;
	height: 500px !important;
	padding: 0px !important;
	margin: 0px !important;
	float: left;
}
.prevFeature{
	cursor: pointer;
	cursor: hand;
	position: absolute;
	width: 50px;
	bottom: 0;
	height: 450px;
	z-index: 1000;
	background: url(images/img-nav-left.png) no-repeat center center;
}

.nextFeature{
	position: absolute;
	bottom: 0;
	width: 50px;
	height: 450px;
	z-index: 1000;
	right: 0;
	cursor: pointer;
	cursor: hand;
	background: url(images/img-nav-right.png) no-repeat center center;
}
.home-feature-module-title{
	position: relative;
	width: 900px;
	margin-top: 240px !important;
	margin-left: 70px !important;
	font-size: 40px;
	font-family: 'DroidSansRegular' !important;
	text-transform: uppercase;
}

.home-feature-module-content{
	position: relative;
	margin-left: 70px !important;
	width: 900px;
	font-size: 20px;
	font-family: 'DroidSansRegular' !important;
}


.home-live-info a{
	position: absolute;
	width:1024px;
	height: 500px;
	vertical-align: bottom;
	color: #FFF;
	z-index: 5;
	font-family: 'DroidSansRegular' !important;
}


.background-image{
	position: absolute;
	width: 1024px;
	height: 500px;
	z-index: 0;
	opacity: .80;
	color: #1eb7fc;
}

.home-banner-title {
	font-size: 18px;
	width: 100%;
	clear: both;
	padding-bottom: 5px;
}

.home-next-up {
	font-size: 14px;
	float: left;
	padding-top: 10px;
	padding-right: 10px;
}

.home-count-down {
	font-size: 30px;
	float: left;
}

.home-live-category {
	font-size: 41px;
	font-family: 'Dutch801';
	width: 100%;
	clear: both;
	padding-bottom: 5px;
}

.home-live-location {
	font-size: 18px;
	width: 100%;
	clear: both;
	padding-bottom: 10px;
}

.home-live-info {
	height: 200px;
	padding-top: 200px;
	margin-left: 100px;
}

#homepage-twitter {
	width: 100%;
	background-color: #000;
	color: #feffff;
	padding: 10px 0 10px;
	float: left;
	font-size: 14px;
}

.home-twitter-title {
    font-family: 'DroidSansBold';
	float: left;
	padding-left: 20px;
	color: #919191;
	padding-right: 5px;
	
}

.home-twitter-update {
	float: left;
	font-size: 13px;
	padding-left:0px;
	max-width: 850px;
	height: 30px;
}

.home-twitter-share-links {
	position: absolute;
	max-width: 1024px;
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
	overflow: hidden;
}


.home-feature {
	padding-top: 7%;
	padding-bottom:  3%;
	width: 50%;
	float: left;
	
}

.home-feature-title {
	font-size: 20px;
	font-family: 'Dutch801';
	padding-bottom: 10px;
}

.home-feature-image {
	padding-bottom: 25px;
}

.home-feature-description {
	font-size: 12px;
	line-height: 16px;
}

/* @end */



/* @group Jury */

.jury-module-container {
	
}

.jury-module {
	width: 300px;
	float: left;
	padding: 20px;
	
}

.jury-module-title {
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Dutch801';
	letter-spacing: 1px;
}

.juror-name {
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Dutch801';
	letter-spacing: 1px;
	float: left;
	padding-bottom: 5px;
	width: 100%;
}

.juror-name a {
	color: #fff;
}

.juror-title {
	color: #ababab;
	width: 100%;
	font-size: 11px;
}

.juror-captain {
	color: #ababab;
	width: 100%;
	font-size: 11px;
}

.juror-image {
	float: left;
	width: 75px;
}

.juror-image img {
	float: left;
}

a.juror-individual {
	margin-top: 5px;
	margin-bottom: 5px;
}

.juror-individual {
	float: left;
	clear: both;
	margin-top: 5px;
	margin-bottom: 5px;
	
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
}

.juror-individual:hover {
	background-color: #191919;
}

.jury-info {
	float: left;
	padding: 5px 10px 10px;
	width: 200px;
}

.judge-image {
	float: left;
}
.judge-image img {
	width: 150px;
	height: 150px;
}

.judge-information {
	float: left;
	width: 470px;
	padding-left: 25px;
}

.judge-information p {
	font-size: 14px;
	line-height: 18px;
}

ul.jury-left-list {
	list-style: none;
	padding: 0px 0px 25px;
	margin: 0px 0px 0;
	float: left;
}

ul.jury-left-list li {
	clear: both;
	float: left;
	width: 100%;
}

ul.jury-left-list li a{
	clear: both;
	float: left;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	border-bottom: 1px dotted #919191;
	
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
}

ul.jury-left-list li a:hover {
	background-color: #191919;
}

ul.jury-left-list li:first-child a{
	border-top: 1px dotted #919191;
}

ul.jury-left-list li.active a{
	background-color: #191919;
}


.judge-profile {
	float: right;
	background-color: #191919;
	padding: 25px;
}

.judging-area-title {
	text-transform: uppercase;
	font-family: 'DroidSansBold';
	margin-bottom: 15px;
}

.judge-name {
	font-size: 14px;
	font-family: 'Dutch801';
}

.judge-title {
	font-size: 11px;
	color: #cacaca;
}

/* @end */




/* @group Submission Videos */

.submission-module {
	float: right;
	width: 200px;
	height: 150px;
	margin: 15px  !important;
	text-transform: uppercase;
	cursor: pointer;
	cursor: hand;
}

.submission-module .back {
	padding: 10px;
	background-image: url('images/backgray.png');
	color: white !important;
	position: absolute;
	width: 180px;
	height: 130px;
	z-index: 1;
	display:none;
	margin: 0 !important;
}

.submission-module .front {
	width: 200px;
	height: 150px;
	overflow: hidden;
	position: absolute;
	z-index:-1;
}

.submissions-video {
	float: left;
}

.submissions-info {
	float: left;
	padding-left: 25px;
	padding-top: 25px;
}

.submissions-designer-description {
	font-size: 12px;
}

.submissions-category {
	font-family: 'DroidSansBold';
	letter-spacing: 1px;
}

.submissions-designer-name {
	font-size: 20px;
}

/* @end */

/* @group Awards Page */

.centered{
	text-align: center;
}

#juror-hover-name{
	min-height:20px;
	float:left;
	width:100%;
	padding-bottom:8px;
	font-size:14px !important;
}

ul.juror-list {
	list-style: none;
	padding: 0px;
	margin: 0px;
	clear: both;
	width: 100%;
	float: left;
	padding-bottom: 8px;
}

ul.juror-list li {
	float: left;
	margin-right: 10px;
	cursor: hand;
	cursor: pointer;
}

ul.juror-list li a{
	float:left;
	width: 100%;
	height: 100%;
}

.award-module {
	float: left;
	width: 200px;
	height: 150px;
	margin: 15px;
	
}

.award-text{
	text-align: left;
	font-size: 11px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: 7px;
	text-transform: uppercase;
	font-family: 'DroidSansBold';
	letter-spacing: 1px;
	margin-bottom:20px;

	padding: 7px;
	width: 307px;
	position: relative;
	color: #737776;
}

.award-text a{
	color: #cacaca !important;
}

.award-text a:hover {
	color: #fff !important;
}

.award-text b{
	font: 10px 'DroidSansBold';
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #b4b4b4;
	cursor: default;

}

div.award-module-information.back {
	padding: 10px;
	background-image: url('images/backgray.png');
	position: absolute;
	width: 180px;
	height: 130px;
	text-transform: uppercase;
	display: none;
	color: white !important;
	overflow: hidden;
}

div.award-module-image.front {
	position: absolute;
}

.award-module-winner{
	width: 30px;
	height: 30px;
	background-image: url(images/winner_badge_30.png);
	float: left;
	position: absolute;
	margin-top: 10px;
	margin-left: 7px;
}
.award-module-winner-back{
	width: 30px;
	height: 30px;
	float: left;
	margin-right: 10px;
	background-repeat: no-repeat;
}

.award-module-category {
	font-size: 8px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dotted #919191;
	font-family: 'DroidSansBold';
	float: left;
	min-width: 70%;
}

.award-module-type {
	font-size: 8px;
	font-family: 'DroidSansBold';
	float: left;
	width: 120px;
}

.award-module-designer {
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 5px;
	clear: both;
}

.award-module-title {
	font-size: 8px;
	font-family: 'DroidSansBold';
}

.award-module-client {
	font-size: 8px;
	padding-top: 7px;
	font-family: 'DroidSansBold';
}

.award-module-container {
	clear: both;
	float: left;
	padding-bottom: 15px;
}

.award-module-comments {
	clear: both;
	padding-bottom: 25px;
}

.award-module-jury-comments {
	-moz-column-count: 2;
	-moz-column-gap: 20px;
	-webkit-column-count: 2;
	-webkit-column-gap: 50px;
	column-count: 2;
	column-gap: 50px;
	color: #bdbdbd;
}

.award-module-jury-comments strong {
	color: #fff;
}

.award-module-video-player {
	width: 96%;
	margin: 2%;
	background-color: #000;
	text-align: center;
	z-index: 1;
}

.award-module-video-label {
	padding: 10px;
	text-align: center;
	font-family: 'Dutch801';
}

/* @end */





/* @group jQuery Tools */

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	height: 180px;
	width: 690px;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

.items div {
	float:left;
}


/* @end */


.tweet_list li{
	list-style: none;
	display:none;
}

.tweet_list{
	margin-left:10px !important;
}

span.tweet_text a{
	color: #cd6033;
}

#overlay {
	color:#000;
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	width: 900px;
	margin-left:auto;
	margin-right:auto;
	z-index: 999999999 !important;
}


/* the overlayed element */
.overlayClass {
	color: white !important;
	background-color:black;
	display:none;
	padding:35px;
	font-size:11px;
	z-index: 999999999 !important;
}

/* default close button positioned on upper right corner */
.overlayClass .close {
	display:none;
}

object {
	z-index: 1 !important;
}