/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, 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.4 2009-07-27 | 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, 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;
}                  

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; }

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 #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
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; }
/* 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: monospace, sans-serif; }
 


/* 
 * minimal base styles 
 */


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

/* 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 { font-weight: bold; text-rendering: optimizeLegibility; padding: 3px 0 3px 0; }

/* 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 { color:#607890; }
a:hover { color:#036; }


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

small { font-size:85%; }
strong, th { font-weight: bold; }

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: #d52127; color:#fff; text-shadow: none; }
::selection { background:#d52127; color:#fff; text-shadow: none; } 

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


/* 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:  FEAST CREATIVE
 */
 
 /* | Standard
------------------------------------------------------------------------------------------ */

body,html{
	height: 100%;	
	background:#ddba21 url(../imgs/site/bg.jpg) 0 0 repeat-y;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:18px;	
	color:#fff;
}

h2{
	font-size:50px;
	color:#ddba21;
}

a:link, a:visited, a:active{
	color:#ddba21;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;}

blockquote {
	padding:0 0 0 45px;
	font-size:18px;
	background: url(../imgs/site/blockquote.png) 0 0 no-repeat}
	
blockquote p {
	margin:0;
	padding:0;}	
	
blockquote p.credit {
	font-size:12px;
	font-weight:normal;
	text-align:left;
	position:relative;
	left:25px;
	top:-10px;	}
	
h3{
	font-size:25px;	
	color:#ddba21;
}

h4{
	font-size:20px;	
}


h5{
	font-size:16px;	
}

.right{
	float:right;	
}

.left{
	float:left;	
}
img.noBorder {
	border:none !important;}




/* | Structure
------------------------------------------------------------------------------------------ */

#container{
	width:971px;
	height:100%;
	min-height:100%;
	position:relative;		
}

	#masthead{
		width:139px;
		height: 100%;		
		background:url(../imgs/site/masthead.jpg) 0 0 repeat-y;
		float:left;
	}
	
		#masthead header{
			width:142px;
			background:url(../imgs/site/header.jpg) 0 0 no-repeat;
			text-indent:-9999em;
		}	
		
			#masthead header #contact {
				width:107px;
				height:220px;
				margin: 60px 0 0 2px;
				font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
				font-size:12px;
				text-align:center;
			}		
			
				#masthead header #contact a{
					color:#d52127;
				}					
					
			#masthead header h1, #masthead header h2{
				text-indent:-9999em;
			}		
						
			#masthead #social ul{
				margin:0;
				list-style:none;
			}
			
				#masthead #social ul li {
					margin: 0;
				}	
			
					#masthead #social ul li#Twitter a {
						display:block;
						width:113px;
						height:40px;
						text-indent:-9999em;
						background:url(../imgs/social/twitter.jpg) 0 0 no-repeat;				
					}		
					#masthead #social ul li#Twitter a:hover {
						background-position: -113px 0 ;			
					}	
					
					#masthead #social ul li#Facebook a {
						display:block;
						width:113px;
						height:38px;
						text-indent:-9999em;
						background:url(../imgs/social/facebook.jpg) 0 0 no-repeat;				
					}		
					#masthead #social ul li#Facebook a:hover {
						background-position: -113px 0 ;			
					}
					
					#masthead #social ul li#Bebo a {
						display:block;
						width:113px;
						height:40px;
						text-indent:-9999em;
						background:url(../imgs/social/bebo.jpg) 0 0 no-repeat;				
					}		
					#masthead #social ul li#Bebo a:hover {
						background-position: -113px 0 ;			
					}	
					
					#masthead #social ul li#YouTube a {
						display:block;
						width:113px;
						height:47px;
						text-indent:-9999em;
						background:url(../imgs/social/youtube.jpg) 0 0 no-repeat;				
					}		
					#masthead #social ul li#YouTube a:hover {
						background-position: -113px 0 ;			
					}	
					
			#masthead #mailer{
				width:103px;
				height:102px;
				margin:25px 0 0 5px;				
			}
					
				#masthead #mailer a {
					display:block;
					width:103px;
					height:102px;
					text-indent:-9999em;
					background:url(../imgs/site/mailer.jpg) 0 0 no-repeat;				
				}		
				#masthead #mailer a:hover {
					background-position: -103px 0 ;			
				}						
					
			#masthead #ibis{
				width:113px;
				height:103px;
				margin:25px 0 0 0;
			}
					
				#masthead #ibis a {
					display:block;
					width:113px;
					height:103px;
					text-indent:-9999em;
					background:url(../imgs/site/ibis.jpg) 0 0 no-repeat;				
				}		
				#masthead #ibis a:hover {
					background-position: -113px 0 ;			
				}							
	
	#main{
		width:823px;
		height: 100%;		
		background:#004f79;		
		float:left;
		position:relative;
	}
	
	#main.Neal footer{
		width:620px;	
	}
		


		#highlight{
			width:709px;
			height:95px;
			float:right;
			position:relative;
			left:38px;
			top:23px;		
			background:url(../imgs/highlight/bg.png) 0 0 no-repeat;	
		}
		
			#highlight #flashbanner{
				width:691px;
				height:70px;
			}		
		
		#highlight{
			padding: 5px 0 0 5px;
		}		
		
		#navigation{
			width:149px;
			float:left;
			position:absolute;
			top:14px;
			left:-26px;
			padding: 14px 0 0 0;
		}	
		
			nav#navigation ul{
				margin:0;
			}
			
				nav#navigation ul li {
					margin: 0;
				}	
				
					nav#navigation ul li#home a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/home.jpg) 0 0 no-repeat;				
					}		
					nav#navigation ul li#home a:hover {
						background-position: -149px 0 ;			
					}		
					
					nav#navigation ul li#current_productions a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/current_productions.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#current_productions a:hover {
						background-position: -149px 0 ;			
					}	
					
					nav#navigation ul li#forum a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/discuss_the_shows.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#forum a:hover {
						background-position: -149px 0 ;			
					}
					
					nav#navigation ul li#blogging a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/blogging.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#blogging a:hover {
						background-position: -149px 0 ;			
					}
					
					nav#navigation ul li#about_bsc a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/about_bsc.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#about_bsc a:hover {
						background-position: -149px 0 ;			
					}	
					
					nav#navigation ul li#education a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/education.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#education a:hover {
						background-position: -149px 0 ;			
					}	
					
					nav ul li#past_productions a {
						display:block;
						width:149px;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/past_productions.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#past_productions a:hover {
						background-position: -149px 0 ;			
					}	
					
					nav ul li#casting a {
						display:block;
						width:149x;
						height:85px;
						text-indent:-9999em;
						background:url(../imgs/nav/casting.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#casting a:hover {
						background-position: -149px 0 ;			
					}	
					
					nav#navigation ul li#contact a {
						display:block;
						width:149px;
						height:91px;
						text-indent:-9999em;
						background:url(../imgs/nav/contact.jpg) 0 0 no-repeat;				
					}					
					nav#navigation ul li#contact a:hover {
						background-position: -149px 0 ;			
					}																				
						
		#content{
			width:622px;
			min-height:700px;			
			padding: 20px 40px 0 0;		
			float:right;
			position:relative;
			top:8px;
			right:9px;
		}	

		#contentForum{
			width:622px;
			min-height:700px;			
			padding: 20px 40px 0 0;		
			float:right;
			position:relative;
			top:8px;
			right:9px;
		}	
		
			 #contentForum ul{
				 margin:0;
				 padding:0; 
			 }

		#content header h2 {
			font-size:50px;
			color:#DDBA22;
			text-transform:uppercase;
			margin:0 !important;}
			
		#content h1 {
			font-size:30px;
			color:#DDBA22;
			text-transform:uppercase;
			margin:0 0 15px 0;}
			
		#content h2 {
			font-size:24px;
			color:#fff;
			text-transform:uppercase;
			margin:0 0 15px 0;}
			
		#content h3 {
			font-size:24px;
			color:#DDBA22;
			text-transform:uppercase;
			margin:0 0 15px 0;}
			
			#content h3.smallTitle {
				font-size:16px;
				line-height:17px;
				color:#FFFFFF;
				text-decoration:none;
				text-transform:uppercase;
				margin:0 0 15px 0;}	
				
				#content h3.smallTitle:hover {
					text-decoration:none;
					}							
			
		#content h4 {
			font-size:24px;
			color:#b22222;
			text-transform:uppercase;
			margin:0 0 15px 0;}
			
		#content h5 {
			font-size:18px;
			color:#DDBA22;
			text-transform:uppercase;
			margin:0 0 15px 0;}
			
		#content h6 {
			font-size:18px;
			color:#fff;
			text-transform:uppercase;
			margin:0 0 15px 0;} 
		
		#content p {
			margin:0 0 20px 0;
			line-height:16px;}
						
		#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
			margin: 0 0 20px 0;
			line-height:24px;}
			
		#content p img {
			border:1px solid #0571b8;}
			
		#content p img.left {
			float:left;
			margin:0 10px 0 0;
			clear:right;}
			
		#content p img.blogs {
			float:left;
			border:none;
			margin:0;
			clear:none;}			
			
		#content p img.right {
			float: right;
			margin:0 10px 0 0;}
			
		#content ul {
			width:500px;
			margin:0 0 20px 30px;
			list-style: disc outside url("../imgs/bulletpoint.png");}
			
		#content ul li,#content ol li {
			margin: 0 0 15px 0;}
		
			#content #carosel{
				width:700px;
				height:292px;
				background:url(../imgs/home/carosel/bg.png) 0 0 no-repeat;					
				position:relative;
				right:6px;
				margin:20px 0 0 0;
			}
			
			*+html #content #carosel{
				height:500px;
				padding: 30px 0 0 0;
				background:url(../imgs/home/carosel/bg_ie.png) 0 0 no-repeat;					
			}						
			
				#content #carosel .jcarousel-skin-tango{
					padding:5px 0 0 7px;
				}		
				
				*+html #content #carosel .jcarousel-skin-tango{
					padding:5px 0 0 20px;
				}												
			
				#content #carosel h2{
					color:#b62529;
					font-size:20px;
					position:absolute;
					top:10px;
					left:30px;
					z-index:100;				
				}	
				
				#content #carosel img{
					border:#484640 1px solid;
				}		
				
				#content #carosel #title{
					padding: 5px;
					font-size:11px;
					line-height:11px;
					margin:0 0 5px 0;
				}												
			
				#content #carosel ul{
					list-style:none;
					padding:0;
					margin:0;					
				}	
						*+html #content #carosel ul {
							padding:0 0 0 50px;
						}						
				
					#content #carosel ul li{
						width:160px;
						margin:0 2px 0 0;
						float:left;
						background:#484640;
					}	
					
						*+html #content #carosel ul li{
							margin:10px 0 5px 5px;
						}															
			
					#content #carosel ul li a{
						color:#fff;
					}
					
			#content #social{
				width:706px;
				height:275px;
				background:url(../imgs/home/social/bg.png) 0 0 no-repeat;					
				position:relative;
				margin:0;
				right:6px;
			}				
			
				#content #social #likebox{
					width:247px;
					height:199px;
					background:#FFF;
					position:absolute;
					top:40px;
					left:20px;
				}
				
				#content #social #twitter #twitLink {
					position:relative;
					right:30px;
					top:15px;
					text-align:right;
					font-size:10px;}
				
				#content #social #tweet{
					width:380px;
					height:57px;
					padding:5px 5px 0 5px;
					position:absolute;
					top:40px;
					right:31px;
				}		
				
					#content #social #tweet ul{
						list-style:none;
						width:100%;
						margin: 0 0 8px 0;
					}
					
				#content #social #forum{
					width:129px;
					height:125px;
					background:url(../imgs/home/social/forum.png) 0 0 no-repeat;						
					padding: 3px 0 0 0;
					position:absolute;
					top:120px;
					right:290px;
				}	
				
				#content #social #mailer{
					width:124px;
					height:123px;			
					padding: 3px 0 0 0;
					position:absolute;
					top:120px;
					right:160px;
						background:url(../imgs/home/social/mailer.png) 0 0 no-repeat;						
				}
				
					#content #social #mailer #theForm{
						width:124px;
						height:103px;
						background:url(../imgs/home/social/mailer.png) 0 0 no-repeat;						
					}
					
					#content #social #mailer #confirmation{
						display:none;
						width:124px;
						height:103px;
						background:url(../imgs/home/social/confirmation.png) 0 0 no-repeat;						
					}						
					
						#content #social #mailer ul {
							list-style:none;							
							padding: 48px 0 0 5px;
							margin:0;
							position:relative;
							top:-5px;		
						}															
						
							#content #social #mailer ul li {
								padding: 8px 0 0 5px ;
								margin:0 0 0 0;				
							}	
																			
						
								#content #social #mailer #theForm ul li input{
									width:100px;
									border: 1px solid #000;
									background:transparent;
									color:#d52127;	
									border:none;
								}	
								
								#content #social #mailer #theForm ul li .submit {
									display:block;
									width: 38px;						
									height: 12px;						
									background: url(../imgs/home/social/submit.png) no-repeat;
									border: none;
									cursor:pointer;
									margin:0 0 0 -7px;
								}
								
					
								#content #social #mailer #theForm ul li .submit:hover {
									background-position: -38px 0;
								}	
																																	
														
				
				#content #social #blogs{
					width:130px;
					height:124px;
					background:url(../imgs/home/social/blog.png) 0 0 no-repeat;						
					padding: 3px 0 0 0;
					position:absolute;
					top:120px;
					right:29px;
				}	
				
				
				
