/* Main menu settings */

#logotop {
	width: 500px;
	height: 80px;	
	margin-top: 10px;
}

#menu {
   clear: both;
   float: left;
   margin: 0;
   padding:0;
   height: 60px;
   width:100%;
   background: #E4E4E4;
   font-family: Devanagari Sangam MN; 
   font-size: 150%;
   
   z-index:1000; /* This makes the dropdown menus appear above the page content below */
   position:relative;
}

/* Top menu items */
#menu ul {
   padding: 0;
   margin: 0;
   list-style:none;
   float:right;
   position:relative;
   right:50%;
}
#menu ul li {
   margin-left: 17px;
   margin-right: 17px;
   padding:0;
   float:left;
   position:relative;
   left:50%;
   top:1px;
}
#menu ul li a {
   display:block;
   margin:0;
   padding:.6em .5em .4em;
   font-size:1em;
   color: #9e0000;
   text-decoration: none;
   background: #E4E4E4;
  
}

#menu ul li a:hover {
   background: #E4E4E4;
   color:#2d2d2d;

}
#menu ul li:hover a,
#menu ul li.hover a { /* This line is required for IE 6 and below */
   background: #E4E4E4;
   color:#2d2d2d;
  
}

/* Submenu items */
#menu ul ul {
   display:none; /* Sub menus are hiden by default */
   position:absolute;
   top:2em;
   left:0;
   right:auto; /*resets the right:50% on the parent ul */
   width:10em; /* width of the drop-down menus */
}
#menu ul ul li {
   left:auto;  /*resets the left:50% on the parent li */
   margin:0; /* Reset the 1px margin from the top menu */
   clear:left;
   width:100%;
}

#menu ul ul li a,
#menu ul li:hover ul li a,
#menu ul li.hover ul li a { /* This line is required for IE 6 and below */
   font-size:.8em;
   background: #E4E4E4;
   color: #9e0000;
  
}
#menu ul ul li a:hover,
#menu ul li.active ul li a:hover,
#menu ul li:hover ul li a:hover,
#menu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
   background: #E4E4E4;
   color:#2d2d2d;
}

/* Flip the last submenu so it stays within the page */
#menu ul ul.last {
   left:auto; /* reset left:0; value */
   right:0; /* Set right value instead */
}

/* Make the sub menus appear on hover */
#menu ul li:hover ul,
#menu ul li.hover ul { /* This line is required for IE 6 and below */
   display:block; /* Show the sub menus */
}

#logo {
    height:100;
    width:200;
    float:left;
    padding: 5px;
    }

#footer {
   float:left;
   width:100%;
   height: 80px;
   background:#9e0000;
   overflow:hidden;
   position:relative;
}
#footer ul {
   clear:left;
   float:left;
   list-style:none;
   margin: 0;
   position:relative;
   left:45%;
   text-align:center;
   vertical-align: center;
}
#footer ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   position:relative;
   right:50%;
    font-family:  Devanagari Sangam MN;
    style: normal;
    size: 1em;
    color: #dddddd;
    text-decoration: none;
    background: #9e0000;
}
#footer ul li a {
    font-family:  Devanagari Sangam MN;
    style: normal;
    size: 1em;
    color: #dddddd;
    text-decoration: none;
    background: #9e0000;
}