@charset "UTF-8";
/* CSS Document */
body{
background:url(images/pigfoot_tile.png);
background-repeat:repeat;
}

img{
border:none;
}

#container{
/*keeps the entire page content centered in browser window---------------*/
	margin:auto;
	width:900px;
	height:auto;
	background-color:#FFF3D5;
	/*border-color:#E68A1B;
	border-style:solid;*/
	border:1px solid #E68A1B;
	border-bottom:10px solid #E68A1B;
}

.logoHeader{
/*holds the LBPZ logo*/
	margin:auto;
	width:900px;
	text-align:left;
	vertical-align:middle;
	height:auto;
	background-color:#FFD978;
}

/*styling the tabs  -----------------------------------------------------*/
/* dump all the major styles in the a tag; cascades down through other pseudoclasses--*/
.tab a{
	float:left;
	width:149px;
	height:16px;
	padding-top:4px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:center;
	vertical-align:middle;
	text-decoration:none;
	border-left-color:#FFF3D5;
	border-left-style:solid;
	border-left-width:1px;
}
.tab a:link{
	background-color:#E68A1B;
	color:#3c0f04;
}
.tab a:visited{
	background-color:#E68A1B;
	color:#FFD978;
}
.tab a:hover{
	background-color:#3c0f04;
	color:#E68A1B;
}

/*left column, holding photo------------------------------------------*/
.leftSide{
	font-family:Arial, Helvetica, sans-serif;
	float:left;
	width:599px;
}
.leftSide p{
	/*test setting for font size. 16px works on home page*/
	font-size:12px;
	color:#222222;
	line-height:18px;
	margin-left:10px;
}
.leftSide h1{
	font-size:30px;
	margin:10px 0 5px 10px;
}

/*right column styling, including text--------------------------------*/
.rightSide{
	float:right;
	width:270px;;
	padding-left:20px;
	padding-right:10px;
	font-family:Arial, Helvetica, sans-serif;
	/*test setting for font size. 16px works on home page*/
	font-size:12px;
	color:#222222;
	line-height:18px;
}
/*.rightSide */
h1{
	font-size:30px;
	line-height:30px;
	margin:0;
}
.rightSide h2{
	font-size:24px;
	margin:10px 0 5px 0;
	/*color:#222222;*/
}
.rightSide h3{
	font-size:18px;
	padding:0px;
	margin-top:0;
}
.rightSide a{
	/*font-size:24px;*/
	text-decoration:none;
}
.rightSide a:link{
	color:#6a1e02;
}
.rightSide a:hover{
	color:#e68a1b;
}

/* div to hold photo bundle: image and text if needed*/

.photoBundle {
	float:left;
/*	width:145px; */
	text-align:center;
	margin-top:5px;
	margin-bottom:5px;
}
.photoBundle a{
	font-weight:bold;
	text-align:center;
	line-height:26px;
	text-decoration:none;
	font-family:Arial, Helvetica, sans-serif;
	/*test setting for font size. 16px works on home page*/
	font-size:12px;
	color:#222222;
}
.photoBundle a:link{
	color:#6a1e02;
}
.photoBundle a:visited{
	color:#E68A1B;
}
.photoBundle a:hover{
	color:#e68a1b;
}


/*a footer kind of thing, if I can make it work-------------------------*/
.indicia{
	clear:both;
	background-color:E68a1B;
	height:10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:8px;
	text-align:center;
}	

/*to clear floats--------------------------------------------------------*/
.spacer{
	clear:both;
}	