/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { 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: monospace, sans-serif; }


/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* 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; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* 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; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }

a, a:active, a:visited { color: #7612a5; }
a:hover { color: #036; }


/**
 * Primary styles
 *
 * Author: NorthColour
 */

body{

	background:#001b37 url('/img/body_bg.jpg');
	
	font-family:arial,sans-serif;
	color:#fff;
	overflow:hidden;


}
em{
  font-style:italic;
}
blockquote{
	margin-left:30px;
	margin-right:30px;
}
a:link, a:visited{
	color:#ee7202;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
	color:#fff;
}
a:active{
	color:#fff;
}
h1, h2, h3 , h4, h5, h6{
	font-weight:normal;
}
h1{
	margin:0 0 15px 0;
	font-size:2em;
	position: relative;
	font-weight:bold;
}
h2{
	font-size:1.8em;
	color:#ee7202;
	margin:0 0 7px 0;
	padding:0;
}
h3{
	font-size:1.4em;
	font-weight:bold;
	margin-bottom:11px;
}
h4{
	font-size:1em;
	padding:5px 0 8px 0;
	margin-bottom:20px;
	border-top:1px solid #0c112d;
	border-bottom:1px solid #0c112d;
}
h5{
	color:#ee7202;
	margin-top:10px;
	margin-bottom:5px;
}
h6{
	
}
iframe{
/*	border:1px solid #a42eaf;*/
}


p{
	line-height:1.4em;
	font-size:1.1em;
	padding-bottom:10px;
}
ul,li{
	margin:0;
	padding:0;
	list-style:none;
}
li{
	list-style-type:none;
	
}

#header{
/*	background: transparent url('/img/menu_bg.jpg') top center no-repeat;*/
/*	min-height:531px*/
}

#logo{
	text-align:center;
	margin:10px auto 0;
	background: transparent url('/img/logo.png') no-repeat top center;
	
}
#logo a{
	width:193px;
	height:189px;
	display:block;
}
#logo .alt{
	display:none;
}
#fblink{
	margin:50px 0px 0px 18px;
	font-family: 'UniversLTStd47LightCondensed';
	text-decoration:none;
	text-transform:uppercase;
}

#mainnav{
	margin:31px 12px 0px 0;
}

#mainnav ul li a{
	font-family: 'RalewayThin';
	color:#ee7202;
	text-decoration:none;
	text-transform:lowercase;
	padding:0 8px;
	font-size:2.2em;

	line-height:35px;
	display:block;
	font-weight:100;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
	-webkit-transition: color 0.2s ease; 
	-moz-transition: color 0.2s ease; 
	-o-transition: color 0.2s ease; 
	transition: color 0.2s ease;
	


}

#mainnav ul li a span{
	
	padding:0px 7px 0 5px;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
}
#mainnav ul li a:hover span{
	padding-left:17px;
}
#mainnav ul.notrans  li a:hover span{
	padding-left:7px;
}
#mainnav ul li a strong{
	font-weight:normal;
}

#mainnav ul li a.curractive, #mainnav ul li a.curractivepar,#mainnav ul li a:hover{
	color:#fff;
	/*background:url('/img/bg_40.png');*/
}


#subnav{
	background:url('/img/bg_50_purp.png');
	padding-bottom:10px;
}

#subnav h3{
	background:#0e112f;
	color:#ee7202;
	line-height:32px;
	font-size:0.9em;
	margin:0 0 7px 0;
	padding:0 17px;
	display:block;
	text-transform:uppercase;
	font-weight:normal;
}
#subnav p{
	padding:0;
	
	margin:0px 13px 10px 17px;
}
#subnav h4{
	margin:0px 13px 0 17px;
	color:#ee7202;
	border:none;
	padding:0;
}
#subnav .sub{
	margin:0px 13px 20px 17px;
}
#subnav ul li a{
	font-size:0.9em;
	text-decoration:none;
	padding:0 0px;
	line-height:28px;
	display:block;
	font-weight:100;
	border-bottom:1px solid #0c112d;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
}
#subnav ul li a span{
	
/*	padding:0px 7px 0 7px;*/
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
}
#subnav ul li a:hover span{
/*	padding-left:17px;*/
}
#subnav ul li a strong{
	font-weight:normal;
}

#subnav ul li a.curractive, #subnav ul li a.curractivepar, #subnav ul li a:hover{
	color:#fff;
	background:url('/img/bg_40.png');
}

#socmedbuts{
  margin-top:15px;
  margin-left:15px;
  
}
#socmedbuts a{
  margin-right:10px;
  
}


.feat_spot {
	

}
#homecontent{
	margin-top:25px;
}

