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

html, body {
	background: #333333;
	margin: 0;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
	
	height: 100%;
}

/*MAKES ALL IMAGES HAVE NO BORDER*/
img {
	border: 0;
}

/*WRAPS UP THE WHOLE CONTENT TO KEEP IT CENTERED*/
#wrap_all {
	width: 960px; /*1024px viser vertical scrollbars i noen browsere, så bruk heller noe mindre*/
	
	/*REQUIRED FOR STICKY FOOTER TO WORK*/
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -180px;
}

/*TOP
*****************************************************************/
#top {
	width: 950px;
	height: 35px;
	padding: 10px 0px 0px 10px;
	background-image: url(../images/top_bg.jpg);
	overflow: hidden;
}

#top_button {
	width: 140px;
	height: 25px;
	margin-right: 20px;
	float: left;
}

/*HEADER
*****************************************************************/
#header {
	width: 960px;
	height: 310px;
	background-image: url(../images/header_bg.jpg);
}

#header_top {
	width: 960px;
	height: 270px;
}

#header_box {
	width: 220px;
	height: 270px;
	margin-right: 10px;
	float: right;
}

/*SEARCH FORM*/
#search_wrap {
	width: 220px;
	height: 25px;
	background-image: url(../images/header_search_bg.png);
	margin: 10px 0px 10px 0px;
}

#cntnt01moduleform_1 {
	padding-top: 3px;
}

#search_input {
	width: 132px;
	border: 0px;
	margin-left: 10px;
	background-color: #ffffff;
	font-size: 14px;
	float: left;
}

#search_submit {
	width: 65px;
	height: 19px;
	margin-right: 3px;
	border: 0px;
	background: url(../images/header_search_submit.jpg);
	float: right;
}

/*LOGIN FORM*/
#login_wrap {
	width: 200px;
	background: url(../images/header_login_bg.png);
	margin: 0px;
	padding: 2px 10px 2px 10px;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: normal;
}

#login_wrap a {
	color: #FFFFFF;
	text-decoration: none;
}

#login_wrap a:hover {
	color: #CCCCCC;
	text-decoration: none;
}

#login_input {
	width: 200px;
	border: 0px;
	margin-bottom: 5px;
	background-color: #FF0000;
	font-size: 14px;
	color: #FFFFFF;
}

#login_submit {
	width: 220px;
	height: 25px;
	border: 0px;
	background: url(../images/header_login_submit.png);
}

/*LOGGED IN FORM AND URL'S FOR LOGGED IN USERS*/
#loggedin_top { /*Displays a welcome containing the front name of user*/
	width: 167px;
	height: 24px;
	background: url(../images/header_loggedin_top.png);
	margin: 0px;
	padding: 26px 3px 0px 50px;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
}

#loggedin_wrap {
	width: 220px;
	background: url(../images/header_login_bg.png);
	margin: 0px;
}

#loggedin_url { /*Displays a welcome containing the front name of user*/
	width: 205px;
	height: 21px;
	background: url(../images/header_loggedin_break.png);
	padding: 4px 0px 0px 15px;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: normal;
}

#loggedin_url a {
	color: #FFFFFF;
	text-decoration: none;
}

#loggedin_url a:hover {
	color: #CCCCCC;	
}

/*MENU1
*****************************************************************/
#menu1_wrap {
	width: 960px;
	height: 40px;
}

.clearfix_menu1 {
	margin: 0px;
	padding: 0px;
}

/* hack for Internet Explorer */
* html div#menu1 {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu1 {
   margin-left: 0px;
   background-color: none;  /* background color for the entire menu row */
   width: 100%;
   text-align: right;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu1 ul {
   margin: 0;
}


/* menu list items */
div#menu1 li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */
   text-align: center; 
   margin: 0;
   width: 140px;
   margin: 0px 10px 0px 10px;
}

/* the links, that is each list item */
div#menu1 a {
	margin: 0; /* margin outside each list item box */
	padding-top: 8px;
	display: block;
	width: 140px;
	height: 32px;
	background-image: url(../images/menu1_button_nonactive.png);
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}

