/* ----------------------------------------------------------------------------------------------------------
    Structure:
    display; position; float; z-index; overflow; width; height; margin; padding; border; background; align; font;
    Content:

        1) Global, basic styles
        2) Wrappers
        3) Headers
        4) Navigation-menues
        5) Sidebar-boxes
        6) Maincontent-boxes
        7) WYM-Editor spesifics
        8) Footer
        9) Page spesific styles
	   10) Controlpanel
---------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------
1) Global, basic styles
---------------------------------------------------------------------------------------------------------- */
* { margin: 0; padding: 0; border: 0; }

html, body { height: 100%; }
html {
	background: #f2f2f2;
}
body {
	color: #000;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 11px;
	line-height: 16px;
	background: #f2f2f2;
}
.hidden { display: none; }

.brodtekst {
	font-weight: bold;
	font-size: 12px !important;
	color: #767676;
	margin-bottom: 12px;
	line-height: 18px !important;
}
h1,h2,h3,h4,h5,h6 { font-weight: normal; }
h1 { font-size: 24px; line-height: 34px; }
h2 { font-size: 20px; line-height: 30px; }
h3 { font-size: 16px; line-height: 26px; }
h4 { font-size: 14px; line-height: 24px; }
h5 { font-size: 12px; line-height: 22px; }

ul, ol, p, table { margin-bottom: 10px; }
ul, ol { margin-left: 20px; }

a {
	background-repeat: no-repeat;
	text-decoration: none;
	color: #000;
	border-bottom: 1px dotted #737373;
	padding: 2px;
}
a.external {
	background-position: 4px 50%;
	background-image: url(icons/extLink_img.gif);
	padding-left: 18px;
}
a:hover {
	background-color: #737373;
	color: #fff;
}

	/********** TABLES **********/
	table {
		width: 100%;
		border-collapse: collapse;
		margin: 1px 0;
		font-family: Verdana,Arial,Helvetica,sans-serif;
		font-size: 11px;
	}
	th, td {
		text-align: left;
		padding: 0 10px;
		height: 30px;
		line-height: 25px;
		border: 1px solid #fff;
	}
	th {
		color: #fff;
		background: #CF9229;
	}
	th a {
		padding: 0;
		border: none;
	}
	th a:hover {
		background-color: transparent;
	}
	td { background: #F0F0Fa; }
	tr.even td { background: #fff; }
	td a { border: none; padding: 0; }
	td a:hover { background-color: transparent; color: #000; }
	/********** TABLES END **********/

	/********** FORMS **********/
	legend {
		font-size: 20px;
		line-height: 30px;
		font-weight: normal;
		border: none;
		margin: 0 0 10px 0;
		padding: 0;
		background: none;
		color: #000;
	}
	fieldset p { overflow: hidden; }
	fieldset p label {
		display: block;
		line-height: 22px;
		width: 140px;
		margin-right: 10px;
		text-align: right;
		float: left;
	}
	fieldset p input,
	fieldset p select {
		float: left;
		border: 1px solid #ccc;
		display: block;
	}

	fieldset p input {
		height: 18px;
		padding-top: 2px;
		width: 240px;
		width: 370px;
	}

	fieldset p input[type=checkbox],
	fieldset p input[type=radio],
	fieldset p input.checkbox,
	fieldset p input.radio { width: auto; }

	fieldset p input.short { width: 50px; }
	fieldset p input.medium { width: 120px; }

	fieldset p select {
		height: 20px;
		width: 242px;
		width: 372px;
	}

	fieldset textarea,
	fieldset p textarea {
		float: left;
		border: 1px solid #ccc;
		display: block;
		width: 370px;
		height: 80px;
	}

		fieldset div.group_checkbox,
		fieldset div.group_radio {
			margin-bottom: 10px;
			overflow: hidden;
		}
			fieldset div.group_checkbox label,
			fieldset div.group_radio label {
				display: block;
				line-height: 22px;
				width: 140px;
				margin-right: 10px;
				text-align: right;
				float: left;
			}
			fieldset div.group_checkbox div,
			fieldset div.group_radio div {
				float: left;
				overflow: hidden;
			}
				fieldset div.group_checkbox div label,
				fieldset div.group_radio div label {
					width: auto;
					float: left;
					text-align: left;
					line-height: 20px;
					margin-bottom: 2px;
					margin-left: 4px;
				}
				fieldset div.group_checkbox div input,
				fieldset div.group_radio div input {
					float: left;
					display: block;
					margin-top: 3px;
				}
				fieldset div.group_checkbox div br,
				fieldset div.group_radio div br {
					clear: both;
					height: 0;
				}

		form div.buttons {
			margin-left: 150px;
			margin-top: 10px;
		}
		form div.buttons a { margin-right: 10px; }
	/********** FORMS END **********/

/* ----------------------------------------------------------------------------------------------------------
2) Wrappers
---------------------------------------------------------------------------------------------------------- */
div#outer_wrapper {
	background: url(content_bg.png) repeat-y 50%;
	height: auto !important;
	min-height: 100%;
}

ul#breadcrumbs {
	width: 932px;
	margin: 0 auto 0 auto;
	overflow: hidden;
	list-style: none;
	margin-top: -20px;
	margin-bottom: 20px;
}
	#breadcrumbs li {
		margin-right: 10px;
		float: left;
		height: 20px;
	}
	#breadcrumbs a {
		padding: 0;
		border: none;
		display: block;
		height: 20px;
		line-height: 20px;
	}
	#breadcrumbs a:hover { color: #000; }

	/********** FEEDBACK-PANEL **********/
	ul.feedback {
		list-style: none;
		padding: 0 0 10px 0;
		margin-left: 0;
		overflow: hidden;
	}
	ul.feedback li {
		line-height: 32px;
		margin-bottom: 10px;
		color: #fff;
		border: 1px solid #000;
		zoom: 1;
		padding: 8px 0;
	}
	ul.feedback li.l { margin-bottom: 0; }
	ul.feedback li span {
		display: block;
		line-height: 32px;
		background-repeat: no-repeat;
		background-position: 14px 0;
		padding-right: 14px;
		padding-left: 36px;
		zoom: 1;
		line-height: 16px;
	}
	ul.feedback li.info { background: #4ba614; border-color: #0a6315; }
	ul.feedback li.info span { background-image: url(icons/accept.png); }
	ul.feedback li.warning { color: #000; background: #fffea1; border-color: #fc0; }
	ul.feedback li.warning span { background-image: url(icons/error.png); }
	ul.feedback li.error { color: #000; background: #ffdad1; border-color: #d4340c; }
	ul.feedback li.error span { background-image: url(icons/delete.png); }
	/********** FEEDBACK-PANEL END **********/


div#main_container {
	width: 932px;
	margin: 20px auto;
	padding: 0 10px;
}
div#content { overflow: hidden; }

	div#container0 {
		min-height: 400px;
		float: left;
		width: 250px;
		margin-right: 20px;
	}

	div#container1 {
		min-height: 400px;
		float: left;
		width: 652px;
	}

	div.oneCol div#container0 {
		width: 932px;
		float: none;
	}


