/* 
    Document   : menu
    Created on : Jun 12, 2011, 1:24:18 PM
    Author     : Swashata
    Description:
        A sexy 1 tier dropdown menu created my iTgDesignBox. The design of the menu is taken from
        http://coregfx.org/tutorials/light-lime-and-blue-navigation/
        and is modified to make the 1 tier dropdown
*/

/*
License: 
This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

/*
@ignore Little Container CSS
*/
div#container {
	width: 962px;
	margin: 0px auto;
	padding: 0;
	font-size:xx-large;
	font-style: normal;
	font-weight: bolder;
	font-family: "Arial Black", Gadget, sans-serif;
	padding-left: 300px;
	z-index: 1;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

/*-----------------------------*
 *        THE MENU CSS         *
 *-----------------------------*/
 

/* Basic widths */
#menu, #menu * {
    margin: 0;
    padding: 0;
	
	
	
	
}
#menu {
	width: 800px;
	height: 40px;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: xx-large;
	
	
	
	
}

/* Style the left and right extremes */



/* The main menu container */



#menu .menu_content ul {
	list-style: none;
	height: 40px;
	padding: 0;
		
}

/* The list styles - 0 tier */
#menu .menu_content ul li {
	list-style: none;
	width: 250px;
	float: left;
	height: 110px;
	padding: 2px 2px 2px 0;
	position: relative;
	background: url("images/dropdown-li0.png") no-repeat scroll 5px center;
		
}


#menu .menu_content ul li, #menu .menu_content ul li a {
	display: block;
	font-size: xx-large;
	text-align: center;
	color: #000;
	text-decoration: none;
	letter-spacing: 1px;
	line-height: 24px;
    margin-left: 10px;
	
	
}
#menu .menu_content ul li:hover > a {
	color: #00F;
	text-shadow: 1px 1px 0 #666;
}

/* 1 tier list style */
#menu .menu_content ul li ul {
	position: absolute;
	width: 400px;
	list-style: none;
	float: left;
	top: 40px;
	left: 0;
	display: none;
	height: auto;
	font-family: "Courier New", Courier, monospace;
	height: 70px;
	background: url("images/dropdown-li.png") no-repeat scroll 5px center;
}
#menu .menu_content ul li ul li {
	padding: 0 10px 0 5px;
	width: 500px;
	float: left;
	height: 24px;
	background: no-repeat scroll 5px center;
	font-family: "Courier New", Courier, monospace;
	display: block;
	color: #000;
	
	
	
	
}


#menu .menu_content ul li ul li, #menu .menu_content ul li ul li a {
	font-size: 13px;
	text-align: left;
	letter-spacing: normal;
	line-height: 15px;
	font-family: "Courier New", Courier, monospace;
	color: #000;

}

#menu .menu_content ul li ul li {
    padding: 0 0 0 80px;
}

#menu .menu_content ul li ul li, #menu .menu_content ul li:hover > ul {
	display: block;
	color: #000;
		
}
#menu .menu_content ul li ul li:hover {
	background: none;
	background: no-repeat scroll 5px center;
	
}
#menu .menu_content ul li ul li a:hover, #menu .menu_content ul li ul li:hover > a {
	background: none;
	display: block;
	
   
}


