.text, td, div { 
	font-size:11px;
}

th {  
	font-size:12px;
}

.heading1, h1 {
	font-size:14px;
}

.heading2, h2, .heading4, h4 {
	font-size: 12px; 
}

.heading3, h3 {  
	font-size: 11px; 
}

.heading5, h5, .heading6, h6 {  
	font-size: 11px; 
}

.welcome {
	font-size: 12px;
}

.box_header, td.box_header_login
{
	font-size: 12px;
}

.footertext {	
	font-size: 11px;
}

input#topsearchbox {	
	font-size: 11px;
}

td#header_profile_topleft {	
	font-size: 12px;
}

div.menuitem, div.activemenuitem {	
	font-size:12px;
}

.submenuitem {	
	font-size: 11px;
}

table.inputform input,select,textarea, .formfield {
	font-size: 11px;
}

.registrationprocedure td{
	font-size: 12px;
}

table.productoverview th {
	font-size:11px;
}






/* 
	We want to restrict the width of the non-bold text to be 86% of the width of the bold text
	The ratio between normal and bold taken from a select group of statistics is 0.856877
	The goal is to avoid the text from growing to a new line when hovering, 
	which can be done by making sure that only the words that would fit when bold
	will be shown when not bold...
	This solution will NOT filter out 100% of the cases, but it should do quite a good job nonetheless...
	Please note that this is font-size related. 
	 - 13px: 87.0639535		125 / 143
	 - 11px: 85.6877		123 / 143
	 -  9px: 100			143 / 143


*/

tr.submenuitem td.submenuitem_right {
	width: 123px;			/* 168*0.856877 - 25 (left side reserved for ">") */
	border-right: 20px solid #e9eaeb; /* 168 - 123 - 25 */
}



tr.submenuitem td.submenuitem_right:hover, tr.submenuitem td.activesubmenuitem_right {
	width: 143px;			/* 168 - 25 (left side reserved for ">") */
	font-weight: bold;
	border-right: 0px solid #e9eaeb;
}
/*** Added for 17440 **/
.contact_left {
clear:left;
float:left;
width:200px;
}
.contact_right {
clear:right;
float:right;
width:385px;
}
/*** End for 17440 **/
