@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
	/*
	//  Most browsers default to "overflow: auto;" meaning they will add scrollbars if necessary.  
	//  When you go from a short page to one that is longer than the browser window, scrollbars are added, effectively changing the browser window size by about 15px.  
	//  Everything is still centered, but it appears to "shift" because the window is resized.
	//  To correct this, I added the following line:
	*/
	overflow: scroll !important;
	/*
	// This forces the scrollbars to be added to every page regardless of size, eliminating the resizing problem.
	// "!important;" instructs the browser to override any conflicting body {overflow} settings that may be in other existing or future stylesheets, but you should still remove such settings if you know of them.
	// Make sure every page on your site links to this stylesheet.
	// I chose this stylesheet because it seemed that all your pages already reference it, but this fix could be placed in any stylesheet, or even in its own.
	//  Hope this helps!  If you have any further questions or problems, please feel free to contact me!
	//  Adrian Testa-Avila
	// adrian@custom-anything.com
	*/
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
