/* classic slising doors example css as seen on http://www.alistapart.com/articles/slidingdoors/*/
  .tabs {
    /*float:left;*/
    width:100%;
    background:none;
    font-size:93%;
    line-height:normal;
    }
  .tabs ul.tabs-list {
    margin:0;
    padding:0;
    list-style:none;
    }
  .tabs ul.tabs-list li {
    float:left;
    background:url("left.png") no-repeat 2px top;
    margin:0;
    padding:0 0 0 11px;
    }
  .tabs ul.tabs-list a {
    float:left;
    display:block;
    background:url("right.png") no-repeat right top;
    padding:5px 10px 4px 5px;
    text-decoration:none;
    font-weight:bold;
    color:#765;
    }
  /* 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:#333;
    }
  .tabs ul.tabs-list .current {
    background-image:url("left_on.png");
    border-width:0;
    }
  .tabs ul.tabs-list .current a {
    background-image:url("right_on.png");
    color:#333;
    padding-bottom:5px;
    }
    .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:0;
    }
    .js .tabs{
    }
    .tabs{
        padding:0;
    }
    
    .about{
        clear:both;
        padding:2em;
    }

