@charset "UTF-8";
/* CSS Document */

body  {
	background: #201729;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #2e053f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1024px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-image: url(../images/box_bg.jpg);
} 

#portalcontainer {
	text-align: center;
	margin-top: 50;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 


#header {
	height: 115px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background: #DDDDDD;  
	margin-top: 0px;
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#sidebarL {
	position: absolute;
	top: 115px;
	left: 0;
	width: 312px; 
	background: #EBEBEB; 
	float: left;
}

#sidebarR {
	position: absolute;
	top: 115px;
	right: 0;
	width: 25px;
}

#mainContent {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 340px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-right: 55px;
	width: 600px;
	font-size: 12px;
}

#footer {
	padding: 0;
	background-color: #000000;
	color: #ACACDB;
	text-align: center;
	font-size: 14px;
} 

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#nav-home_ {
	float:left;
	top:115px;
	width:99px;
	height:45px;
	padding-left: 312px;
}

#nav-stage_ {
	width:109px;
	height:45px;
	float: left;
}

#nav-closeup_ {
	width:159px;
	height:45px;
	float: left;
}

#nav-blog_ {
	width:106px;
	height:45px;
	float: left;
}

#nav-about_ {
	width:116px;
	height:45px;
	float: left;
}

#nav-contact_ {
	width:99px;
	height:45px;
	float: left;
}

.quote {
	color: #039;
	font-style: italic;
}

#footer a {
	color: #ACADD8;
}

.bigtext {
	font-size: 14px;
	font-weight: bold;
}

