/* classic slising doors example css as seen on http://www.alistapart.com/articles/slidingdoors/*/
  .tabs {
    /*float:left;*/
    /*width:100%;*/
    /*background:#DAE0D2 url("bg.gif") repeat-x bottom;*/
    /*font-size:93%;*/
   /* line-height:normal;*/
	background-color:#962914;


    }
  .tabs ul.tabs-list {
    margin:0;
    padding:10px 10px 0;
    list-style:none;
	padding:0;
	/*padding-bottom:50px;*/
	/*width:764px;
	background-color:red*/
    }
  .tabs ul.tabs-list li {
    float:left;
    margin:0;
    padding:0 0 0 0px;
	border-right:1px solid white
	
    }
  .tabs ul.tabs-list a {
    float:left;
    display:block;
    background-color:#962914;
    padding:5px 24px 5px 24px;	
    text-decoration:none;
    font-weight:bold;
    color:white;
    }
  /* 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:#ce9f95;
    }
  .tabs ul.tabs-list .current {
    
    border-width:0;
    }
  .tabs ul.tabs-list .current a {
    
    color:#333;
    padding-bottom:5px;
	background-color:#ce9f95;
    }



    .tabs .current-info,
    .tabs .accessibletabsanchor,
    .tabs .tabhead /*position each individual tab's heading (default class .tabhead) off-screen*/ {
        position:absolute;
        left:-999em;
    }
    .tabs .content{
        clear:both;
        margin:3em 1em 1em 1em;
		margin:0;
		padding-top:50px;
		background-color:#FFF;
		text-align:justify
    }
	

	
	
    .tabs{
        /*width:580px;*/
    }

    h1,h2,p{
       /* margin:1em;*/
    }

    
    .about{
        clear:both;
        padding:2em;
    }
	
	
/*******************/
    .tabs .tabbody{
        position:relative;
    }

    .tabs .pagination{
        list-style:none;
        padding:0;
        zoom:1;
        position:absolute;
        bottom:-30px;
        right:-10px;
		
    }
    .tabs .pagination:after{
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
    .tabs .pagination li{
        float:left;
        margin-left:10px;
    }
    .tabs .pagination a{
        display:block;
        width:8px;
        height:15px;
        background-image:url(pagination.png);
        background-repeat:no-repeat;
        background-position:left;
    }
    .tabs .pagination a:hover,
    .tabs .pagination a:focus{
        filter:alpha(opacity=70);
        opacity: 0.70;
        -moz-opacity:0.70;
        -khtml-opacity:0.70;
    }
    .tabs .pagination .next a{
        background-position:right;
    }
    .tabs .pagination a span{
        overflow:hidden; 
        position:absolute; 
        text-indent:-999em;
    }
