/* classic slising doors example css as seen on http://www.alistapart.com/articles/slidingdoors/*/
  body {
	margin:0;
	padding:0;
	color:#FFF;
   	}
  .tabs {
	background:rgba(255,255,255,0.10);
	line-height:normal;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	}
  .tabs ul.tabs-list {
    margin:0;
    padding:10px 10px 0;
    list-style:none;
	}
  .tabs ul.tabs-list li {
    float:left;
    background: #650426;
	background:
		-webkit-gradient(
			linear,
			left top,
			left bottom,
			from(#a04064),
			to(#650426)
		);
	background:
		-moz-linear-gradient(
			top,
			#a04064,
			#650426
		);
	-moz-border-radius: 8px 8px 8px 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;     	
	-webkit-border-bottom-right-radius: 8px; 
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-top-right-radius: 8px;  
	border-bottom-right-radius: 8px; 
	-moz-box-shadow:0px 0px 3px #000;
	-webkit-box-shadow:0px 0px 3px #000;
	box-shadow:0px 0px 3px #000;	
    padding:0 0 0 10px;
    }
  .tabs ul.tabs-list a {
	float:left;
	text-decoration:none;
	color:#4A0F22;
	font-family: BebasNeue, Impact;
	font-size: 20px;
	padding:0 -50px 0 0;
}
  /* Commented Backslash Hack
     hides rule from IE5-Mac \*/
  .tabs ul.tabs-list a {float:none;}
  /* End IE5-Mac hack */
  .tabs ul.tabs-list a:hover {
	color:#BD597E;
	font-family: BebasNeue, Impact;
	font-size: 20px;
	}
  .tabs ul.tabs-list .current {
    text-align: center;
    background: #9c354d;
	background:
		-webkit-gradient(
			linear,
			left top,
			left bottom,
			from(#f484aa),
			to(#9c354d)
		);
	background:
		-moz-linear-gradient(
			top,
			#f484aa,
			#9c354d
		);
	-moz-border-radius: 8px 8px 8px 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;     	
	-webkit-border-bottom-right-radius: 8px; 
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-top-right-radius: 8px;  
	border-bottom-right-radius: 8px; 
	-moz-box-shadow:0px 0px 3px #000;
	-webkit-box-shadow:0px 0px 3px #000;
	box-shadow:0px 0px 3px #000;	
    }
  .tabs ul.tabs-list .current a {
	color:#681530;
	font-family: BebasNeue, Impact;
	font-size: 20px;
    }



    .js .tabs .current-info,
    .js .tabs .accessibletabsanchor,
    .js .tabs .tabhead /*position each individual tab's heading (default class .tabhead) off-screen*/ {
        position:absolute;
        left:-999em;
    }
    .js .tabs .content{
        clear:both;
        margin:3em 1em 1em 1em;
    }
    .js .tabs{
        right:20px;
    }
	.tabs{
	padding:1em;
	right: 20px;
    }
    
    .about{
        clear:both;
        padding:2em;
    }