#homefeatgrid{
	clear:both;
	margin-top:10px;
	background:url('/img/bg_40.png');
	padding:19px;
	display:block;
	
}


#feat_spot_cyc div.fshold{
	width:220px;
	height:126px;
	position:relative;
	float:left;
	z-index:10;
}
#homefeatgrid div.fshold{
	width:225px;
	height:129px;
	
}

#feat_spot_cyc_lrg div.fshold{
	background:url('/img/bg_40.png');
	padding:19px;
	display:block;
	
	width:660px;
	position:relative;
	float:left;
	z-index:10;
	overflow:hidden;

}
.featcontent{
	display:block;
	padding:20px 20px 0;
}






#feat_spot_cyc a.fadelink, #feat_spot_cyc_lrg a.fadelink{
	font-family: 'ChunkFiveRomanRegular';
	font-weight:normal;
	
	position:absolute;
	bottom:0px;
	left:0px;
	padding:0px;
	text-transform:lowercase;
	color:#fff;
	background:url('/img/feat_cyc_grad.png');
	text-decoration:none;
	font-size:1.1em;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
}
#feat_spot_cyc_lrg a.fadelink{
	bottom:35px;
	left:20px;
}
#feat_spot_cyc_lrg .lrgfs a.fadelink{
	font-size:3.0em;
} 
.fadelink p{
	padding:0;
	margin:0;
	
}
.fadelink span{
	display:block;
	margin:5px 10px;
}

#feat_spot_cyc a span, #feat_spot_cyc_lrg a span{
	padding:0;
}
#feat_spot_cyc a img, #feat_spot_cyc_lrg a img{
	border:#000 3px solid;
}
#feat_spot_nav{
	z-index:10;
	position:absolute;
	bottom:3px;
	right:40px;
}
#feat_spot_nav a{
	background:#333;
	border-radius: 5px;
	height:10px;
	width:10px;
	display:block;
	float:left;
	margin-left:7px;

}
#feat_spot_nav a.activeSlide,#feat_spot_nav a:hover{
	background:#e00707;
}

h1#hdr, h1.hdr{
	font-family: 'ChunkFiveRomanRegular';
	font-size:5.4em;
	line-height:111px;
	color:#daa8fa;
	font-weight:normal;
	text-transform:uppercase;
	margin:0;
	padding:0;
	
}
h1.hdr a{
	color:#daa8fa;
}
#hpcycle{
	width:760px;
	height:111px;
	overflow:hidden;
}
#holdingmain{
	text-align:center;
	margin-top:50px;
}

#holdingmain h1#hdr{
	font-size:2.8em;
}

#main{
	margin-top:30px;
	

	
}
.home #main{

}
#main .feat_col{
	width:270px;
	float:left;
	padding:0 17px 0 22px;
	margin-left:5px;

}
#main .content_col{
	background:#001225;
	padding:20px;
	
}
#main .content_col_wide{
	width:579px;
	float:left;
	padding:0 17px 0 22px;
	margin-left:5px;

}
#main .content_col img, #main .content_col_wide img{
	
}
#main .col1{
	margin-left:0px;
}
.conthead {
		position:relative;
    height:340px;
	overflow:hidden;
}
.conthead.person {
		height:436px;
}
.fshold .conthead{
  height:365px;
}
.ticker{
  width:100%;
}
.ticker.nothome{
  font-weight:bold;
  font-size:1.3em;
}

.conthead img{
	padding:0;
;
}
.conthead div{
	position:absolute;
	bottom:30px;
	left:0px;
	padding:5px 10px;
  z-index:999;

	
	color:#fff;
	background:url('/img/feat_cyc_grad.png');
	text-decoration:none;
	font-size:1.2em;
}
.conthead div h2{
/*	color:#c133bf;*/
	color:#fff;
		font-size:2.5em;
    
		font-family: 'ChunkFiveRomanRegular';
	margin-bottom:0;
	padding-bottom:0;
	font-weight:normal;

	padding-right:35px;
	padding-left:5px;
	line-height:50px;
	text-transform: lowercase;
}
.conthead div h2 a{
/*	color:#c133bf;*/
color:#fff;
background: url('/img/playbut_on.png') no-repeat right center;
padding-right: 85px;
text-decoration: none;
}
.conthead div h2 a:hover{
background: url('/img/playbut.png') no-repeat right center;
}
.conthead div a{
  color:#ee7202;
}

.conthead.person div h3{
  font-size:2.0em;

  padding-right:35px;
  padding-left:5px;
  color:#2d557f;
  font-family: 'ChunkFiveRomanRegular';
  text-transform: lowercase;
  
}
.conthead div h3{
  font-size:2.0em;

  padding-right:35px;
  padding-left:5px;
  font-family: 'ChunkFiveRomanRegular';
  text-transform: lowercase;
  
}




