@charset "utf-8";

/**** index page **/
		#advert {
			background: #336699;
			padding-top: 5px;
			padding-bottom: 5px;
		}
		
		/* this div binds advertLeft and advertRight together so it can be centered in the advert div.  Need this for blue background to show through and span length of container */
		#advertContent {
			width: 817px;
			margin: 0 auto;
		/*	border: 1px solid #FF0000;  */
		}
		
			div#advertContent table td {
				padding: 0;
				margin: 0;
				width: auto;
			}
		
		#advertLeft {
			float: left; 
			/**** Firefox renders better when you put in explicit width and height - without this, there is a ~3px space at bottom of div ****/
			width: 390px;
			height: 236px;
		/*	border: 1px solid #FF0000;  */
		}
		
		#advertRight { 
			/**** Firefox renders better when you put in explicit width and height ****/
			width: 400px;
			height: 236px;
			margin-left: 405px;  /* this creates the padding between the left text and right picture, 15px of space 405-390  */
			border: 1px solid #000;  /*  change to imgborder class?  */
		/* 	border: 1px solid #FF0000; */
		} 
		
		#indexlrc {
			/* This allows the background color to be this off-white.  Otherwise, the background color supercedes or gets ignored in successive divs */
			background:  #F8FAFB;
		}
		
		#indexlrcContent {
			padding: 10px 0;
			border-left:  2px solid #336699;
			border-right:  2px solid #336699;
			border-bottom: 2px solid #336699;
		    /* border: 1px solid #FF0000; */
		}
		
		#indexleft {
			float: left; 
			width: 33%; /* since this element is floated, a width must be given */
			/* the background color will be displayed for the length of the content in the column, but no further */
		/*	border: 1px solid #000000;  */
		}
		
		#indexright {
			float: left;
			width: 33%; /* since this element is floated, a width must be given */
		/*	border: 1px solid #000000; */
		}
		
		#indexcenter {
			float: left;
/*		margin-left: 66%; */
			width: 33%;
		/*	background: #F8FAFB; */ /* the background color will be displayed for the length of the content in the column, but no further */
		/*	padding: 15px 0; */ /* top and bottom padding create visual space within this div */
		/*	border: 1px solid #FF0000;  */
			border-right: 1px dotted #000000;
			border-left: 1px dotted #000;
		}
		
/*** End Index page ***/


