/*
    Document   : stylo_contact
    Created on : 16.02.2008, 23:50:09
    Author     : Marek Chrenko
    Description: Main style for every page
*/

root {
    display: block;
   height:  400px;
}

.contactForm
{
  height: 254px
}

/*pevna sirka stranky + centrovanie*/
.fixWidth2
{
  width: 500px;
  position: relative;
  text-align: left;
  margin: auto;

  padding-top: 20px;
}

input
{
  color: rgb(131,134,113);
  font-size: 24px;
  font-family: Georgia, Arial, Verdana;
  width: 450px;

  margin-bottom: 10px;
}

input[type="submit"]
{
  width: 93px;
  background:#EEE;
  color: #6F6F6F;
  border: solid 1px rgb(131,134,113);
}

textarea
{
  color: rgb(131,134,113);
  font-size: 12px;
  font-family: Georgia, Arial, Verdana;
  width: 450px;
  word-wrap: break-word;

  margin-bottom: 10px;
}

.focusField
{
   background:white;
   color:#000;
   border:solid 1px rgb(120,128,27);
}

.idleField
{
   background:#EEE;
   color: #6F6F6F;
   border: solid 1px rgb(131,134,113);
}