﻿.tabControl
{
    position:relative;
    float:left;
    overflow:hidden;
}

.tabControl .tabs
{
    width:3000px;
    height:18px;
    color:#0066cc;
    border-bottom:1px #ccc solid;
    margin-left:0px; /*Måste finnas*/
}

.tabControl .tabs .tab
{
    float:left;
    height:15px;
    background:#fff;
    border-radius: 5px 5px 0 0;
    border:1px #ccc solid;
    border-bottom:0;
    padding:1px 5px;
    margin:0 1px 0 0;
    cursor:pointer;
}

.tabControl .tabs .tab span
{
    margin:0 3px 0 3px;
}

.tabControl .arrow
{
    position:absolute;
    top:0px;
    width:18px;
    height:18px;
    border-bottom:1px solid #ccc;
    background:transparent;
    cursor:pointer;
}

.tabControl .properties
{
    position:absolute;
    top:0px;
    width:16px;
    height:18px;
    border-bottom:1px solid #ccc;
    background:transparent;
    cursor:pointer;
}

.tabControl .tabsContainer
{
    margin:0px 16px 0px 0px;
    overflow:hidden;
}

.tabControl .oneRow
{
    height:20px;
}

.tabControl .twoRows
{
    height:40px;
}

.tabControl .threeRows
{
    height:60px;
}

.tabControl .tabs .tab:hover
{
    color:#000;
}

.tabControl .content
{
    float:left;
    clear:left;
    border:1px #ccc solid;
    border-top:0;
}

.tabControl .tabs .selected
{
    border:1px #ccc solid;
    border-bottom:1px #fff solid;
    font-weight:bold;
}

.tabControl .tabs .tabButton
{
    float:left;
    height:15px;
    border-radius: 5px;
    border:1px #777 solid;
    padding:1px 5px;
    margin:0 3px 1px 0;
    cursor:pointer;
}

.tabControl .tabs .tabButton:hover
{
    color:#000;
}

.tabControl .tabs .tab[disabled="disabled"], .tabControl .tabs tab[disabled="disabled"]:hover
{
    cursor:default;
    color:#999;
}

.tabControl .tabs .newRow
{
    clear:left;
}