/**
 * Description: CSS for template-homepage-tabbed.php
 * Version: 1.0.0
 * Author: Rockhouse Partners
 * Author URI: http://rockhousepartners.com
 */

ul.tabs {
	margin: 0 0 16px 36px !important;
    padding: 0;
    font-size: 0;
    margin:0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
}

ul.tabs li {
    display: inline;
    margin: 0;
    margin-right:0px; /*distance between tabs*/
}

ul.tabs li a {
    font-size: 30px;
    text-decoration: none;
    position: relative;
   	padding: 10px 40px 20px 40px;
    outline:none;
}

ul.tabs li a:visited {
	color: #818181;
}

ul.tabs li a:hover {
	background: #fff;
}

ul.tabs li.selected a,
ul.tabs li.selected a:hover {
    position: relative; top: 0px;
	padding: 20px 40px;
}

ul.tabs li.selected a:hover {
	text-decoration: none;
}

.tab-content {
	padding: 15px 0 0 0;
	background: #fff;
}

/* Tablet Portrait size and sizes below 768 (devices and browsers) */
@media only screen and (max-width: 768px) {

	ul.tabs {
		margin: 0 0 2px 8px !important;
	}

	ul.tabs li a {
		width: 80px;
    	font-size: 12px;
    	padding: 10px;
    }

    ul.tabs li.selected a,
	ul.tabs li.selected a:hover {
		padding: 10px;
	}

}