* {
  /* This is the universal selector: It allows us to style every element
      on a page. In this case, we remove the default browser padding 
      and margin on every element */
  margin: 0;
  padding: 0;
  }
 
body {
  /* Styles applying to the entire page */
	font-size: 12px;
	font-family: Georgia, "Times New Roman", Times, serif;
  color: black;
  background: black;
  text-align: center;
  }
 
#header {
  /* To the header we apply a background image which tiles horizontally */
  height: 41px; /* 102*/
  text-align: center;
  background-color: black;
  /* background: url('images/Header.jpg') repeat-x top left; */
  }
  
#center_wrapper {
  background-color: white;
  }
  
 #header h1 {
  /* Section headers share the same tiled background image and font */
	font-weight: bold;
  	font-size: 16px/32px;
  color: rgb(0, 128, 0);
  text-indent: 1em;
  }  
 
 
#wrapper {
  /* The wrapper contains the content area, navigation and footer.
    It's positioned in the center of the page using auto margins */
  width: 100%;
  margin: 0 auto;
  text-align: left;
  background: black;
  }
 
#content, #subContent, #content_centre {
  /* Both the content area and navigation share the same background color */
  background: white;
  }  
  
#subContent2 {
  /* background: white; */
  margin: 1px;

  /* color:	#3c4040;*/
  }  
 
#content h2, #subContent h2, #content_centre h2 {
  /* Section headers share the same tiled background image and font */
  /*background: #0290fc url('images/smallHeaderBG.jpg') repeat-x top left;*/  
  font-size: 14px/28px;
  font-weight: bold;
  color: #9a9aa6;
  text-indent: 1em;
  }  
 
#content {
  /* The content area is positioned to the right using a right float */
  float: right;
  width: 623px;

  }
  
#content_centre {
  margin: 0 auto;
  width: 833px;
  /*height:100%;*/
  }
  
#content_centre.p {
  padding: 10px;
  /*height:100%;*/
  }
  
  
#content_centre.table{
 	width:100%;
}
#subContent {
  /* The navigation is positioned to the left using a left float */
  float: left;
  width: 210px;
  font-size:  11px/1.5 ;
    text-indent: 1em;
  }
 
  /* The following styles apply to lists and links within the navigation */ 
#subContent ul {
  list-style: none;
  margin: 1em;
  }
 
#subContent a {
  color: #9a9aa6;
  font-size:  1.1em;
  text-decoration: none;
  }
 
#subContent a:hover {
  color: black;
  }
 
  /* The following styles apply to the footer and it's contents */
#footer {
  text-align: center;
  clear: both;
  padding: 0px;
  height: 173px;
  width: 100%;
  font-size: 1.0em;
  
  }  
 
#footer a {
  color: #fff;
  text-decoration: none; 
  }
 
#footer a:hover {
  color: #FFF;
  text-decoration: underline;
  }   
  
  .footerSmalltext
  {
  	font-size: 0.7em;
	}

/****************************
 Product classes
 ****************************/
.Product {
	width: 100px;
	float: left;
	margin: 5px 5px 5px 2px;
	border: 0px solid silver;
	padding-bottom: 10px;
	height: 150px;
	text-align: center;

}

.Product img {
	float: left;
	border: 0px solid #777;
}

.Product h3 {
	text-align: center;
}

.Product p {
	margin: 0;
	padding: 5px;
	font-size: 9px;
}
 
  /* General styles */  
img {
  border: none;
  }
 
img.left {
  float: left;
  margin: 1em 1em 1em 0;
  }
 
img.right {
  float: right;  
  margin: 1em 0 1em 1em;
  }  
 
p, h3, h4 {
  margin: 11px;
  }
  
.Normal{
	color: black;

  background-color: white;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:10px;
	font-weight:normal;
	line-height:normal;
	text-align:left;
}