body {
	font-family: Verdana;
	font-size: 9pt;
	background-color: white;
	color: black;
}

td
{
    color: #353432;
    font-family: Verdana;
    font-size: 12px
}

a
{
    text-decoration: none
}

.links
{
    color: #000000;
    text-decoration: none
}
.menu
{
    /*background-color:  <Computed Value> ;
    color: <Computed Value>;*/
    font-size: 11px;
}

.menu A
{
  /*  color: <Computed Value>;*/ 
}
.headline
{
    font-family: verdana;
    font-size: 18px;
    font-weight: bold;
	text-transform: uppercase;
}
.bodytext
{
    font-size: 11px
}
.dropmenu
{
   /* background-color:   <Computed Value>; */ 
    BORDER-BOTTOM: #4c3f2e 1px solid;
    BORDER-LEFT: #4c3f2e 1px solid;
    BORDER-RIGHT: #4c3f2e 1px solid;
    BORDER-TOP: #4c3f2e 1px solid;
   /* color:   <Computed Value>; */
    font-size: 10px;
    POSITION: absolute;
    VISIBILITY: hidden
}
.dropmenu A
{
    font-size: 10px;
/*    color:  <Computed Value>;*/
}
.dropmenu A:visited
{
    font-size: 10px;
 /*   color:  <Computed Value>; */
}
.dropmenu A:hover
{
 /*   color:  <Computed Value>; */
}
.submenu
{
   /*  color:   <Computed Value>; */
     font-size: 11px
}
.submenu A
{
    /* color:   <Computed Value>; */
     font-size: 11px
}
.submenu A:visited
{
    /* color:   <Computed Value>;*/ 
     font-size: 11px
}
.activeSubMenu
{
    /* color:   <Computed Value>;*/
    font-size: 11px
}
.activeSubmenu A
{
    /*color:  <Computed Value>;*/
    font-size: 11px;
    font-weight: bold
}
.activeSubmenu A:visited
{
   /* color:  <Computed Value>;*/
    font-size: 11px;
    font-weight: bold
}
.main
{
    font-color: #4c3f2e
}

.newsMenu
{
   /* background-color:   <Computed Value>;
    color:  <Computed Value>;*/
    font-size: 12px;
}

.newsMenuHeader
{
   /* background-color:   <Computed Value>; */
    color: <Computed Value>; 
    font-size: 10px;
}

.newsMenuHeader A
{
   /* color:  <Computed Value>; */
}

.newsMenuBody
{
    font-size: 9px;
}

#leftnavi {
    background-color: #084c80;
    min-height: 420px;
    margin-right: 5px;
    padding: 10px;
    float: left;
    margin-bottom: 17px;
}

#leftcontent {
    min-width: 260px;
    float: left;
}	
#leftcontent ul li.csc-section {
	list-style:none;
	margin:0;
	padding:0;
}

#leftcontent ul li.csc-section {
	padding-bottom:8px;
}

#leftcontent ul  {
	margin:0;
	padding:0;
}

#leftmenu, #leftmenu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#leftmenu {
    font-weight: bold;
    text-transform: uppercase;
}

#leftmenu li {
    margin-bottom: 6px;
}

#leftmenu ul.l2 {
    margin-left: 10px;
    font-weight: normal;
    margin-bottom: 15px;
}

#leftmenu ul.l2 li {
    margin-bottom: 4px;
}

#leftmenu a.active {
    color: #aaa;
}

#leftmenu a {
    color: white;
    text-decoration: none;
}

#leftmenu a:hover {
    color: #aaa;
}

#leftmenu .subMenu {
    margin-left: 30px;
    margin-top: 8px;
    margin-bottom: 8px;
	font-weight: normal;
}
.ms-clear {
   display: none;
}	

::-ms-clear {
    display: none;
}	

input[type=submit] {
	background: #084c80;;
	color: #fff;
	padding: 9px;
	font-size: 18px;
	float: left;
	border: 0;
	display: block;
	margin: 0;
}

.addBasketButton,
.lineRemoveButton {
	font-size:80%;
}

input[type=button] {
	font-family: Verdana;
    background-color: #084c80;
    color: white;
    border-radius: 5px;
}

.invertedButton {
    color: #084c80 !important;
    background-color: white !important;
}

img.productListImg {
	height:60px;
	padding-top:2px;
	padding-bottom:2px;
	margin-left:10px;
}
img.infoIcon {
	width:25px;margin-left:10px;
}
.terms {
	border:solid black 1px;
}
.terms td {
    padding-top: 5px;
    padding-bottom: 5px;
}
.closePopup {
	font-size: 100%;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}