#main .feat_col h3{
	margin-top:17px;
	margin-bottom:25px;
	color:#586276;
	text-transform:uppercase;
	font-weight:normal;
}
#main .feat_col h4{
	margin-top:0px;
	margin-bottom:0px;
	color:#ef3b25;
	text-transform:uppercase;
	font-weight:normal;
  
}
#main .feat_col img{
	margin-top:20px;
	background:transparent url('/img/col_pic_bg.jpg') repeat-x top left;
	padding:8px;
	-webkit-box-shadow: 0px 0px 3px 0px #000;
	-moz-box-shadow: 0px 0px 3px 0px #000;
	box-shadow: 0px 0px 3px 0px #000;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
}
#main .feat_col a:hover img{
-webkit-box-shadow: 0px 0px 3px 0px #e00707;
-moz-box-shadow: 0px 0px 3px 0px #e00707;
box-shadow: 0px 0px 3px 0px #e00707;
}
#main .feat_col .hpgal img{
	margin-top:0px;
}
.twitlist li{
	margin-top:10px;
}
.listbox{
	margin-top:30px;
}
.listbox .listicon{
	float:left;
	width:240px;
}
.listbox .listdesc{
	float:left;
	width:330px;
}
.listbox .listwide{
	width:570px;
}
.listdesc h3{
	margin-top:0;
	margin-bottom:10px;
}

.listbox a img{
	background:transparent url('/img/col_pic_bg.jpg') repeat-x top left;
	padding:8px;
	-webkit-box-shadow: 0px 0px 3px 0px #000;
	-moz-box-shadow: 0px 0px 3px 0px #000;
	box-shadow: 0px 0px 3px 0px #000;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
}
.listbox a:hover img{
	-webkit-box-shadow: 0px 0px 3px 0px #e00707;
	-moz-box-shadow: 0px 0px 3px 0px #e00707;
	box-shadow: 0px 0px 3px 0px #e00707;
}
#showload .listbox{
	border-bottom: solid 1px #2e3136;  
}
.blogdate{
	font-style:italic;
	color:#586276;
}
#body_cont{
	margin-top:10px;
	
}
#body_cont_wide{
	margin-top:10px;

}
#gallerylist {
	
	width:220px;
	float:right;
}

#gallerylist .gallbox{
	display:block;
	margin-top:0px;
}
.imgblock{
	margin-top:7px;
}
.imgblock a{
	margin-right:10px;
	padding-bottom:10px;
	display:block;
	float:left;
	
}

.imgblock a img{

	-webkit-box-shadow: 0px 0px 3px 0px #000;
	-moz-box-shadow: 0px 0px 3px 0px #000;
	box-shadow: 0px 0px 3px 0px #000;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
	
}
.imgblock a:hover img{
	-webkit-box-shadow: 0px 0px 3px 0px #e00707;
	-moz-box-shadow: 0px 0px 3px 0px #e00707;
	box-shadow: 0px 0px 3px 0px #e00707;
}
p.darkbg{
	position:relative;
	background:url('/img/bg_40.png');
	padding: 15px 25px;
	font-size:1.1em;
	font-style:italic;
	margin-bottom:3px;
}
p.darkbg:before, p.darkbg:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
p.darkbg:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
p.darkbg { zoom: 1; }

p.darkbg img{
	padding-right:15px;
	padding-bottom:10px;
}
.fb-like{
	margin-top:20px;
}
a.load {
	display:block;
	font-size: 1.3em;
	margin-top:20px;
}


p.imgtitle{

}
#gallery{
	display:block;
	padding-bottom:20px;
}
.content_feat{
	width:130px;
	margin-right:16px;
	float:left;
	text-align:center;
	margin-bottom:20px;
}
.content_feat span{
	display:block;
	width:130px;
	text-align:center;
}
.endofline{
	margin-right:0;
}
.breaker{
	margin-bottom:20px;
}

#carhold{
	position:relative;
}
#carousel1{
	width:700px;
	height:250px;
	overflow:scroll;
	background: url('/img/awardbg.jpg') no-repeat top left;
	
}
#title-text{
	padding-top:20px;
}

#left-but{
	background:url('/img/aw_left.png') no-repeat left center;
	width:34px;
	height:34px;
	border:none;
	font-size:0.1em;
	position:absolute;
	top:105px;
	left:0px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	-webkit-box-shadow: 0px 0px 5px 5px #000;
	-moz-box-shadow: 0px 0px 5px 5px #000;
	box-shadow: 0px 0px 5px 5px #000;

}
#right-but{
	background:url('/img/aw_right.png') no-repeat left center;
	width:34px;
	height:34px;
	border:none;
	font-size:0.1em;
	position:absolute;
	top:105px;
	right:0px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	-webkit-box-shadow: 0px 0px 5px 5px #000;
	-moz-box-shadow: 0px 0px 5px 5px #000;
	box-shadow: 0px 0px 5px 5px #000;
}


