/* blues site - mike parr */
body {  /*controls overall page - all divs, and the outside border */
	margin: 1;
	padding: 0;
	font-family: Verdana, Arial, sans-serif;
	font-size: 80%;
	/*color:  #AAAAAA;      #2A3053;     */
	background-color: #DCDCDC;
	text-align: center;
}



.news {
background-color: #FFFF00;
}


pre  {
font-size: 120%;    /*make all pre-s a bit bigger  */

}


p {    /* controls all paras, unless we specialise later */
	margin: 0.1em 0 0.1em 0;
}

h1 {       /* general h1 - unless we specialise later */
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	color: #009900;
}

h2 {
	margin: 0;
	padding: 0;
	background-color: #009900;
	color: White;
	font-size: 100%;
	font-weight: normal;
	border-bottom: 1px solid #2A3053; 
	border-top: 1px solid #2A3053; 
}

div {
	margin: 0; 
	padding: 0; 
	display: block;
}


a:link {   /* for all links, but see below   (nb the 'a' means 'anchor' - term for link*/
	color: #009900; 
	text-decoration: underline; 
}

a:hover {    /* hover over a link */
	color: #E16840; 
	text-decoration: none;
}

a:active {
	color: #4169E1; 
	text-decoration: none;
}

a:visited {
	color: #B840E1; 
	text-decoration: none;
}

.container {   /* the whole 'inner' page  */
	background-color: #FFFFFF; 
	margin: 5px auto 0 auto; 
	padding: 0; 
	/*width: 720px;  ************no - let it fill the browser **************/
	border-left: 1px solid #2A3053;
	border-right: 1px solid #2A3053;
}

.header {    /*  across the top */
	padding: 0; 
	margin: 0; 
	text-align: right;
	background-image: url(pics/track1.jpg); 
	background-repeat: no-repeat; 
	background-position: left;
	height: 150px;
	border-bottom: 1px solid #2A3053;
	border-top: 1px solid #2A3053;
}

.header h1 {     /* what a h1 in header looks like  */
	 margin-top: 0.70em;  
	margin-right: 3.5em;
	font-size: 25px; 
}

.header p {
	color: #1D213E;
	margin-right: 20em;
	font-style: italic;
	font-size: 14px;   /*   ??? */
}



.menu {
	padding: 2px; 
	margin: 0; 
	text-align: center;
	height: 15px;
}

.left {              /*defines a class called left  - you refer to the class in xhtml*/
	float: left; 
	clear: both; 
	width: 14em; 
	margin: 0; 
	padding: 0;
	border-right: 1px solid #2A3053;   /*new - divides menu from text */
	/*height: 530px;   was 330 not needed - let it expand as needed */
}

 
.left h2 {   /* controls an h2 in the left class */
	text-align: left; 
	padding: 0 0 0 1em;
}
 
.leftcontent {   /* defines a class */
	margin: 0; 
	padding: 0; 
	text-align: left;
	
}


.leftcontent p {    /* para of the leftcontent class*/
	padding-left: 1em;
}

 
.content { /* controls the box around content - e.g the white space around each edge of the text */
	clear: right; 
	text-align: left; 
	margin: 0 0 0 14em; 
	padding: 2em;
	border-top: 1px solid #2A3053; 
	/*border-left: 1px solid #2A3053;    ***/ 
}

.content h2 {  /* h2 heading style in content  */
	padding: 0;
	margin: 0;
	background-color: #FFFFFF;
	color: #009900;
	font-size: 140%;   /*  was 100   */
	border: none;
		 margin-top: 0.50em;    /* new  */
	font-weight: bold;
}

.content p {   /* gap above each para in content */
   margin-top:0.70em;   
}

.content a{   /* link in content */
   text-decoration:underline;
}


.footer {   /* controls text in footer  */
	font-size: 75%; 
	margin: 0; 
	padding: 0; 
	text-align: center; 
	clear: both;
}

.footer p {   /* the type of border above the footer */
	border-top: 1px solid #2A3053;
	border-bottom: 1px solid #2A3053;
	padding: 0.2em;
	margin: 0;
}


#menu a{     /* the font, size etc of the menu text */
	text-decoration: none;
	font-weight: bold; 
	display: block;  
	padding: 5px; 
	width: 120px; 
	margin-bottom: 5px; 
}


#menu a:link, a:visited{   /* menu is an ID, which we refer to in xhtml */
	color: #009900;
	text-decoration: none;
	margin-left: 1em;
}

  


#menu a:hover {
	background-color: #6B8E23;
	color: White;
	border-top: 1px solid #8FBC8F;
	border-left: 1px solid #8FBC8F;
	border-right: 1px solid #8FBC8F;
	border-bottom: 1px solid #2F4F4F;
}

/*     end                                 --------------------------------------------------------------- */

