﻿/* Tab Content - menucool.com */
ul.tabs
{
    /*padding: 8px 0;*/
    margin:0;
    font-size: 0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
    padding-left:20px; /* Offset of the first tab */
}
        
ul.tabs li
{
    display: inline;
    margin: 0;/*no distance between tabs*/
    background: White;
    margin-left: -4px;
	    margin-top: 5px;
}
        
ul.tabs li a
{
	font: normal 12px Verdana;
    text-decoration: none;
    position: relative;
    padding: 8px 22px;
    color: #507BC5;
    outline:none;
    background: #FFF;
    /*border:1px solid #CCC;*/
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	-moz-border-top-right-radius: 3px;
	-moz-border-top-left-radius: 3px;
	margin-right:10px;
	
	border-top: 1px solid #507BC5;
	border-left: 1px solid #507BC5;
	border-right: 1px solid #507BC5;
}

/*Note: IE8 and earlier doesn't support li:last-child. You have to add another class to the last tab (LI) and specify its border-right as below.*/
/*ul.tabs li:last-child a
{
    border-right:1px solid #CCC;
}*/
  
        
ul.tabs li a:hover
{
    color: #FFF;
    background: #2a78bd;
	border-bottom: 1px solid #2a78bd;
}
        
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
    top: 0px;
    font-weight:normal;
    background: #2a78bd;
    border-bottom: 1px solid #2a78bd;
    color: #FFF;
}

ul.tabs li.selected a:hover
{
    text-decoration: none;
}

div.tabcontents
{
    border-top: 3px solid #2a78bd; padding: 15px 10px;
}

.tabcontents .profile_info p {
	
	padding:5px 11px 2px;
}

.tabcontents .profile_info p:hover {
	background:#F2F2F2;
	padding:5px 11px 2px;
	-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
