/* -----------------------------------------------------------------------


 Tabs Plugin 0.1 for the Blueprint CSS Framework
 http://blueprintcss.org

   * Copyright (c) 2008-Present. Refer to the main Blueprint license.
   * See README for instructions on how to use this plugin.
   * For credits and origins, see AUTHORS.

----------------------------------------------------------------------- */

.tabs {
	border-bottom:1px solid #ccc;
	height:1%; /* fixing IE 6 */
	margin:0 0 .75em 0;
	min-height:auto;
	overflow:auto;
}
.tabs li {
  border:1px solid #ccc;
  border-bottom:none;
  float:left;
  line-height:1.5;
  list-style-type:none;
  margin:0 .25em 0 0;
  padding:0;
}
.tabs li a {
	background:#ddd;
  border:1px solid #eee;
  border-bottom:none;
  color:#222;
  cursor:pointer;
  display:block;
  float:left;
  font-weight:bold;
  padding:.15em .33em .25em .33em;
}
.tabs li a.selected {
  background:#666;
  border:1px solid #666;
  border-bottom:none;
  color:#fff;
  cursor:default;
}
.tabs li a, .tabs li a:focus, .tabs li a:hover {
  text-decoration:none;
}
.tabs li a:focus, .tabs li a:hover {
  color:#555;
  outline:none;
}
.tabs li a.selected:focus, .tabs li a.selected:hover {
  color:#fafafa;
}
.tabs li.label {
	border:none;
	font-weight:bold;
	line-height:1.5;
	margin-right:.5em;
	padding:.25em .33em .25em .33em;
}

/* Raxan */

        /**
         * nicetab - tabstrip theme
         */
        ul.tabs.nicetab {
            border:none;
            background:url("../img/tabs/tab_bg.gif") repeat-x left bottom;
        }
        ul.tabs.nicetab li {
            border:none; padding:0 0 0 9px;
            background:url("../img/tabs/tab_off.png") no-repeat left top;
        }
        ul.tabs.nicetab a {
            color:#765; border:none;
            padding:5px 15px 4px 6px;
            background:url("../img/tabs/tab_off.png") no-repeat right top;
        }
        ul.tabs.nicetab a:hover { color:#333; }
        ul.tabs.nicetab .selected  {
            cursor:default;
            background:url("../img/tabs/tab_on.png")  no-repeat left top;
        }
        ul.tabs.nicetab .selected a {
            color:#333; padding-bottom:5px; border:none;
            background:url("../img/tabs/tab_on.png") no-repeat right top;
        }

        /**
         * bluetab - tabstrip theme
         */
        ul.tabs.greentab {
            border:none;
            background:url("../img/tabs/tab_bg_green.gif") repeat-x left bottom;
        }
        ul.tabs.greentab li {
            border:none; padding:0 0 0 9px;
            background:url("../img/tabs/tab_off_green.png") no-repeat left top;
        }
        ul.tabs.greentab a {
            color:#FFF; border:none;
            padding:5px 15px 4px 6px;
            background:url("../img/tabs/tab_off_green.png") no-repeat right top;
        }
        ul.tabs.greentab a:hover { color:#EDEDED; }
        ul.tabs.greentab .selected  {
            cursor:default;
            background:url("../img/tabs/tab_on_green.png")  no-repeat left top;
            color: #333;
        }
        ul.tabs.greentab .selected a {
            color:#333; padding-bottom:5px; border:none;
            background:url("../img/tabs/tab_on_green.png") no-repeat right top;
        }

ul.tabs li.righttab
{
	background: none;	
	float:right;
	line-height: 1em;
	margin-top: 5px;
}

ul.tabs li.righttab a.switch-button
{
	display: inline;
	float: none;
	background: none;
	padding: 3px 10px 3px 25px;
	border-left: 1px solid #CCC;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	font-size: 12px;
	color: #CCC;
}

ul.tabs li.righttab a.switch-button.last
{
	border-right: 1px solid #CCC;
}

ul.tabs li.righttab a.switch-button.switch-button-list
{
	background: url("../img/result-viewmodes-sprite.gif") no-repeat 10px -85px;
}

ul.tabs li.righttab a.switch-button.switch-button-list.active
{
	background-position: 10px -145px;
	color: #444;
	background-color: #CCC;		
}

ul.tabs li.righttab a.switch-button.switch-button-map
{
	background: url("../img/result-viewmodes-sprite.gif") no-repeat 10px -175px;
}

ul.tabs li.righttab a.switch-button.switch-button-map.active
{
	background-position: 10px -235px;
	color: #444;
	background-color: #CCC;	
}





