/**
 * @version		1.3
 * @package		SimpleTabs
 * @author    Fotis Evangelou - http://nuevvo.com/labs/simpletabs
 * @copyright	Copyright (c) 2009-2011 Fotis Evangelou / Nuevvo Webware Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

div.simpleTabs {
}

ul.simpleTabsNavigation {
    padding: 6px 0;
    font-size: 0;
    margin: 0;
    list-style-type: none;
    text-align: center; /*set to left, center, or right to align the tabs as desired*/
}

    ul.simpleTabsNavigation li {
         display: inline;
        margin: 0;
        margin-right: 4px; /*distance between tabs*/
        
    }
      
        ul.simpleTabsNavigation li a img {

            text-decoration: none;
            position: relative;
           
 
            color: #ffffff;
           width:70px;
            height:70px;
    background: #007b7a;
            outline: none;

           
        }

            ul.simpleTabsNavigation li a img:hover {
                background-color: #828282;
            }

            ul.simpleTabsNavigation li a.current img { /*selected tab style */

                background-color: #828282;

            }

div.simpleTabsContent {

    padding: 5px 15px 15px;
 border-top: 5px solid #ffffff; 
    display: none;
}

    div.simpleTabsContent.currentTab {
        display: block;
    }
