/* stylesheet.css */

/* Page header style */
#header{
	width: 100%;
	background-image: url("pix/bkg/drops.jpg");
	background-repeat: repeat;
	border-bottom: thin solid #191970;
}

/* Page footer sytle */
#footer{
	clear: both;
	width: 100%;
	background-image: url("pix/bkg/drops.jpg");
	background-repeat: repeat;
	border-top: thin solid #191970;
	padding-top: 4px;
}

/* Add some margin spce to main content */
#main{
	margin: 1em;
	/* margin-left must equal total width of left sidebar */
	margin-left: 10em;
}

/* style for sidebar column */
#sidebar{
	float: left;
	display: inline;
	padding: 0;
	margin: 1em;
	width: 8em;
	  /* total width is 10em */
}

/* Body text and page background */
body {
	font-family:'Book Antiqua', Times, Serif;
	color:#191970;
	background-color:#f8fff0;
	font-size: medium;
	margin: 0;
	padding: 0;
}
  
/* Level 1 headings */
h1{
	font-family: Papyrus, "Curlz MT", "Juice ITC", Algerian, fantasy;
	font-weight: bold;
	text-align: center;
	color: #1F2159;
}
  
/* Level 2 headings */
h2{
	font-family: "Arial Black", Impact, Charcoal, fantasy;
	color: #1F2159;
}
  
/* Level 3 headings */
h3{
	font-family: Arial, Helvetica, sans-serif;
	font-style:italic;
	text-decoration:underline;
	color: #1F2159;
}

/* Generic style class for highlighting text */
.hilite{
	background-color: #ffff00;
}
/* Paragrahs styled as message */
p.message{
	margin-left: 100px;
	margin-right: 100px;
	padding: 5px;
}

/* Paragraphs styled as tips */
p.tip{
	background-color:#ACD095;
	margin-left:100px;
	margin-right:100px;
	padding: 5px;
	border:solid thin #167A58
}

/* Paragraphs styled as warnings */
p.warning {
	background-color:#FFCCFF;
	margin-left: 100px;
	margin-right: 100px;
	padding: 5px;
	border: solid thin #ff0000;
}

/* Paragraphs styled in the center of the page */
p.center {
	text-align: center;
}

/* float image to left of paragraph */
img.floatLeft {
	float: left;
	margin-right: 10px;
}
  
/* Float image to right of paragraph */
img.floatRight{
	float: right;
}
  
/* Center image between margins */
div.center{
	width:  100%;
	text-align: center;
}
   
/* Custom bullet for bulleted lists */
ul{
	list-style-image: url("pix/bullets/ani-smiley.gif");
}

/* Style for tables of thumbnail images */
table.thumbs {
	text-align: center;
	border-collapse: collapse;
	margin: auto;
}

/*Style for tables with text*/
table.text {
	text-align: top left;
	vertical-align: top;
	margin-left: 100px;
	margin-right: 100px;
	margin-top: 100px;
		
}

/* Stle for table cells */
td{
	vertical-align: top;
	
}

/* Style for table cells that contain main heading */
td.main{
	font-size: 22px;
	font-weight: bold;
	
}
	
/* Style for table cells that contain thumbnails */
td.thumbs{
	border: solid 1px #00bfff;
	padding: 10px;
}

/* Style for thumbnail images */
img.thumbs{
	width: 100px;
	height: 80px;
	border-width: 0px;
}

/* My test for style for thumbmail images */
img.thumbs2{
	width: 200px;
}

/* My test p.style */
p.mytest {
	background-color:#f8f981;
	margin-left: 50px;
	margin-right: 23px;
	padding: 25px;
	border: solid thick #01d0d8;
	color: #2cac05;
}
 