/*
 * Author:		D M Stone
 * Date:		April 22, 2009
 * Description: Imports global styles such as 'reset','display' & 'type'. Also intended for defining sitewide declarations.
 * File name: 	global.css
 * Version:		1
*/

/*
 * Always define @import rules at the beginning of the style sheet followed by @media types. 
 * Be thoughtful of import order. IE6 tends to use the last rules specified to override styles declared previously in the cascade.
*/

@import "reset.css"; /* Reset drops all XHTML elements native values to 0 in order to bring all browsers to a "level playing field". */
@import "shell.css"; /* Linfo Master template. */
@import "content.css"; /* Page specific styles. */
@import "messaging.css"; /* Styles various messaging across site.*/
@import "modals.css"; /* Popups */
@import "paging.css"; /* Pagination */
@import "plugins.css"; /* Imports styles and overrides for Thickbox & Freebase */


/* Site-wide declarations */
@media screen {
body {
	font:14px/20px "Trebuchet MS", Arial, Helvetica, sans-serif; color:#444;
}
img {
    font:11px/15px Verdana, Arial, Helvetica, sans-serif;
}
a {
	text-decoration:none; color:#08f;
}
a:hover {
	text-decoration:underline;
}
a:hover img {
    text-decoration:none;
}
.clear {
	clear:both;
}
.hidden { 
	display:none;
}
/* Facebook Connect */
.FB_ElementReady.fb_profile_pic_rendered {
    line-height:0px;
}
}
/* @media screen */

