/*
 * /lib/css/webpage.css
 * Last modified: 2/04/10
 * Created:       1/08/10
 * (c) 2010 by Stephen A. Ness
 * Simple CSS for nesssoftware.com webpages.
 */

/*
 * Layout.
 * #footer center column #ft_c must follow #ft_l and #ft_r in the source.
 */
html      { padding: 0; margin: 0; }
body      { width:  96%; position: relative; margin: 0 auto; min-width: 800px; padding: 20px; margin: 0; }
hr        { width: 100%; clear: both; }
div       { border: 1px; }

#header,#footer { width: 100%; padding: 0; margin: 0; clear: both; }
#ft_l    { float: left;  }
#ft_c    { width: 200px; margin-left: auto; margin-right: auto; }
#ft_r    { float: right; text-align: right; }

/* Fonts: no fonts specified for now. */

/*
 * Colors.
 *  Page body: blue on aqua background.
 *  IE8 mishandles the hr color, rendering the hr in white.  [Am I missing something?]
 */
a:link,a:visited,a:active,img:visited { color: navy; border-color: olive; }
a:hover { color: orange; border-color: olive; }
body    { color: blue; background-color: aqua; }
hr      { color: blue; }