/* ----------------------------------------------------------------------------------------------------------
3) Header(s)
---------------------------------------------------------------------------------------------------------- */
div#header_container {
	background: url(header_container_bg.jpg) repeat 0 100%;
	height: 156px;
}
	#header {
		width: 952px;
		margin: 0 auto;
		background: url(header.jpg) no-repeat;
		height: 156px;
		position: relative;

		width: 982px;
		background: url(header.png) no-repeat;
	}
		#header h1 { height: 156px; }
		#header h1 a {
			display: block;
			height: 156px;
			text-indent: -9999px;
			border: none;
			padding: 0;
			overflow: hidden;
		}
		#header h1 a:hover { background-color: transparent; }

	ul#shoppingCartBox {
		background: #fff;
		border: 1px solid #e1e1e1;
		min-height: 40px;
		padding: 10px 20px;
		font-family: Verdana, sans-serif;
		list-style: none;
		position: absolute; top: 82px; right: 25px;
	}
		#shoppingCartBox li {
			height: 20px;
			line-height: 20px;
			font-size: 12px;
			overflow: hidden;
		}
			#shoppingCartBox span,
			#shoppingCartBox a {
				display: block;
				line-height: 20px;
				color: #727272;
				background-repeat: no-repeat;
				background-position: 0 50%;
				overflow: hidden;
				font-size: 11px;
				border: none;
			}

			#shoppingCartBox a {
				text-decoration: none;
				padding: 0 0 0 26px;
				background-image: url(icons/basket.png);
			}
			#shoppingCartBox a:hover {
				color: #000;
				background-color: transparent;
				background-image: url(icons/basket_put.png);
			}
			#shoppingCartBox span { text-align: right; }
			#shoppingCartBox span.desc {
				float: left;
				margin-right: 20px;
			}
			#shoppingCartBox span.value { font-weight: bold; }

	ul#logoutLinks {
		background: #fff;
		border: 1px solid #e1e1e1;
		min-height: 40px;
		padding: 10px 20px;
		list-style: none;
		font-family: Verdana, sans-serif;
		position: absolute; top: 10px; right: 25px;
	}

		#logoutLinks li {
			height: 20px;
			line-height: 20px;
			font-size: 12px;
		}

			#logoutLinks a {
				display: block;
				line-height: 20px;
				color: #727272;
				text-decoration: none;
				background-repeat: no-repeat;
				background-position: 0 50%;
				padding: 0 0 0 26px;
				overflow: hidden;
				font-size: 11px;
				border: none;
			}
			#logoutLinks a:hover {
				color: #000;
				background-color: transparent;
			}
			#logoutLinks a#customerLogout { background-image: url(icons/lock.png); }
			#logoutLinks a#mailLogout { background-image: url(icons/email_open.png); }
			#logoutLinks a span {
				display: block;
				line-height: 20px;
				float: left;
				min-width: 100px;
			}

			#logoutLinks a span.cname {
				font-weight: bold;
				text-decoration: underline;
				margin-left: 10px;
			}
			#logoutLinks a#customerLogout:hover { background-image: url(icons/lock_open.png); }
			#logoutLinks a#mailLogout:hover { background-image: url(icons/email_open_image.png); }

	/********** BUTTONS **********/
	.buttons {
		overflow: hidden;
		margin-top: 15px;
	}
	.buttons a, .buttons input {
		display: block;
		float: left;
		margin: 0 7px 0 0;
		background-color: #f5f5f5;
		border: 1px solid #dedede;
		border-top: 1px solid #eee;
		border-left: 1px solid #eee;
		font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
		font-size: 11px;
		line-height: 14px;
		text-decoration: none;
		font-weight: bold;
		color: #565656;
		cursor: pointer;
		padding: 7px 10px 4px 32px;
		background-repeat: no-repeat;
		background-position: 10px 50%;
	}
	.buttons a { min-height: 16px; }
	.buttons input { padding: 6px 10px 6px 29px; }
	/* standard */
	.buttons a:hover, .buttons input:hover {
	    background-color:#dff4ff;
	    border:1px solid #c2e1ef;
	    color:#336699;
	}
	.buttons a:active, .buttons input:active {
	    background-color: #6299c5;
	    border: 1px solid #6299c5;
	    color: #fff;
	}


	/* positive */
	.buttons a.positive, .buttons input.positive { color: #529214; }
	.buttons a.positive:hover, .buttons input.positive:hover {
	    background-color: #e3f9e4;
	    border: 1px solid #9ccd9c;
	    color: #529214;
	}
	.buttons a.positive:active, .buttons input.positive:active {
	    background-color: #529214;
	    border: 1px solid #529214;
	    color: #fff;
	}
	/* negative */
	.buttons a.negative, .buttons input.negative { color:#d12f19; }
	.buttons a.negative:hover, .buttons input.negative:hover {
	    background-color: #fbe3e4;
	    border: 1px solid #fbc2c4;
	    color: #d12f19;
	}
	.buttons a.negative:active, .buttons input.negative:hover {
	    background-color: #d12f19;
	    border: 1px solid #d12f19;
	    color: #fff;
	}
	/* cancel */
	.buttons a.cancel, .buttons input.cancel { }
	.buttons a.cancel:hover, .buttons input.cancel:hover {
	    background-color: #fffea1;
	    color: #000;
		border: 1px solid #dedede;
		border-top: 1px solid #eee;
		border-left: 1px solid #eee;
	}
	.buttons a.cancel:active, .buttons input.cancel:active {
	    background-color: #fc0;
	    border: 1px solid #fc0;
	    color: #000;
	}
	.buttons a,
	.buttons input { background-image: url(icons/tick.png); }
	.buttons .add { background-image: url(icons/add.png); }
	.buttons .order,
	.buttons .ok,
	.buttons .accept { background-image: url(icons/accept.png); }
	.buttons .search { background-image: url(icons/magnifier.png); }
	.buttons .cancel,
	.buttons .delete { background-image: url(icons/delete.png); }
	.buttons .save { background-image: url(icons/disk.png); }
	.buttons .login { background-image: url(icons/key.png); }
	body#ListWeb .buttons a { background-image: url(icons/house.png); }
	body#NewDatabase .buttons input,
	body#ListDatabases .buttons a { background-image: url(icons/database_add.png); }
	body#EditMailDomain .buttons a { background-image: url(icons/email_add.png); }
	.buttons .retrieve { background-image: url(icons/key_go.png); }
	.buttons .cancel { background-image: url(icons/arrow_undo.png); }
	body#EditDnsDomain .buttons a { background-image: url(icons/link_add.png); }
	.buttons .mailContacts { background-image: url(icons/contrast.png); }
	.buttons #buyMore { background-image: url(icons/cart.png); }
	/********** BUTTONS END **********/

/* ----------------------------------------------------------------------------------------------------------
4) Navigation-menues
---------------------------------------------------------------------------------------------------------- */
div#menu_wrapper { }
	ul#menu {
		background: url(nav_bg.png) repeat-x;
		width: 932px;
		padding: 0 11px;
		margin: 0 auto;
		list-style: none;
		overflow: hidden;
	}
	ul#menu li {
		float: left;
		background: url(nav_bg_separator.png) no-repeat 100% 0;
		padding-right: 2px;
	}
	ul#menu li a {
		display: block;
		height: 44px;
		line-height: 44px;
		color: #fff;
		text-decoration: none;
		border: none;
		padding: 0 10px;
		font-weight: bold;
		background: url(nav_bg.png) repeat-x;
	}
	ul#menu li a:hover { background-image: url(nav_bg_hover.png); }
