html,body {
	background-color: #D3E9D0;
	font-family: Trebuchet MS, Verdana, Arial, sans-serif;
	font-size: 10pt;
	text-align:center;
	margin: 10px;
	margin-bottom: 30px;
}
/* defining the appearance of heading in the page */
h1 {
	font-size: 14pt;
	margin: 0%;
}

/* 
It has width of 760px so as to enable comfortable viewing even from small screen resolution of 800*600.
Curves are placed at the four corners of the page using four divs to give a curved appearance to the page
Margin-left and margin-right are set to auto to center the content of the page in the browser window.
*/
div.upperleft {
	width: 955px;
	margin-left: auto;
	margin-right: auto;

	background-color: #AED7A8;
	background-image: url('upperleft.png');
	background-repeat: no-repeat;
	background-position: top left;
	text-align:left;
}

div.upperright {
	background-image: url('upperright.png');
	background-repeat: no-repeat;
	background-position: top right;
}

div.lowerleft {
	background-image: url('lowerleft.png');
	background-repeat: no-repeat;
	background-position: bottom left;
}

div.lowerright {
	background-image: url('lowerright.png');
	background-repeat: no-repeat;
	background-position: bottom right;
	padding: 3% 3% 3% 3%;
}

/*this is the page header that has the logo image as background on it */
div.header {
	margin-left: auto;
	margin-right: auto;
	background-image: url('images/logo.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	margin-bottom: 20px;
}


/*defining the apperance of navigation, it is placed just below the background image in the header section */

div.nav {
	padding-top:84px;
	text-align:center;
}

/*this defines the appearance of the links in the navigation section */
.nav a, .nav a:hover, .nav a:visited {
	color:#979797;
	text-decoration:none;
	margin-right:10px;
	border-bottom:1px solid #979797;
}

.nav a:hover {
	border-bottom:1px dotted #FFFFFF;
}

/*styles to be applied to the main content of the page */
.content
{
	color: #333;
	text-align: justify;
	margin-bottom: 20px;
}
/*links in the main content */
.content a:link, a:visited 
{
text-decoration: underline;
color: #191970;
background-color: transparent;
}

.content a:hover, a:active 
{
text-decoration: underline overline;
color: #191970;
background-color: #FF9900;
}

/*styles for the footer, it is cleared from others and is centered */
div.footer {
	clear: both;
	text-align:center;
	color: #979797;
	width:955px;
	height:23px;
	margin-left:auto;
	margin-right:auto;
}
/*defining the appearance of links in the footer section*/
#footer a:link, a:visited
{
	text-decoration: underline;
	color: #979797;
}

/*styles for the image used floated on the right section of the pages */
.pageimg
{
	border: 1px solid #979797;
	float: right;
	margin-left: 10px;
}

.floatright
{
float: right;
margin: 8px;
}

.clear
{
	clear: both;
}
.justify
{
text-align:justify;
}
.center
{
	text-align:center;
}

.red
{
color:#FF0000;
}

.green
{
color:#33cc66;
}


/*this defines the appearance of the thumbnails in the gallery page*/
#gallery {
	list-style-type: none;
}
#gallery li {
	float: left;
	margin-right: 6px;
	margin-bottom: 10px;
	font: bold 0.8em Arial, Helvetica, sans-serif;
	color: #333333;
}
#gallery img {
	display: block;
	padding: 4px;
	border: 1px dotted #736A97;
}

/*Defining the appearance of the form to be used in the feedback section*/
form {
	padding: 20px;
	font-size: 12px;
	color: #333;
	background-color: #AED7A8;
}

input.txt {
  color: #333;
  background-color: #D3E9D0;
  border: 1px inset #00008B;
  width: 200px;
}
input.btn {
  color: #fff;
  background-color: #333;
  border: 1px outset #fff;
}
form p {
  clear: left;
  margin: 0;
  padding: 0;
  padding-top: 5px;
}
form p label {
  float: left;
  width: 20%;
  font: bold 13px Arial, Helvetica, sans-serif;
}

form textarea {
	background-color: #D3E9D0;
	 border: 1px inset #00008B;
}

.feedback
{
	background-color: #D3E9D0;
	padding: 10px;
}

.centered
{
	text-align:centered;
}