/* Style sheet for Keyboard */

/* Establish page body font */

body {
font-family: "Verdana", "Kalimati", sans-serif;
}

/* Page layout and boarders */

/* By object type */

body {
background-color: gray;
}

li {
margin-top: 15px;
margin-bottom: 15px;
}


/* By ID */

#all {
background-color: white;
width: 800px;   /* Note: standard is 640 or 800 */
margin-left: auto;
margin-right: auto;
padding: 20px;
}

#ack {
margin: 20px;
border: 2px solid blue;
padding-left: 6px;
padding-right: 6px;
}

#header {
margin-bottom: 5px;
border: solid black 2px;
text-align: center;
}

#main-header {
font-size: 300%;
color: #408040;   /* greenish */
}

#sub-header {
font-size: 150%;
color: #A04040;   /* reddish */
}

#update {
margin-top: 5px;
border-top: 1px solid black;
}

#footer {
clear: both;
margin-top: 5px;
border-top: 1px solid black;
}

/* by class */

.warning-text {
font-size: 110%;
font-weight: bold;
}

.disclaimer {
font-weight: bold;
font-style: italic;
}

.center {
text-align: center;
}

.italic {
font-style: italic;
}

.underline {
text-decoration: underline;
}

.indent {
text-indent: 40px;
}

.pink {
background-color: #FFF0F0;
}

.lt-grey {
background-color: #E0E0E0;
}