/*---------------------------
	ul#menu ul{
		background: url(nav_bg.png) repeat-x;
		width: 932px;
		padding: 0 11px;
		margin: 0 auto;
		list-style: none;
		overflow: hidden;
	}
	ul#menu ul li {
		float: left;
		background: url(nav_bg_separator.png) no-repeat 100% 0;
		padding-right: 2px;
	}
	ul#menu ul li a {
		display: block;
		height: 44px;
		line-height: 44px;
		color: #fff;
		text-decoration: none;
		border: none;
		padding: 0 10px;
		font-weight: bold;
		background: url(nav_bg.png) repeat-x;
	}
	ul#menu ul li a:hover { background-image: url(nav_bg_hover.png); }
		

/* ----------------------------------------------------------------------------------------------------------
5) Sidebar-boxes
---------------------------------------------------------------------------------------------------------- */
form#domain-search {
	background: #1e1e1e url(box_1_bg.png) repeat-x;
	color: #fff;
	padding: 10px;
	margin-bottom: 20px;
}
	#domain-search legend,
	#domain-search label { display: none; }
	#domain-search input#domene_input {
		display: block;
		height: 21px;
		width: 230px;
		padding: 3px 10px 0 10px;
		background: url(input_bg_2.png) no-repeat;
		font-size: 14px;
		margin-top: 4px;
	}
	#domain-search .buttons {
		width: 230px;
		margin: 10px 0 0 0;
	}
		#domain-search .buttons input { float: right; margin-right: 0; }