/* | Projects
------------------------------------------------------------------------------------------ */
				
				#projects {
					position:relative;
					left:-6px;}
				
				#projectsTop {
					width:706px;
					height:18px;
					background:url(../imgs/projects/top.png) 0 0 no-repeat;						
				}	
				
					#projectstWrap {
						width:706px;					
						background:url(../imgs/projects/wrap.png) 0 0 repeat-y;
						margin:0;
					}
					
					#projectstWrap ul{
						width:100% !important;
						list-style:none;
						margin:0;
						padding: 0 0 0 20px;
					}					
					
						#projects ul li{
							width:160px;
							height:186px;
							overflow:hidden;
							float:left;
							background:#484640;
							margin: 0 5px 10px 0;
							position:relative;
						}
						
						#projects ul li a {
							color:#fff;
						}	
						
							#projects ul li a:hover {
								text-decoration:none;
							}							
						
						#projects img{
							border:#484640 1px solid;
						}		
																	
						
						#projects #title{
							width:150px;
							height:109px;
							background: url(../imgs/projects/over.png) 0 0 ;							
							padding: 5px;
							font-size:14px;
							line-height:11px;
							position:absolute;
							bottom:-119px;
							text-decoration:none;
						}														
							
				#projectstBottom {
					width:706px;
					height:35px;
					background:url(../imgs/projects/bottom.png) 0 0 no-repeat;	
				}	
				
