/* *****************************************************************************************

Style.css - This file contains the overall global styles as well as layout grid for the generic 
template of the site. Additional CSS is to be inherited on top of this for indiviual sub 
template specifics such as homepage, or articles, etc. 

I. Fonts
   i. Vector Font: Vernana, Arial 
   ii. Raster Fonts: 
      a. titles: S8p1nShAvan; 28 pt (75 horiz kerning)
      b. subtitle: Helvetica Neue; 18 pt (0 horiz kerning)
      c. button: Helvetica Neue; 18pt

II. Color Pallette
	
  Dark Pink: DA086B
  Pink Gray: E6DCD0
  Light Gray: DDD
  Gray: #828282
  Green: E8F6BC
   
***************************************************************************************** */


/* Base Tag Types */
html,body,form,table,td,th,div,span,p,h1,h2,h3,select,input,textarea,legend{
	color:#5A5A5A;
	font-size:11px;
	font-family:Verdana,Arial;
}

h3{
	color:#DA086B;
	font-weight:bold;
	margin-top:10px;
	margin-bottom:5px;
	padding-bottom:0px;
}



strong,label{font-weight:bold;}

fieldset{
	margin-top:10px;
	margin-bottom:10px;
}

html,body{color:#5A5A5A} 

table,td{padding:0px;vertical-align:top}

p,br {clear:both;}

/* Link Styles*/
a{color:#5A5A5A;text-decoration:underline}
a:hover{text-decoration:none}
a.white{color:#FFF;text-decoration:underline}
a.white:hover{text-decoration:none}
a.red{color:#C10000;text-decoration:underline}
a.red:hover{text-decoration:none}
a.green{color:#94AA00;text-decoration:underline}
a.green:hover{text-decoration:none}
a.none{text-decoration:none}
a.none:hover{text-decoration:underline}


/* Font Colors */
.whitetext{color:#FFF}


/* Backgound Colors */
.whitearea{background-color:#FFF}
.grayarea{background-color:#6F6F6F}


/* Font Optional Properties */
.bold{font-weight:bold}
.small{font-size:9px}
.big{font-size:16px}
.highlight{color:#f00}
.capitalize{text-transform:capitalize}
.uppercase{text-transform:uppercase}
.lowercase{text-transform:lowercase}

.title{
	color:#5A5A5A;
	text-decoration:none;
	font-weight:bold;
	text-transform:uppercase;
}

.alert, #alert {font-weight:bold;color:#C10000}


