body  {
	font:11px Arial;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #647B7B;
}

a {
	color:#FFFFFF;
	text-decoration:none
}

.top #container { 
	width: 100%;  /* this will create a container 100% of the browser width */
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 76px;
	min-width: 1000px; 
} 

.top #sidebarLeft {
	float: left; 
	width: 222px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	height: 76px;
}

.top #sidebarRight {
	float: right; 
	width: 222px; /* since this element is floate222d, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
	height: 76px;
}

.top #rightUp {
	position:relative;
	float: right;
	width:222px;
	margin-right: -222px;
}
.top #rightUp #languageSwitch {
	position:relative;
	float: right;
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin-top: 5px;
	padding-right: 5px	
}

.top #rightUp  #languageSwitch .active {
	color: #647B7B
}

.top #rightUp #alsoVisit {
	position:relative;
	float: left; 
	margin-top: 5px;
	background-color:#3B4B4A;
	color:#FFFFFF;
	width:75px;
	text-align:center
}

.top #mainContent { 
	margin: 0; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 

.header #container { 
	width: 100%;  /* this will create a container 100% of the browser width */
	background: #1D1D1D;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 1000px; 
} 
.header #sidebarLeft {
	float: left; 
	width: 222px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
	height: 160px;
}

.header #sidebarRight {
	float: right; 
	width: 222px; /* since this element is floate222d, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
	height: 160px;
	background-image:url(../images/viewmaster-logo-button.png);
	background-position:center;
	background-repeat:no-repeat	
}

.header #sidebarRight:hover {
	background-image:url(../images/viewmaster-logo-button_over.png);
	background-position:center;
	background-repeat:no-repeat	
}

.header #sidebarRightWork {
	float: left; 
	width: 222px; /* since this element is floate222d, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
	height: 160px;
}

.header #menu {
	float: left; 
	width: 196px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
	background-color:#242728;
	min-height: 160px;
}


.header #mainContent { 
	float: left;
	margin: 0; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 0;
} 

.header h1 {
	font: 17px Arial;
	text-transform: uppercase;
	color: #9CB5BC;
	margin-top: 10px;
	margin-bottom: 0px;
	padding-left: 10px
}

.header p {
	margin-top: 0px;
	margin-bottom: 0px;
}


.content #container { 
	width: 100%;  /* this will create a container 100% of the browser width */
	background: #0C0F0F;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	border-top: 2px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 1000px; 
	min-height: 306px;	
} 

.content #sidebar {
	float: left; 
	width: 222px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
}

.content #sidebar h3, .content #sidebar p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.content #mainContent { 
	float: left;
	margin: 0; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 0;
	width: 778px
} 

.content #mainContent h1 {
	font: 17px Arial;
	text-transform: uppercase;
	color: #9CB5BC;
	margin-top: 5px;
	margin-bottom: 5px
}

.content #mainContent p {
	margin-top: 0px;
	margin-bottom: 10px;
}


.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.floatLeft{float:left;margin:0 7px 3px 0;}
.floatRight{float:right; margin:0 0 3px 7px;}
.floatNone{ margin:0; }