@charset "utf-8";

/* scc_content.css */
/* CSS file for content type pages which will have 3 columns
   left column will have section/page specific navigation 
   center column will have the content for page
   right column will have the quick links box in the right column
   
   ** Left and right columns will have fixed widths!!!!!
   ** Center column will use the remaining available viewport area
   
   This file must be called after scc_main.css has been called on a page.
*/


/* ids to set up and control the columns  */

#contentwrapper{
	float: left;
	width: 100%;
}

#contentcolumn{
	margin: 0 230px 0 210px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
	padding: 5px;
}

#leftcolumn{
	float: left;
	width: 210px; /*Width of left column*/
	margin-left: -100%;
}

#rightcolumn{
	float: left;
	width: 230px; /*Width of right column*/
	margin-left: -230px; /*Set left marginto -(RightColumnWidth)*/
}


/* right side quicklinks box items  */
.rsQLBox {text-align:left; 
		  width: 180px; 
		  height:165px; 
		  margin-left: auto; 
		  margin-right: 20px; 
		  margin-bottom:15px; 
		  background:url('../images/rs_ql_bgnd.png') no-repeat; 
		  position:relative;}
		
		
.rsQLHeader {font-weight:bolder; 
		   color:#006; 
		   font-size:.875em; 
		   padding-top:9px; 
		   padding-left: 12px; 
		   letter-spacing: .2em;}

/*.rsQLList {
		list-style-type:none;
		margin: 2px 2px 5px -20px; 
		position:absolute;
		left: 5px;
		top: 34px;
		line-height: 1.85em;
		font-size:.850em;
}*/
.rsQLBox ul {margin: 20px 5px 5px -20px; 
			position:absolute; 
			left: -5px; 
			top: 15px; 
			line-height: 1.85em; 
			font-size:.820em;
			list-style:none;}

.rsQLCommon {background-repeat:no-repeat; 
			 background-position: 0px 2px; 
			 padding-left: 25px;}
		    
.rsLIDivHome{background-image:url('../images/rs_ql_icons/ql_div_home.gif');}
.rsLIDivContact{background-image:url('../images/rs_ql_icons/ql_div_email.gif');}
.rsLIDivLaws{background-image:url('../images/rs_ql_icons/ql_laws_icon.gif');}
.rsLIDivArchive{background-image:url('../images/rs_ql_icons/ql_archive_icon.gif');}
.rsLIDivExtLinks{background-image:url('../images/rs_ql_icons/ql_external_links.gif'); background-position: 0px 4px; }




/* classes to control the padding of the left, center & right columns */
.innertubeLeft{
margin: 10px 5px; /*Margins for inner DIV inside the left column (to provide padding)*/
padding: 5px;
}

.innertubeCenterCol{
margin: 2px 5px; /*Margins for inner DIV inside the Center column (to provide padding)*/
margin-top: 0;
padding: 5px;
}

.innertubeRight{
margin: 10px; /*Margins for inner DIV inside the Right column (to provide padding)*/
margin-top: 0;
padding: 10px;
}

