/* 
=======================================================
	base.css 
	This is the basic stylesheet for normal screen usage.
	Note: Only web safe colors are used.
=======================================================
*/

/*
=======================================================
    Clear out defaults and inconsistancies amoung browsers.
	 Derived from example at: 
	 	http://tantek.com/log/2004/undohtml.css
=======================================================
*/

html, body, 
h1, h2, h3, h4, h5, h6, 
p, 
ol, ul, li,
pre, form, blockquote, fieldset, input {
	padding:	0;
	margin:	0;
}

h1, h2, h3, h4, h5, h6, pre, code {
	font-size: 1em;
}

a,:link,:visited  {
	text-decoration:	none;
}

a img, :link img,:visited img {
	border:	none;
}

ul,ol {
	list-style:	none;
}

address { 
	font-style:	normal;
	}

table {
	border: 						none;
}


p,
td,
th {
  font-size:               small;
  font-family:					Verdana, Geneva, Arial, Helvetica, sans-serif;
  color:						   #000000;
  text-decoration:		   none;
}

/*
=======================================================
    Basic layout and defaults
=======================================================
*/


/* Special helper classes */
.hide {
  display:          none;
  }  
.noBorder {
	border:				none;
}
.noPadding {
	padding:				0px;
}
.noMargin {
	margin:				0px;
}

/* Basic defaults */

html,
body {
  text-align:             center;
  font-family:            Verdana, Arial, Helvetica, sans-serif;
  font-size:              1em;
  margin:                 0;
  padding:                0;
  /* 
  background-color:       white;
  background-image:       url(../img/Body.jpg); 
  background-repeat:      repeat-y;
  background-position:    50%;
  */
  }


/* Basic Fonts and Text Sizes*/
h1 {font-size:  xx-large;}  
h2 {font-size:  x-large;}  
h3 {font-size:  large;}  
h4 {font-size:  medium;}  
h5 {font-size:  small;}  
h6 {font-size:  x-small;}  

  
/* Basic Colors - All websafe */

html,body, a.noLink
{
	color:					#000000;
	/*
	background-color:		#ffffff;
	*/
}

h1, h2, h3, h4, h5, h6 {
  color:            #330000;
  }

.breakBefore  {
}  
  

/*
========================================
   Links
========================================
*/
	
    a:active  {
        text-decoration: none;
        color: #cc0000;
        }
    a:link     {
        text-decoration: none;
        color: #000066;
        }
    a:visited  {
        text-decoration: none;
        color: #000066;
        }
    a:hover {
        text-decoration: none;
        /* font-weight: bold; */
        color: #cc3333;
        }

		
img {
	border:				1px solid #000000;
}  

a img,
a:link img,
a:visited img{
	border:				1px solid #660000;
}  

a         img.noBorder,
a:link    img.noBorder
a:visited img.noBorder {
	border:          1px none transparent;
}

a:hover img,
a:active img {
	border:				1px solid #990000;
}  

a.noLink
{
   border:           none;	
}


/*
==========================================
  Full Page
==========================================
*/

.fullPage {
  /*
  width:             750px;
  margin:            15px auto;
  background:        #fff;
  */
  position:          relative;
  text-align:        left;
  height:            100%;
  }

		
/*
========================================
   Footer
========================================
*/
.footer {
  position:         relative;
  left:             0;
  top:              25px;
  clear:            both;
  height:           75px;
  min-height:       75px;
  width:            750px;
  margin:           20px auto;
  padding:          20px;
  color:            #640;
  /*
  background:       #fff;
  */
  text-align:       center;
  
  }

.footer {
  font-size:        xx-small;
  padding:          5px 0 15px 0;
  margin:           0 auto ;
  border-top:       1px solid #000000;
  }
  
.footer .modifyDate {
  margin:            0.0em auto;
  font-family:       sans-serif;
  font-style:        italic;
  text-align:        center;
  color:             #666666;
  }
  
.footer .copyright{
  margin:            0.0em auto;
  font-family:       sans-serif;
  text-align:        center;
  color:             #990000;
  } 
  
.modifyDate {color: red;}
.copyright  {color: blue;}
