@charset "utf-8";

/* globals */

* { margin: 0em; 
    padding: 0em;
	   border: 0px;
  }
 
html, body
 { margin: 0em auto; 
   height: 100%;
   max-height: 100%;
   width: 100%;
   padding: 0;
 } 
 
body
 { font: normal 76%/1.5 arial, sans-serif, "courier new", verdana, tahoma; 
   color: #000;
   background-color: #fff;
 }
 
table, tr, td, p, div, a, form, span, input, img, body
 { border-width: 0px; }
 
table
 { border-width: 0px;
   border-spacing: 0px;
   border-collapse: collapse;
 }
 
td, p, div, a, span, input, li
 { font-size: 1em; 
   line-height: 1.5em;
 }

table, tr, td
 { margin: 0em;
   padding: 0em;
 }   
 
img
 { vertical-align: middle; 
   text-align: center;
   margin: 0em; 
   padding: 0em;
   position: relative;
 }
 
img.required-star
 { padding: 0.5em 0.2em 0em 0em; }

hr
 { background-color: #121212;
   width: 605px;
   height: 1px;
   border: 0;
   margin: 1em auto 2em;
   padding: 0;
 }

a.button-link
 { text-decoration: none; 
   color: #625C52;
 } 

a.button-link-white
 { text-decoration: none; 
   color: #fff;
 } 
 
a
 { color: #00c; 
   text-decoration: underline;
   cursor: pointer;
 } 
 
/* inputs */ 
 
input.input-field
 { border: 1px solid #999;
   height: 18px;
   width: 15em;
 } 
 
/* ajax loading messages */
 
div#ajax-response
 { display: none; 
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   clear: both;
 }

div.ajax-clear-response
 { position: absolute;
   top: 1em;
   right: 1em;
 }  
 
div.ajax-loading-wrapper
 { width: 99.4%;
   padding: 0.3%;
 }

div.ajax-loading-mask
 { position: absolute;
   z-index: 100;
   width: 100%;
   height: 4em;
   min-height: 4em;
   background-color: #ccc;
   border-bottom: 1px solid #999;
 } 

div.ajax-loading-mask-default
 { position: absolute;
   z-index: 100;
   width: 100%;
   height: 5em;
   min-height: 5em;
   background-color: #ccc;
   border-bottom: 1px solid #999;
 }
 
div.ajax-loading
 { position: absolute;
   z-index: 101;
   width: 100%;
   left: 50%;
   margin-left: -50%;
 } 

div.ajax-loading-default
 { background-color: #fff; 
   color: #f00;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   text-align: center;
   min-height: 3.5em;
  }

div.ajax-loading-error
 { background-color: #fcc; 
   color: #000;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   min-height: 2.5em;
   position: absolute;
   z-index: 102;
   width: 98.8%; 
 }

div.ajax-loading-success
 { background-color: #cfc; 
   color: #000;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   min-height: 2.5em;
   position: absolute;
   z-index: 102;
   width: 98.8%;
 }
 
/* errors */
 
div.message-stack-wrapper
 { width: 99.4%;
   padding: 0.4em 0.3% 0em 0.3%;
 }

div.message-stack-error
 { background-color: #fcc;
   color: #000;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   min-height: 2.5em;
 }
 
div.message-stack-warning
 { background-color: #ffc; 
   color: #000;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   min-height: 2.5em;
 }

div.message-stack-success
 { background-color: #cfc; 
   color: #000;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   height: 2.5em;
 }
 
div.db-error-wrapper
 { width: 99.4%;
   min-width: 64.1em;
   padding: 0.4em 0.3% 0.4em 0.3%;
 } 
 
div.db-error
 { background-color: #fcc; 
   color: #000;
   padding: 0.3em;
   font-weight: bold;
   border: 1px solid #999;
   min-height: 2.5em;
 }  

/* common */
 
.size1px
 { font-size: 1px; }  

.size-11
 { font-size: 1.1em; }  
 
.align-l
 { text-align: left; }  
 
.align-c
 { text-align: center; } 

.align-j
 { text-align: justify; }
 
.align-r
 { text-align: right; }
 
