﻿*{ /* Remove all the "default" margins and paddings so they are no disturbing*/
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Tahoma, SansSerif;
  font-size: 62.5%;
  background-color: #CACACA; /* Gray color on the background, no distraction*/
}
html {
  font-size: 100%;
}

h1 {
  font-size: 2.0em;
  color: #872F00;
  margin-top: 30px;
  margin-bottom: 5px;
  text-align: center;
}
h2 {
  font-size: 1.8em;
  margin-bottom: 5px;
  text-align: left;
}
h3 {
  font-size: 1.6em;
  text-align: left;
  font-style: italic;
}
h4 {
  font-size: 1.5em;
  text-align: left;
  font-style: normal;
}
h5 {
  font-size: 0.9em;
  text-align: left;
  font-style: normal;
}


p {
  font-size: 1.15em;
  color: #444444;
  margin-bottom: 5px;
  text-align: justify;
}
a {
  font-size: 1.15em;
  color: #873600;
}
a:hover {
  color: #0000FF;
}
a:visited {
  color: #00AAFF;
}

ul  {
  padding: 2px 0px 10px 0px;
}
li  {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 5px;
  text-align: justify;
}




#page {   /* This is the container where all the other containers are enclosed*/
  width: 947px;
  background-color: #FFFFFF;
  border: 1px solid gray;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
}

#header { /* Top part of the page, logos and links to main page are here*/
  width: 941px;
  height: 72px;
  background-color: #FFD350;
  margin: 3px;
}

.imgFloatLeft { /* I want the logo and company name on the left side no border*/
  margin: 4px;
  float: left;
  border: 0px;
}
#lastUpdate {  /* This container is required for styling the javascript return*/
  float: right;
  margin-top: 56px;
  margin-bottom: 4px;
  margin-right: 4px;
  font-size: 1.2em; /* this sets the size of the font of the java script*/
  color: black; /* this changes the color of the label on the java script*/
}



/* Main navigator CSS code starts here */
#mainNavigation { /* This is the page navigator container*/
    width: 941px;
    height: 24px;
    background-color: blue;
    margin: 3px;
}

#mainNavigation ul { /*Style the list so it displays in one row*/
	margin:0px 0px 0px 140px; /* Use 150px when support page is ready*/
	padding: 0px;
	list-style-type: none;
	}

#mainNavigation ul li {
	margin: 0px; padding: 0px;
	display: block;
	clear: none;
	float: left;
	}
#mainNavigation ul li a {
	margin: 0px 0px 0px 0px;
	display: block;
	clear: none;
	float: left;
    font-size: 1.2em;
	line-height: 23px;
	text-decoration: none;
	padding: 0px 10px;
	color: #FFFFFF;
	}
#mainNavigation ul li a:hover {
	color: #FF9900;
	}

#flags{  /*Styling the language selector images*/
    float: right;
	margin-top: 0px;
    margin-left: 5px;
	margin:3px 3px 1px 3px;
    }
.noBorder {
  border: 0px;
}
#mainNavigation ul li a.current{
  color: yellow;
  font-size: 1.25em;
}
/* Navigator section ends here */



/* START PAGE CSS CODE */
/* Featured products section of the start page CSS code starts here */
#featuredProducts { /* This area is for presenting featured products*/
    width: 939px;
    height: 300px;
    background-color: #FFFFFF;
    border: 1px solid white;
    margin: 3px;
}

#featProdNr1 { /* Left box of the three featured products*/
	float: left;
	width: 29.5%;
    height: 270px;
    padding: 10px;
    margin: 5px 0px 5px 5px;
    border: 1px solid black;
	}
#featProdNr1 a {
   font-size: 1.95em;
 }


#featProdNr2 { /* Center box of the three featured products*/
    height: 270px;
	margin-left: 33%;
	margin-right: 33%;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid black;
	}
 #featProdNr2 a {
   font-size: 1.95em;
 }

#featProdNr3 { /* Right box of the three featured products*/
 	float: right;
    width: 29.5%;
    height: 270px;
    padding: 10px;
	margin: 5px 5px 5px 0px;
    border: 1px solid black;
	}
#featProdNr3 a {
   font-size: 1.95em;
 }

.imgFloatRight { /* Featured Products Pictures go to the right*/
  margin: 10px;
  float: right;
  border: 0px;
}

.itaPara {  /*Emphasis on a phrase*/
  font-style: italic;
}
/* Featured products section ends here */



/* Lower section of the start page CSS code starts here */
#lowerSection {
    width: 939px;
    /*height: 400px;*/
    background-color: #FFFFFF;
    border: 1px solid white;
    margin: 3px;
}

#lowerSectionNr1 { /* Left box for company introduction*/
	float: left;
	width: 46.6%;
    /*height: 300px; */
    padding: 10px;
    margin: 5px 0px 5px 5px;
	}

#lowerSectionNr2 { /* Center box for events and tutorial annoncements etc*/
    /*height: 300px;*/
	margin-left: 50%;
	margin-right: 33%;
    margin-top: 5px;
    padding: 10px;
	}

#lowerSectionNr3 { /* Right box for news and the search box*/
 	float: right;
    width: 29.5%;
    /*height: 300px;*/
    padding: 10px;
	margin: 5px 5px 5px 0px;
	}

.largeText {
    font-size: 2.5em;
    font-style: normal;
    font-weight: normal;
    font-family: Tahoma, Arial;
    }

.subimage {
	position: absolute; /*This makes possible to place the button to the side of the search box*/
	margin-top: 1px;
	margin-bottom: 1px;
	margin-left: 2px;
    width: 20px;
    height: 19px;

	}
/* Lower section of the main page ends here */
/* START PAGE CSS CODE ENDS HERE */

