﻿/* Initialize.css */
/* Always first style rule file run for website */
/* Undo all standard browser CSS rules*/
/* Should be loaded as first CSS file */

/* Normalize margins & padding ² font size on ALL elements*/
*	{ margin: 0; padding: 0; font: 100.01%/130% Verdana, Helvetica, sans-serif;}

/* Normalize font-style & font-weight to normal */
address, caption, cite, code, dfn em, strong, th, var
	{
		font-style: normal;
		font-weight: normal; 
	}
	
.description  /*For formatting the description of the content query web part */
	{
	font: 100.01%/130% Verdana, Helvetica, sans-serif;
	}
/*.MoreMain
 	{
	font: 100.01%/130% Verdana, Helvetica, sans-serif;
  	}*/

/* Normalize font size for headers*/
h1, h2, h3, h4, h5, h6, p, span
	{
		font: 100.01%/130% Verdana, Helvetica, sans-serif;
	}

/* Removes list style from lists*/
ol
	{
		list-style-position:inside;
		list-style-type:decimal;
		
	}
ul
	{
		list-style-position:inside;
		list-style-type:disc;
		
	}


/* Remove borderspace from tables*/
table
	{
		border-collapse:collapse;
		border-spacing: 0;
	}

/* Set Divs to Overflow Hidden (include hack rule for IE6)*/
div {overflow:hidden;}
	
/* Removes border from images & fieldsets */
img, fieldset
	{
		border: 0;
	}
	
/* Remove quotation marks from q*/
q:before, q:after
	{
		content: '';
	}

/* left align text in table header & caption*/
th, caption
	{
		text-align: left;
	}

	

	