/* | Project
------------------------------------------------------------------------------------------ */				

#project {
	position:relative;
}

	#project #like {
		width:100px;
		height:50px;
		padding: 10px 0 0 0;
	}

	#project aside {
		width:231px;
		height:500px;
		position:absolute;
		right:-75px;
	}	

		#project aside #poster {
			width:706px;
			height:349px;
			background:url(../imgs/project/poster.png) 0 0 no-repeat;	
		}	
		
			#project aside #poster img {
				border:#b22222 1px solid;
				margin: 15px 0 0 15px;
			}				
			
			
		#project aside #gallery {
			width:706px;
			height:349px;
			position:relative;
			left:-6px;
		}		
								
	#project article {
		width:456px;
		padding: 5px 0 0 0;
	}		
	
		#project article #map {
			width:440px;
			height:300px;
			border: #D52228 1px solid;
			map: 5px 0 5px 0;
		}					

		#project article #video{
			height:276px;
			border: 1px solid #ddba21;
		}		
				
		#project article #text{
			width:450px;
			margin: 10px 0 0 0;	
		}		
		
		
		#project ul#tourdates{
			width:440px;			
			list-style:none;
			margin:0;
			padding:0;
		}	
		
			#project ul#tourdates li{
				width:440px;
				height:90px;
				margin: 5px 0 5px 0;
				display:block; 
				border-bottom:1px solid #ccc; 			
			}			
		
				#project ul#tourdates li #img{
					width:100px;
					margin: 0 20px 0 0;					
					float:left;
				}	
				
				#project ul#tourdates li #venue{
					width:180px;
					float:left;
					margin: 10px 20px 0 0;
				}	
				
				#project ul#tourdates li #links{
					width:120px;
					float:left;
					margin: 10px 0 0 0;					
				}												
				