/* the page that is now selected */
div#menu1 a.currentpage {
	margin: 0; /* margin outside each list item box */
	padding-top: 8px;
	display: block;
	width: 140px;
	height: 32px;
	background-image: url(../images/menu1_button_active.png);
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}

/* hover state for links */
div#menu1 li a:hover {
	color: #ffffff;
}

/* hover state for currently active link */
div#menu1 a.currentpage:hover {
	color: #ffffff;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu1 li.activeparent a {
   display: block;
   padding-top: 8px;
   width: 140px;
   height: 32px;
   background-image: url(../images/menu1_button_active.png);
	
   font-family: Arial, Helvetica, sans-serif;
   font-size: 15px;
   color: #ffffff;
   font-weight: bold;
   text-decoration: none;
}

/*MENU2
*****************************************************************/
#menu2_wrap {
	width: 880px;
	height: 25px;
	margin: 20px 0px 0px 80px;
}

.clearfix_menu2 {
	margin: 0px;
	padding: 0px;
}

/* hack for Internet Explorer */
* html div#menu2 {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu2 {
   margin: 0px;
   background-color: none;  /* background color for the entire menu row */
   width: 100%;
   text-align: right;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu2 ul {
   margin-left: 0px;
   padding: 0px;
}


/* menu list items */
div#menu2 li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */
   text-align: center; 
   margin: 0;
   width: 140px;
   margin: 0px 10px 0px 10px;
}

/* the links, that is each list item */
div#menu2 a {
	margin: 0; /* margin outside each list item box */
	padding-top: 4px;
	display: block;
	width: 140px;
	height: 21px;
	background-image: url(../images/menu2_button_nonactive.png);
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}

/* the page that is now selected */
div#menu2 a.currentpage {
	margin: 0; /* margin outside each list item box */
	padding-top: 4px;
	display: block;
	width: 140px;
	height: 21px;
	background-image: url(../images/menu2_button_active.png);
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}

/* hover state for links */
div#menu2 li a:hover {
	color: #ffffff;
}

/* hover state for currently active link */
div#menu2 a.currentpage:hover {
	color: #ffffff;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu2 li.activeparent a {
   display: block;
   padding-top: 4px;
   width: 140px;
   height: 21px;
   background-image: url(../images/menu2_button_active.png);
	
   font-family: Arial, Helvetica, sans-serif;
   font-size: 15px;
   color: #ffffff;
   font-weight: bold;
   text-decoration: none;
}

/*CONTENT
*****************************************************************/
#content_1col {
	width: 894px;
	margin: 0px 0px 0px 10px;
	padding: 20px;
	border: 3px solid #820000;
	background: #FFFFFF;
	overflow: hidden;
}

/*Content column to use when displaying the catalog module*/
#content_1col_catalog {
	width: 934px;
	margin: 0px 0px 0px 10px;
	padding-top: 20px;
	border: 3px solid #820000;
    background-image: url(../images/bg_table_1.jpg);
	overflow: hidden;
}

/*Displaying two content columns next to each other*/
#content_2col_wrap {
	width: 894px;
	margin: 0px 0px 0px 10px;
	padding: 20px;
	border: 3px solid #820000;
	background: #FFFFFF;
	overflow: hidden;
}

#content_2col_1 {
	width: 437px;
	float: left;
}

#content_2col_2 {
	width: 437px;
	float: right;
}

/* Column with 10px padding and bg */
#content_2col_2_style_1 {
	width: 411px;
	padding: 10px;
	border: 3px solid #820000;
    background-image: url(../images/bg_table_1.jpg);
	float: right;
}

/*CATALOG ARTICLES
*****************************************************************/

/*Level 1 categories*/
#catalog_category_articles_1 {
	width: 377px;
	height: 38px;
	padding: 12px 0px 0px 60px;
	margin: 0px 0px 20px 20px;
    background-image: url(../images/catalog_articles_1_bg.png);
	float: left;
	
   font-family: Arial, Helvetica, sans-serif;
   font-size: 20px;
   color: #FFFFFF;
   font-weight: bold;
   text-decoration: none;
}

#catalog_category_articles_1 a {
	color: #FFFFFF;
	text-decoration: none;
}

#catalog_category_articles_1 a:hover {
   color: #CCCCCC;
   text-decoration: none;
}

