@charset "utf-8";
/* CSS Document */

	#ttab_mainContainer{
		width:100%;
		height:56px;
		border:0px solid #000000;
		margin:0 auto;
		padding-top:0px;		
		
	}

	#ttab_mainMenu{
		background-color: #FFF;	/* Background color of main menu */
		font-family: Arial;	/* Fonts of main menu items */
		font-size:0.9em;	/* Font size of main menu items */
		border-bottom:0px solid #000000;	/* Bottom border of main menu */
		height:30px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
		padding-top:0px;

	}
	#ttab_mainMenu a{
		
		width:121px;
		height:30px;
		font-family: Arial;
		font-size:12px;
		font-weight:normal;		
		text-align:center;
		vertical-align:middle;

		text-decoration:none;
		color:#000;

		/* Don't change these two options */
		position:absolute;
		bottom:0px;	/* Change this value to -2px if you're not using a strict doctype */
		
		line-height:29px;
	}
	#ttab_submenu{
		font-family: Arial;	/* Font  of sub menu items */
		background-color:#AA0000;	/* Background color of sub menu items */
		border:0px solid #000000;
		width:100%;	/* Don't change this option */
		height:25px;

	}
	#ttab_submenu div{
		white-space:nowrap;	/* Don't change this option */

	}
	/*
	Style attributes of active menu item
	*/
	#ttab_mainMenu .activeMenuItem{
		/* Border options */
		width:121px;
		height:30px;
		line-height:29px;
		background-image:url(../images/top_button_selected.jpg);
		border-left:0px solid #FFFFFF;
		border-top:0px solid #FFFFFF;
		border-right:0px solid #FFFFFF;		
		
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}

	#ttab_mainMenu .activeMenuItem img{
		position:absolute;
		bottom:0px;
		right:0px;
	}
	/*
	Style attributes of inactive menu items
	*/
	#ttab_mainMenu .inactiveMenuItem{
		width:121px;
		height:30px;
		line-height:29px;
		background-image:url(../images/top_button_normal.jpg);
		border-left:0px solid #FFFFFF;
		border-top:0px solid #FFFFFF;
		border-right:0px solid #FFFFFF;		
		
		color: #000;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#ttab_submenu a{
		text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:5px;	/* Space at the left of each sub menu item */
		padding-right:5px;	/* Space at the right of each sub menu item */
		color: #FFFFFF;	/* Text color */
		font-size:12px;
		font-weight:bold;		
		text-align:center;
		line-height:25px;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		

	}

	#ttab_submenu a:hover{
		color: #FF0000;	/* Red color when the user moves the mouse over sub menu items */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		
	}