/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline;}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {display:block;}

body {line-height: 1.5;}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }
/* --------------------------------------------------------------
   typography.css
   * Sets up some sensible default typography.
-------------------------------------------------------------- */
/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; }
body {font-size: 75%;  color: #fff; background-image: url(../graphic/bg.jpg); background-repeat: repeat-x; background-color: #040404; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; min-height:100%;}

/* Headings
-------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {font-weight: normal; color: #fff; }
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 1.8em;margin-bottom:.2em; line-height:1.2em; margin-top:.95em;}
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin: 0;}

/* Text elements
-------------------------------------------------------------- */
p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }
a:focus,
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }
blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }
abbr,
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }
pre         { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */
li ul,
li ol       { margin: 0; }
ul, ol      { margin: 0 1.5em 1.5em 0; padding-left: 3.333em; }
ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }
dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}
/* Tables
-------------------------------------------------------------- */
table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th    { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }
/* Misc classes
-------------------------------------------------------------- */
.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }
.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }
.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }
/* --------------------------------------------------------------
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)
-------------------------------------------------------------- */
label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }
/* Form fields
-------------------------------------------------------------- */
input[type=text], input[type=password],
input.text, input.title,
textarea, select {background-color:#fff; border:1px solid #bbb;}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {border-color:#666;}

input[type=text], input[type=password],
input.text, input.title,
textarea, select {margin:0.5em 0;}

input.text,
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 358px; height: 130px; padding:5px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }

/* Success, notice and error boxes
-------------------------------------------------------------- */
.error,
.notice,
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
.clear {font-size:0px; margin:0; padding:0; clear:both; line-height:0px; height:0px; width:100%; }

#site {width:955px; height:100%; margin:0 auto; padding:0;}

#left_top {width:404px; height:457px; float:left; background-image: url(../graphic/lt.png); position:absolute; z-index:230;}
#logo {width:305px; height:191px; margin-top:3px; float:left;}
#menu_service {color:white; float:left; background-color:transparent; margin-left:2px; font-size:1.2em; margin-top:2px; width:310px;}
#right_top {width:555px; min-height:100px; float:right;}
#main_menu {width:600px; float:left; height:67px; margin-top:45px; line-height:1; background-image: url(../graphic/main_menu_bg.png); background-repeat:repeat-x; font-size:1.5em; margin-left:-50px;}
#main_menu_end {width:5px; height:67px; background-image: url(../graphic/main_menu_end.png); background-repeat:no-repeat; display:block; float:right; margin:0 auto; padding:0; margin-top:45px;}
a:link, a:link, a:hover, a:active, a:focus, a:visited {color:#fff; text-decoration:none;}
.link1 {width:156px; height:67px; overflow:hidden; display:block; float:left; margin:0 auto; padding:0;
text-align:right; font-weight:bold;}


.link2 {width:111px; height:67px; overflow:hidden; display:block; float:left; margin:0 auto; padding:0;
text-align:center; font-weight:bold;}


.button1 {display:block; height: 67px; width: 156px; background:transparent; background-position: top; text-align:right;} 
.button1 span.hover { /*notice the different class: span.hover*/  
display:block; height: 67px; width: 156px; background: url(../graphic/main_menu_hover.png) repeat-x;  
background-position: top; margin-top:-90px;}  

.button {display:block; height: 67px; width: 111px; background:transparent;  
background-position: top;}  

.button span.hover { /*notice the different class: span.hover*/  
position: absolute; z-index:1; display:block; height: 67px; width: 111px; background: url(../graphic/main_menu_hover.png) repeat-x;  
background-position: top; margin-top:-38px;}  

span.sp1 {display:block; width:164px; height:67px; margin-top:23px; text-align:center;
position:relative; z-index:100; font-size:.85em;}
a .sp1 {width:156px; margin-left:10px; height:67px; display:block; text-align:center;}

span.sp2 {display:block; width:111px; max-height:67px; padding-top:0px; position:relative; z-index:100; font-size:.85em;
margin-top:23px;}



#main_foto {width:895px; margin-top:-3px; height:361px; float:right; overflow:visible; background: url(../graphic/main_foto_bg.png); z-index:3; background-repeat: no-repeat; background-position:right; text-align:right;}
#main_foto img {margin-left:4px; margin-right:4px; float:right; position:relative; z-index:200; text-align:right;}
#menu_service ul {list-style:none; margin:0 auto; padding:0;}
#menu_service li {float:left; width:100%; height:36px; margin:0 auto; padding:0; text-align:left;}
#menu_service li a {display:block; padding:0; padding-left:10px; margin:0 auto; height:100%; color:#FFF; text-decoration:none;}
#menu_service li a {background:transparent; margin:0; margin-left:-1px; padding:0; padding-left:10px; padding-top:5px; font-size:1.15em;}
#menu_service li a:hover {background-image: url(../graphic/service_menu_hover.png); background-repeat:no-repeat; background-position:50px 0;}
#site_content {clear:both; width:955px; float:left; background-image:url(../graphic/content_bg.png); background-repeat:repeat-y; z-index:1; margin-top:-19px;}
#site_content h1 {min-height:20px; font-size:2.4em; font-style:italic; margin-top:9px; margin-left:15px;}
#site_text {margin-left:20px; margin-top:15px; width:610px; min-height:100px; float:left; text-align:justify; font-size:1.15em; line-height:1.4em;}
#site_text a:hover {color:red;}
#site_contact {float:right; margin-top:15px; width:308px; height:316px; margin-right:4px; background-image:url(../graphic/contact_bg.png); background-repeat:no-repeat; background-position:top right;}
#site_contact .contact_text {margin-left:30px; height:290px; float:left; font-size:1.2em; line-height:1.75em;}
#site_contact a.contact_link {text-align:right; float:right; margin-right:5px; font-size:.95em; text-decoration:underline;}
#site_contact .contact_link {colsor:red;}

.service_label {width:333px; height:59px; float:left; clear:both; background-image: url(../graphic/service_label.png); background-repeat:no-repeat;}
.service_label a {float:left;font-size:1.3em; margin-top:15px; margin-left:15px; display:block;}
.service_desc {clear:both; margin-left:15px; font-size:1.0em;}
.service_desc img {float:left; text-align:left; margin: 0px 10px 10px 0px;}
.service_desc a {text-decoration:underline; float:right; margin-top:10px;}
.service_desc a:hover {font-color:red;}
#contactarea {width:370px; height:100%; float:right; margin-right:100px;}
#contactarea input {float:right; width:230px; margin:0 auto;}
#contactarea textarea {float:right; width:}
#footer {clear:both; width:100%; min-height:45px; margin:0 auto; padding:0; margin-top:30px; float:left;}
#footer_links {text-align:center; font-size:.95em;}
#footer_links ul {margin:0px 0px 0px 20px; padding:0;}
#footer_links ul.footer_service {margin:0px 0px 0px 20px; padding:0; font-size:.95em; margin-top:5px;}
#footer_links ul li {margin:0 auto; padding:0; text-align:center; display:block; float:left; min-width:20px; min-height:10px; list-style-type:none;}
#footer_links li a .footer_service {margin-right:10px;}
#footer_links li a {margin:0 auto; margin-right:30px; padding:0; text-align:left;}
#footer_links li a:hover {text-decoration:underline; color:#dedede;}
#footer_created {float:left; clear:both; min-height:20px; width:300px; margin-left:20px; margin-top:15px;}
#footer_created span {color:red; font-weight:bold; margin:0 auto; padding:0;}
#footer_created a:hover {text-decoration:underline;}
