/************************************************************************

	html and body style
	
************************************************************************/
	/*
	All the pages will no margins, padding and will use a given 
	font georgia/serif.
*/
body,html {
	margin: 0;
	padding: 0;
	font-family: arial, sans-serif;
	font-size: 93%; 
}

/* 
	Also the body of the page will have a minimum width of 800px
*/
body {
	min-width: 800px;
}

/*
	All the page content will inheret this property. It sets the color 
	white, margin 0 and auto, width 800px and border will be also given
	Note that because of the auto value to margin we get the whole
	webpage content centered.	
*/
#wrap {
	margin: 0 auto;
	width: 800px;
	text-align: center;
}


/* 
  All the horizontal tabs 
*/
#tabs {
	float: left;
	width: 100%;
	background: #BBD9EE;
	line-height: normal;
}

#tabs ul {
	margin-left: 100px;
	margin-bottom: 0px;
	padding: 10px 10px 0 50px;
	list-style: none;
}

#tabs li {
	display: inline;
	margin: 0;
	padding: 0;
}

#tabs a {
	float: left;
	background: url("tableft.gif") no-repeat left top;
	margin: 0;
	padding: 0 0 0 4px;
	text-decoration: none;
}

#tabs a span {
	float: left;
	display: block;
	background: url("tabright.gif") no-repeat right top;
	padding: 5px 15px 4px 6px;
	color: #000;
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span {
	float: none;
}

/* End IE5-Mac hack */
#tabs a:hover span {
	color: #FF9834;
}

#tabs a:hover span {
	background-position: 100% -42px;
}

#tabs #current a {
	background: #4682b4;
	background-position: 0% -42px;
}

#tabs #current a span {
	color: white;
	background: #4682b4;
	background-position: 100% -42px;
}

/************************************************************************

	Header style

************************************************************************/
/*
  Align header to the center of the screen
*/
#header {
	text-align: center;
	background: #4682b4;
}

#header ul{
  list-style-type: none;
  margin: 0;
  padding: 5px;
}
/*
	Header of size h1 will have padding of 5px
*/
#header a {
	color: #cccccc;
	text-decoration: none;
}

/************************************************************************

	Main content style	

************************************************************************/
#main {
	float: right;
	width: 600px;
	text-align: center;
}

#main h2,#main h3,#main p {
	padding: 0 10px;
	color: #000000;
}

/************************************************************************ 

	The sidebar styles 
	
************************************************************************/
	/* 
	Background will be white and width will be 200px.
	Note that the float property will shift it to the left by floating it
	first
*/
#sidebar {
	float: left;
	width: 180px;
	height: 200px;
	background: #BBD9EE;
	border-right: 2px solid #4682b4;
	text-align: left;
}

/* 
	The sidebar list will have no style, with no margin, and no padding
*/
#sidebar ul {
	list-style-type: none;
}

/*
	All links will be purple in color and will look like as if visited before
*/
#sidebar a {
	color: #4682b4;
	text-decoration: none;
}

/************************************************************************

	Footer style

************************************************************************/
	/* 
	Using this property will make footer sink to the bottom the webpage
*/
#footer {
	clear: both;
}

/*
	All data in the footer will be center aligned, font will be smaller
	and padding will be done with no margin
*/
#footer p {
	font: 60% arial, sans;
	text-align: center;
	padding: 5px;
	margin: 0;
}


legend 
{
  color: #4682b4;
  font-weight: bold;
}
/************************************************************************

	Table style

************************************************************************/
	/*
	The tables used in the pages will not have regular borders as in 
	html pages, but they will be thin solid and spring green in color
*/
th
{
	background-color: #BBD9EE;
	color: #ffffff;
	border: 1px solid gray;
}

table.inside{
	border: 1px gray solid;
	border-collapse: collapse;
	text-align: left;
}

table
{
	text-align: left;
	table-layout: auto;
	border-spacing: 5px;
}

