/* @override 
	http://localhost/~cody/a-dogs-breakfast/style/plugin/tabs.css
	http://adogsbreakfast.ca/style/plugin/tabs.css
*/

.tabify {
	margin-top: 30px;
	margin-bottom: 30px;
}

.tabify ul {
	list-style: none outside none;
	margin: 0 0 20px 0;
	padding: 0;
}

.tabify ul li {
	/*margin-bottom: -1px;*/
	float: left;
	border-bottom: 1px solid #ACACA2;
	margin-bottom: -3px;
	margin-left: -1px;
	/*margin-right: 2px;*/
}

.tabify .active a {
	font-family: 'LeagueGothic', Arial, sans-serif;
	color: #353334;
	font-size: 1.65em;
}

.tabify li.active {
	font-family: 'PT Sans', sans-serif;
	border-bottom: 0;
}

.tabify ul li a {
	display: block;
	font-size: 1.65em;
	/*margin-right: 2px;*/
	padding: 8px 12px;
	/*height: 20px;*/
	font-family: 'LeagueGothic', Arial, sans-serif;
	font-weight: 100;
	border: 1px solid transparent;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	color: #8A8987;
	text-decoration: none;
}

.tabify ul li a:hover, .tabify ul li a:focus {
	/*border-color: #eeeeee #eeeeee #ACACA2;*/
}

.tabify ul li.active a, .tabify ul li.active a:hover, .tabify ul li.active a:focus {
	color: #32312D;
	/*add background here to make bottom border invisible*/
	/*background-color: #F0F0E6;*/
	/*background-color: red;*/

	border-left: 1px solid #ACACA2;
	border-right: 1px solid #ACACA2;
	border-top: 1px solid #ACACA2;
	cursor: default;
}

.tabify .tab-content {
}

.tabify .tab-content > div {
	display: none;
	opacity: 0;
	transition: opacity 0.15s linear 0s;
}

.tabify .tab-content > div.active {
	display: block;
	opacity: 1;
}

