﻿/***********************************************************************************************************
-----Filename: TextStyles.css

-----Purpose:  This file should contain ONLY styles that determine the look and feel of text elements
               inside the application.
***********************************************************************************************************/

/*Default styles*******************************************************************************************/
.ContentDefaultStyling
{
    font-family: Arial;
    font-size: 12px;
    color: #000000;
}

/*Default Bullets*/
.ContentDefaultStyling ul li
{
    list-style-type: square;
}
.ContentDefaultStyling ol li
{
    padding: 2px 0 2px 0;
}

/*Default Links*/
.ContentDefaultStyling a
{
    font-family: arial;
    font-size: 12px;
    color: #00A0C6;
    font-weight: bold;
    text-decoration: none;
}
/*********************************************************************************************************/

/*Specific content styles*********************************************************************************/
.ChapterHeader
{
    font-size: 24px;
    color: #000000;
    font-family: Georgia;
    letter-spacing: -.05em;
	font-weight: normal;
	padding-bottom:0px;
	padding-top:0px;
	margin-bottom:0px;
	margin-top:0px;
}

h1,
.h1
{
    font-size: 24px;
    color: #00A0C6;
    font-family: Georgia;
    font-weight:normal;
    letter-spacing: -.05em;
	font-weight: normal;
	padding-bottom:0px;
	padding-top:0px;
	margin-bottom:0px;
	margin-top:0px;
}

h2,
.h2
{
    font-size: 24px;
    color: #000000;
    font-family: Georgia;
    letter-spacing: -.05em;
	font-weight: normal;
	padding-bottom:0px;
	padding-top:0px;
	margin-bottom:0px;
	margin-top:0px;
}

h3,
.h3
{
    font-size: 18px;
    color: #000000;
    font-family: Georgia;
    letter-spacing: -.05em;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

h4,
.h4
{
    font-size: 18px;
    color: #00A0C6;
    font-family: Georgia;
    margin:0px !important;
    letter-spacing: -.05em;
	font-weight:normal;
	padding-bottom:0px;
	padding-top:0px;
	margin-bottom:0px;
	margin-top:0px;
}

.Prices {
	font-family: Arial;
	font-size: 16px;
	color: #000000;
}

/*Paragraphs*/
.Paragraph1, 
.Paragraph2, 
.Paragraph1Serif, 
.Paragraph2Serif {
	margin-top: 0px;
	padding-top: 0px;
	font-size: 12px;
}
.Paragraph1, 
.Paragraph2
{
	font-family: Arial;
}

.Paragraph1Serif, 
.Paragraph2Serif 
{
	font-family: Georgia;
}

.Paragraph1, 
.Paragraph1Serif
{
	color: #000000;
}

.Paragraph2, 
.Paragraph2Serif{
	color: #666666;
}



/*Standard text colors*/
.Green {
	color: #7fc31c;
}
.White {
	color: #ffffff;
}
.Blue {
	color: #00a0c6;
}


/*Special links*/
a.Link1 {
	color: #7fc31c;
	font-family: Arial;
	font-weight: bold;
	text-decoration: none;
}

a.Link2 {
	color: #00a0c6;
	font-family: Arial;
	font-weight: bold;
	text-decoration: none;
}

a.Link2:hover, 
a.Link1:hover {
	text-decoration: underline;
}
a.Orange
{
	color: #FF7F00;
}

/*Links for Next, Previous content navigation*/
a.previous
{
    font-family: georgia;
    font-size: 18px;
    color: #5e7c8a;
    text-decoration: none;
}
a.previous:hover
{
    text-decoration: underline;
}


a.continue
{
    font-family: georgia;
    font-weight: bold;
    font-size: 18px;
    color: #00a0c6;
    text-decoration: none;
}
a.continue:hover
{
    text-decoration: underline;
}


a.alt:link
{
    font-family: georgia;
    font-size: 14px;
    color: #99dd00;
    text-decoration: none;
}
a.alt:hover
{
    text-decoration: underline;
}
/*********************************************************************************************************/

