	#mainTab{
		background-color: #FFF;	/* Background color of main tab */
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main tab items */
		font-size:0.9em;	/* Font size of main tab items */
		border-bottom:0px solid #000000;	/* Bottom border of main tab */
		height:30px;	/* Height of main tab */
		position:relative;	/* Don't change this position attribute */
	}
	#mainTab a{
		/*padding-left:17px;*/	/* Spaces at the left of main tab items */
		/*padding-right:17px;*/	/* Spaces at the right of main tab items */
		font-weight:bold;
		/* Don't change these two options */
		position:absolute;
		bottom:-1px;
		/*line-height:25px;*/
	}
	#tabcontent{		
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of tab content items */
		/*background-color:#E2EBED;*/	/* Background color of tab content items */
		width:100%;	/*100% Don't change this option */
	}	
	#tabcontent div{
		white-space:nowrap;	/* Don't change this option */
	}
	/*
	Style attributes of active tab item 
	*/
	#mainTab .activeTabItem{
		/* Border options */
		/*background-image:url('tscimg/tabmenu_left.gif');*/
		background-position:bottom left;
		background-repeat:no-repeat;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the tab item */
	}
	#mainTab .activeTabItem img{
		position:relative;
		bottom:0px;
		right:0px;
	}
	/*
	Style attributes of inactive tab items
	*/
	#mainTab .inactiveTabItem{		
		/*background-image:url('tscimg/tabmenu_left.gif');*/
		background-position:bottom left;
		background-repeat:no-repeat;
		color: #000;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the tab item */
	}
	#tabcontent a{	
		text-decoration:none;	/* No underline on tab content items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:5px;	/* Space at the left of each tab content item */
		padding-right:5px;	/* Space at the right of each tab content item */
		color: #FFF;	/* Text color */
		font-size:0.9em; 
	}
	#tabcontent a:hover{
		color: #0000FF;	/* Red color when the user moves the mouse over tab content items */
	}
