html
{
   height: 100%;
   margin: 0;
   padding: 0;
}


/* General styles */
body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background: #F0FFFF;
	min-width:100%;		/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
	font-size:90%;
	font-family:arial,sans-serif;/*Helvetica, Arial, Verdana; this is the only place where font names are mentioned, remove if u want to have browser default font*/
	color: #1D4EB3;
}

a {
	color: #996666;
	text-decoration: none;
}

a:hover {
	color: #9FB9EF;
	text-decoration:none;
}

h1, h2{
	margin:.8em 0 .2em 0;
	padding:0;
}

h3{
	margin:.8em 0 .2em 0;
	padding-left: 10px;
	font-size: 20px;
}

p {
	margin:.4em 0 .8em 0;
	padding:0;
}
img {
	margin:10px 0 5px;
}

/* Header styles */
#header {
	clear:both;
	float:left;
	width:100%;
}

#header {
	background: #F0F7FE ; /*url('/images/header.jpg')*/
}

#header p{
	padding:.4em 15px 0 15px;
	margin:0;
}

#header h1{
	padding:.4em 15px 0 15px;
	margin:0;
}

#header h1.siteheading{/*used in displaying the site heading*/
	padding:.4em 15px 0 15px;
	margin:0;
	text-decoration: none;
	text-align: center;
	font-size: 30px;/*if this property is removed it will set 29px by default*/
}
.siteheading a {
	color: #0B5193;
}

#header h2 {
	padding:.4em 15px 0 15px;
	margin:0;
}

#header h2.caption{				/*used to display caption of the site*/
	padding:.4em 15px 0 15px;
	margin:0;
	text-align:center;
	font-size: 17px;/*reduce if required, even this property is not specified caption will display as big as 23pixels by default*/
}
#header ul {
	clear:left;
	float:left;
	width:100%;
	list-style:none;
	margin:10px 0 0 0;
	padding:0;
}
#header ul li {
	display:inline;
	list-style:none;
	margin:0;
	padding:0;
}

#header ul li a {
	display:block;
	float:left;
	margin:0 0 0 1px;
	padding:7px 10px;
	text-align:center;
	background: #996666;
	color:#F9F3F4;
	text-decoration:none;
	position:relative;
	left:43%;                    /*this is to bring the menu to the center*/
	line-height:1.3em;
	font-weight: bold;
}

#header ul li a:hover {
	background: #9FB9EF;
	color:#F9F3F4;
}

#header ul li a.active,
#header ul li a.active:hover {
	color:#005555;
	background: #99CC99;
	font-weight:bold;
}

#header ul li a span {
	display:block;
}


/* 'widths' sub menu */
#layoutdims {
	clear:both;
	background: #9FB9EF;
	border-top:4px ridge #0B5193;
	border-bottom: 1px ridge #0B5193;
	margin:0;
	padding:6px 15px !important;
	text-align:right;
	font-weight: bold;
}

#layoutdims a{
	color: #fff;
}

#layoutdims a:hover{
	color: #996666;
}

.layoutdims {
	clear: both;
	/*background: #9FB9EF;*/
	border-bottom: 4px double #9FB9EF;
	margin: 0;
	padding: 7px 15px !important;
	text-align: center;
	font-weight: bold;
}

.layoutdims a{
	padding: 7px 15px;
	text-align:center;
	background: #0B5193;
	border-bottom: 4px double #9FB9EF;
	color:#F9F3F4;
	text-decoration:none;
}

.layoutdims a:hover {
	background: #9FB9EF;
	border-bottom: 4px double #996666;
	color:#F9F3F4;
}

/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}

/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* width of page */
	position:relative;
}

.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
					only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
}

/* 3 Column settings */
.threecol {
	background:#F2F8FE;		/* right column background colour */
}

.threecol .colmid {
	right:25%;			/* width of the right column */
	background:#F6FAFE;		/* center column background colour */
}

.threecol .colleft {
	right:50%;			/* width of the middle column */
	background:#F0F7FE;	/* left column background colour */
}

.threecol .col1 {
	margin-top:30px;    /* not part of original file, added to have some distance between the line and the content text*/
	width:46%;			/* width of center column content (column width minus padding on either side) */
	left:102%;			/* 100% plus left padding of center column */
	border-top: 2px dashed #ddd;
	border-left: 2px dashed #ddd;
	border-right: 2px dashed #ddd;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
}

.threecol .col2 {
	width:21%;			/* Width of left column content (column width minus padding on either side) */
	left:31%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}

.threecol .col3 {
	width:21%;			/* Width of right column content (column width minus padding on either side) */
	left:85%;			/* Please make note of the brackets here:
					(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}

.col3 ul  {				/*right column */
	list-style: none;
	font-size: 1.0em;
	margin-right:10px;
}

.col3 li{
	padding-bottom: 9px;
	padding-top: 9px;
	border-bottom: 1px dashed;
	margin-left:0px;
}

.col2 ul {				/*left column */
	/*list-style: url('/images/bullet.jpg') disc;*/
	list-style: none;
	font-size: 1.0em;
	margin-right:10px;
}

.col2 li{
	padding-bottom: 9px;
	padding-top: 9px;
	border-bottom: 1px dashed;
	margin-left:0px;
}

.col1 ul li {				/*Center column */
	list-style: url('/images/bullet.jpg') disc;
	font-size: 1.0em;
	padding-bottom: 23px;
	padding-left: 2px;
}

.box{
	width: 90%;
	border: 2px ridge #ddd;
	margin-top: 25px;
	text-align: left;
}

.boxheading{
	height: 30px;
	background: #9FB9EF;
	color: #fff;
	border-top: 1px solid #0B5193;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	padding-top: 7px;
}

.heading{
	background: #0B5193;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 5px;
	text-align: center;
}

.more{
	text-align: right; /*used in index page to display the word 'more'*/
	font-size: 13px;
	padding-right: 10px;
}

p.first{
	padding-left: 40px;
}

p.second{
	padding-left: 65px;
}

p.question {
	font-weight: lighter;
	padding-left:10px;
}

p.answer{
	font-weight: lighter;
	padding-left:55px;
}

#centerleft{
	width: 45%;
	padding: 5px;
	float: left;
}

#centerright{
	width: 45%;
	padding: 5px;
	float: right;
}

/* Footer styles */
#footer {
	clear:both;
	float:left;
	width:100%;
	border-top: 4px double #9FB9EF;
	text-align: center;
	margin-top: 0px; /*not part of original file,Just added to test, need to be removed if not required*/
	height: 110x;  /*not part of original file,Just added to test, need to be removed if not required*/
	background: #F3FFFF;
}

#footer p {
	padding:10px;
	margin:0;
}

#push { /*this used to push the footer down whenever content is less because footer comes just below the content doesn't stick to the bottom of the screen*/
	height: 110px; /* .push must be the same height as .footer */
	border-bottom: 0px solid #000; /*Whenver u need to add this division like this <div id="push"></div>*/
}

