MainPageTitle 
{
	font-family: Arial;
	width: 1120px;		
	color: DarkSlateBlue;
	font-size: 24pt;
	text-transform: uppercase;
	text-shadow: 2px 1px white;
}


body 
{
    font-family: Arial;
    background:LightSkyBlue ;
    color: black;
}


/* Style the tab */
.tab 
{
	margin: auto;
	overflow: hidden;
	border-bottom: 5px solid #ccc;
	background-color: LightSkyBlue ;
	margin-top: 20px;
	width: 1120px;
	padding: 0px 20px 0px 20px;
}

/* Style the buttons inside the tab */
.tab button 
{
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 20px;
	font-weight: bold;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;	
	-moz-border-top-left-radius: 10px;
	-moz-border-top-right-radius: 10px;	
	width: 216px
}

/* Change background color of buttons on hover */
.tab button:hover 
{
	/*background-color: #ddd;  */
	background-color: white;
	color: black;
}

/* Create an active/current tablink class */
.tab button.active 
{
	/*background-color: #ccc;*/
	background-color: DeepSkyBlue ;	
	color: white;
}

/* Style the tab content */
.tabcontent 
{
	display: none;
	padding: 6px 12px;
	border: 5px solid DeepSkyBlue ;	
	/*border: 5px solid #ccc;		*/
	/*border-top: none;*/
	-webkit-border-top-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;	
	-webkit-border-top-right-radius: 20px;	
	-webkit-border-bottom-right-radius: 20px;		
	-moz-border-top-left-radius: 20px;
	-moz-border-bottom-left-radius: 20px;	
	-moz-border-top-right-radius: 20px;		
	-moz-border-bottom-right-radius: 20px;			
	margin-top: -5px			
}


