/* $Id: zen.css,v 1.14 2008/09/15 10:36:22 johnalbin Exp $ */

/*
 * ZEN STYLES
 *
 * This is an example stylesheet. Sub-themes should NOT include the zen/zen.css
 * file, but instead copy this CSS to their own stylesheets.
 *
 * In this stylesheet, we have included all of the classes and IDs from this
 * theme's tpl.php files. We have also included many of the useful Drupal core
 * styles to make it easier for theme developers to see them.
 *
 * Many of these styles are over-riding Drupal's core stylesheets, so if you
 * remove a declaration from here, the styles may still not be what you want
 * since Drupal's core stylesheets are still styling the element. See the
 * drupal6-reference.css file for a list of all Drupal 5.x core styles.
 *
 * In addition to the style declarations in this file, other Drupal styles that
 * you might want to override or augment are those for:
 *
 *   Book Navigation  See line 74  of Zen's drupal6-reference.css file
 *   Forum            See line 197 of Zen's drupal6-reference.css file
 *   Menus            See line 667 of Zen's drupal6-reference.css file
 *   News Aggregator  See line 20  of Zen's drupal6-reference.css file
 *   Polls            See line 287 of Zen's drupal6-reference.css file
 *   Search           See line 320 of Zen's drupal6-reference.css file
 *   User Profiles    See line 945 of Zen's drupal6-reference.css file
 */


/** body **/
  body
  {
    margin: 0;
    padding: 0;
    color:#FFFFFF;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    vertical-align: baseline;
	background:#333333;
  }

  #page
  {
  }

  #page-inner
  {
  }

/** header **/

  #site-slogan /* The slogan (or tagline) of a website */
  {
  }