.valign-t
 { vertical-align: top; }

.valign-m
 { vertical-align: middle; }
 
.valign-b
 { vertical-align: bottom; }
 
.clear-l
 { clear: left; }
 
.clear-r
 { clear: right; }
 
.clear-b
 { clear: both; }
 
.float-l
 { float: left; }
 
.float-r
 { float: right; } 

.float-n
 { float: none; } 
 
.z-100
 { z-index: 100; } 
 
.z-110
 { z-index: 110; } 

.z-255
 { z-index: 255; }  
 
.left-40
 { left: 40%; } 

.left-10px
 { left: 10px; }  
 
.left-8px
 { left: 8px; } 
 
.top-40
 { top: 40%; } 

.top-1px
 { top: 1px; }  

.top-8px
 { top: 8px; } 
 
.none
 { display: none; }

.inline
 { display: inline; } 

.block
 { display: block; }

.no-underline
 { text-decoration: none; }
 
.relative
 { position: relative; }

.absolute
 { position: absolute; }
 
.hand
 { cursor: pointer; }
 
.bold
 { font-weight: bold; }

.normal
 { font-weight: normal; } 

.no-wrap
 { white-space: nowrap; }
 
.margin-auto
 { margin: 0em auto; }  

.margin-0
 { margin: 0; } 

.margin-t-02
 { margin-top: 0.2em; }  
 
.margin-l-05
 { margin-left: 0.5em; }  

.margin-b-05
 { margin-bottom: 0.5em; }  

.padding-0
 { padding: 0em; }  

.padding-1
 { padding: 1em; } 

 .padding-1px
 { padding: 1px; } 
 
.padding-02
 { padding: 0.2em; } 

.padding-lr-102
 { padding-left: 1.2em; 
   padding-right: 1.2em;
 }  

.padding-l-02
 { padding-left: 0.2em; }  
 
.padding-l-05
 { padding-left: 0.5em; } 
 
.padding-l-1
 { padding-left: 1em; }

.padding-l-102
 { padding-left: 1.2em; }  

.padding-l-2px
 { padding-left: 2px; } 
 
.padding-l-4px
 { padding-left: 4px; }   
 
.padding-l-10px
 { padding-left: 10px; }  
 
.padding-l-12px
 { padding-left: 12px; }  
 
.padding-l-15px
 { padding-left: 15px; } 

.padding-l-16px
 { padding-left: 16px; } 
 
.padding-l-18px
 { padding-left: 18px; }  

.padding-l-21px
 { padding-left: 21px; }  
 
.padding-l-30px
 { padding-left: 30px; } 
 
.padding-l-18
 { padding-left: 1.8em; } 

.padding-r-05
 { padding-right: 0.5em; } 

.padding-r-1
 { padding-right: 1em; } 

.padding-r-1px
 { padding-right: 1px; }  

.padding-r-5px
 { padding-right: 5px; }

.padding-r-8px
 { padding-right: 8px; }
 
.padding-r-10px
 { padding-right: 10px; }  

.padding-r-11px
 { padding-right: 11px; }  

.padding-r-12px
 { padding-right: 12px; } 
 
.padding-r-14px
 { padding-right: 14px; }  
 
.padding-r-15px
 { padding-right: 15px; }   

.padding-r-16px
 { padding-right: 16px; } 
 
.padding-r-21px
 { padding-right: 21px; }  
 
.padding-r-30px
 { padding-right: 30px; }   
 
.padding-r-65px
 { padding-right: 65px; }  

.padding-b-02
 { padding-bottom: 0.2em; }

.padding-b-05
 { padding-bottom: 0.5em; }

.padding-b-1
 { padding-bottom: 1em; }

.padding-t-2px
 { padding-top: 2px; }

.padding-t-3px
 { padding-top: 3px; } 
 
.padding-t-10px
 { padding-top: 10px; }
 
.padding-t-02
 { padding-top: 0.2em; }

.padding-t-05
 { padding-top: 0.5em; }

.padding-t-1
 { padding-top: 1em; }

.padding-t-103
 { padding-top: 1.3em; }  
 
.padding-t-105
 { padding-top: 1.5em; } 

