@charset "utf-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size:9pt;
	background:#FFFFFF;
	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: #A6D0DD;
}

a:link {color: #97BDDE; text-decoration: none;}

a:visited {color: #cccccc; text-decoration: none;}

a:active{color: #97BDDE; text-decoration: underline;}

a:hover { COLOR: #FFFFFF; text-decoration: underline; cursor: hand}

.twoColFixLtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #505A61;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #505A61;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	background-image:url(../images/bg/bgheader.jpg);
	height:49px;
	width:800px;
	background-position:right;
	background-repeat:no-repeat;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixLtHdr #headerleft {
	margin-left:20px;
	width:500px;
	height:49px;
	float:left;
	color:#FFFFFF;
	font-style:italic;
	font-weight:bold;
	vertical-align:middle;
	font-size:small;
} 
.twoColFixLtHdr #headerright {
	width:110px;
	height:50px;
	float:right;
	margin-top:10px;
	padding-right:30px;
} 

.twoColFixLtHdr #bannerHome {
	width:800px;
	background:url(../images/bg/main_eng.jpg);
	height:280px;
	margin-top:0;
}
.twoColFixLtHdr #bannerService {
	width:800px;
	background:url(../images/bg/management.jpg);
	height:143px;
	
}

.twoColFixLtHdr #bannerDino {
	width:800px;
	background:url(../images/bg/project.jpg);
	height:143px;
	
}

.twoColFixLtHdr #bannerAbout {
	width:800px;
	background:url(../images/bg/home.jpg);
	height:150px;
	
}

.twoColFixLtHdr #bannerContact {
	width:800px;
	background:url(../images/bg/contact.jpg);
	height:143px;
	
}

.twoColFixLtHdr #bannerCad {
	width:800px;
	height:143px;
	
}

.twoColFixLtHdr #bannerSitemap {
	width:800px;
	background:url(../images/bg/product.jpg);
	height:143px;
	
} 

.twoColFixLtHdr #topmenu {
	vertical-align:top;
	padding-top:0;
	width:800px;
	float:left;
	margin-top:0px;
} 
.twoColFixLtHdr #hometopmenu {
	vertical-align:top;
	padding-top:0;
	width:67px;
	float:left;
}
.twoColFixLtHdr #bannertopmenu {
	vertical-align:top;
	padding-top:0;
	width:133px;
	float:left;
}

.twoColFixLtHdr #dinotopmenu {
	vertical-align:top;
	padding-top:0;
	width:120px;
	float:left;
}

.twoColFixLtHdr #cadtopmenu {
	vertical-align:top;
	padding-top:0;
	width:100px;
	float:left;
}

.twoColFixLtHdr #projecttopmenu {
	vertical-align:top;
	padding-top:0;
	width:120px;
	float:left;
}

.twoColFixLtHdr #abouttopmenu {
	vertical-align:top;
	padding-top:0;
	width:120px;
	float:left;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding-left:5px;
	margin-top:10px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 210px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding-left:10px;
	padding-right:20px;
	padding-top:5px;
} 
.twoColFixLtHdr #mainContent2 { 
	margin: 0 0 0 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding-left:10px;
	padding-right:20px;
	padding-top:5px;
} 
.twoColFixLtHdr #footer { 
	padding: 0 0 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#505A61;
	height:40px;
	background-image:url(../images/bar_bottom.gif);
	 
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 9pt; 
	font-weight: normal; 
	color: #FFFFFF; 
	text-decoration: none;
	text-align:center;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

.isian {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-decoration: none;
	line-height: 14px;
	color: #A6D0DD;
}

.subTitle	{
	font-size: 9pt; 
	font-weight: bold; 
	color: #33CCFF; 
	line-height: 16px;
}

.copyright	{
	font-size: 9pt; 
	font-weight: normal; 
	color: #FFFFFF; 
	text-decoration: none;
}

.isi	{
	font-size: 8pt;
	color: #A6D0DD; 
	line-height: 14px; 
	text-align: left;
}

.isi a:link, .content a:visited {
	color: #A6D0DD;
	text-decoration: underline;
}

.isi a:hover {
	color: #33CCFF; 
	text-decoration: none;
}

.lang, .lang:link, .lang:visited	{
	font-size: 8pt; 
	font-weight: bold; 
	color: #33CCFF; 
	text-decoration: none;
}

.lang:hover {
	color: #FFFFFF; 
	text-decoration: underline;
}



.subTitle	{
	font-size: 9pt; 
	font-weight: bold; 
	color: #33CCFF; 
	line-height: 16px;
}

.copyright	{
	font-size: 9pt; 
	font-weight: normal; 
	color: #FFFFFF; 
	text-decoration: none;
}

.lang2, .lang2:link, .lang2:visited	{
	font-size: 8pt; 
	font-weight: bold; 
	color: #33CCFF; 
	text-decoration: none;
}

.lang2:hover {
	color: #0099FF; 
	text-decoration: underline;
}

.lang3, .lang3:link, .lang3:visited	{
	font-size: 8pt; 
	font-weight: bold; 
	color: #505A61; 
	text-decoration: none;
}

.lang3:hover {
	color: #0099FF; 
	text-decoration: underline;
}

.titleisi {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #505A61;
	text-decoration: none;
}

.button {
	border: 0px;
	background-image: url(../images/menu.jpg);
	color: #505A61;
	font-weight: bold;
	font-size: 10pt;
	cursor: hand;
}

.field_title	{
	font-size: 10pt; 
	font-weight: bold; 
	color: #33CCFF; 
	line-height: 16px; 
	padding: 5px 0px 0px 0px;
}

.field_content a:active, .field_content a:hover {
	color: #A6D0DD;
	font-weight: bold;
	text-decoration: none;
}

.field_content {
	font-size: 10pt; color: #A6D0DD; 
	line-height: 16px; 
	padding: 5px 0px 0px 0px;
}

.field_content a:link, .field_content a:visited {
	color: #A6D0DD;
	text-decoration: underline;
}

.contactTitle {

	font-size: 10pt; 

	font-weight: bold; 

	color: #99CCCC; 

	padding-right: 20px; 

	text-align: right;

}

.font_header	{
	font-weight: bold; 
	color: #33CCFF; 
}