﻿/****************************************************************************************************************************/
/****************************************************************************************************************************/
/* KAA-DEFAULTS.CSS :  STANDARD / DEFAULT TEXT STYLES                                                                       */
/*                                                                                                                          */
/****************************************************************************************************************************/
/****************************************************************************************************************************/

/****************************************************************************************************************************/
/****************************************************************************************************************************/
/* Remove all Margins and Padding, then set them explicitly for all elements                                                */
/****************************************************************************************************************************/

*	{
	margin: 0px;
	padding: 0px;
}

*.*	{
	margin: 0px;
	padding: 0px;
}

/* Standard paragraph */
p {
	margin: 10px 0px 10px 0px;
	font-family: Verdana, Tahoma, Sans-Serif;
	font-size: small;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-align: left;
}

/* Unordered List & Items */
ul {
	margin: 5px 0px 5px 0px;
}

ul li {
	margin: 5px 0px 5px 40px;
	font-family: Verdana, Tahoma, Sans-Serif;
	font-size: small;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-align: left;
}

/* Ordered List Items */
ol {
	margin: 5px 0px 5px 0px;
}

ol li {
	margin: 0px 0px 0px 40px;
	font-family: Verdana, Tahoma, Sans-Serif;
	font-size: small;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-align: left;
}

/* Table items */
table {
	padding: 0px 0px 0px 15px;
	font-family: Verdana, Tahoma, Sans-Serif;
	font-size: small;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
}

table caption {
	min-width: 400px;                           /* This is to force the caption to being wide enough on narrow tables */
	padding-top: 10px;
	font-size: medium;
	font-weight: bold;
	text-align: left;
}

table thead th {
	padding: 0px 5px 0px 5px;
	font-weight: bold;
	text-decoration: underline;
	text-align: left;
	vertical-align: top;
}

table tbody th {
	padding: 0px 5px 0px 5px;
	text-align: left;
	vertical-align: top;
}

table td {
	padding: 0px 5px 0px 5px;
	text-align: left;
	vertical-align: top;
}


/* Headings */
h1	{
	margin: 15px 0px 15px 0px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: x-large;
	font-weight: bold;
	font-style: normal;
	font-variant: small-caps;
	text-transform: capitalize;
	color: #800000;
	text-align: left;
	text-decoration: underline;
}

h2 {
	margin: 10px 0px 10px 0px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: large;
	font-weight: bold;
	font-style: normal;
	font-variant: normal;
	text-transform: capitalize;
	color: #000000;
	text-align: left;
	text-decoration: underline;
}

h3 {
	margin: 10px 0px 10px 0px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: medium;
	font-weight: bold;
	font-style: normal;
	font-variant: normal;
	text-transform: capitalize;
	color: #000000;
	text-align: left;
	text-decoration: underline;
}

h4 {
	margin: 10px 0px 10px 0px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: medium;
	font-weight: bold;
	font-style: normal;
	font-variant: normal;
	text-transform: capitalize;
	color: #000000;
	text-align: left;
}

/* Modifications for default hyperlink styles */
a:link {
	color: #0000FF;
	text-decoration: underline;
}

a:visited {
	color: #800080;
	text-decoration: underline;
}

a:hover {
	color: #800080;
	text-decoration: underline;
}

a:active {
	color: #800080;
	text-decoration: underline;
}

a:focus {
	outline: 1px dotted;
    outline-offset: 1px;
    -moz-outline-radius: 3px;
}

/* Show expandable acronyms */
acronym {
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	border-bottom-color: #808080;
}

/* Horizontal lines */
hr {
	margin: 5px 0px 5px 0px;
}

/* Blockquotes */
blockquote {
	margin-left: 0px;
}

blockquote p {
	quotes: "\201c" "\201d";
	font-style: italic;
	color: #800000;
}

blockquote p:first-of-type {
	text-indent: 0;
}

blockquote p::before {
	content: open-quote;
}

blockquote p::after {
	content: no-close-quote;
}

blockquote p:last-of-type::after {
	content: close-quote;
}

blockquote ul li{
	font-style: italic;
	color: #800000;
}

