/** 
   Project: The Sandtreat
     Designed By: Cinnova
      Structure: Tabs + Drop Down
        Created on : 12-05-09
                             **/

#menuContainer #nav /*Main UL Wrapper*/
{
		margin:0px;
		padding:0px;
		float:left;
		position:relative;
}

#nav ul /*Main Nav UL controller*/
{
		list-style:none;
		left: 0; 
		display: none; 
		margin:0px;
		position: absolute; /*Its for sub menu*/
}

* html #nav ul 
{ 
		line-height: 0; 
} /* IE6 "fix" */

 #nav ul a 
{ 
		zoom: 1; 
} /* IE6/7 fix */

#nav ul li 
{ 
		float: none; 
}

#nav ul ul 
{ 
		top: 0;
		left: 131px;  
}
    
/* Essentials - configure this */

#nav ul 
{ 
		width: 180px;
}

#nav li /*Nav Li Horizontally alligned */
{
		list-style: none; 
		display: block; 
		margin: 0; 
		padding: 0; 
		float: left; 
		position: relative;
}

#nav a /*left Tab Image on A Link Tag*/
{
		color:#fff; 
		font-size:11px; 
		font-family: sans-serif, Arial, Helvetica; 
		font-weight:normal; 
		text-decoration:none;
		float:left;
		margin:0px;
		padding:0px 0px 0px 8px;
		background: url(../images/tableft2.gif) no-repeat top left;
}

#nav a span /*Right Tab Image on Span child of A tag Parent  Link Tag*/
{
		color:#fff;
		float:left;
		display:block;
		padding:5px 15px 4px 6px;
		background:url(../images/tabright2.gif) no-repeat top right;
}

#nav a span /** Commented Backslash Hack hides rule from IE5-Mac**/
{
		float:none;
} 
/** End IE5-Mac hack **/


#nav a:hover  /** Background Position defined during hovering over**/
{
		background-position:0% -42px;
}

#nav a:hover span /** Background Position right tab Image during hovering over**/
{
		background-position:100% -42px;
		color: #CCCCCC;
}

/** Active Navigation Tabs**/

#nav #parent_current  a /** Active Image position calling left tab**/
{
		font-size:11px; 
		font-weight:normal; 
		font-family: sans-serif, Arial, Helvetica; 
		text-decoration:none;
		background-position:0% -42px;
}
 	
#nav #parent_current a span /** Active Image position calling right tab**/
{
		color: #99CC00;
		font-size:11px; 
		font-weight:normal; 
		font-family: sans-serif, Arial, Helvetica;
		text-decoration:none; 
		background-position:100% -42px;
}

/** Active Navigation Tabs Ends**/