/******************************************************************/
a:link, a:visited {color:#FEC102; font-weight:bold; text-decoration:none;}
a:hover, a:active, a.active {text-decoration:underline; color:#6A6A6A;}

input, select, textarea {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #6A6A6A;
  background-color: #FFF;
  /*border: 1px solid #673f4b;*/
  padding: 2px;
  border:0px;
}
#search-box {height:10px;}
#search-box input.form-text {
  background: #3f242c url(images/search-icon.png) no-repeat 8px 5px;
  padding: 5px 5px 5px 35px;
  margin: 0 10px 0 20px;
  width: 110px;
  float: left;
  border: 0;
  color: #C6BBB3;
}
#search-box input.form-submit {}

td, th {
color:#6A6A6A;
padding:3px 6px;
vertical-align:top;
}

/******************************************************************/




/** content **/

  #mission /* The mission statement of the site (displayed on homepage) */
  {
  }

  #content-top /* Wrapper for any blocks placed in the "content top" region */
  {
  }

  #content-header /* Wrapper for breadcrumb, title, messages, tabs, and help */
  {
  	margin-bottom:4px;
  }

  .breadcrumb /* The path to the current page in the form of a list of links */
  {
    padding-bottom: 0; /* Undo system.css */
  }

  h1.title, /* The title of the page */
  h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
  h3.title /* Comment title */
  {
  	color:#FEC102;
    margin: 0;
  }

  div.messages /* Important messages (status, warning, and error) for the user */
  {
  }

  div.status /* Normal priority messages */
  {
  }

  div.warning, tr.warning /* Medium priority messages */
  {
    /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
  }

  div.error, tr.error /* High priority messages. See also the .error declaration below. */
  {
  }

  div.tabs /* See also the tabs.css file. */
  {
  	margin:10px 0;
  }

  .help /* Help text on a page */
  {
    margin: 1em 0;
  }

  .more-help-link /* Link to more help */
  {
    font-size: 0.85em;
    text-align: right;
  }

  #content-area /* Wrapper for the actual page content */
  {
  	margin-bottom:20px;
  }

  .pager /* A list of page numbers when more than 1 page of content is available */
  {
    clear: both;
    margin: 1em 0;
    text-align: center;
  }

  .pager a, .pager strong.pager-current
  {
    padding: 0.5em;
  }

  .feed-icons /* The links to the RSS or Atom feeds for the current list of content */
  {
    margin: 1em 0;
  }

  #content-bottom /* Wrapper for any blocks placed in the "content bottom" region */
  {
  }

/** navbar **/
  #navbar
  {
  }

  #navbar-inner
  {
  }

  #search-box /* Wrapper for the search form */
  {
  }

  #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */
  {
    display: none;
  }

  #primary /* Primary links */
  {
  }

  #secondary /* Secondary links */
  {
  }

/** Drupal nodes **/
  .node /* Node wrapper */
  {
  }

  .node-inner /* Additional wrapper for node */
  {
  }

  .sticky /* A sticky node (displayed before others in a list) */
  {
  }

  .node-unpublished /* Unpublished nodes */
  {
    /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
  }

  .node-unpublished div.unpublished, /* The word "Unpublished" displayed beneath the content. */
  .comment-unpublished div.unpublished
  {
    height: 0;
    overflow: visible;
    color: #d8d8d8;
    font-size: 75px;
    line-height: 1;
    font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  .node-mine /* A node created by the current user */
  {
  }

  .node-teaser /* A node displayed as teaser */
  {
  }

  /* All nodes are given a node-type-FOO class that describes the type of
   * content that it is. If you create a new content type called
   * "my-custom-type", it will receive a "node-type-my-custom-type" class.
   */
  .node-type-page /* Page content node */
  {
  }

  .node-type-story /* Story content node */
  {
  }

  .node h2.title /* Node title */
  {
  }

  .marker /* "New" or "Updated" marker for content that is new or updated for the current user */
  {
    color: #c00;
  }

  .node .picture /* The picture of the node author */
  {
  }

  .node.node-unpublished .picture,
  .comment.comment-unpublished .picture
  {
    position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
  }

  .node .meta /* Wrapper for submitted and terms data */
  {
  }

  .node .submitted /* The "posted by" information */
  {
  }

  .node .terms /* Node terms (taxonomy) */
  {
  }

  .node .content /* Node's content wrapper */
  {
  }

  .node div.links /* Wrapper for node links */
  {
    margin: 1em 0;
  }

  ul.links /* Taxonomy links, node links, comment links */
  {
    margin: 0;
    padding: 0;
  }

  ul.links.inline
  {
    display: inline;
  }

  ul.links li
  {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
  }

  .preview .node /* Preview of the content before submitting new or updated content */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

/** Drupal comments **/
  #comments /* Wrapper for the list of comments and its title */
  {
    margin: 1em 0;
  }

  #comments-title /* Heading for the list of comments */
  {
  }

  .comment /* Wrapper for a single comment */
  {
  }

  .comment-inner /* Additional wrapper for a single comment */
  {
  }

  .comment-preview /* Preview of the comment before submitting new or updated comment */
  {
  }

  .comment.new /* A new comment since the user last viewed the page. */
  {
  }

  .comment.odd /* An odd-numbered comment in the list of comments */
  {
  }

  .comment.even /* An even-numbered comment in the list of comments */
  {
  }

  .comment.first /* The first comment in the list of comments */
  {
  }

  .comment.last /* The last comment in the list of comments */
  {
  }

  .comment-unpublished /* Unpublished comments */
  {
    /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
  }

  .comment-unpublished div.unpublished /* The word "Unpublished" displayed beneath the content. See also the div.unpublished declaration in the node section above. */
  {
  }

  .comment-published /* Published comments */
  {
  }

  .comment-by-anon /* A comment created by an anonymous user */
  {
  }

  .comment-by-author /* A comment created by the node's author */
  {
  }

  .comment-mine /* A comment created by the current user */
  {
  }

  .comment h3.title /* Comment title */
  {
  }

  .new /* "New" marker for comments that are new for the current user */
  {
    color: #c00;
  }

  .comment .picture /* The picture of the comment author */
  {
  }

  .comment .submitted /* The "posted by" information */
  {
  }

  .comment .content /* Comment's content wrapper */
  {
  }

  .comment .user-signature /* The user's signature */
  {
  }

  .comment div.links /* Wrapper for comment links. See also the ul.links declaration in the node section above. */
  {
    margin: 1em 0;
  }

  .indented /* Nested comments are indented */
  {
    /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
  }

  .preview .comment /* Preview of the comment before submitting new or updated comment */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

/** Drupal blocks **/
  .block /* Block wrapper */
  {
    margin-bottom: 1em;
  }

  .block.region-odd /* Zebra striping for each block in the region */
  {
  }

  .block.region-even /* Zebra striping for each block in the region */
  {
  }

  .block.odd /* Zebra striping independent of each region */
  {
  }

  .block.even /* Zebra striping independent of each region */
  {
  }

  .region-count-1 /* Incremental count for each block in the region */
  {
  }

  .count-1 /* Incremental count independent of each region */
  {
  }

  .block-inner /* Additional wrapper for block */
  {
  }

  .block h2.title /* Block title */
  {
  	color:#FEC102;
  }

  .block .content /* Block's content wrapper */
  {
  }

  #block-aggregator-category-1 /* Block for the latest news items in the first category */
  {
  }

  #block-aggregator-feed-1 /* Block for the latest news items in the first feed */
  {
  }

  #block-block-1 /* First administrator-defined block */
  {
  }

  #block-blog-0 /* "Recent blog posts" block */
  {
  }

  #block-book-0 /* "Book navigation" block for the current book's table of contents */
  {
  }

  #block-comments-0 /* "Recent comments" block */
  {
  }

  #block-forum-0 /* "Active forum topics" block */
  {
  }

  #block-forum-1 /* "New forum topics" block */
  {
  }

  #block-menu-2 /* "Primary links" block */
  {
  }

  #block-node-0 /* "Syndicate" block for primary RSS feed */
  {
  }

  #block-poll-0 /* "Most recent poll" block */
  {
  }

  #block-profile-0 /* "Author information" block for the profile of the page's author */
  {
  }

  #block-search-0 /* "Search form" block */
  {
  }

  #block-statistics-0 /* "Popular content" block */
  {
  }

  #block-user-0 /* "User login form" block */
  {
  }

  #block-user-1 /* "Navigation" block for Drupal navigation menu */
  {
  }

  #block-user-2 /* "Who's new" block for a list of the newest users */
  {
  }

  #block-user-3 /* "Who's online" block for a list of the online users */
  {
  }

/** Drupal boxes **/
  /* Wrapper for Comment form, Comment viewing options, Menu admin, and
   * Search results.
   */
  .box /* Wrapper for box */
  {
  }

  .box-inner /* Additional wrapper for box */
  {
  }

  .box h2.title /* Box title */
  {
  }

  .box .content /* Box's content wrapper */
  {
  }

/** Miscellaneous Drupal styles **/
  .error /* Errors that are separate from div.messages status messages (see above.) */
  {
    /* color: #e55; */ /* Drupal core uses a #e55 background */
  }

  .warning /* Warnings that are separate from div.messages status messages (see above.) */
  {
    /* color: #e09010; */ /* Drupal core uses a #e09010 background */
  }

  .more-link /* Aggregator, blog, and forum more link */
  {
    text-align: right;
  }

  #user-login-form /* Drupal's default login form */
  {
    text-align: left;
  }

  tr.even, tr.odd /* Some tables have rows marked even or odd. See also the ".section-admin tr.even" declaration below. */
  {
    border-bottom: none;
    padding: 0;
  }

  tr.even
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  tr.odd
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  li a.active /* The active item in a Drupal menu */
  {
    color: #6A6A6A;
  }


/** Drupal forms **/
  .form-item, /* Wrapper for a form element (or group of form elements) and its label */
  .form-checkboxes,
  .form-radios
  {
    margin: 1em 0;
  }

  .form-item input.error, /* Highlight the form elements that caused a form submission error */
  .form-item textarea.error,
  .form-item select.error
  {
    border: 2px solid #c00;
  }

  .form-item label /* The label for a form element */
  {
    display: block;
    font-weight: bold;
  }

  .form-item label.option /* The label for a radio button or checkbox */
  {
    display: inline;
    font-weight: normal;
  }

  .form-required /* The part of the label that indicates a required field */
  {
    color: #c00;
  }

  .form-item .description /* The descriptive help text (separate from the label) */
  {
    font-size: 0.85em;
  }

  .form-checkboxes .form-item, /* Pack groups of checkboxes and radio buttons closer together */
  .form-radios .form-item
  {
    margin: 0.4em 0;
  }

  .form-submit /* The submit button */
  {
  }

  .container-inline div, .container-inline label /* Inline labels and form divs */
  {
    display: inline;
  }

  .tips /* Tips for Drupal's input formats */
  {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
  }

/** OpenID **/
  /* The default styling for the OpenID login link seems to assume Garland's
   * styling of list items.
   */
  #user-login-form ul /* OpenID creates a new ul above the login form's links. */
  {
    margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
  }

  #user-login-form li.openid-link, /* The "Log in using OpenID" links. */
  #user-login li.openid-link
  {
    margin-top: 1em;
    margin-left: -20px; /* Un-do some of the padding on the ul list. */
  	padding-left: 20px;
  	background-position: left center;
  }

  #user-login-form li.user-link, /* The "Cancel OpenID login" links. */
  #user-login li.user-link
  {
    margin-top: 1em;
  	list-style-type: disc;
  	list-style-position: outside;
  }

  #user-login li.openid-link, /* The OpenID links on the /user form. */
  #user-login li.user-link
  {
    margin-left: -2em; /* Un-do all of the padding on the ul list. */
  }

/** Drupal admin tables **/
  /* We overrode these styles in html-elements.css, but restore them for the
   * admin section of the site.
   */
  .section-admin tbody
  {
    border-top: 1px solid #ccc;
  }

  .section-admin th
  {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  .section-admin tbody th
  {
    border-bottom: 1px solid #ccc;
  }

  .section-admin thead th
  {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  .section-admin tr.even,
  .section-admin tr.odd
  {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    padding: 0.1em 0.6em;
  }



/**************************************************************************/
.header {min-width:900px; width:100%; height:122px; background:url(images/backgroundheader.png) repeat-x top left;}
.header .wrapper {width:874px; padding-right:26px; height:117px; margin:0 auto;}


.logo_top {width:275px; height:117px; margin-top:5px; float:left; background:url(images/logo.png) no-repeat top left;}
.logo_top a {display:block; width:220px; height:101px;margin:16px 0 0 26px;}

.top_right {float:right; height:117px; margin-top:5px; width:597px;}
.top_line {height:20px; w margin-right:17px;}
.top_line .login {float:left; height:20px; width:78px; background:url(images/bg_login.png) no-repeat top center; text-align:center; color:#FFFFFF;}
.top_line .login a {font-size:11px; color:#FFFFFF;}
.top_line .flag {float:left; height:15px; width:502px; text-align:right; margin-top:3px;}
.top_line .flag a {margin-right:13px; height:15px; width:25px;}


#navi_bar {height:52px; width:580px; margin-top:8px;}

#navi {width:597px;}
#navi ul {margin:0; padding:0; float:right; width:597px;}
#navi, #navi li, #navi li a {margin:0; padding:0; color:#FFFFFF; font-size:12px;}
#navi li {
	float:left;
	height:52px;
	width:92px;
	text-align:center;
	list-style-image:none;
	list-style-type:none;
	padding:0;
	color:#FFFFFF;
	font-size:12px;
	margin-left:4px;
}
#navi li.first {margin-left:0;}
#navi li a {
	display:block;
	margin:0;
	padding:0;
	height:32px;
	width:92px;
	padding-top:19px;
	text-decoration:none;
	font-weight:bold;
}
#navi li a:hover {}
#navi li:hover, #navi li.active {
	background:url(images/menu.png) center top no-repeat;
}
#navi li.leaf {margin-left:9px;}
#navi li.first {margin-left:0;}

.content-box {width:100%; min-width:900px; min-height:600px; background:#333333 url(images/main_bg.png) repeat-x top center;}
.content-box .wrapper {width:848px; margin:0 auto; padding:0 26px 20px;}

.content-box .leftcolumn {width:560px; float:left; margin-top:50px;}
.content-box .leftcolumn p {line-height:17px; margin:10px 0 20px;}


#site-slogan {width:524px; font-weight:bold; margin:15px 0 30px;}
#site-slogan .head {font-size:22px; letter-spacing:-0.01em; line-height:27px;}
#site-slogan .head_bold, #site-slogan .head_bold_2 {font-size:37px; letter-spacing:0.02em; color:#FEC102;}
#site-slogan .head_bold_2 {font-size:30px;}
#site-slogan p {text-indent:0; margin:0; padding:0; text-align:justify; line-height:18px;}
#site-slogan .learnmore {font-size:9px; color:#FEC102;}
#site-slogan .learnmore a {color:#65B9F4; margin:0 3px;}
#site-slogan .learnmore a:hover {color:#FEC102;}

.content-box .rightcolumn {float:right; width:274px;}
.content-box .rightcolumn .node-inner .content {margin-left:5px;}

#block-search {margin:16px 25px 0 0; text-align:right;}
.search_input {background-color:#FFFFFF; color:#C6BBB3;}

input.form-submit, input.teaser-button {
  background-color: #578DCB;
  border-width: 1px;
  border-style: solid;
  border-color: #FFF #ccc #ccc #FFF;
  padding: 1px 6px;
  overflow: visible;
  font: italic 18px Georgia, serif;
  cursor: pointer;
  color:#FFF;
  height:25px;
  font-size:12px;
}

#block-search input.form-text { height:16px; line-height:16px;}
#block-search input.form-submit {font-size:10px; height:20px;}

.tabs a:link, .tabs a:visited {
  color: #CCC;
}
.tabs a:hover, .tabs a:active, .tabs a.active {
  color: #FFF;
}
ul.tabs.primary, ul.tabs.primary li, ul.tabs.primary li a, ul.tabs.primary li.active a,
ul.tabs.secondary, ul.tabs.secondary li, ul.tabs.secondary li a, ul.tabs.secondary li.active a {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}
div.tabs {
  padding: 10px 0;
}
div.tabs ul.tabs.primary li a {
  background: transparent url(images/tabs.png) no-repeat center 0;
  padding: 0 10px 8px 10px;
  margin-right: 5px;
  font-size: 12px;
  float: left;
}
div.tabs ul.tabs.primary li a:hover, div.tabs ul.tabs.primary li.active a {
  background: transparent url(images/tabs.png) no-repeat center -32px;
}
div.tabs ul.tabs.secondary {
  margin-top: 5px;
  clear: both;
}
div.tabs ul.tabs.secondary li a {
  background: transparent url(images/tabs.png) no-repeat center -64px;
  padding: 0px 10px 3px 10px;
  margin-right: 5px;
  font-size: 12px;
  float: left;
}
div.tabs ul.tabs.secondary li a:hover, div.tabs ul.tabs.secondary li.active a {
  background: transparent url(images/tabs.png) no-repeat center -91px;
}

  ul.primary li a .tab
  {
    display: block;
    height: 20px;
    margin: 0;
    padding: 4px 13px 0 6px;
    border-width: 0;
    line-height: 20px;
  }
  ul.secondary a .tab
  {
    display: block;
    height: 15px;
    margin: 0;
    padding: 1px 13px 0 6px;
    line-height: 20px;
  }


#x-ray
{
 	background:url(images/x-ray.png) no-repeat top center;
	width:252px;
	height:84px;
	margin:0 0 25px 8px;
}
#news-content-head {
	width:272px;
	height:77px;
	background:transparent url(images/news.png) no-repeat scroll right top;
	margin:50px 0 0 -13px;
}
#news-content
{
	background:transparent url(images/news_bg_2.png) repeat-y scroll left top;
	width:266px;
	min-height:100px;
	margin-bottom:25px;
	font-weight:normal;
	color:#FFFFFF;
	margin:0px 0 25px 8px;
	padding-top:0px;
	/*border:1px solid #FFFFFF;
	border-top:0;*/
}
#news-content .block-inner {
	padding:5px 35px 10px 20px;
	background: transparent url(images/news_bg.png) no-repeat scroll left bottom
}
#news-content .block-inner p {margin: 0 0 1em;}
#news-content a {
	color:#FFFFFF;
	text-decoration:none;
}
#news-content a:hover {text-decoration:none;}
#block-nodeasblock-307 {
	margin:0 0 0;
	padding:0 0 0;
 	/*background:url(images/news_2.png) no-repeat top center;
 	background:url(images/news.png) no-repeat top center;*/
}

#banana
{
 	background:url(images/banana.png) no-repeat top center;
	width:275px;
	height:119px;
	margin-bottom:25px;
}



#block-user-1 {width:274px;}
#block-user-1 .block-inner {border:solid 1px #FFFFFF;}
#block-user-1 .block-inner .title {background-color:#01528c; border-bottom:solid 1px #FFFFFF; padding-left:10px; color:#FEC102;}


.contentoutside {width:100%; min-width:900px; min-height:191px; background:#333333 url(images/content_bottom_bg.gif) repeat-x top center;}
.contentoutside .wrapper {width:900px; margin: 0 auto; padding:26px 0 15px;}

.contentbottom {width:100%; min-width:900px; min-height:191px; background-color:#333333;}
.contentbottom .wrapper {width:900px; margin:0 auto;}

table#blocks .region, table#blocks th {background-color:#FFFFFF;}

#contentoutside {float:left; width:566px; }
#contentoutside .block-inner {margin:0 9px; }
#contentoutside .block .node {background:url(images/quotes_1.png) no-repeat top left;}
#contentoutside .node-inner { padding:0 15px 0 40px;}
#contentoutside p {background:url(images/quotes_2.png) no-repeat bottom right; padding:10px 30px 10px 0; line-height:18px;}
#contentoutside ul {text-align:right; margin:0 22px 0 0; padding:0; color:#FEC102;}


#tequila-download {
	float:left;
 	background:url(images/tequila.png) no-repeat top center;
	width:287px;
	height:150px;
}

#webdesign {
	float:left;
	margin-left:5px;
	width:250px;
 	background:url(images/webdesign.png) no-repeat top center;
	height:150px;
}
#webdesign a, #tequila-download a {
	width:250px;
	height:150px;
	display:block;
}