/*Level 2 categories*/
#catalog_category_articles_2 {
	width: 377px;
	height: 38px;
	padding: 12px 0px 0px 60px;
	margin: 0px 0px 20px 20px;
    background-image: url(../images/catalog_articles_2_bg.png);
	float: left;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}

#catalog_category_articles_2 a {
	color: #FFFFFF;
	text-decoration: none;
}

#catalog_category_articles_2 a:hover {
   color: #CCCCCC;
   text-decoration: none;
}

/*CATALOG PRODUCTS
*****************************************************************/

/*Level 1 categories*/
#catalog_category_products_1 {
	width: 377px;
	height: 38px;
	padding: 12px 0px 0px 60px;
	margin: 0px 0px 20px 20px;
    background-image: url(../images/catalog_articles_1_bg.png);
	float: left;
	
   font-family: Arial, Helvetica, sans-serif;
   font-size: 20px;
   color: #FFFFFF;
   font-weight: bold;
   text-decoration: none;
}

#catalog_category_products_1 a {
	color: #FFFFFF;
	text-decoration: none;
}

#catalog_category_products_1 a:hover {
   color: #CCCCCC;
   text-decoration: none;
}

#catalog_category_products_1_logo {
	width: 431px;
	height: 119px;
	padding: 0px 6px 6px 0px;
	margin: 0px 0px 20px 20px;
	float: left;
	
   font-family: Arial, Helvetica, sans-serif;
   font-size: 20px;
   color: #FFFFFF;
   font-weight: bold;
   text-decoration: none;
}

/*Level 2 categories*/
#catalog_category_products_2 {
	width: 431px;
	height: 119px;
	padding: 3px 3px 3px 3px;
	margin: 0px 0px 20px 20px;
    background-image: url(../images/catalog_products_2_bg.png);
	float: left;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}

#catalog_category_products_2 a {
	color: #FFFFFF;
	text-decoration: none;
}

#catalog_category_products_2 a:hover {
   color: #CCCCCC;
   text-decoration: none;
}

/*Image div for category 2*/
#catalog_category_products_2_thumb {
	width: 119px;
	height: 119px;
	float: left;
}

/*Text div for category 2*/
#catalog_category_products_2_text {
	width: 299px;
	height: 82px;
	padding: 5px;
	float: right;
}

/*URL div for category 2*/
#catalog_category_products_2_url {
	width: 299px;
	height: 17px;
	text-align: right;
	padding: 5px;
	float: right;
}

/*FOOTER
*****************************************************************/
#push {
	margin: 0px auto;
	padding-bottom: 20px;
	width: 940px;
	height: 180px;
}

#footer {
	margin: 0px auto;
	width: 100%;
	height: 180px;
	background-image: url(../images/footer_bg.jpg);
}

#footer_content {
	margin: 0px auto;
	width: 960px;
	height: 155px;
}

#footer_content_block {
	margin: 20px 10px 0px 10px;
	width: 300px;
	height: 125px;
	float: left;
}

#footer_content_url {
	width: 290px;
	height: 21px;
	padding: 4px 0px 0px 10px;
	background-image: url(../images/footer_break.png);
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: normal;
}

#footer_content_url a {
	color: #FFFFFF;
	text-decoration: none;
}

#footer_content_url a:hover {
	color: #CCCCCC;	
}

#footer_bottom {
	margin: 0px auto;
	padding: 5px 0px 0px 20px;
	width: 940px;
	height: 20px;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: normal;
}

#footer_bottom a {
	color: #FFFFFF;
	text-decoration: none;
}

#footer_bottom a:hover {
	color: #CCCCCC;	
}

/*FORM - UNIVERSAL FORMS
*****************************************************************/
.form_input_1 {
	width: 200px;
	border: 5px solid #CCCCCC;
	background-color: #CCCCCC;
	font-size: 14px;
	color: #000000;
}

.form_button_submit {
	width: 100px;
	height: 25px;
	border: 0px;
	background: url(../images/form_button_submit.jpg);
}

.form_button_cancel {
	width: 100px;
	height: 25px;
	border: 0px;
	background: url(../images/form_button_cancel.jpg);
}
