/* Global styles including initial HTML definitions. */
html    { height: 100%; }
body    { font-family:Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif; font-size:13px; background:white; margin:5px 0 5px 0; padding:0 0 0 0; color:#234;} 
div     { margin:0px 0px 0px 0px; padding:0px 0px 0px 0px; height: auto; clear:none; background:transparent;}
a:hover { text-decoration:underline;}
ul      { margin-top:1em; margin-bottom:1em; }
p       { text-align:justify; }

/*
html {
	overflow: -moz-scrollbars-vertical;
}

* { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

*/
/* body */
/*
body { 
	margin: 0px;
	padding: 0px;
	behavior: url('catalog/javascript/png/iepngfix.htc');	
	background: url('../image/background.png') top repeat-x;
	background-color:silver;
}

body, td, th, input, textarea, select, a {
	font-size: 11px;
	color: #000000;
}
*/

b, strong, th {
	color: inherit;
	font-weight:bolder;
}

form {
	padding: 0;
	margin: 0;
	display: inline;
}

textarea {
	width:99%;
	height:6em;
	font-size:12px;
	font-family:inherited;
}

.png {
	behavior: url('catalog/javascript/png/iepngfix.htc');
}
  
a img {
	border: none;
}

a:hover {
	text-decoration: underline;
}

a {
	color:#006699;
	text-decoration:underline;
}

a:visited {
	color:#006699;
	text-decoration:underline;
}

a:hover {
	color:/*teal*/#234;
	text-decoration:underline;
}

/* layout */
h1 { 
	display: none;
}


h2, h3, h4 {
	color:/*teal*/#234;
	font-weight:bold;
}
 

h2, h3 {
	margin-top:2em;
}

p b {
	font-weight: bold;
}


#container {
	position:relative;
	display:block;
	width:75em; 
	min-width:975px;
	margin: 0px auto 0px auto;
	border:silver 1px solid; 
	padding:0 0 0 0;
}

/*
* html #container {
	position:absolute;
	top:5px;
	right:auto;
	left:auto;
}
*/

#header {
	display:block;
	height:133px;
	max-height:133px;
	width:100%;
	margin-left:0;
	margin-top:0;
	background-image: url('../../../../server/images/logo_bg.jpg'); 
	background-repeat: repeat-x;
	background-position:top left;
/*
	background-image: url('../../../../server/images/logo_bg.png'); 
	background-repeat: repeat-x;
	background-position:top left;
*/
}

 * html #header {
	width:975px;
}


#navigation {
	width:100%;
	font-size:15px;
	background:/*#234*/#4D5E7F;
	padding-top:0.1em;
	height:1.8em;
}

* html #navigation {
	width:975px;
	font-size:15px;
}

/* page styling, unimportant for the menu. only makes the page looks nicer */

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
#navigation .menu, #navigation .menu ul {
  margin: 0 0 0 0;
  /*padding: 0.5em 0 0.5em 0.5em;*/
  padding: 0 0 0 0;
  border: 0;
  list-style-type: none;
  display: block;
}

#navigation .menu li {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  float: left;  /* move all main list items into one row, by floating them */
  position: relative; /* position each LI, thus creating potential IE.win overlap problem */
  z-index: 5;   /* thus we need to apply explicit z-index here... */
}

#navigation .menu li:hover {
  z-index: 10000; /* ...and here. this makes sure active item is always above anything else in the menu */
  white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
              see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

#navigation .menu li li {
  float: none;/* items of the nested menus are kept on separate lines */
}

#navigation .menu ul {
  visibility: hidden; /* initially hide all submenus. */
  position: absolute;
  z-index: 10;
  left: 0;  /* while hidden, always keep them at the top left corner, */
  top: 0;   /*    to avoid scrollbars as much as possible */
}

#navigation .menu li:hover>ul {
  visibility: visible;  /* display submenu them on hover */
  top: 100%;  /* 1st level go below their parent item */
}

#navigation .menu li li:hover>ul {  /* 2nd+ levels go on the right side of the parent item */
  top: 0;
  left: 100%;
}

/* -- float.clear --
  force containment of floated LIs inside of UL */
#navigation .menu:after, #navigation .menu ul:after {
  content: ".";
  height: 0;
  display: block;
  visibility: hidden;
  overflow: hidden;
  clear: both;
}
#navigation .menu, #navigation .menu ul { /* IE7 float clear: */
  min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
  it should not disappear when your mouse moves a bit outside the submenu
  YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
  if you do it, make sure you 110% know what you do */
#navigation .menu ul {
  background-image: url('../../../../server/images/empty.gif'); /* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
  padding: 10px 30px 30px 30px;
  margin: -10px 0 0 -30px;
  /*background: #f00;*/ /* uncomment this if you want to see the "safe" area.
                you can also use to adjust the safe area to your requirement */
}
#navigation .menu ul ul {
  padding: 30px 30px 30px 10px;
  margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

