﻿    	/* Applies over all style to the Tabs layout dicv container */
    	#tabsLayout { 
    		border: 0px #dddddd solid; 
    		background-color: #ffffff; 
    	}
    	
     	/* Applies width to the Tabs table container */
	   	#tabsTable { 
    		width: 100%; 
    	}
    	
    	/* Applies over all style to the anchor tags within the tabsTable container */
    	#tabsTable a { 
    		text-decoration: none; 
    		font-size:14px;
    		/*font-weight: bold; */
    	}
    	
    	/* Sets color and style of the Inactive Tab's anchor tag */
    	.tab a { 
    		display: block; 
    		padding: 10px 20px 10px 20px; 
    		color: #3a537e; 
    		border-bottom: 0px #dddddd solid;
    		height:18px;
    	}
    	
    	/* Sets color and style of the Active Tab's anchor tag */
    	.tabActive a { 
    		display: block; 
    		padding: 10px 20px 10px 20px; 
    		color: #a94c45; 
    		border-bottom: 0px #96B4CC inset;
    		height:18px;
    	}
    	
    	/* hides the Inactive Pane(div) */
    	.tabPane { 
    		display: none; 
    	}
    	
    	/* Displays and applies settings to the Active Pane(div) */
    	.tabPaneActive { 
    		display: block; 
    		padding: 10px;  
    		min-height: 200px; 
    	}