/* | Subnav
------------------------------------------------------------------------------------------ */																																																								

#subnav {
	width: 800px;
	position:relative;
	right:6px;					
}	

	#subnavTop {
		width:706px;
		height:9px;
		background:url(../imgs/nav/subnav/top.png) 0 0 no-repeat;						
	}	
	
		#subnavWrap {
			width:706px;
			height:35px;
			background:url(../imgs/nav/subnav/wrap.png) 0 0 repeat-y;	
			margin:0;
		}	
		
			#subnavWrap ul{
				width:690px;
				list-style:none;
				margin:0 0 0 20px;
				padding:8px 0 0 0;
			}		
			
				#subnavWrap ul li{
					float:left;
					margin: 0 10px 0 0;
					font-size:16px;
					text-transform:uppercase;
				}
				
					*+html #subnavWrap ul li{
						width:130px;
						float:left;
						font-size:14px;
					}						
				
					#subnavWrap ul li img{
						float:right;
						position:relative;
						top:-5px;
						right:-3px;
					}	
						
						*+html #subnavWrap ul li img{
							float:right;
							position:relative;
							top:-25px;
							right:-3px;
						}																	
				
					#subnavWrap ul li a{
						color:#b22222;
						text-decoration:none;
					}							
		
		#subnavBottom {
			width:706px;
			height:24px;					
			background:url(../imgs/nav/subnav/bottom.png) 0 0 no-repeat;	
			margin:0;
		}						


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

