/* This is a simple CSS sheet. */

body { 
/* this is the background color of the whole frontend. 
Instead of the hex colour code you can type in a colour name like green or red */
  background-color : #595959;
  background-image : url(img/backAdd02.png);
  color:#D9D9D9;
}

/* this is a cool way to make your links flash. Read more on this at w3school */


a:link {
  Color:#808080;
} /* unvisited link */

a:visited {	
  color:Green;
} /* visited link */

a:hover {
  color:orange;
} /* mouse over link */

a:active {
  color:#404040;
} /* selected link */


.table { 
	border: #000000 1px solid;
	background-color: #363636;
}

.tableback { 
	border: #000000 1px solid;
	background-image    : url(img/backAdd03.png);
	background-position : top left;
		
	background-color: #1C1C1C;
}

.cell {
	color: #FFFFFF;
	padding: 3px;
	background-color:#1C1C1C;
}

.header {
	padding: 0px;
	padding-left: 2px;

  color:#F00000;

	background: #323232;

	font-family: verdana !important;
	font-size: 10px !important;
	line-height: 18px !important;
	text-align: left;
	
	text-shadow: #000000 0px -2px 3px;	

	border: 2px solid;	
	border-color: #000000 ;
		
	border-top: 2px solid;	
	border-top-color: #000000;

	border-bottom: 2px solid;		
	border-bottom-color: #000000;
}
