/*****************************************************************************************************
		Kirsir Internet Solutions Project Template v1.2
		http://www.kirsir.ca
		
		Date Created: October 20, 2004
		Description: Each file in the project template contributes to a Kirsir web site project and
		             provides a base website for each client.
					 The structure and logic has been developed for use by Kirsir to assist in project development
					 and cannot be distributed or sold.
******************************************************************************************************/

	/*NOTE: To add borders to floating divs (left/center/right), you must account for the width of the border in div widths! e.g. if left div is to be 175px, that total includes the border (1px?) and 'inside' (174px?).*/

@import url('borders.css');
@import url('boxes.css');
@import url('dropdowns.css');
@import url('forms.css');
@import url('links.css');
@import url('lists.css');
@import url('other.css');
@import url('tables.css');
@import url('text_headers.css');

/*************************CORE POSITIONING STYLES*****************************************/
html, body{height:100%;}

body {
	background:#CED5E2 url('../images/design/body_bg.jpg') 0px 118px repeat-x;
	color:#000;
	margin:20px;
	padding:20px;
	font:100%/1.3 Arial, sans-serif;
}

#pageWrapper { /*wraps all content*/
	position:relative;
	padding:0px;
	margin:0px;
	left:50%;
	margin-left:-384px; /*768px moved 50% of window to center - to move back, margin must be neg*/
	width:768px;
	background:#fff;
}

#bottomWrapper{ /*wraps all lower content and appears before header content for better SEO*/
	position:absolute;
	top:222px; /*214px + 8px top border*/
	left:0px;
	width:752px; /*752px + 8px left border + 8px right border = 768px (MAX WIDTH FOR 800x600 screens!)*/
	background:#fff;
	border:8px solid #fff;
	border-width:0px 8px 8px;
}

#topWrapper { /*wraps top divs (topRow, navbar, etc.)*/
	position:absolute;
	top:0px;
	left:0px;
	width:752px;
	height:214px;
	background:#fff;
	border:8px solid #fff;
	border-width:8px 8px 0px;
}


/*******************************TOP STYLES**********************************************/

#date{ /*positions the date div*/
	position:absolute;
	top:0px;
	right:0px;
	font:64% Arial, sans-serif;
	color:#000;
	text-align:right;
}

#logo{
	position:absolute;
	top:13px;
	left:0px;
	width:200px;
	height:50px;
	color:#000;
	font:70% Arial, sans-serif;
}

#navbar{
	position:absolute;
	top:43px;
	right:0px;
	z-index:10; /*z-index above closer - Entire row that contains navbar must have z-index so that #closer goes underneath and removes flickering in IE*/
	background:#fff;
	text-align:right;
	font:64% Arial, sans-serif;
	color:#b17133;
}

#navLinks{
	position:relative;
	padding-top:3px;
}

#topImageBand{
	position:absolute;
	top:70px;
	left:0px;
	width:752px;
	height:137px;
	background:#fff;
	color:#000;
}
/*random images within band*/
#topImageA{
	position:absolute;
	top:0px;
	left:0px;
	width:187px;
	height:137px;
}
#topImageB{
	position:absolute;
	top:0px;
	left:188px;
	width:187px;
	height:137px;
}
#topImageC{
	position:absolute;
	top:0px;
	left:376px;
	width:187px;
	height:137px;
}
#topImageD{
	position:absolute;
	top:0px;
	left:564px;
	width:188px;
	height:137px;
}

#topAboveImagesBand{position:absolute; top:63px; left:0px; width:752px; height:5px; background:#979797; font:0% arial;}
#topUnderImagesBand{position:absolute; top:209px; left:0px; width:752px; height:5px; background:#979797; font:0% arial;}

/*******************************MIDDLE STYLES**********************************************/

#contentAllWrapper{ /*wraps all middle content*/
	position:relative;
	background:#fff;
	width:100%;
	height:auto; /*allow expanding div*/
	min-height:290px; /*FF height (not supported in IE 6 or less - see ie_hacks.css)*/
}

#centerLeftWrapper{ /*wraps center & left columns*/
	position:relative; 
	float:left; 
	width:100%;
	background:#fff url('../images/design/building_bg.jpg') 100% 100% no-repeat;
}

#center{ /*div holding content (adding a border adds width!)*/
	position:relative;
	width:282px;
	float:right;
	height:auto; /*allow expanding div*/
	min-height:290px; /*FF height (not supported in IE or less - see ie_hacks.css)*/
	background:transparent;
}

#left{ /*column holding left content (adding a border adds width!)*/
	position:relative; 
	float:right; 
	width:470px; 
	background:transparent;
	margin:25px 0px 10px;
}

#right{ /*column holding right content (adding a border adds width!)*/
	position:relative; 
	float:left; 
	width:175px; 
	background:transparent;
}

#content {
	position:relative;
	margin:25px 0px 10px 10px;
	background:transparent; 
}

/*******************************BOTTOM STYLES**********************************************/

#footer{ /*holds textlinks, copyright, and link to Kirsir*/
	position:relative; 
	width:100%; 
	background:#fff;
	clear:both;
	margin-top:0px; /*distance from content area*/
	min-height:42px;
}

#footerLeft{
	position:relative;
	float:left;
	width:471px;
	min-height:42px;
	background:#1f4d9c url('../images/design/footer_textlinks_bg.jpg') 0% 0% repeat-x;	
}

#footerRight{
	position:relative;
	float:right;
	width:280px;
	min-height:42px;
	background:#b17133 url('../images/design/footer_copyright_bg.jpg') 0% 0% repeat-x;	
	text-align:right;
}

#textLinks{
	position:relative;
	font:64% Arial, sans-serif;
	padding:8px;
	color:#fff;
}

#copyright {
	position:relative;
	font:64% Arial, sans-serif;
	padding:8px 8px 0px;
	color:#fff;
}

#kirsir{
	font:64% Arial, sans-serif;
	color:#fff; 
	padding:0px 8px 8px;
}

/******************DISPLAY DURING PRINTING ONLY*****************************************/
/*Company Info that only appears when printed*/
#printCompanyInfo{display:none;}