.contentservice {width:100%; min-width:900px; min-height:181px; background:#292929 url(images/content_service_bg.gif) repeat-x top center;}
.contentservice .wrapper {width:900px; margin:0 auto;}

.contentservice .block{float:left; min-height:133px; padding:35px 0 10px 13px; width:205px; background:url('images/content_service_bg2.png') top right no-repeat; margin:0;}
.contentservice .block-inner {padding-left: 75px; background-repeat:no-repeat; margin-right:5px;}
#block-nodeasblock-149 .block-inner {background-image:url(images/307.png);}
#block-nodeasblock-150 .block-inner {background-image:url(images/309.png);}
#block-nodeasblock-151 .block-inner {background-image:url(images/310.png);}
#block-nodeasblock-152 .block-inner {background-image:url(images/311.png);}
.contentservice h2, .contentservice h2 a {font-size:16px;}
.contentservice .block .node {margin-top:-5px;}

.footer {width:100%; min-width:900px; height:227px; background:url(images/bottom_bg.png) #01528C top right no-repeat;}
.footer .wrapper {width:900px; margin:0 auto;}
.footer .left {float:left; width:275px; height:227px; background:url(images/country_map.png) top left no-repeat;}
.footer .center {float:left; width:375px; height:206px; padding-top:21px; background:url(images/bottom_stripe.png) top left no-repeat;}
.footer .right {float:left; width:509px; height:227px; background:url(images/bottom_stripe.png) top left no-repeat; }

.footer .center .text-contact {float:left; width:65px; margin-right:10px; text-align:right; padding:0 0 5px;}
.footer .center .input-contact {float:left; width:275px; text-align:left; padding:0 0 5px;}
.footer .center .input-contact input {width:275px; height:14px;}
.footer .center .input-contact textarea {width:275px; height:100px;}

.footer .left h2 {margin-left:31px; margin-bottom:0;}
.footer .left #map {margin:3px 0 0 16px;}

.footer .right .content {margin-left:2px;}
.footer .right .block-inner {margin:15px 0 0 45px; background:url(images/logo_bottom.png) 4px 126px no-repeat; width:508px; height:200px;}
.footer .right h2 a {
	text-decoration:none; color:#FFFFFF; padding-right:20px; 
	background-image:url(images/bottom_arrow.png); background-position:right;
	background-repeat:no-repeat;}
.footer .right h2 a:hover {text-decoration:underline; color:#FFFFFF;}
.footer h2.title {color:#FFFFFF;}


#block-nodeasblock-162,
#block-nodeasblock-262,
#block-nodeasblock-263
{
	background:url(images/technology_bg.png) no-repeat bottom left;
	width:266px;
	min-height:130px;
	margin:0 0 25px 8px;
}
#block-nodeasblock-162 .block-inner,
#block-nodeasblock-262 .block-inner,
#block-nodeasblock-263 .block-inner
{
	background:url(images/technology.png) no-repeat top left;
	width:226px;
	min-height:130px;
	padding:30px 25px 10px 15px;
}

#block-nodeasblock-41,
#block-nodeasblock-42,
#block-nodeasblock-43,
#block-nodeasblock-44
{
	background:url(images/customer_box.png) no-repeat top left;
	width:231px;
	height:165px;
	margin:0 0 25px 4px;
	padding:80px 25px 10px 15px;
}

#contentprogrammer .block
{
	float:left;
	width:180px;
	min-height:180px;
}

#contentprogrammer #block-nodeasblock-34,
#contentprogrammer #block-nodeasblock-36,
#contentprogrammer #block-nodeasblock-368,
#contentprogrammer #block-nodeasblock-374
{
	float:none;
	margin-bottom:10px;
	width:500px;
	min-height:40px;
	color:#65b9f4;
	font-size:20px;
	font-weight:bold;
}

#contentprogrammer #block-nodeasblock-34 p,
#contentprogrammer #block-nodeasblock-36 p,
#contentprogrammer #block-nodeasblock-368 p,
#contentprogrammer #block-nodeasblock-374 p
{
	margin-bottom:0;
}

#contentprogrammer #block-nodeasblock-34 p a,
#contentprogrammer #block-nodeasblock-36 p a,
#contentprogrammer #block-nodeasblock-368 p a,
#contentprogrammer #block-nodeasblock-374 p a {
	font-size:10px;
	color:#FFFFFF;
}

#contentprogrammer #block-nodeasblock-34 p a:hover,
#contentprogrammer #block-nodeasblock-36 p a:hover,
#contentprogrammer #block-nodeasblock-368 p a:hover,
#contentprogrammer #block-nodeasblock-374 p a:hover {
	font-size:10px;
	color:#FEC102;
}

#contentprogrammer #block-nodeasblock-34 .nodeasblock-edit-link,
#contentprogrammer #block-nodeasblock-36 .nodeasblock-edit-link,
#contentprogrammer #block-nodeasblock-368 .nodeasblock-edit-link,
#contentprogrammer #block-nodeasblock-374 .nodeasblock-edit-link {font-size:12px;}

#contentprogrammer .node-inner p {margin-right:15px;}
#contentprogrammer h2 {color:#65b9f4; height:35px;}
#contentprogrammer h2 a {color:#65b9f4; margin-left:35px; font-size:15px; padding-top:15px; display:block;}

#block-nodeasblock-157,
#block-nodeasblock-158,
#block-nodeasblock-159,
#block-nodeasblock-164,
#block-nodeasblock-165,
#block-nodeasblock-166 {display:none;}

#block-nodeasblock-157 h2 {background:url(images/icon_recruitment.png) no-repeat bottom left;}
#block-nodeasblock-158 h2 {background:url(images/icon_training.png) no-repeat bottom left;}
#block-nodeasblock-159 h2 {background:url(images/icon_development.png) no-repeat bottom left;}
#block-nodeasblock-164 h2 {background:url(images/icon_negotiation.png) no-repeat bottom left;}
#block-nodeasblock-165 h2 {background:url(images/icon_production.png) no-repeat bottom left;}
#block-nodeasblock-166 h2 {background:url(images/icon_post_implementation.png) no-repeat bottom left;}

#system-themes-formm .sticky-header, .sticky-enabled sticky-table {width:540px;}


#content-area .content, #content-header .help {padding-right:112px;}

ul#contact_list {width:560px; margin:35px 0 0; padding:0; min-height:320px;}
ul#contact_list li {width:527px; min-height:267px; list-style:none; position:absolute;}

ul#contact_list li .contact_tab {width:68px; height:40px; background:url(images/contact_tab.png) no-repeat bottom left; position:absolute; z-index:5; padding-left:12px; font-size:16px; font-weight:bold; line-height:40px; color:#7D7D7D;}
ul#contact_list li .contact_tab a {color:#7D7D7D;}
ul#contact_list li .contact_tab a:hover {color:#036EBB;}

ul#contact_list li#contact-ceo .contact_tab {margin-top:0px;}
ul#contact_list li#contact-cio .contact_tab {margin-top:40px;}
ul#contact_list li#contact-gm .contact_tab {margin-top:80px;}
ul#contact_list li#contact-pm .contact_tab {margin-top:120px;}
ul#contact_list li#contact-ae .contact_tab {margin-top:160px;}

ul#contact_list li .contact_content {border:1px solid #7D7D7D; background-color:#545454; width:400px; min-height:235px; position:absolute; margin-left:62px; display:none; padding:15px 30px;}
ul#contact_list li.active .contact_tab {background-image:url(images/contact_tab_active.png); color:#FFFFFF;}
ul#contact_list li.active .contact_tab a {color:#FFFFFF;}
ul#contact_list li.active .contact_tab a:hover {color:#036EBB;}
ul#contact_list li.active .contact_content {display:block;}

.contact_content .img {width:180px; height:235px; float:left; margin:0 30px 0 0;}
.contact_content .info {width:190px; min-height:235px; float:left;}
.contact_content .info img {margin-right:10px; width:18px; height:11px;}

ul#contact_list li#contact-ceo .img {background-image:url(images/ceo.jpg);}
ul#contact_list li#contact-cio .img {background-image:url(images/cio.jpg);}
ul#contact_list li#contact-gm .img {background-image:url(images/gm.jpg);}
ul#contact_list li#contact-pm .img {background-image:url(images/pm.jpg);}
ul#contact_list li#contact-ae .img {background-image:url(images/ae.jpg);}

.contact_content strong {font-size:18px; font-weight:bold; color:#FEC102; display:block;}
.contact_content dl {padding:0px; margin:-15px 0 5px 0;}
.contact_content dd {padding-left:30px; display:block; height:23px; line-height:32px; text-decoration:none; color:#FFFFFF; margin:0;}
.content-box .leftcolumn .contact_content p {margin:5px 0;}

.contact_content dd.twitter {background:url(images/twitter.png) no-repeat bottom left;}
.contact_content dd.facebook {background:url(images/facebook.png) no-repeat bottom left;}
.contact_content dd.skype {background:url(images/skype.png) no-repeat bottom left;}
.contact_content dd.email {background:url(images/email.png) no-repeat bottom left;}
.contact_content dd.msn {background:url(images/msn.png) no-repeat bottom left;}
.contact_content dd.yahoo {background:url(images/yahoo.png) no-repeat bottom left;}
.contact_content dd.phone {background:url(images/phone.png) no-repeat bottom left;}

#customer_list {width:258px; min-height:237px; margin:0 0 25px 5px;}
#customer_list #head_box {width:241px; height:35px; border:1px solid #419dde; background-color:#036EBB; font-size:21px; font-weight:bold; padding-left:15px; line-height:33px; color:#FEC102;}
#customer_list #foot_box {font-size:10px; line-height:20px; color:#036EBB; text-align:center;}
#customer_list #foot_box a {color:#036EBB;}
#customer_list #foot_box a:hover {color:#FEC102;}
#customer_list #list {width:256px; min-height:142px; border:1px solid #9E9E9E; border-top:0;}
#customer_list ul {margin:0; padding:0px 0 15px; width:256px; min-height:180px;}
#customer_list ul li {float:left; width:60px; margin:20px 0 0 19px; list-style:none; text-align:center; height:25px;}

.node-type-blog {width:448px;}
.node-type-blog h2 {}
.node-type-blog .submitted {display:none;}
.node-type-blog .terms {font-size:11px;}
.node-type-blog .terms ul {color:#036EBB;}
.node-type-blog .terms ul a {color:#036EBB;}
.node-type-blog .content {margin-left:15px;}

.node-blog {min-height:100px; margin-bottom:30px;}
.node-blog .logo {float:left; margin:5px 20px 0 10px; background:url(images/customer_logo_blank.png) no-repeat center; width:85px; height:85px;}
.node-blog .logo .img {width:85px; height:85px; background-repeat:no-repeat;}
.node-blog .content_box {float:left; min-height:100px; width:430px; background:url(images/customer_bg.png) no-repeat center bottom;}
.node-blog .submitted {display:none;}
.node-blog .taxonomy {font-size:11px; width:400px; background:url(images/customer_icon_1.png) no-repeat 3px 0px; min-height:25px; padding-left:30px;}
.node-blog .taxonomy ul {color:#FFFFFF;}
.node-blog .taxonomy ul li {padding:0 0.5em 0 0;}
.node-blog .taxonomy ul a {color:#FFFFFF; font-weight:normal;}
.node-blog .content {width:400px; background:url(images/customer_icon_2.png) no-repeat 2px 0px; padding-left:30px;}
.node-blog .content p {margin:10px 0 5px;}
#content-area .node-blog .content {padding-right:0; min-height:25px;}

.pager {color:#FEC102;}
.pager li a.active {color:#036EBB;}

a.download {background:url(images/download.png) no-repeat bottom right; display:block; width:250px; line-height:44px; margin:10px 0 0 30px; color:#FEC102; height:30px;}



/* edit system css */
li.collapsed {list-style-image:url(images/menu-collapsed.gif);}
li.expanded  {list-style-image:url(images/menu-expanded.gif);}
.block-region {background-color:#66baff; color:#6A6A6A;}
h2 { font-size: 20px; }
ul.menu li {margin:0;}
#system-themes-form td img {width:100px;}
#system-themes-form td, #system-themes-form th {padding:2px;}
.section-admin thead th {background-color:#FFFFFF;}
/* edit default css */

/* logo for customer */
#blog-355 .logo {}
#blog-354 .logo {background-image:url(/misc/logo/normal/chiameng.gif);}
#blog-353 .logo {}
#blog-352 .logo {}
#blog-350 .logo {background-image:url(/misc/logo/normal/rossbachnorge.png);}
#blog-349 .logo {background-image:url(/misc/logo/normal/saigon.png);}
#blog-348 .logo {background-image:url(/misc/logo/normal/asiahotelcasino.png);}
#blog-347 .logo {background-image:url(/misc/logo/normal/saigon_comfort.png);}
#blog-346 .logo {background-image:url(/misc/logo/normal/fullhousechihtzu.png);}
#blog-345 .logo {background-image:url(/misc/logo/normal/hexpose.png);}
#blog-343 .logo {background-image:url(/misc/logo/normal/amex.png);}
#blog-342 .logo {background-image:url(/misc/logo/normal/crece.png);}
#blog-341 .logo {background-image:url(/misc/logo/normal/m3.png);}
#blog-340 .logo {background-image:url(/misc/logo/normal/sct.png);}
#blog-339 .logo {background-image:url(/misc/logo/normal/grupolattice.png);}
#blog-338 .logo {background-image:url(/misc/logo/normal/webarchitect.png);}
#blog-337 .logo {background-image:url(/misc/logo/normal/gnr8.png);}
#blog-336 .logo {background-image:url(/misc/logo/normal/datapro.png);}
#blog-335 .logo {background-image:url(/misc/logo/normal/fujitsu.png);}
#blog-333 .logo {background-image:url(/misc/logo/normal/blueprint.png);}
#blog-332 .logo {background-image:url(/misc/logo/normal/dtac.png);}
#blog-331 .logo {background-image:url(/misc/logo/normal/hutch.png);}
#blog-330 .logo {background-image:url(/misc/logo/normal/true.png);}
#blog-329 .logo {background-image:url(/misc/logo/normal/siamnutra.png);}
#blog-328 .logo {background-image:url(/misc/logo/normal/dreamteam.png);}
#blog-327 .logo {background-image:url(/misc/logo/normal/acronym.png);}
#blog-326 .logo {background-image:url(/misc/logo/normal/bigcola.png);}
#blog-325 .logo {background-image:url(/misc/logo/normal/spansion.png);}
#blog-324 .logo {background-image:url(/misc/logo/normal/cuel.png);}
#blog-323 .logo {background-image:url(/misc/logo/normal/thanachart.png);}
#blog-322 .logo {background-image:url(/misc/logo/normal/kimeng.png);}
#blog-321 .logo {background-image:url(/misc/logo/normal/pg.png);}
#blog-318 .logo {background-image:url(/misc/logo/normal/ktc.png);}
/* logo for customer */

/* contact form */
.ribbon_box {
	height:348px;
	width:250px;
	margin:0 0 20px 8px;
}
.ribbon_box .box {
	height:293px;
	width:250px;
	background-image:url(images/ribbon_bg.png);
}
.ribbon_box .bottom {
	height:55px;
	width:250px;
	background-image:url(images/ribbon_bottom.png);
}
.ribbon_box .item {
	padding:35px 0 0 13px;
	height:100px;
	width:236px;
}
.ribbon_box a {
	border:none;
}

#contentform {
	position:absolute;
	margin-top:122px;
	min-height:420px;
	min-width:900px;
	width:100%;
	z-index:30;
}
#contentform .warpper {
	width:590px;
	padding-right:310px;
	margin:0 auto;
}
#contentform .form {
	width:590px;
	height:420px;
	background: #333333 url(images/contactformbg.png) repeat-x scroll center top;
	padding-top:35px;
}
#contentform.hide {
	display:none;
}
#contentform.show {
	display:block;
}
#contentform .fields {
	width:500px;
	height:33px;
	margin:0 0 16px 35px;
	border:0;
	padding-left:35px;
	color:#FFFFFF;
	font-size:14px;
	font-weight:bold;
	letter-spacing:-0.02em;
	background-color:#FFFFFF;
	background-repeat:no-repeat;
}
#contentform .fields input[type="text"] {
	width:459px;
	height:18px;
	color:#424242;
	font-size:14px;
	font-weight:bold;
	padding:10px 2px 5px;
}

#contentform .fields textarea {
	width:459px;
	height:90px;
	color:#424242;
	font-size:14px;
	font-weight:bold;
	padding:10px 2px 5px;
}
#contentform .fields#name {background-image:url(images/contact_1.png);}
#contentform .fields#company {background-image:url(images/contact_2.png);}
#contentform .fields#position {background-image:url(images/contact_3.png);}
#contentform .fields#email {background-image:url(images/contact_4.png);}
#contentform .fields#message {background-image:url(images/contact_5.png); height:106px; background-repeat:no-repeat;}
#contentform .fields#service {padding-left:0; background:none; width:500px; height:21px;}
#contentform .fields#way {padding-left:0; background:none; width:500px;}
#contentform .fields#submit {background:none; text-align:right;}
#contentform .fields button, 
#contentform .fields input[type="reset"], 
#contentform .fields input[type="button"], 
#contentform .fields input[type="submit"] {
	background-image:url(images/contact_btn.png);
}
#contentform .fields button:hover, 
#contentform .fields input[type="reset"]:hover, 
#contentform .fields input[type="button"]:hover, 
#contentform .fields input[type="submit"]:hover {
	background-image:url(images/contact_btn_over.png);
}

#contentform .columnbox {width:535px; height:165px;}

#contentform .column1 {width:235px; height:120px; float:left;}
#contentform .column2 {width:300px; height:93px; float:left; background-color:#FFFFFF;}
#contentform .column3 {width:280px; height:51px; float:left; padding-top:15px;}
#contentform .column4 {width:220px; height:66px; float:left;}
#contentform .column4 .fields {width:220px; height:30px; padding-left:0px; margin:0; background:none;}
#contentform .column4 .label {width:100px; float:left;}

#contentform .column1 .fields { width:175px; padding-left:0;}
#contentform .column1 .fields .label {width:55px; padding:10px 0 0 10px; float:left; color:#424242;}
#contentform .column1 .fields input[type="text"] { width:106px; float:left; color:#424242;}
#contentform .column2 input[type="text"] { padding-left:0;}

#contentform .column1 .disable .label {color:#CCCCCC;}
#contentform .column1 .disable input[type="text"] {color:#CCCCCC;}

#contentform .column2 {font-size:10px; color:#424242;}
#contentform .column2 .time {padding:13px 0 0 13px; height:80px; width:140px; float:left;}
#contentform .column2 .time .box { font-size:46px; color:#424242;}
#contentform .column2 .time input {width:55px; height:55px; font-size:46px; color:#424242; padding:0; text-align:right;}

#contentform .column2 .daybox {padding:20px 0 0 0; height:40px; width:145px; float:left;}
#contentform .column2 .daybox .day { font-size:16px; color:#424242;}
#contentform .column2 .daybox input {width:20px; height:20px; font-size:16px; font-weight:bold; color:#424242; padding:0; text-align:right;}
#contentform .column2 .daybox input.mm {width:30px; text-align:center;}

#contentform .column2 .daybox .city {font-weight:bold; font-size:16px; margin-top:20px;}
#contentform .column2 .daybox .city input {width:95px; text-align:left;}

#contentform .telbox {margin: 0 0 16px 35px; height:33px;}

#contentform .tel {width:220px; height:33px; float:left; background-color:#FFFFFF;}
#contentform .language {width:265px; height:33px; margin-left:15px; float:left; background-color:#FFFFFF;}

#contentform .telbox .label { float:left; padding:10px 0 0 10px; font-size:14px; font-weight:bold; color:#424242;}
#contentform .telbox input {height:18px; float:left; padding:10px 2px 5px; font-size:14px; font-weight:bold; color:#424242;}

#contentform .telbox .disable .label {color:#CCCCCC;}
#contentform .telbox .disable input {color:#CCCCCC;}

#contentform .tel .label {width:30px; }
#contentform .language .label {width:80px;}

#contentform .tel input {width:176px;}
#contentform .language input {width:171px;}


#contactformmessenger {margin-bottom:16px;}

.content-wrapper {
    opacity: 0.3;
    -moz-opacity: 0.3;
}

#node-392 .content,
#node-399 .content,
#node-400 .content,
#node-401 .content,
#node-402 .content,
#node-403 .content {padding-right:0;}

.homebox { height: 130px; padding-left:18px;}
.homebox .btn_1,
.homebox .btn_2,
.homebox .btn_3 {
	float:left;
	margin-right:20px;
	width:150px;
	height:104px;
}
.homebox .btn_1 {background-image:url(images/home_btn_1.png);}
.homebox .btn_2 {background-image:url(images/home_btn_2.png);}
.homebox .btn_3 {background-image:url(images/home_btn_3.png);}

.homebox a {
	display:block;
	width:150px;
	height:104px;
}

.getquotation_box {
	width:250px;
	height:121px;
	margin:0 0 20px 8px;
}

.getquotation_box {
	width:250px;
	height:121px;
	display:block;
}

.special {
	margin:20px 0 0 25px;
	padding:10px 0 0 135px;
	min-height:94px;
	background-image:url(images/speaker.png);
	background-repeat:no-repeat;
	color:#FFFFFF;
	font-weight:bold;
	width:200px;
	font-size:11px;
}

.content-box .leftcolumn p.head-tech {
	font-weight:bold; line-height:15px;
	color:#FEC102; margin:35px 0 0;
}

.content-box .leftcolumn p.content-tech {
	font-weight:bold; line-height:15px; 
	color:#FFFFFF;
	margin:10px 0 30px 10px;
}

#node-393 ul {
	width:540px;
	margin-bottom:10px;
	list-style:none;
	padding:0 0 0 20px;
}
#node-393 ul li {
	display:block;
	float:left;
	width:85px;
	height:85px;
	margin:0 50px 20px 0;
	text-align:center;
	list-style:none;
}

#setappointment {
	height:540px;
}

