@charset "utf-8";
/* reset browser styles */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
ol { 
	padding-left: 1.4em;
	list-style: decimal;
}
ul {
	padding-left: 1.4em;
	list-style: square;
}
/* end reset browser styles */

body {
	width: 800px;
	margin: 0 auto;	
	background-color: rgb(234,234,234);
        font-family: Arial, sans-serif;
        /*font-size: 70%;*/
}

h1 {
	font-size: 2em;
	font-family: Arial, sans-serif;
	color: rgb(0,0,0);
	font-weight: normal;
	border-bottom: dotted 2px rgba(0,0,0,.5);
        padding-bottom: .1em;	
	margin: .7em 0;
}

h2 {
	font-size: 1.5em;
	font-family: Arial, sans-serif;
	color: rgb(0,0,0);
	font-weight: normal;
	margin: .5em 0;
}
h3.red {
    color: red;
}

p {
  margin-bottom: .8em;
}

/*login form*/
.loginform {
  font-size: 1.2em;
  color: white;
  font-family: Arial, sans-serif;	
}
.loginform .label {
  display: inline-block;
  width: 10em;
  vertical-align: top;
  text-align: right;
  margin-right: 1em;
  font-weight: bold;
  color: rgba(0,0,0,.5);
}
.loginform input[type="submit"] {  
  margin-left: 11em;
  padding: .3em .6em;
  font-size: 1em;
  color: black;
  background: rgb(234,234,234);
  background: -webkit-linear-gradient(rgba(255,255,255,.5) 40%, rgba(255,255,255,1));
  background: -moz-linear-gradient(rgba(255,255,255,.5) 40%, rgba(255,255,255,1));
  background: -o-linear-gradient(rgba(255,255,255,.5) 40%, rgba(255,255,255,1));
  background: linear-gradient(rgba(255,255,255,.5) 40%, rgba(255,255,255,1));
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 4px white;
}
.loginform select {
    font-size: 1.2em;
}
.loginform input[type="text"], .loginform input[type="password"] {
    font-size: 1em;
    color: rgba(0,0,0,1);
    border-radius: 5px;
    border: none;
    background-color: rgba(255,255,255,.5);	
    box-shadow: inset 0 0 1em rgba(255,255,255,.75);
    width: 20em;
    padding: .3em;	
}
.loginform input[type="text"]:focus, .loginform input[type="password"]:focus {
    background-color: white;
    color: black;
}

/*menu*/
.nav, .subnav {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #414141;
  overflow: hidden;
}
.nav {
  border-left: 1px solid #414141;
}
.subnav {
  margin-top: .4em;
  border-left: 1px solid #000000;
}
.nav li, .subnav li{
  float: left;
  /*width: 8em;*/
}
.nav a, .subnav a{
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #414141;
  border-left: none;
  padding: .5em .3em .3em .5em;
  display: block;
}
.nav a{
  color: #000;
  background-color: #e6e6e6;
}
.subnav a{
  color: #000000;
  border: 1px solid #000000;
  border-left: none;
  background-color: #b3b3b3;
}
.nav a:hover {
  background-color: #FFFFFF;
  background-position: 3px 50%;
}
.subnav a:hover {
  background-color: #000000;
  background-position: 3px 50%;
  color: #FFFFFF;
}
.nav span {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #414141;
  border-left: none;
  padding: .5em .3em .3em .5em;
  display: block;
  background-color: #FFFFFF;
}

.subnav span {
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #000000;
  border-left: none;
  padding: .5em .3em .3em .5em;
  display: block;
  background-color: #000000;
}

/*table list*/
.tablelist {
  width: 90%;
  margin-top: 1em;
  border-collapse: collapse;
}
.tablelist caption {
  text-align: left;
  font-size: .85em;
  margin-bottom: 1em;
}
.tablelist td, .tablelist th {
  /*font-size: 1.1em;*/
  border-bottom: 1px solid #000000;
  padding: .2em .5em .1em .5em;
}
.tablelist th{
    text-align: left;
}
.tablelist tr:nth-of-type(even){
  background-color: #f4f4f4;
}
.tablelist tr:nth-of-type(odd){
  background-color: #e1e1e1;
}
.tablelist .level1 {
    font-size: .85em;
}
.tablelist .levelactive {
    font-weight: bold;
}
.buttonselect{
    background-color: #555555;
    border: none;
    color: white;
    padding: .3em .9em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: .8em;
    border-radius: 2px;
}
.submitbutton{
    margin-left: 16em;
}

/*table edit*/
.tableedit {
  width: 90%;
  margin-top: 1em;
  border-collapse: collapse;
}
.tableedit caption {
  text-align: left;
  font-size: .85em;
  margin-bottom: 1em;
}
.tableedit td, .tableedit th {
  /*font-size: 1.1em;*/
  border-bottom: 1px solid #000000;
  padding: .2em .2em .1em .2em;
}
.tableedit th{
    text-align: left;
}
.tableeditva{
    vertical-align: middle;
}
.tableedit img, .tableedit input {
    vertical-align: middle;
}
.label {
  display: inline-block;
  width: 15em;
  vertical-align: top;
  text-align: right;
  margin-right: 1em;
}

/*file-image bank, help*/
#wrapper div, iframe {
    float: left;
    margin: .5em;
}
.popup {
    width: 100%;
    padding: 1em;
}
.txt_bold {
    font-weight: bold;
}
/*site text*/
.sitetext {
    /*position:absolute; 
    margin: 0 auto; 
    z-index:1; 
    visibility:hidden;
    width: 50%;*/
}