/* 
* File:  style.css
*
* Description:  Style Sheet for Regina Dental Group
*
* Author:  Camilo Rostoker (camilo@scottsdale.ca)
*/


/* assigns a default font/size to all text */
body, p, td, li {
	font-family: verdana, helvetica, arial;
	font-size: 85%
}
h1 {
	font-size: 14pt;
	color: navy;
}
h2 {
	font-size: 12pt;
	color: navy;
}
h3 { 
	font-size: 11pt;
	color: navy;
}
input, select, textarea {
	border: 2px solid navy;
	background-color: #cccccc;
	color: navy;
	font-size: 12pt;
	font-weight: bold; 
}


/* hyperlinks */
a {
	color: blue;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: red;
	text-decoration: underline;
}
a:visited {
	color: blue;
	text-decoration: none;
}
		
.footer {
	color: white;
	font-weight: bold;
	font-size: 75%;
}
a.footerLink {
	color: white;
	text-decoration: none;
}
a.footerLink:hover {
	color: yellow;
	text-decoration: underline;
}


