/*-- nastaveni fontu pro cely dokument --*/
body, table {
  font-family: Verdana, Arial, Helvetica;
  font-size: 10pt;
  margin: 0;
}

/*-------------------------- panel se hlavni oblasti aplikace  ---------------*/
#main_area {
  padding: 5 10 0 10;
  width: 900px;
  position: relative;
  left: 50%;
  margin-left: -450px; /* half the width of the div */
}

/*-------------------------- Hlavni menu a polozky v nem ---------------------*/
#main_menu {
  position: relative;
  padding: 5 10 0 10;
  width: 900px;
  left: 50%;
  margin-left: -450px; /* half the width of the div */
}

div.menu_logo {
  position: absolute;
  display: inline;
}


div.menu_item_pn {
  position: absolute;
  margin-left: 10px;
  margin-top: 63px;
  display: inline;
}

div.menu_item_about {
  position: absolute;
  margin-left: 200px;
  margin-top: 63px;
  display: inline;
}

div.menu_item_contact {
  position: absolute;
  margin-left: 680px;
  margin-top: 63px;
  display: inline;
}

/*-- tabulka s poli pro prihlaseni do aplikace  --*/
table.loginFormTable tr td {
  border: 0;
}

/*-- nadpis stranky --*/
div.page_title {
  font-size: 18pt;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}

/*-------------------------- Tabulka - seznam --------------------------------*/
/*-- styl pro obecne  tabulky --*/
table.list{
  border-collapse:	collapse;
}

/*-- styl pro bunky obecnych tabulek  --*/
table.list tr td {
  padding: 5px;
  spacing: 0px;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

/*-- hlavickova radka obecne tabulky - styl bunek  --*/
table.list tr.header td {
  background-color: black;
  font-weight: bold;
  color: white;
}

/*-------------------------- Tabulka - pole formulare ------------------------*/
table.form {
  border-collapse: collapse;
}

table.form tr td.label {
  text-align: right;
  padding-right: 10px;
}

table.form tr.separator {
  height: 20px;
}

input.required {
  border: 1px solid  red;
  padding: 1px;
}

/*-------------------------- Tabulka - prehled kurzu -------------------------*/
table.courses {
  border: 1px solid #CCCCCC;
  width: 850px;
  border-collapse: collapse;
}

table.courses tr td {
  padding: 5px;
  border: 1px solid #CCCCFF;
}

table.courses tr.header {
  background-color: #000088;
  color: white;
  font-weight: bold;
}

/*-------------------------- Zobrazeni zprav ---------------------------------*/
div.messages {
  border: 1px solid black;
  border-style: dashed;
  padding-left: 10px;
  padding-right: 10px;
}

/*-- text zobrazene zpravy v ramci bloku (chybovych) zprav  --*/
div.messages span {
  margin-left: 10px;
  margin-right: 10px;
}

/*-- styl pro chybovou zpravu --*/
div.messages span.message_error {
  color: #FF0000;
  font-weight: bold;
 }


/*-------------------------- Obecne - doplnky atd. ---------------------------*/
div.separator {
  background-color: #000088;
  width: 100%;
  height: 1px;
}

img.link {
  border: 0;
}

