﻿/* Basic read of the css:
		1. classes/ids that are all the way to the left are the beginning of new div classes/ids
		2. everything that is indented under those classes/ids that are to the left correspond to those classes/ids
		3. also under each class/id, if necessary, are the IE6 hacks
		
		Ex:
			.page {
				whatever attributes go here
			}
				.page p {
					attributes here
					
				}
			
			IE 6 FIX/HACK
			.page p {
				_attributes here;
			}
			
			.header {
				attributes here
			}
			and so on...
*/


body {
	margin:0;
	padding:0;
	background: transparent none;
}

/*--- BEGIN PAGE DIV/CONTAINER DIV/CONTENT DIV (CENTERS CONTENT ON PAGE) ---*/
#page {
	position:relative;
	width:913px;
	margin:12px auto;
}

.container {
	position:relative;
	width:913px;
	margin:-10px 0 0px 0;
	_margin-top:10px;
	padding:0 0 0px 0;
	background:transparent none;/*url(../images/content_border.png) repeat-y;*/
	
}

.content {
	width:710px;
	min-height:320px;
	_height:320px;
	margin:0;
}

a.logo {
	display:none;
}

a.homeBtn {
	display:none;
}

ul#mainNav {
	display:none;
}

ul#cornerNav {
	display:none;
}
	
ul#sideNav {
	display:none;
}

ul#actionList {
	display:none;
}

ul#recipeNav {
	display:none;
}

ul#footernav {
	display:none;
}



