/*
IMPORTANT:
Essential styles to ensure accessibility
*/
@media projection, screen { /* use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none;
    }
}
@media print { /* retain accessibility by overriding inline style used by animations... */
    .fragment {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
    }
}

/*
TAB STYLES:
Some more styles, not important for making tabs work, just for the look of it...
*/
.anchors {
    list-style: none;
    margin: 0;
    padding: 0 0 1px;
    width:600px;
	}
	
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
	}

.anchors li {
    float: left;
    margin: 0 1px 0 0;
	}
	
.anchors a {
    display: block;
    position: relative;
    top: 2px;
    border-bottom: 1px solid #CECECE;
    z-index: 99;
   	padding-top: 9px;
    color: #000;
    text-decoration: none;
    background: url(plan_tabs.gif) #fff;
    width: 181px;
    text-align: center;
    height: 29px;
    font-size: 15px;
    
	}
	
.anchors .on a {
    padding-bottom: 0px;
    font-weight: bold;
	}
	
.anchors a:focus, .anchors a:active {
    outline: none; /* @ Firefox 1.5, remove ugly dotted border */
	}
	
.anchors .on a, .anchors a:focus, .anchors a:active {
	background: url(plan_tabs_active.gif) #FFF;
	border: 0px solid #000;
	top: 3px;
	height: 29px;
	}

.anchors a:hover  {
	background: url(plan_tabs_active.gif) #FFF;
	border: 0px solid #000;	
	}	
	
.anchors .on a:link, .anchors .on a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: pointer;
	}
	
.anchors a:hover, .anchors a:focus, .anchors a:active {
    cursor: pointer;
	}
	
.fragment {
    padding: 10px 10px;
    border-left: 1px solid #CECECE;
    border-right: 1px solid #CECECE;
    border-bottom: 1px solid #CECECE;
    border-top: 1px solid #CECECE;
    background: url(plan_bg.gif) #fff;
    background-repeat: repeat-x;
	}
	
.fragment ul {
	margin-left: 0px;
	padding-left: 15px;
	}
*html .fragment ul {margin-left: 15px; padding-left: 0px;}
	
.fragment li {
	margin: 4px 4px 4px  0;
	font-size: 14px;
	}
	
.plan_cost {
	border: 1px solid #9AB1CA;
	padding: 5px 35px;
	color: #036;
	background: #E7E7E7;
	font-weight: bold;
	}