.col-fff
 { color: #fff; }
 
.col-f00 
 { color: #f00; }

.back-000
 { background-color: #000; 
   color: #fff;
 } 
 
.back-fff 
 { background-color: #fff; 
   color: #000;
 }
 
/* buttons */

input.button-submit
 { position: absolute; 
   left: -10px; 
   top: -10px; 
   width: 0em; 
   height: 0em;
 }

div.default-buttons
 { float: left; 
   border: 1px solid #b7b7b7; 
 }

div.action-buttons
 { float: right; 
   border: 1px solid #b7b7b7; 
 }

/* tables */

.border-0
 { border-width: 0px;
   border-spacing: 0px;
   border-collapse: collapse;
 }
 
.border-1px-black
 { border-width: 1px;
   border-spacing: 0px;
   border-collapse: collapse;
   border-color: #000;
   border-style: solid;
 }

.width-50
 { width: 50%; } 
 
.width-100
 { width: 100%; }

.width-1px
 { width: 1px; } 

.width-144px
 { width: 144px; }
 
.width-461px
 { width: 461px; }
 
.height-3px
 { height: 3px; }  

.height-100 
 { height: 100%; }

.security-code
 { color: #f00;
   font-size: 1.1em;
   font-weight: bold;
   letter-spacing: 1px;
 } 
 
div.button-enabled
 { background-color: #fff; 
   background: url(../../images/buttons/button.gif) repeat-x top left;
   border: 1px solid #fff;
   float: left;
   color: #fff; 
   text-align: center;
   cursor: pointer;
   width: 100%;
 }
 
div.button-enabled-gray
 { background-color: #fff; 
   background: url(../../images/buttons/button-gray.gif) repeat-x top left;
   border: 1px solid #fff;
   float: left;
   color: #fff; 
   text-align: center;
   cursor: pointer;
   width: 100%;
 }
 
div.button-disabled 
 { background-color: #fff; 
   background: url(../../images/buttons/button-blue.gif) repeat-x top left;
   border: 1px solid #fff;
   float: left;
   color: #999; 
   text-align: center;
   cursor: default;
   width: 100%;
 }

div.box
 { width: 100%;
   margin: 0 auto;
   padding: 0;
 } 
 
div.index-box
 { position: absolute;
   top: 50%;
   left: 50%;
   width: 23em;
   height: 23em;
   margin-left: -12em;
   margin-top: -12em;
   background-color: #fff;
   padding: 0.5em;
   text-align: center;
 }
 
div.home-page
 { padding: 1em 0.5em;
   margin-top: 1em;
   text-align: center;
   color: #a6a1a1;
   font-size: 0.9em;
 }
 
div.home-page a
 { color: #a6a1a1;
   text-decoration: none;
 } 
 
div.header
 { width: 100%;
   margin: 0 auto;
   padding: 0;
   height: 4px;
   background-color: #000;
 }
 
div.menu-box
 { width: 605px;
   margin: 50px auto 24px;
   height: 131px;
   padding: 0;
   text-align: left;
 }
 
div.menu
 { height: 1.9em;
   line-height: 1.9em;
   padding: 2.5em 2em 0 0;
   float: left;
 } 
 
div.menu-border
 { height: 1.7em;
   line-height: 1.7em;
   padding: 0 0.5em;
   border: 1px solid #fff;
   border-spacing: 0;
   border-collapse: collapse;
   float: left;
 } 
 
div.menu-dash
 { font-size: 1.4em;
   font-weight: bold;
   color: #000;
   height: 1.1em;
   padding-right: 0.15em;
   line-height: 1.1em;
   float: left;
 } 
 
div.menu-text
 { height: 1.7em;
   line-height: 1.7em;
   float: left;
 }

a.menu-link
 { font-weight: bold;
   color: #000;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 }
 
a.menu-link:hover
 { font-weight: bold;
   color: #000;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 } 

div.catalog
 { height: 1.9em;
   line-height: 1.9em;
   padding: 2.5em 2em 0 0;
   float: left;
 } 
 
div.catalog-border
 { height: 1.7em;
   line-height: 1.7em;
   padding: 0 0.5em;
   border: 1px solid #fff;
   border-spacing: 0;
   border-collapse: collapse;
   float: left;
 }  
 
div.catalog-border-selected
 { height: 1.7em;
   line-height: 1.7em;
   padding: 0 0.5em;
   border: 1px solid #d9dada;
   border-spacing: 0;
   border-collapse: collapse;
   float: left;
 }
 
div.catalog-dash
 { font-size: 1.4em;
   font-weight: bold;
   color: #000;
   height: 1.1em;
   padding-right: 0.15em;
   line-height: 1.1em;
   float: left;
 } 
 
div.catalog-dash-selected
 { font-size: 1.4em;
   font-weight: bold;
   color: #d9dada;
   height: 1.1em;
   padding-right: 0.15em;
   line-height: 1.1em;
   float: left;
 } 
 
div.catalog-text
 { height: 1.7em;
   line-height: 1.7em;
   float: left;
 }

a.catalog-link
 { font-weight: bold;
   color: #000;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 }
 
a.catalog-link:hover
 { font-weight: bold;
   color: #000;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 }  
 
a.catalog-link-selected
 { font-weight: bold;
   color: #cbcbc9;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 }
 
a.catalog-link-selected:hover
 { font-weight: bold;
   color: #cbcbc9;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 } 
 
div.news
 { height: 1.9em;
   line-height: 1.9em;
   padding: 2.5em 2em 0 0;
   float: left;
 }
 
div.news-border
 { height: 1.7em;
   line-height: 1.7em;
   padding: 0 0.5em;
   border: 1px solid #fff;
   border-spacing: 0;
   border-collapse: collapse;
   float: left;
 } 
 
div.news-border-selected
 { height: 1.7em;
   line-height: 1.7em;
   padding: 0 0.5em;
   border: 1px solid #d9dada;
   border-spacing: 0;
   border-collapse: collapse;
   float: left;
 }

div.news-dash
 { font-size: 1.4em;
   font-weight: bold;
   color: #000;
   height: 1.1em;
   padding-right: 0.15em;
   line-height: 1.1em;
   float: left;
 }
 
div.news-dash-selected
 { font-size: 1.4em;
   font-weight: bold;
   color: #d9dada;
   height: 1.1em;
   padding-right: 0.15em;
   line-height: 1.1em;
   float: left;
 }
 
div.news-text
 { height: 1.7em;
   line-height: 1.7em;
   float: left;
 }  

a.news-link
 { font-weight: bold;
   color: #000;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 }
 
a.news-link:hover
 { font-weight: bold;
   color: #000;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 } 
 
a.news-link-selected
 { font-weight: bold;
   color: #cbcbc9;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 }
 
a.news-link-selected:hover
 { font-weight: bold;
   color: #cbcbc9;
   font-size: 1em;
   text-decoration: none;
   cursor: pointer;
 } 
 
.wrapper 
 { min-height: 100%;
	  height: auto !important;
	  height: 100%;
	  margin: 0 auto -65px; /* the bottom margin is the negative value of the footer's height */
 }
 
div.footer-wrapper, div.push 
 { height: 65px; } /* .push must be the same height as .footer-wrapper */
 
div.footer-border
 { height: 61px;
   border-bottom: 4px solid #7b7a79; 
 } 
 
div.footer
 { width: 605px;
   margin: 0 auto;
   padding: 0;
   text-align: left;
   height: 61px; 
   line-height: 61px;
   color: #acabab;
   font-size: 0.9em;
 }
 
div.content-box
 { width: 605px;
   margin: 0 auto;
   padding: 0;
   text-align: left;
 }
 
div.date
 { font-weight: bold;
   color: #000;
   font-size: 0.9em;
   padding-bottom: 0.5em;
 }
 
div.text
 { color: #616161;
   font-weight: normal;
   font-size: 0.9em;
   text-align: justify;
   padding-bottom: 0.8em;
 }
 
div.text ul
 { padding-left: 2em; }
 
div.arrow
 { position: relative; }
 
div.arrow img
 { position: absolute;
   right: -49px;
   top: -10px; 
 }
