﻿
/*
 * Type styles
 */
    
    a {
    	color: #709483;
    	text-decoration: underline;
    }
    
    body,
    input,
    select {
        font-family: "Andale Mono", "Lucida Console", "Courier New", monospace;
        font-size: 12px;
        line-height: 14px;
        color: #252525;
    }
    
    p {
    	margin: 0 0 1em;
    }
    
		p:last-child {
    		margin: 0;
		}
    
    /* General */
    
    .largeText {
    	font-size: 13px;
        font-family: Helvetica, Arial, sans-Sserif;
    }
     
    .whiteText {
    	color: #FFF !important;
    }
    
    .grayText {
    	color: #BCB9AE !important;
    }    
    
    .lightGrayText {
    	color: #D7DEDA !important;
    }
    
    .mediumGrayText {
    	color: #757575 !important;
    }
    
    .darkGrayText {
    	color: #252525 !important;
    }
    
	.greenText {
   		color: #799C6E !important;
	}
	
	.redText {
		color: #AB3838 !important;
	}
	
	.requiredText,
	.errorText {
		color: #EB0000 !important;
	}
	
	/* Buttons */
	
	.button {
		margin-right: 6px;
		padding: 2px 4px;
		background-color: #FFF;
		font-weight: normal;
		color: #252525;
	}
	
		.form .button {
			background-color: #799C6E;
			color: #FFF;
		}
		
		.button:hover {
			background-color: #252525 !important;
			color: #FFFFFF !important;
		}
	
		a.button {
			display: inline-block;
			text-decoration: none;
		}
	
		a.button.link {
			margin-right: 4px;
			background: none;
			color: #757575;
			text-decoration: underline;
		}
	
			.button.link:hover {
				background: none !important;
				color: #709483 !important;
			}
    
    /* Menu items */
    
    a.menuItem,
    a.filterLink {
    	color: #252525;
    	text-decoration: none;
    }
    
		div#header a.menuItem {
    		color: #BCB9AE;
		}
    
		a.menuItem:hover,
		a.filterLink:hover,
		a.menuItem.current,
		a.filterLink.current {
    		color: #000;
    		text-decoration: underline;
		}
    
			div#header a.menuItem:hover,
			div#header a.menuItem.current {
    			color: #FFF;
    			text-decoration: underline;
			}