#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu {
  width:1000px;
  height: 44px;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  /*background: #fefefe;
  background: -moz-linear-gradient(top, #fefefe 0%, #eee9f0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #eee9f0));
  background: -webkit-linear-gradient(top, #fefefe 0%, #eee9f0 100%);
  background: -o-linear-gradient(top, #fefefe 0%, #eee9f0 100%);
  background: -ms-linear-gradient(top, #fefefe 0%, #eee9f0 100%);
  background: linear-gradient(top, #fefefe 0%, #eee9f0 100%);*/
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu a {
 /* background: #fefefe;
  background: -moz-linear-gradient(top, #fefefe 0%, #ececec 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #ececec));
  background: -webkit-linear-gradient(top, #fefefe 0%, #ececec 100%);
  background: -o-linear-gradient(top, #fefefe 0%, #ececec 100%);
  background: -ms-linear-gradient(top, #fefefe 0%, #ececec 100%);
  background: linear-gradient(top, #fefefe 0%, #ececec 100%);*/
  color: #fff;
  display: inline-block;
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 44px;
  padding: 0 43px;
  text-decoration: none;
}
#cssmenu ul {
  list-style: none;
}
#cssmenu > ul {
  float: left;
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu > ul > li > a {
  color: #fff;
  font-size: 14px;
}
#cssmenu > ul > li:hover:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #b86f09;
  margin-left: -10px;
}
#cssmenu > ul > li:first-child > a {
  border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
}
#cssmenu > ul > li.active:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #b86f09;
  margin-left: -10px;
}
#cssmenu > ul > li.active > a {
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  background-image:url(../layoutimages/hovermenuimg.png);
  /*background: #7bbe1e;
  background: -moz-linear-gradient(top, #7bbe1e 0%, #ffeeff ef 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7bbe1e), color-stop(100%, #ffeeff ef));
  background: -webkit-linear-gradient(top, #7bbe1e 0%, #ffeeff ef 100%);
  background: -o-linear-gradient(top, #7bbe1e 0%, #ffeeff ef 100%);
  background: -ms-linear-gradient(top, #7bbe1e 0%, #ffeeff ef 100%);
  background: linear-gradient(top, #7bbe1e 0%, #ffeeff ef 100%);*/
}
#cssmenu > ul > li:hover > a {
  /*background: #ececec;
  background: -moz-linear-gradient(top, #ececec 0%, #ffeeff ef 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ececec), color-stop(100%, #ffeeff ef));
  background: -webkit-linear-gradient(top, #ececec 0%, #ffeeff ef 100%);
  background: -o-linear-gradient(top, #ececec 0%, #ffeeff ef 100%);
  background: -ms-linear-gradient(top, #ececec 0%, #ffeeff ef 100%);
  background: linear-gradient(top, #ececec 0%, #ffeeff ef 100%);*/
  background-image:url(../layoutimages/hovermenuimg.png);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
}
#cssmenu .has-sub {
  z-index: 1;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
}
#cssmenu .has-sub ul li {
  *margin-bottom: -1px;
}
#cssmenu .has-sub ul li a {
  background: #b86f09;
  border-bottom: 1px dotted #ff0f1b;
  filter: none;
  font-size: 11px;
  display: block;
  line-height: 120%;
  padding: 10px;
  color: #ffffff;
}
#cssmenu .has-sub ul li:hover a {
  background: #eaa749;
}
#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
#cssmenu .has-sub .has-sub ul li a {
  background: #eaa749;
  border-bottom: 1px dotted #ff0f1b;
}
#cssmenu .has-sub .has-sub ul li a:hover {
  background: #f18f06;
}

/* registration css*/

.background
{
   background-color:#0c6863;
}
  
 .loantext
{
 font-family:Georgia;
 font-size:14px;
 color:#fff;
 padding:0px 0px 0px 50px;
  
}
.btn
{
    width:90px;
  padding:3px 0px 2px 0px;
    border-radius:6px;
    background-color:#5f6162;
    color:#fff;
    font-size:16px;
}
.btn:hover
{
     
    
    border-radius:6px;
    background-color:#1892ef;
    color:#fff;
    font-size:16px;
}
  
   .txtbox
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-size: 12px;	 
	 width:180px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #ccc;
}

.lefttdcontantloan
{
      margin:0px 100px 0px 10px;
    padding:0px 0px 0px 6px;
	height: 30px;
	color: #000;
	font-size:10px;
	font-weight:bold;
	text-align: left;
	font-family:  Verdana;	
	vertical-align: middle;	
	  background-color:#fff;
	border-right:1px solid #000;
	border-top:1px solid #000;
	border-left:1px solid #000;
}