#mailerPage{
}

	#mailerPage ul{
		list-style:none;
		margin:0;
		padding;
	}
	
	#mailerPage #confirmation{
		display:none;
	}	


/* | Blogs
------------------------------------------------------------------------------------------ */	

.post, .page-title, .archive-meta, .formcontainer, #comments{
	width:450px;	
}

	#content .post h1, #content .post h2 {
		margin:0;	
	}
	
	#content .entry-meta {
		margin:0 0 20px 0;	
	}	

.hentry{
	padding: 0 0 15px 0;
	margin: 0 0 10px 0;
	border-bottom: 1px solid #b22222;	
}

#sidebar{
	width:235px;
	position:absolute;
	top:20px;
	color:#015179;
	right:-38px;
	margin: 0 0 30px 0;
}

	#sidebarTop{
		width:235px;
		height:9px;
		background:url(../imgs/sidebar/top.png) 0 0;	
	}
	
	#sidebarWrap{
		width:203px;
		padding: 10px 10px 10px 20px;
		background:url(../imgs/sidebar/bg.png) 0 0;	
	}
	
	#sidebarBottom{
		width:235px;
		height:22px;
		background:url(../imgs/sidebar/bottom.png) 0 0;	
	}		

	#sidebar ul{
		margin:0;
		padding:0;
		list-style:none;
	}
	
		#sidebar a, #sidebar ul li a{
			color:#015179;
		}	
		
			#sidebar ul li ul{
				clear:both;
				padding:0;
				list-style:none;
			}
				
		
		#sidebar h3{
			color:#d52127;
			margin:0 0 5px 0;
			float:left;
		}			


/* | Forum
------------------------------------------------------------------------------------------ */	

.wrapper, #forum{
	height:auto;	
}

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

nav#footer{
	width:95%;
	height: 30px;
	margin: 0 auto 0 auto;
	border-top: 1px solid #ddba21;
	padding: 5px 0 0 0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
}

	nav#footer ul {
		margin:0;
		padding:0;
		position:relative;
		left:-4px;
	}
		nav#footer ul li{
			float:left;
			margin: 0 0 0 5px;	
		}


/* 
 * 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 { color: #444 !important; text-decoration: underline; }

  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; } 
}


