@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	border: 0;
	outline: 0;
	font-size: 100%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background: #263143 url(images/bg1.jpg) repeat-x;
}
/* Commonly used to style page titles. */
h1 {
	color: #FFFFFF;
	font: bold 30px/normal Arial, Helvetica, sans-serif;
}
/* Commonly used to style section titles. */
h2 {
  
  font-size: 16px;
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #999999;
 
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #999999;
 
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #666666;
	text-decoration: none;
	
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 820px;
	border-right: 1px #999999 solid;
	border-top-color: #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #999999;
}
#outerWrapper #header {
	border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #ddd url(images/topbg2.gif);
	height: 135px;
	width: 820px;
	float: left;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #ebebeb;
  border-right: solid 1px #666; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0 0 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 500px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	border-top: solid 1px #666; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #ddd url(images/jim1.gif);
	height: 120px;
	width: 820px;
	float: left;
}
#opt_menu {
	font: 11px Arial, Helvetica, sans-serif;
	color: #999999;
	height: 20px;
	width: 800px;
	margin-top: 5px;
	margin-left: 10px;
	float: left;
	
}
#opt_menu2 {
	font: 11px Arial, Helvetica, sans-serif;
	color: #999999;
	height: 20px;
	width: 800px;
	margin-top: 5px;
	margin-left: 10px;
	float: left;
	
}
#lh_menu {
	float: left;
	width: 278px;
	background: url(images/world278.gif) no-repeat;
	color: #CCCCCC;
	font: bold 14px Arial, Helvetica, sans-serif;
	margin-left: 10px;
}
#text1 {
	float: left;
	width: 480px;
	color: #CCCCCC;
	font: 14px Arial, Helvetica, sans-serif;
	text-align: justify;
	padding-bottom: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-left: 40px;
}
.text1 {
	color: #CCCCCC;
	font: 14px Arial, Helvetica, sans-serif;
	padding-left: 10px;

}
.style1 {
	font: bold 16px;
}
.style2 {
	font-size: 16px;
	font-weight: bold;
}
.style4 {
	color: #FFFFFF;
	font: bold 30px/normal Arial, Helvetica, sans-serif;
}

#outerWrapper #header #kalmindon {
	width: 390px;
	margin-top: 30px;
	height: 40px;
	margin-left: 400px;
}
#outerWrapper #header #kalmindon #bykal {
	width: 130px;
	margin-left: 270px;
	background: #FFFFFF;
}
#outerWrapper #footer #ftaddr {
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 660px;
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
}
#outerWrapper #copyrite {
	color: #ECE9D8;
	width: 820px;
	text-align: center;
	float: left;
}
