/* Comments in CSS */



a:link {text-decoration: none; color: #666666;}
a:visited {text-decoration: none; color: #666666;}
a:hover {text-decoration: none; color: #000000;}

body {  
		background-color: #FFCC66;
		font-family:"Georgia", "Helvetica";
}

#parent {
	width: 800px;
	height: 1000px;
    margin-top: 0px;
    margin-left: 0;
}



#logo {
	position: absolute;
    width: 425px;
    height: 76px;
    margin-top: 10px;
    margin-left: 200px;
}

#bat {
	position: absolute;
    width: 200px;
    height: 82px;
    margin-top: 20px;
    margin-left: 10px;
}

#link1 {
	position: absolute;
    width: 120px;
    height: 40px;
    margin-top: 70px;
    margin-left: 220px;
}

#link2 {
	position: absolute;
    width: 120px;
    height: 40px;
    margin-top: 70px;
    margin-left: 340px;
}

#link3 {
	position: absolute;
    width: 120px;
    height: 40px;
    margin-top: 70px;
    margin-left: 460px;
}

#link4 {
	position: absolute;
    width: 120px;
    height: 40px;
    margin-top: 70px;
    margin-left: 580px;
}

#orange {
	position: absolute;
    width: 800px;
    height: 840px;
    margin-top: 130px;
    margin-left: 0px;
}

#content1 {
	position: absolute;
    width: 750px;
    height: 800px;
    margin-top: 130px;
    margin-left: 0px;
	padding: 20px;
}

#form {
	position: absolute;
    width: 480px;
    height: 350px;
    margin-top: 10px;
    margin-left: 0px;
	border: 1px solid #777777;
	}
	
.body1{
		color:#000000;
		font-family:"Times New Roman", "Times";
		font-size: 12pt;
	}
	
.small{
		color:#666666;
		font-family:"Times New Roman", "Times";
		font-size: 10pt;
	}
	
	
	.exmples{			
		color:#44FF00; /* Text color */
		font-family:"Georgia", "Arial"; /* Use system fonts */
		font-size: 1.2em; /* Sizes can be described with em, px, or % */
		font-style: italic;
		font-weight: bold;
		letter-spacing: 1px; /* Space between letters */
		word-spacing: 2px; /* Space between words */
		line-height: 120%; /* Leading - Space between lines */
		text-indent: 25px; /* First line Space from left edge */
		margin-left: 100px; /* Space from left edge */
		text-align: center; /* Alignment on page, or inside box center, left, or right */
		margin-top: 100px; /* Space above paragraph */
		margin-bottom: 100px; /* Space below paragaph */
		}
