/*
CSS useful web-links

http://www.w3schools.com/css/css_examples.asp
http://www.subcide.com/tutorials/csslayout/page10.aspx
http://www.w3.org/Style/Examples/011/firstcss.en.html
http://www.cssbasics.com/

*/
 
/*   
 okraje, odsadenie 
*/

html {
margin: 1px;
padding: 20px;
}

hr{
// ciara...
  color:brown; 
 // color:blue; 
 background-color:tan;
 width:100%;
// height:2px;
 height:1px;
}

body {
// background-color: #FFFFF0;
        background-color: white;
//font-family: Georgia, "Times New Roman", Times, serif;
 font-family: Arial, Verdana, sans-serif;
// font-family: Arial, serif;
 font-size: 13px;
//font-size: 10px;
color: #00008B;
margin: 20px;
text-align: left;
}

/* 
<span class="greenboldtext">sentence</span>
*/
.greenboldtext{
  font-size: small;
  color: #008080;
  font-weight: bold;
}

/* 
<div id="header_container">
Everything within my document is inside this division.
</div>
*/

#header_container{
// font-family: Arial, Verdana, Times, serif;
 font-family: Verdana, serif;
 font-size: 25px;
// background: #ffffff;
  background-color:#FFFF00;
 // background-color:yellow;
 color: #A52A2A;
// color: blue
//  width: 60%;
//margin: 20px;
 margin: auto;
 text-align: center;
 // padding: 20px;
 padding: 1% 1% 1% 1%;
 border: 1px solid #666;
// various cursors...
 //cursor: move;
 cursor: pointer;
 //cursor: text;
 //cursor: url;
 //cursor: e-resize;
}

/* idu linky...  */
a {
 font-family: Arial, Verdana, sans-serif;
 font-size: 16px;
 color: #483D8B;
 text-decoration: underline}

a:hover {
 font-family: Arial, Verdana, sans-serif;
 font-size: 16px;
 color: #A52A2A;
 background-color: #FAEBD7
 }

a:visited {
 font-family: Arial, Verdana, sans-serif;
 font-size: 16px;
 color: black;
 text-decoration: underline}

h1 { font-family: Arial, Verdana, sans-serif; font-size: 32px; color: #A52A2A }
h2 { font-family: Arial, Verdana, sans-serif; font-size: 24px; color: #A52A2A }

/*   */
#page-container {
width: 760px;
background: red;
}

#footer {
clear: both;
background: orange;
font-family: Tahoma, Arial, Helvetica, Sans-serif;
font-size: 10px;
height: 66px;
}

#footer a {
color: #c9c9c9;
text-decoration: none;
}

#footer a:hover {
color: #db6d16;
}


.hidden {
display: none;
}

pm
 { // some paragraph
font: italic bold 12pt/14pt Times, serif }


/*  styl pre poznamy pod ciarou..  */
hs {
//font-family: Arial, Verdana, sans-serif;
font-family: Georgia, "Times New Roman", Times, sans-serif;
//font-size: 16px; 
//font-size: 12px; 
color: #A52A2A
 }

table {
font-family: Arial, Verdana, sans-serif;
font-size: 18px;
color: #00008B;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}

/*
 <span class="italic">This text is italic</span>
*/
.italic{
  font-style: italic;
}

.note {
font-family: Arial, Verdana, sans-serif;
font-size: 14px;
color: purple;
font-weight: bold;
} 
