
/* This started as a copy of the html css, and has been modified for xhtml.   */
/* with better CSS1 code too, as I learn the standard.                        */
/* Changes to date:                                                           */
/* 1. These comments added.                                                   */
/* 2. All names to lower case.                                                */
/* 3. Default properties set in the body.                                     */
/* 4. Font sizes increased, due to differences in handling by IE.             */

/* XML/XHTML RULES                                                            */
/* all names in lower case.                                                   */
/* tbody must be declared, where used.                                        */
/* CSS defines different conformance rules for HTML and XML documents;        */
/*   the HTML rules apply to XHTML documents delivered as HTML,               */
/*   and the XML rules apply to XHTML documents delivered as XML.             */
/*   See how the appearance differs.                                          */

/* HINTS AND TIPS
/* Default properties may conveniently be set in the <body> elemet            */
/* Multiple elements may be assigned a common set of properties               */
/* Class names may be re-used, via:  tag.class {attribute: value}             */
/* Specific nested combinations may be styled:  tag1 tag2 {attribute: value}  */
/* There is special first-letter and first-line stuff, e.g. for drop caps     */

body {
background-image: url(images/steelsky.png) ;
background-repeat: repeat ;
background-attachment: fixed ;
text-align: left ;
font-family: Verdana, Arial, Helvetica, Homerton, sans-serif ; 
font-size: medium ; 
font-weight: normal ; 
color: #000044 ;
}

a {
text-decoration: none;
}

a:link { 
color: #002288 ;
}

a:active { 
color: #00FFFF ;
}

a:visited { 
color: #005533 ;
}

h1, h2, h3 {
color: #FFFFFF ;
}

h1 { 
text-align: center ; 
font-weight: bold ; 
font-size: x-large ; 
}

h2 { 
text-align: center ; 
font-weight: normal ; 
font-size: large ; 
}

h3 { 
text-align: left ; 
font-weight: bold ; 
font-size: large ; 
}

p, li { 
color: #000044 ;
}

.center { 
text-align: center ;
}

.left { 
text-align: left ;
}

.right { 
text-align: right ;
}

.inline_links { 
text-align: center ;
font-size: small ; 
}

.smallprint { 
text-align: center ;
font-size: x-small ; 
}