/* PRODUCTS UNDER NAVIGATOR */


/* Contents section CSS code starts here */
#contents {
    width: 925px;
    background-color: #FFFFFF;
    border: 1px solid white;
    margin: 5px;
    padding: 5px;
    }

#contents ul li {
    padding-left: 20px;
    }


#contentsNav { /* Navigator for contents when needed*/
	float: left;
	width: 22%;
    padding: 10px;
    margin: 0px 0px 5px 5px;
	}

#contentsWnav {
    float: right;
    width: 75%;
    margin-bottom: 10px;
    }
#contentsWnav ul{
    list-style-type:square;
    list-style-position:inside;
    }


#contentsNav ul {
	line-height:1.5em;
	margin: 0px 0px 10px 0px;
	list-style-type: none;
	}

#contentsNav ul li {
    padding-left: 0px;
    }

#contentsNav ul li a {
	font-size:1.4em;
	text-decoration: none;
	margin: 10px 0px 10px 0px;
	padding: 5px 0px 5px 0px;
	color: #873600;
	}

#contentsNav ul li a:hover {
	color: #A500A5;
    /*background-color: #CCCCCC;*/
    }
#contentsNav ul li a.section {
    text-decoration: underline;
    color: #0000FF;
    font-style: italic;
    }

#pathDirectory {
   margin: 0px 0px 10px 0px;
   float: right;
}

.image_inline {
	border: 1px solid #CCCCCC;
	float: left;
	margin: 10px 20px 0px 0px;
	}
.image_inline_right {
	border: 1px solid #CCCCCC;
	float: right;
	margin: 10px 10px 10px 10px;
	}

/* Contents section CSS code ends here */



/*Contents with navigator section CSS code starts here */
#contentsWnav li  {
  font-size: 1.2em;
  color: #666666;
  margin-bottom: 5px;
  text-align: justify;
}
/*Contents with navigator CSS ends here */



/*Products page selector boxes */
#prodBoxes {
  width: auto;
}
#prodBoxes a{
  margin-left: 10px;
  margin-right: auto;
}
#prodBox1, #prodBox2, #prodBox3, #prodBox4,
#prodBox5, #prodBox6, #prodBox7, #prodBox8 {
  float: left;
  height: 120px;
  width: 120px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.centImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 2px;
  border: 0px;
}
/* Product selector boxes end here*/



/* Product page announcements and text*/
#prodText, #itemText {
  float: left;
}


/* Collection of icons for item selection*/
#itemSelector {
  width: auto;
  height: 170px;
}
#itemSelector a{
  margin-left: 28px;
  margin-right: auto;
}
#item1, #item2, #item3, #item4, #item5, #item6 {
  float: left;
  height: 110px;
  width: 110px;
  margin-left: 5px;
  margin-bottom: 40px;
}


/* Software page 'tables' */
#softTable1, #softTable2, #softTable3, #softTable4, #softTable5, #softTable6, #softTable7, #softTable8, #softTable9, #softTable10, #softTable11, #softTable12 {
  float: left;
  width: 100%;
  height: 130px;
  margin-bottom: 10px;
}


/* Product Resources boxes */
#resources {
	float: left;
    width: auto;
    padding-top: 10px;
}
#resources ul li a{
  font-size: 1.2em;
}



/*Site map styles start here*/
#site_map a {
    font-size: 14px;
    font-weight: bold;
    color: #873600;
    margin-left: 10px;
    }
#site_map a:hover {
    color: #0000FF;
    }
#site_map a:visited {
    color: #00AAFF;
    }
#site_map li{
    list-style-type: none;
    }
#site_map li+ul a{
    font-size: 12px;
    }
#site_map li+ul li{
    list-style-type: none;
    margin-left: 20px;
    }
#site_map ul li a.small {
    font-size: 12px;
    font-weight: normal;
    }
/*Site map styles end here*/


/*Support Section CSS boxes starts here*/
#supportBoxes {
  width: auto;
  height: 170px;
  }
#sbox1, #sbox2, #sbox3 {
  float: left;
  height: 175px;
  width: 170px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
  }
#sbox1 a{
  margin-left: 25px;
  }
#sbox2 a{
  margin-left: 40px;
  }
#sbox3 a{
  margin-left: 50px;
  }
/*Support section css end*/


/* Footer section CSS code starts here */
#footer {
	height:50px;
	clear: both;
	padding:5px 0px 0px 0px;
	margin: 5px 5px 5px 5px;
	font-size:12px;
	line-height:12px;
	text-align: center;
	background-color: #FFD350;
	}

#footer p {
	font-size:12px;
	line-height:12px;
	text-align: center;
    color: #000000;
    }

#footer ul {
	line-height:12px;
	margin: 0px 0px 0px 0px;
	padding: 0;
	list-style-type: none;
	}
#footer ul li {
	display: inline;
	}

#footer ul li a {
	font-size:12px;
	text-decoration: none;
	margin: 0px 0px 0px 0px;
	padding-right: 1px;
	color: #000000;
	}

#footer ul li a:hover {
	color: #0000FF;
	}

.w3c_valid {
    float: left;
	margin-left: 5px;
	border: 0px;
	}
/* Footer section CSS ends here */

/* Miscellaneous*/
.asterix{
    font-size:12px;
    color: #ff0000;
    }
.qform {
	width: 150px;
	font-size: 10px;
	color: #666666;
	}
.noborder {
    border: none;
    }

.img_inline {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    }
#err_message {
    float: left;
    margin-top: 10px;
    }
#err_message ul li {
    font-size: 1.2em;
    color: #000000;
    padding: 0px;
    margin-left: 30px;
    }
/*Miscellaneous ends here*/










