@import "editor.css";


/* Used for accessibility purposes.
*  Content that should be visible to screen readers etc,
*  but not normal browsers must be given this class.
*/
.hidefromview {
    position: absolute;
    left: -9999px;
}

/*************************
Basic building blocks of the site.

The site is designed to work in a 1024 px (960) wide browser.
It's a 2-column layout. PrimaryContent and SecondaryContent
***************************/
html, body{
    height:100%;
}
.clearboth{
    clear:both;
}

/*
The clearfix class makes any wrapping element contain its children when they are floated
*/
.clearfix:after {content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

body{
    margin:0;
    font-size:62.5%; /* This will reset the base font-size to 10px in almost all browsers. Easier to use em and relative font site later */
    text-align:center; /* Makes IE6 center the content. Gets overridden later */
    font-family:Georgia, serif;
    color:#000;
    line-height:1.6; /* A line-height which also makes sure that the page is AAA-compliant */
}
/*
A simple wrapper which can hold background image.
The #SiteWrapper selector is also used to get the sticky footer to work
*/
#SiteWrapper{
    min-height:100%;
    height:auto !important;
    height:100%;
    margin:0 auto -100px;
    background:url("../../bitmaps/site/bg_new.jpg") no-repeat center 90px;
}
/*
The #PageWrapper selecto holds the page content.
*/
#PageWrapper{
    margin:0 auto;
    width:850px;
    text-align:left; /* Override the body text-align so that the page is centered in IE6 */
    font-size:1.4em; /* Sets the default size to 14px */
    padding:10px 20px 50px 20px;
    position:relative;
}
#HeaderWrapper{
    height:155px;
    position:relative;
    margin-bottom:20px;
}
#MainNavigation{
    font-size:1.1em;
    color:#1a6608;
    width:100%;
    padding:8px 0 0 30px;
    clear:both;
}
/*
The selector is not necessarily used by a standard site.
The selector is available here to show the name 
#SecondaryNavigation{
}
*/

/*
The websites primary content. Article, search result, forms etc.
*/
#PrimaryContent{
    float:left;
    width:570px;
    margin-right:20px;
    margin-top:30px;
    overflow:hidden;
}
#PrimaryContent.fullside{
    width:840px;
    margin-right:0;
}
#Breadcrumbs{
    margin-bottom:15px;
    font-size:.9em;
    color:#666;
    font-family:verdana, sans-serif;
}
#Breadcrumbs a, #Breadcrumbs a:visited, #Breadcrumbs a:hover{
    color:#666;
    text-decoration:underline;
}
#Breadcrumbs a:hover{
    color:#000;
}

/*
The secondary content where help boxes, extra information etc is placed.
Usually in the right column
*/
#SecondaryContent{
    float:right;
    width:250px;
    margin-top:75px;
}
#FooterWrapper{
    width:850px;
    height:100px; /* Must be the same height as the negative margin */
    clear:both;
    font-size:1.3em;
    margin:0 auto;
}
#SiteWrapper .push{
    height:100px;
}

/*
Main navigation
*/
#MainNavigation a.hjem{
    display:block;
    position:absolute;
    left:20px;
    top:115px;
    width:30px;
    height:40px;
}
#MainNavigation ul{
    padding:0;
    list-style:none;
    margin:0 auto;
    text-align:left;
}
#MainNavigation ul li{
    display:inline;
    margin:0;
    float:left;
    padding:0;
    font-size:1em;
/*background:url("../../bitmaps/site/seperator.png") no-repeat 5px -11px;*/
}
#MainNavigation li a, #MainNavigation li a:visited{
    padding:30px 12px 5px 14px;
    display:inline-block;
    color:#555;
    border-bottom:5px solid transparent;
    background:url("../../bitmaps/site/meny_separator.png") no-repeat left 16px;
}
#mainnavigation li:first-child a{
    border-left:none;
}
#MainNavigation li a:hover, #MainNavigation li.selected a, #MainNavigation li.open a{
    background:#666;
    color:#fff;
}
#MainNavigation li:first-child{
    margin-left:5px;
}



/******************************
Headings.
Styling only h1-h3 because there are rarely any use for more than that. The WYSIWYG-editor of aksess only allows h2 and h3
******************************/
h1,h2,h3{
    font-weight:normal;
    margin:0;
    line-height:1.2; /* Headings need less line-height */
    font-family:Arial, sans-serif;

}
.forside h2, .forside h3{
    font-weight:bold;
}
h1{
    font-size:2em; /* 28 px */
    border-bottom:1px solid #C22037;
    padding-bottom:5px;
    margin-bottom:25px;
}
body.forside h1{
    margin-bottom:.3em;
    border-bottom:none;
    padding-bottom:0;
    font-weight:bold;
}
h2{
    font-size:1.4em; /*  */
}
h3{
    font-size:1.2em;
}

