/*
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 { /* maintain accessibility by overriding inline style used by animations... */
    .fragment {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
    }
    .anchors {
        display: none;
    }
}

/*
TAB STYLES:
Some more styles, not important for making tabs work, just for the look of it...
*/
.anchors ul, .anchors li
{
margin: 0;
padding: 0;
display: inline;
list-style-type: none;
}

.anchors a:link, .anchors a:visited
{

text-decoration: none;
color: #EA2890;
}
.anchors a:hover
{

text-decoration: none;
color: #82BD40;
}

.fragment {
    padding: 0 10px;
}.alignLeft {
	float: left;
}
.alignRight {

	float: right;
}
.alignRightLink {
	float: right;
	margin-right: 50px;
}
