@charset "utf-8";
/* CSS Document */
/* -----------------------------------------------------------------------------------------------------
filename	: /_css/typography.css
purpose		: Typography
version		: 1.01; 8 July 2010
copyright	: n/a
author		: msgreen
								
Default typography for UAA Justice Center website.
----------------------------------------------------------------------------------------------------- */

/* TYPOGRAPHY */

/* Set basic size for em at 16 pixels (standard "medium" text size for most browsers). */
body, textarea, input {
	font-size: 100%; /* 16px = 1em */
	color: #000;
	font-weight: normal;
}
/* Bodytext for JC homepage is defined in uaajc-global.css to match UAA CMS. But other pages will use these. */
body {
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 140%;
}

/* Headings
-------------------------------------------------------------- */

/* Header fonts for main JC index pages are defined in uaajc-global.css to match UAA CMS. But other pages will use these. */
h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-weight: normal;
	line-height: 140%;
}
/* STYLE.  All are Roman except h4 and h6 are italic */
h4, h6 { font-style: italic; }

/* ALIGNMENT. h1 and h2 centered; all others left-aligned by default. */
h1, h2 {
	text-align: center;
}

/* SIZE. UAA CMS used point sized, but here using ems, with 1 em = 16px. */
h1 { font-size: 1.5em; } /* 16 x 1.5 = 24px */
h2 { font-size: 1.25em; } /* 16 x 1.25 = 20px */
h3 { font-size: 1.125em; }  /* 16 x 1.125 = 18px */
h4, h5, h6 { font-size: 1em; }  /* 16px */

/*MARGIN-BOTTOM. All the same for now. Only h1 and h2 are often used. */
h1, h2, h3, h4, h5, h6 {
	margin-top: 1em;
	margin-bottom: 1em;
}

/* Text elements
-------------------------------------------------------------- */

p {
    margin-bottom: 1em;
}
.blockp {
    margin-bottom: 1em !important;
	text-indent: 0 !important;
}
ul {
	margin: 0 0 13px 15px;
	list-style-position: outside;
	list-style-type: disc;
}
ol {
	margin-left: 0 0 13px 20px;
	list-style-position: outside;
	list-style-type: decimal;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
	margin: 0;
}
dl	{
    margin: 0 1.5em;
}
dt {
    font-weight: bold;
}
dd {
	margin-bottom: 1em;
}
strong {
	font-weight: bold;
}
cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 4em;
}
pre {
	font: 11px Monaco, monospace;
	line-height: 18px;
	margin-bottom: 1em;
}
code {
	font: 11px Monaco, monospace;
}
abbr, acronym {
  border-bottom: 1px dotted #333;
  cursor: help;
}
ins {
	text-decoration: none;
}
sup, sub {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	position: relative;	
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}