@charset "utf-8";
/* CSS Document */

body {
	background-image: url(../images/background.png);
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
a:link {
	color: #999;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #999;
}
a:hover {
	text-decoration: underline;
	color: #999;
}
a:active {
	text-decoration: none;
	color: #999;
}
.blokk {
	font-family:verdana;
	font-size:10px;
	color:#FFF;
	line-height:15px;
	padding-top:5px;
	padding-bottom:8px;
}

#disablingDiv
{
    /* Do not display it on entry */
    display: none;

    /* Display it on the layer with index 1001.
       Make sure this is the highest z-index value
       used by layers on that page */
    z-index:1001;
     
    /* make it cover the whole screen */
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
	 
    /* make it white but fully transparent */
    background-color: #CCC;
    opacity:.50;
    filter: alpha(opacity=50);
}