table{
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	padding-top:5px;
	font-size:0.8em;
}
table strong{
	text-transform:uppercase;
	font-weight:normal;
	font-size:1.1em;
}

h3.hdr{
	margin-top:17px;
	margin-bottom:18px;
	color:#586276;
	text-transform:uppercase;
	font-weight:normal;
	font-size:1.5em;

}



#footer{
	margin-top:80px;
	background:transparent url('/img/footbg.png') ;
	font-family: 'RalewayThin';
	color:#ee7202;
	height:69px;

}
#footerbar{
	width:940px;
	margin:0 auto;
	line-height:69px;
}
#footerbar p{

	line-height:69px;
}
.partners{
	float:right;
	text-align:right;
}


#legfoot{
  clear:both;
	width:940px;
	margin:0 auto;
}
#legfoot a{
	font-family: 'RalewayThin';
	color:#ee7202;
	text-decoration:none;
	text-transform:lowercase;
	

}




	
	input, textarea {  
	    padding: 4px;  
	    	border:1px solid #a42eaf;
	    outline: 0;  
		color:#a42eaf;
	    font: italic 10px/100% Verdana, Tahoma, sans-serif;  
		width:175px;
		background:none;
	    }  

	textarea {  
	    width: 400px;  
	    max-width: 400px;  
	    height: 150px;  
	    line-height: 150%;  
	    }
	
	#cnForm input{
		width:205px;
	}
	#cnForm input#signup_submit {  
	   width:40px;
	-webkit-box-shadow: 0px 0px 3px 0px #000;
	-moz-box-shadow: 0px 0px 3px 0px #000;
	box-shadow: 0px 0px 3px 0px #000;
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;
	    }
	
		#cnForm input#signup_submit:hover {
			-webkit-box-shadow: 0px 0px 3px 0px #e00707;
			-moz-box-shadow: 0px 0px 3px 0px #e00707;
			box-shadow: 0px 0px 3px 0px #e00707;
		}
		.required{
			border:1px solid #ff0000;
		}
		#flash{
			color:#ff0000;
		}

/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* 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: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@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, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
   html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } 


}

@media screen and (max-device-width: 1280px) {


}



/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


/* To be used with cookieCuttr by Chris Wharton (http://cookiecuttr.com) */

.cc-cookies { position:fixed; width: 90%; left: 0; top: 0; padding: 0.5em 5%; background: #565656; background: rgba(86,86,86,0.95); color: #fff; font-size: 13px; font-weight: 700; text-shadow: 0 -1px 0 rgba(0,0,0,0.35); z-index: 99999; text-align: center; color: #fff; }
.cc-cookies a, .cc-cookies a:hover { color: #fff; text-decoration: underline; }
.cc-cookies a:hover { text-decoration: none; }
.cc-overlay { height: 100%; padding-top: 25%; }
.cc-cookies-error { float: left; width: 90%; text-align: center; margin: 1em 0 2em 0; background: #fff; padding: 2em 5%; border: 1px solid #ccc; font-size: 18px; color: #333; }
.cc-cookies a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset { display: inline-block; color: #fff; text-decoration: none; background: #7DAF3B; padding: 0.5em 0.75em; border-radius: 3px; box-shadow: 0 0 2px rgba(0,0,0,0.25); text-shadow: 0 -1px 0 rgba(0,0,0,0.35); -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
.cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline { background: #af3b3b; margin-left: 0.5em; }
.cc-cookies a.cc-cookie-reset { background: #f15b00; }
.cc-cookies a:hover.cc-cookie-accept, .cc-cookies-error a:hover.cc-cookie-accept, .cc-cookies a:hover.cc-cookie-decline, .cc-cookies-error a:hover.cc-cookie-decline, .cc-cookies a:hover.cc-cookie-reset  { background: #000; -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
.cc-cookies-error a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-decline { display: block; margin-top: 1em; }
.cc-cookies.cc-discreet { width: auto; padding: 0.5em 1em; left: auto; top: auto; }
.cc-cookies.cc-discreet a.cc-cookie-reset { background: none; text-shadow: none; padding: 0; text-decoration: underline; }
.cc-cookies.cc-discreet a:hover.cc-cookie-reset { text-decoration: none; }

@media screen and (max-width: 768px) {
.cc-cookies a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset { display: block; margin: 1em 0; }
}

@media screen and (max-width: 480px) {
.cc-cookies { position: relative; float: left; }
}