div#box_adresse {
	background: #1e1e1e url(box_1_bg.png) repeat-x;
	color: #fff;
	padding: 10px;
}

ul#logoer {
	list-style: none;
	margin: 20px 0;
}
ul#logoer li {
	margin-bottom: 10px;
	text-align: center;
}
ul#logoer li a {
	border: none;
	padding: 0;
}
ul#logoer li a:hover {
	background-color: transparent;
}

/* ----------------------------------------------------------------------------------------------------------
6) Maincontent-boxes
---------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------
7) WYM-Editor spesific (Flyttet over i base.css)
---------------------------------------------------------------------------------------------------------- */
/* WYMeditor */

/* PARA: Left */
.p_left /* p[@class!="p_right"] */ {
	float: left;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 10px;
	text-align: left;
	font-style: italic;
	/* float: left; margin: 0 10px 10px 0; text-align: left; font-style: italic; border: 1px solid #ccc; */
}

/* PARA: Right */
.p_right /* p[@class!="p_left"] */ {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
	text-align: right;
	font-style: italic;
	/* float: right; margin: 0 0 10px 10px; text-align: right; font-style: italic; border: 1px solid #ccc;  */
}

/* IMG: Left */
.image_left /* img[@class!="image_right"] */ {
	float: left;
	margin: 10px 10px 0 0;
	/* float: left; margin: 0 10px 0 0; border: 1px solid #ccc; */
}

/* IMG: Right */
.image_right /* img[@class!="image_left"] */ {
	float: right;
	margin: 0 0 0 10px;
	/* float: right; margin: 0 0 0 10px; border: 1px solid #ccc;  */
}

/* FLOAT: Contain */
.float_contain /* */ {
	overflow: hidden;
	/* overflow: hidden; */
}

/* /WYMeditor */

/* ----------------------------------------------------------------------------------------------------------
8) Footer
---------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------
9) Page spesific styles
---------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------
10) Controlpanel
---------------------------------------------------------------------------------------------------------- */

* ----------------------------------------------------------------------------------------------------------
11) Gallerivisning
--------------------------------------------------------------------------------------------------------- */


ul.gallery_preview {list-style-type: none;}
.gallery_preview li {list-style-type: none;
float: left;
 border-bottom: 1px solid black;
 margin-bottom: 10px;
}
.gallery_preview a {border: none;}