/*********************************
Basic links and links in headings
*********************************/
a, a:visited, h1 a:hover, h2 a:hover, h3 a:hover{
    color: #21759B;
    text-decoration:none;
}
a:hover{
    color:#D54E21;
}
#MainNavigation a, #MainNavigation a:visited{
    color:#ff0033;
    font-family:Arial, sans-serif;
}
#MainNavigation a:hover{
    text-decoration:none;
}

/**********************************
Basic html elements
**********************************/
p{
    margin:0 0 1em;
}
img{
    border:none;
}
form{
    margin:0;
    padding:0;
}
fieldset{
    margin:1em 0 0 0;
    border:1px solid #ccc;
}
legend{
    padding:0 .5em;
}
label{
    margin:1em 0 .5em;
    display:block;
}
input{
    width:60%;
}
textarea{
    width:90%;
}
input[type=submit]{
    width:auto;
}

/***************************
WYSIWYG-ditor classes that needs styling
***************************/
#PrimaryContent .runningText img.align-right{
    float:right;
    margin:0 0 1em 1em;
}
#PrimaryContent .runningText img.align-right{
    float:left;
    margin:0 1em 1em 0;
}

/***********************************
OpenAksess template styles
***********************************/
#PrimaryContent .leadParagraph{
    margin:0 0 2em;
    font-size:1.1em;
}
#PrimaryContent .image{
    margin:0 0 2em;
}
#PrimaryContent .image .caption{
    margin:.5em 0 0 0;
    text-align:right;
    color:#666;
    font-size:.8em;
}
#PrimaryContent .image img{
    border:1px solid #ccc;
    padding:5px;
}

/**************************
Tables. basic styling
***************************/
table{
    width:100%;
    border-bottom:1px solid #ccc;
    border-right:1px solid #ccc;
}
table td{
    font-size:1em;
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
}

/*
Published tables in the WYSIWYG-editor will have their first row made into a header like row.
*/
#PrimaryContent .runningText table tr:first-child > td{
    background:#efefef;
    font-size:1.1em;
    font-weight:bold;
}
.widget{
    margin-bottom:30px;
    overflow:hidden;
    position:relative;
    border:1px solid #B0B0B0;
    width:248px;
}
.widget .body{
    padding:10px;
    background:#fff url("../../bitmaps/site/input.jpg") repeat-x left top;
}
.widget h3{
    color:#444444;
    font-size:1.3em;
    font-weight:normal;
    line-height:1em;
    padding:6px 10px;
    background:url("../../bitmaps/site/gra.gif")repeat-x left top;
    border-bottom:1px solid #B0B0B0;
}
.nyheter{
    border:1px solid #ccc;
}
.nyheter h2{
    position:relative;
}
.nyheter .rss{
    background:url("../../bitmaps/site/rss.png") no-repeat right 3px;
    padding:4px 22px 4px 0;
    position:absolute;
    right:10px;
    top:4px;
    font-size:.8em;
}
.nyhet{
    margin-bottom:20px;
    padding:10px;
    clear:both;
}
.nyhet .newsimage img{
    border:1px solid #ccc;
    padding:4px;
}
.nyhet .actions{
    background:#f1f1f1;
    padding:5px;
    border-bottom:1px solid #ccc;
    overflow:auto;
    margin-top:5px;
    font-size:.8em;
    clear:both;
}
.nyhet .actions .continueReading{
    float:left;
    width:80px;
    background:url("../../bitmaps/site/readmore2.png") no-repeat left center;
    padding-left:25px;
}
.nyhet .actions .NumberOfComents{
    float:left;
    width:140px;
    background:url("../../bitmaps/site/comment.png") no-repeat left center;
    padding-left:25px;
    color:#666;
}
.forside .nyhet h2{
    border-bottom:1px solid #C22037;
    margin-bottom:5px;
    padding-bottom:2px;
}
.forside .newsimage{
    float:left;
    width:180px;
}
.forside .nyhet .ingress{
    clear:none;
}

#PrimaryContent .nyhet .publishdate{
    color:#666;
    float:left;
    width:250px;
    margin:0;
    text-align:left;
    font-size:1em;
}
.nyhet h3{
    font-size:1.3em;
    float:left;
    width:450px;
    margin-bottom:3px;
}
.nyhet .ingress{
    padding-top:5px;
    margin-top:5px;
    clear:both;
}
#logo{
    text-align:center;
    float:left;
    width:70px;
    margin-right:20px;
}
#logoRight{
    text-align:center;
    float:right;
    width:70px;
    margin-right:20px;
}
#logotekst{
    float:left;
    margin:20px auto 0;
    width:670px;
    text-align:center;
}
#sponsorer{
    float:right;
    text-align:right;
    width:400px;
    margin-top:40px;
}

#FooterWrapper .body{
    padding-top:10px;
}

#comments{
    border-top:1px solid #ccc;
    margin-top:20px;
}