#getquotation.form {
	width:590px;
	padding-left:25px;
	height:1320px;
}

#getquotation .line {
	height:25px;
}

.qhead, .qhead2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#006DA5;
	font-weight:bold;
	margin-bottom:20px;
	height:38px;
}
.qhead2 {width:600px; margin-bottom:0; padding:25px 0; background-color:#333333;}

.qhead .num {
	font-family:"Times New Roman", Times, serif;
	font-size:36px;
	color:#FFFFFF;
	font-weight:bold;
}

.qhead .boxleft {float:left;}
.qhead .boxright {float:right; margin:18px 45px 0 0; color:#FFC900; font-size:13px; font-weight:bold;}

#quotation_euro {margin-left:50px;}

.qhead.qservice {margin-bottom:0px; padding-bottom:7px; width:600px; background-color:#333333;}

.qfields, .qfields_2 {
	width:500px;
	height:22px;
	margin:0 0 8px;
	border:0;
	color:#ffc900;
	font-size:13px;
	font-weight:bold;
	letter-spacing:-0.02em;
}

.qfields_2 {
	width:370px;
	margin-left:100px;
	padding-left:30px;
	background-repeat:no-repeat;
	background-position:0 1px;
}

.qfields .label {
	width:120px;
	margin-right:10px;
	float:left;
	color:ffc900;
	text-align:right;
	line-height:21px;
}

.qfields input[type="text"], .qfields_2 input[type="text"] {
	width:366px;
	height:18px;
	color:#424242;
	font-size:14px;
	font-weight:bold;
	padding:3px 2px 1px;
}

#icon_email {
	background-image:url(images/quotation_icon_email.png);
}
#icon_msn {
	background-image:url(images/quotation_icon_msn.png);
}
#icon_skype {
	background-image:url(images/quotation_icon_skype.png);
}
#icon_yahoo {
	background-image:url(images/quotation_icon_yahoo.png);
}
#icon_phone {
	background-image:url(images/quotation_icon_phone.png);
}

