/*	File: event.css			
										
FF CC 99 66 33 00	Lynda Weinman's 216 Web-safe Color Combinations
Black		= FFFFFF
White		= 000000
PowderBlue	= B0E0E6
Skyblue		= 87CEEB
Silver		= c0c0c0

Arial		is for Windows
Helvetica	is for Mac
sam-serif	is for all other systems

The id selector is used to specify a style for a single, unique element.
The id selector uses the id attribute of the HTML element, and is defined using the hash symbol "#"
The style rule below will be applied to the element with 
id="area1"


The class selector can be used by multiple elements.
The class selector uses the class attribute of the HTML element, and is defined using the period symbol "."
The style rule below will be applied to the element with 
class="pesudo"

*/
/* ------------------------------------------------------------
				Standard Code 
   ------------------------------------------------------------ */
 
 <style type ="text/css" media="all">
 
 /* ------------------------------------------------------------
                 CSS for Class selectors 
             CSS Code for Picture Display                                     
  ------------------------------------------------------------ */
.event				{
					width:  800px; 
					margin: 0 auto; 
					background: white; 
					margin-top:10px;
					}
.event A			{ 
					display:			block; 
					-moz-border-radius:	10px; 
					border-radius:		10px; 
					font-size:			16px; 
					font-weight:		bolder; 
					color:				#c30f18; 
					background-color:	#e8decc; 
					background-color:	#B0E0E6; 
					text-align:			center; 
					width:				173px; 
					width:				200px; 
					float:				left; 
					margin:				6px; 
					padding-top:		10px; 
					padding-bottom:		10px;
					}
.event A:hover 
					{ 
					color:				white ; 
					text-decoration:	none; 
					background-color:	#c30f18; 
					}
.event A IMG 
					{ 
					width:		160px; 
					height:		106px; 
					border:		  1px solid black;  
					}
.event A:hover IMG 
					width:		165px; 
					height:		106px; 
					border:		  1px solid white; 
					}
					
/* ------------------------------------------------------------
				End of CSS Code   
   ------------------------------------------------------------ */
   </style>