.righttdcontantloan
{
   padding:0px 0px 0px 7px;
	font-size:13px;
	height: 30px;
	text-align:left;
	color: #000;
	font-family:Verdana;
	vertical-align: middle;
  background-color:#fff;
	 
	border-top:1px solid #000;
	 
}
.registerheddingbgloan
{
	/*background: linear-gradient(#0c6863, #0c6863) repeat scroll 0 0 transparent;*/
	padding:3px 0px 3px 45px;
	color: #ffffff;
	font-size: 13px;
	height: 30px;
	text-align: left;
	line-height:2em;
	vertical-align: middle;
	font-weight: bold;
	font-family: Verdana;
}
 
.registerbgloan{

 
	padding:3px 0px 3px 15px;
	color: #000;
	background-color:#fff;
	 
}
.fees
{
    color: #000;
	background-color:#fff;
    padding:8px 0px 8px 0px;
}
.phototdcontantloan
{
  
	padding:3px 33px 3px 33px;
	color: #ffffff;
 	 
}
.photo1
{
    background-color:#fff;
    width:190px; 
    MARGIN:10PX 0PX 10PX 0PX;
    height:140px;
}
.photo2
{
     
    width:730px; 
     margin-left:0px;
    
    
}
.photo3
{
     
    width:100%; 
    
    
}
.boxheading
{
	font-family: Verdana;
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
	height: 51px;
	padding-left: 10px;
	height: 35px;
	vertical-align: middle;
}
.title_bg1
{
     background: linear-gradient(#fff,#fff, #fff ) repeat scroll 0 0 transparent;
	padding:3px 0px 3px 5px;
	color: #000;
	font-size: 13px;
  font-weight:bold;
	text-align: left;
 
	line-height:2em;
	vertical-align: middle;
	font-weight: bold;
	font-family: Verdana;
    
    
}
.applicant
{
     width:1250px;
}
.grdclass
{
   
   width:1280px;
  
}
.grdclass1
{
  padding:0px 33px 0px 33px;
    width:1345px;
  
}
.grdclass3
{
    width:1280px;
}
    
.title_bg
{
 
	padding:3px 0px 3px 5px;
	color: #fff;
	font-size: 13px;
  font-weight:bold;
	text-align: left;
 
	line-height:2em;
	vertical-align: middle;
	font-weight: bold;
	font-family: Verdana;
    
    
}
.mGrid
{
	width: 100%;
	background-color: #fff;
	margin: 5px 0 10px 0;
	border: solid 1px #525252;
	border-collapse: collapse;
}
.mGrid td
{
	padding: 2px;
	border: solid 1px #c1c1c1;
	color: #717171;
}
.mGrid th
{
	padding: 4px 2px;
	color: #000;
	 
	background: #fff url(grd_head.png) repeat-x top;
	border-left: solid 1px #525252;
	font-size:12px;
}
.mGrid .alt
{
	background: #fcfcfc url(grd_alt.png) repeat-x top;
}
.mGrid .pgr
{
	background: #424242 url(grd_pgr.png) repeat-x top;
}
.mGrid .pgr table
{
	margin: 5px 0;
}
.mGrid .pgr td
{
	border-width: 0;
	padding: 0 6px;
	border-left: solid 1px #666;
	font-weight: bold;
	color: #fff;
	line-height: 12px;
}
.mGrid .pgr a
{
	color: #666;
	text-decoration: none;
}
.mGrid .pgr a:hover
{
	color: #000;
	text-decoration: none;
}

.bgborder
{
	border: 1px solid #a2a2a2;
}

.GridViewgo
{
	font-family: Verdana;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	padding-left: 15px;
	background-image: url(../../images/HeaderWhiteChrome.gif);
	background-position: center;
	background-repeat: repeat-x;
	background-color: #fff;
	border-bottom: solid 1px #999;
}



.GridViewStyle
{
	width: 100%;
	background-color: #e7e7d6;
	margin: 5px 0 10px 0;
	border: solid 1px #188C1D;
	border-collapse: collapse;
}
.GridViewStyle td
{
	padding: 2px;
	border: solid 1px #188C1D;
	color: #717171;
}
.GridViewStyle th
{
	padding: 4px 2px;
	color: #fff;
	background: #188C1D;
	border-left: solid 1px #188C1D;
	font-size: 1.2em;
}
.GridViewStyle .alt
{
	background: #fcfcfc url(grd_alt.png) repeat-x top;
}
.GridViewStyle .pgr
{
	background: #424242 url(grd_pgr.png) repeat-x top;
}
.GridViewStyle .pgr table
{
	margin: 5px 0;
}
.GridViewStyle .pgr td
{
	border-width: 0;
	padding: 0 6px;
	border-left: solid 1px #666;
	font-weight: bold;
	color: #fff;
	line-height: 12px;
}
.GridViewStyle .pgr a
{
	color: #666;
	text-decoration: none;
}
.GridViewStyle .pgr a:hover
{
	color: #000;
	text-decoration: none;
}