#navigation .menu, #navigation .menu ul li {
  color: #eee;
  background: /*#234*/#4D5E7F;
}

#navigation .menu ul {
  width: 9em;
  font-size:1em;
}

#navigation .menu a {
  text-decoration: none;
  color: #eee;
  padding: .2em 0.5em;
  display: block;
  position: relative;
}

#navigation .menu a:hover {
   text-decoration:underline;
}

#navigation .menu a:hover, #navigation .menu li:hover>a {
  color: /*#fc3;*//*#44EEDC;*/white;
  background:gray;
}

#navigation .menu li li { /* create borders around each item */
  border: 1px solid #ccc;
}

#navigation .menu ul>li + li {  /* and remove the top border on all but first item in the list */
  border-top: 0;
}

#navigation .menu li li:hover>ul {  /* inset 2nd+ submenus, to show off overlapping */
  top: 5px;
  left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
  placed here to clarify the terminology I use when referencing submenus in posts */
/*
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
  color: #567;
}
*/

/* Fix for IE5/Mac \*//*/
.menu a {
  float: left;
}
/* End Fix */

#navigation .menu .homeItem {
  margin-right:0em;
}

#navigation .menu .homeMenu {
  width:12em;
}


#navigation ul.menu>li>ul>li {
  font-size:15px;
}


* html #navigation .menu ul li {
  font-size: 15px;
}


#column {
	width: 17%;
	padding: 1em 1% 1em 1%;
	float: left;
}


* html #column {
	margin:0 0 0 0;
	border-width:0px;
	border-collapse:collapse;
}

#content {
	float:right;
	width:78%;
	margin-left:/*15em;*/0px;
	padding:1em 1% 1em 1%;
	background:white;
	min-height:25em;
}

#footer {
	width:100%;
	height:3em;
	clear: both;
	border-top: 1px solid silver;
	padding-top: 0.5em;
	padding-left: 0;
	padding-right: 0;
	padding-bottom:0.2em;
}

* html #footer {
	width:975px;
}

#footer .a {
	float: left;
	margin-top: 2px;
	margin-left:1em;
}

#footer .b {
	float: right;
	text-align: right;
	margin-right:1em;
}

/*
#footer .b a {
	color: #336699;
}
*/
  
#time {
	color: silver;
	text-align: center;
	clear: both;
}

img.right {
	float:right;
	margin-left:1em;
}

img.left {
	float:left;
	margin-right:1em;
}

.imageheader {
	margin-left:65px;
	margin-top:13px;
	background-color:transparent;
	padding:4px;
	border:solid #808080 1px;
}

.objectheader {
	display:block;
	position:absolute;
	top:13px;
	left:200px;
	background-color:transparent;
	padding:4px;
	border:solid #808080 1px;
	width:400px;
	height:100px;
}


.objectheader div.alternate {
	position:absolute;
	top:0px;
	left:0px;
	background-color:transparent;
	width:408px;
	height:108px;
	margin:0 0 0 0;
	padding:0px;
	border:0px;
/*
	background-image: url('../../../../server/images/logo_bg.jpg'); 
	background-repeat: repeat-x;
	background-position:0 -1em;
*/
}


.objectheader2 {
	display:block;
	position:absolute;
	top:20px;
	left:146px;
	background-color:transparent;
	padding:4px;
	border:solid #808080 1px;
	width:800px;
	height:200px;
}

.objectheader2 div.alternate {
	position:absolute;
	top:0px;
	left:0px;
	background-color:transparent;
	width:808px;
	height:208px;
	margin:0 0 0 0;
	padding:0px;
	border:0px;
/*
	background-image: url('../../../../server/images/logo_bg.jpg'); 
	background-repeat: repeat-x;
	background-position:0 -1em;
*/
}





.heading {
	font-size: 1.5em;
	font-weight: bold;
	font-family: "Comic Sans MS", inherit;
	/*text-transform: uppercase;*/
	color: /*teal*/#234;/*maroon;*//*#990000;*/
	padding-bottom: 2px;
	border-bottom: 1px dotted /*teal*/#234;
	margin-bottom: 10px;
	clear:both;
}

.heading .left {
	float: left;
	text-align: left;
}
 
.heading .right {
	float: right;
	text-align: right;
}

.error {
	color: #FF0000;
	font-size: 10px;
	display: block;
	clear: both;
}

.required {
	margin: 0;
	color: #FF0000;
	display: inline;
}

.warning {
	color: #000000;
	font-size: 10px;  
	background-color: #FFB3B5;
	padding: 3px;
	display: block;
	margin-bottom: 10px;
}