#PrimaryContent .publishdate{
    color:#666;
    margin-bottom:20px;
    margin-top:-20px;
    text-align:right;
    font-size:.8em;
    font-family:verdana, sans-serif;
}
#PrimaryContent .shareOnFB{
    padding:5px 10px 5px 18px;
    float:left;
    width:100px;
}


/*
 Liste i hovedinnhold
 */
#PrimaryContent ul.list{
    margin:15px 0;
    padding:0;
}
#PrimaryContent ul.list li{
    margin:0;
    padding:10px 0;
    list-style:none;
    display:block;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
}
#PrimaryContent ul.list li:first-child{
    border-bottom:none;
}

/*
Spillestall
*/
body.spillerstall #PrimaryContent ul.list .image{
    float:left;
    width:150px;
    margin-right:20px;
}
body.spillerstall #PrimaryContent ul.list .body{
    float:right;
    width:450px;
}
.spillerstall #PrimaryContent li{
    list-style:none;
    padding-left:0;
}
.spillerstall #PrimaryContent li .draktnummer{
    display:inline-block;
    width:20px;
}


/**********************************
SPILLER
**********************************/
.spiller .photo{
    margin-bottom:20px;
}
.spiller .photo img{
    padding:4px;
    border:1px solid #ccc;
}
.spiller #PrimaryContent table.spillerdetaljer{

}
.spiller #PrimaryContent table.spillerdetaljer td{
    padding:4px;
    border-bottom:1px solid #ccc;
    border-left:none;
    border-top:none;
    border-right:none;
}
.spiller #PrimaryContent table.spillerdetaljer tr.even td{
    background:#f1f1f1;
}
.spiller #PrimaryContent table.spillerdetaljer td.label{
    font-weight:bold;
    width:35%;
    border-right:1px solid #ccc;
}
.spiller #PrimaryContent table.spillerdetaljer td.posisjon:first-letter{
    text-transform:uppercase;
}


/****************
TABELL
****************/
#visibleContent table{

}
#visibleContent table td{
    padding:2px;
}
#visibleContent table thead th{
    background:#777;
    color:#fff;
    padding:2px;
    text-align:left;
}
#visibleContent table thead tr:first-child td{
    background:#2b2b2b;
    color:#fff;
    padding:2px;
}
#visibleContent table td p, #visibleContent table th p{
    margin:0;
}
.eksternside dl{

}
.eksternside dl dt{
    display:inline;
    font-weight:bold;
}
.eksternside dl dd, .eksternside dl dd p{
    display:inline;
    margin:0 10px 0 0;
}
#visibleContent table td.clTextAlignLeft{
    text-align:left;
}
#visibleContent span.clNotify{
    color:#ff0000;
}
td.clBold{
    font-weight:bold;
}
#visibleContent table tr.even td{
    background:#dedede;
}
#visibleContent table{
    font-family:verdana, sans-serif;
}



/***********************
FOOTER
************************/
#FooterWrapper .sponsorer div{
    float:left;
    margin-right:15px;
}
#FooterWrapper .blikkenslager{ width:150px;}
#FooterWrapper .gartner{ width:170px;}
#FooterWrapper .bunnpris{ width:160px;}

#FooterWrapper .kontaktinfo{
    border-top:1px solid #CCCCCC;
    clear:both;
    color:#666666;
    font-size:0.9em;
    padding-top:20px;
    text-align:center;
}
#ajax-loader{
    background:url("../../bitmaps/site/ajax-loader.gif") no-repeat left center;
    height:50px;
    text-align:center;
    margin:0 auto;
    width:340px;
    padding-top:25px;
    color:#666;
    font-size:1.2em;
}
#speakerinfo{
    text-align:right;
    display:none;
    color:#666;
    font-size:.8em;
}
#speakerinfo .endret_kamptidspunkt{
    color:#ff0000;
    padding-right:15px;
    font-family:verdana, sans-serif;
}
#speakerinfo a{
    padding-left:15px;
}
body.poll input[type=radio]{
    width:30px;
    position:relative;
    top:4px;
}

.bildealbum #PrimaryContent ul{
    margin:0;
    padding:0;
}
/* Defined in ie7.css */
.bildealbum #PrimaryContent li{
    display:inline-block;
    width:170px;
    vertical-align:middle;
    text-align:center;
    padding:5px;
    margin-bottom:10px;
}
.bildealbum #PrimaryContent h3{
    font-size:.9em;
}
.bildealbum #PrimaryContent h3 a{
    font-weight:normal;
}
.bildealbum #PrimaryContent h4{
    font-weight:normal;
    font-size:.8em;
    padding-top:5px;
}
.bildealbum #PrimaryContent li span.imageWrapper{
    display:table-cell;
    height:110px;
    vertical-align:middle;
    width:170px;
    text-align:center;
}
.bildealbum #PrimaryContent li img{
    border:2px solid #555;
}
