/* classic slising doors example css as seen on http://www.alistapart.com/articles/slidingdoors/*/
  .tabs {
    float:right;
    width:850px;
    background:url("../img/bg.png") repeat-x bottom;
    /*font-size:10px;*/
    line-height:normal;

    }
  .tabs ul.tabs-list {
    margin:0;
    padding:0px 0px 0;
    list-style:none;
    }
  .tabs ul.tabs-list li {
    float:right;
    background:url("../img/left.png") no-repeat left top;
    margin:0;
    padding:0 0 0 9px;
    }
  .tabs ul.tabs-list a {
    float:left;
    display:block;
    background:url("../img/right.png") no-repeat right top;
    padding:5px 15px 7px 6px;
    text-decoration:none;
    font-weight:bold;
    color:#999;
	font-size:13px;
    }
  /* 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:#999;
	font-size:13px;
    }
  .tabs ul.tabs-list .current {
    background-image:url("../img/left_on.png");
    border-width:0;
    }
  .tabs ul.tabs-list .current a {
    background-image:url("../img/right_on.png");
    color:#fff;
    padding-bottom:7px;
	font-size:13px;
    }

    .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{
        width:850px;
    }

    h1,p{
        margin:1em;
    }
    .tabs{
        padding:30px;
    }
    
    .about{
        clear:both;
        padding:2em;
    }