.message {
	color: #000000;
	font-size: 10px;
	background-color: #99FF00;
	padding: 3px;
	display: block;
	margin-bottom: 10px;
}

.breadcrumb {
	color: #999999;
	margin: 10px 0px 10px 0px;
}

/*
.breadcrumb a {
	color: #006699;
}
*/

.price_old {
	text-decoration: line-through;
}

.price_new {
	color: #FF0000;
}
 
#bar {
	background-color: #EEEEEE;
	border-top: 1px solid #CCCCCC; 
	border-bottom: 1px solid #CCCCCC;
	padding: 3px 3px 0px 10px;
	height: 24px;
}

.products, .images, .categories {
	float: left;
	width: 33.3%; 
	text-align: center; 
	/*cursor: pointer;*/
	font-size: 10px; 
	height: 200px;
}

.break {
	width:100%;
	float:left;
}

.categories a, .products a, .box a {
	text-decoration: underline;
	color:#006699;
}

.categories a:hover, .products a:hover, .box a:hover {
	text-decoration: underline;
	color:/*teal*/#234;
}

.images a {
	font-size: 10px;
}

.images img, .categories img {
	border: 0px;
	margin-bottom: 10px;
}

.results {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
	height: 20px;
	clear:both;
}

.results .left {
	float: left;
	padding-top: 4px;
}
 
.results .right {
	float: right;
} 
 
.buttons {
	border: 1px solid silver;
	margin: 10px 0px;
	clear: both;
}

.buttons input {
	height: 1.5em;
	margin: 0.2em;
	/*
	height: 20px;
	margin: 3px;
	*/
}

.buttons table {
	width: 100%;
}

.buttons table td {
	vertical-align: middle;
}

.box {
	padding-bottom: 5px;
	margin-bottom: 10px;
	border:none 1px silver;
}

/* box language */
.language {
	float: left;
	margin-top: 3px;
}

.language div {
	display: inline;
}

/* box currency */
.currency {
	float: left;
}

* html .currency {
	display:none;
}

.currency div {
	display: inline;
}

/* box search */
#header .search {
	float:right;
	margin-top:2em;
	margin-right:2em;
}

#header .search input[name="search"] {
	border:inset 1px #808080;
	color:#234;
	background-color:white;
	font-family:inherit;
	font-size:15px;
	width:15em;
}
#header .search input[type="submit"] {
	border:outset 2px #808080;
	color:white;
	background-color:#4D5E7F;
	padding:0 3px 0 3px;
}
#header .search input[type="submit"]:hover {
	background-color:gray;
}


#column .search {
	margin: 0 0 2em 0;
	padding:0 0 0 0.5em;
}

#column .search input[name="search"] {
	margin:0 0 0.5em 0;
	padding:0 0 0 0;
	width:95%;
}

* html #column .search {
	margin: 0 0 1.5em 0;
	padding:0 0 0 0.5em;
}

* html #column .search input {
	margin:0 0 0.5em 0;
}



.search div {
	display: inline;
}

/* box cart */
.box .cart .a {
	text-align: right;
	border-top: 1px solid silver;
	margin-top: 8px;
	padding-top: 3px;
}

.box .cart .b {
	text-align: center;
}

/* box category */
.box .category {
	padding-top: 5px;
}

.box .category a {
	background: url('../image/bullet_1.png') no-repeat 15px 5px;
	padding: 0px 0px 0px 25px;
	display: block;
	text-decoration: underline;
	margin-bottom: 8px;
}

/* box shop */
.box .shop {
	padding-top: 5px;
}

.box .shop a {
	background: url('../image/shop.png') no-repeat 5px 0px;
	padding: 0px 0px 15px 35px;
	display: block;
	text-decoration: underline;
	margin-bottom: 8px;
}

/* box information */
.box .information a {
	background: url('../image/bullet_2.png') no-repeat 10px 4px;
	padding: 0px 0px 0px 25px;
	display: block;
	text-decoration: underline;
}

/* box review */
.box .review div {
	text-align: center;
}

/*
.box .review a {
	text-decoration: none;
}
*/

.box .review img {
	padding: 3px;
}

/* success */
#success {
	behavior: url('catalog/javascript/png/iepngfix.htc');
	background: url('../image/success.png') no-repeat;
	padding-left: 148px;
	_height: 128px;
	min-height: 128px;
}

/* failure */
#failure {
	behavior: url('catalog/javascript/png/iepngfix.htc');
	background: url('../image/failure.png') no-repeat;
	padding-left: 148px;
	_height: 128px;
	min-height: 128px;  
}

/* error */
#error {
	clear: none;
	border: 1px solid silver;
	margin: 0px 0px 10px 0px;
	padding: 8px;
	margin-top: 10px;
}