.qservice_table {
	width:570px;
	background-color:#333333;
	padding:0 15px;
}

.qservice_top {
	width:570px;
	height:30px;
}
.qservice_top div {float:left;}
.qservice_top .col {
	width:166px;
	height:16px;
	font-size:14px;
	font-weight:bold;
	color:#FFFFFF;
	text-align:center;
	padding:7px 0;
}
.qservice_top .A {background-color:#1693C4; margin:0 16px 0 210px;}
.qservice_top .B {background-color:#5DC54E;}

.qservice_head {
	width:570px;
	height:53px;
	background-color:#FFC800;
}
.qservice_head div {float:left;}
.qservice_head .col1, .qmanagement_head .label {
	width:192px;
	height:33px;
	background-color:#FFC800;
	font-size:14px;
	font-weight:bold;
	padding:20px 0 0 18px;
	color:#5F5F5F;
}
.qservice_head .col2 {
	width:166px;
	height:53px;
	background-color:#1693C4;
	margin-right:16px;
}
.qservice_head .col3 {
	width:166px;
	height:53px;
	background-color:#5DC54E;
}

.qservice_head .label {
	font-size:10px;
	font-weight:bold;
	text-align:center;
	background-repeat:no-repeat;
	color:#5F5F5F;
	padding-top:35px;
	float:left;
}
.qservice_head .A {
	background-image:url(images/quotation_icon_man.png);
	background-repeat:no-repeat;
	background-position:28px 5px;
	width:78px;
}
.qservice_head .B {
	background-image:url(images/quotation_icon_clock.png);
	background-repeat:no-repeat;
	background-position:30px 9px;
	width:88px;
}

.qservice_row, .qmanagement_row {
	height:21px;
	border-bottom:1px solid #6A6A6A;
	background-color:#5F5F5F;
	width:570px;
}
.qservice_row .label, .qmanagement_row .label {
	width:192px;
	padding-left:18px;
	font-size:13px;
	font-weight:bold;
	float:left;
	padding-top:3px;
}
.qservice_row .col {text-align:center; float:left; width:166px; padding-top:3px; height:18px;}
.qservice_row .A {margin-right:16px; background-color:#024D74;}
.qservice_row .B {margin-right:12px; background-color:#306D27;}
.qservice_row .man {width:78px; float:left;}
.qservice_row .month {width:88px; float:left;}
.qservice_row select {padding:0px;}

.qservice_line {height:25px;}
.qservice_total {height:30px; width:570px;}
.qservice_total .label {float:left; font-size:14px; font-weight:bold; color:#FFC900; margin-left:18px; width:440px; height:30px;}
.qservice_total .col {float:left; width:100px; height:30px; text-align:right;}
.qservice_total .col input {width:96px; height:14px; padding:1px 2px 2px; text-align:right;}

.qservice_total.note {font-size:10px; font-weight:bold; color:#006DA5; margin-left:18px; height:20px;}
.permonth {height:20px;}
.permonth .label {height:20px;}
.permonth .col {height:20px;}

.qmanagement_head {width:570px; height:53px; background-color:#FFC800;}
.qmanagement_head .label {float:left; width:160px;}
.qmanagement_head .col {float:left; width:78px; height:53px; margin:0 10px; 
	background-color:#1693D4; font-size:10px; color:#FFFFFF;
	text-align:center;
}
.qmanagement_head .col h2 {font-size:18px; margin-bottom:0;}
.qmanagement_row .label {width:160px;}
.qmanagement_row .col {
	text-align:center; float:left; width:78px; 
	padding-top:3px; height:18px;
	margin:0 10px; background-color:#024D74;
}

.content_subject {
	margin-left:0; 
	color:#65B9F4; 
	margin-bottom:-10px; 
	display:block;
	font-size:14px;
	font-weight:bold;
	padding-left:0;
}

.sub-content-head {
	color:#FEC102;
	font-size:14px;
	font-weight:bold;
	margin-bottom:3px;
	display:inline-block;
}


.content table {margin:15px 0;}

.orange {color:#FEC102;}
.clear {clear:both;}