﻿/*--------------------------------------------
Set styles for:
	-fonts
	-paragraph
	-captions
	-headers and subheaders

See WellesleyLiksStyles.css for styles of links
and their containing tables.
--------------------------------------------*/


/*--------------------------------------------
Define styles for the Message Table which contains the 
whole message.  See also code snippets for further formatting
of this table depending on the initial content.
NOTE:  Centering this table or any table does not work in the
usual fashion which is to put the table in a centered div.
--------------------------------------------*/

table.MessageTable
{
	width: 100%; 
	text-align: left; 
	padding-left: 4px; 
	padding-right: 6px;
}

/*--------------------------------------------
Common table cell styles
--------------------------------------------*/
td.center-top
{
	text-align: center;
	vertical-align: top;
}

td.center-middle
{
	text-align: center;
	vertical-align: middle;
}

td.center-bottom
{
	text-align: center;
	vertical-align: bottom;
}

td.left-top
{
	text-align: left;
	vertical-align: top;
}

td.left-middle
{
	text-align: left;
	vertical-align: middle;
}

td.left-bottom
{
	text-align: left;
	vertical-align: bottom;
}

td.right-top
{
	text-align: right;
	vertical-align: top;
}
td.right-middle
{
	text-align: right;
	vertical-align: middle;
}
td.right-bottom
{
	text-align: right;
	vertical-align: bottom;
}


/*--------------------------------------------
Override differing <p> attributes added by browsers.
--------------------------------------------*/
/* Basic paragraph, followed by subclasses.  */
p
{
	text-align: left;
	margin-top: 6px;
	margin-bottom: 12px;
}

p.center
{
	text-align: center;
}

p.indent
{
	padding-left: 25px;
	padding-right: 25px;
}
/*--------------------------------------------
Captions must go in <p>caption</p> in order to have specific 
margin above and below caption text.  The caption can
have only the alignment of the picture being capationed.
--------------------------------------------*/
p.caption-left
{
	font-size: small;	
	margin-top: 0px;
	margin-bottom: 8px;
}

p.caption-right
{
	font-size: small;
	text-align: right;	
	margin-top: 0px;
	margin-bottom: 8px;
}

p.caption-center
{
	font-size: small;
	text-align: center;	
	padding:0;
	margin-top: 3px;
	margin-bottom: 8px;
}

/*--------------------------------------------
Override default list element attributes to
make more spacing between elements.
--------------------------------------------*/
li
{
	padding-top:0px;
	margin-top:0px;
	padding-bottom: 10px;
	padding-right: 25px;
}


/*--------------------------------------------
Define styles for (h1)page title, (h2)page subtitle, 
and (h3)paragraph headings within page message.
--------------------------------------------*/
h1 
{	
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;
	font-size: 1.3em;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	text-transform: none;
	color: #120986;
	text-align: center;
	margin: 0px;
	margin-top: 5px;
	margin-bottom: 0px; 
	padding:0;
	line-height: 40px;	
	background-image: url('Images_Graphics/PageTitleBackground.jpg');
}

h2 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	color: #4313A4;
	text-align: center;
	margin: 0px;
	margin-top: 5px;
	margin-bottom: 15px; 
	padding:0;
}

h3 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	font-weight: bold;
	font-style: italic;
	font-variant: normal;
	text-transform: none;
	text-align: left;
	margin: 0px;
	margin-top: 5px;
	margin-bottom: 0px; 
	padding:0;
	color: black;
}


/*--------------------------------------------
Borders for images 
--------------------------------------------*/
img.narrowBlackBorder
{
	border: 1px black solid;
}

/*--------------------------------------------
Define styles for different text formats that apply
only to the selected text string.  
--------------------------------------------*/
.text_bold 
{
	font-weight: bold;
}

.text_large
{
	font-size: large;
}

.text_95pct
{
	font-size: .95em;
}

/* The next two are used in mini-reunion lists */
.text_miniName
{

}


.text_miniDate
{
	font-size: .90em;
	color: black;
}


.text_italic 
{
	font-style: italic;
}

.text_smallCaps
{
	font-variant:small-caps;
}

.text_underline
{
	text-decoration: underline;
}

.text_capAllLetters
{
	text-transform:capitalize;
}

.text_capFirstLetter
{
	text-transform:uppercase;
}

/* Color of main link text */
.text_colorViolet
{
	color: #4313A4;
}

.text_colorVioletBold
{
	color: #6D2AAC;
	font-weight: bold;
}

.text_colorRedVioletBold
{
	color: #6A2273;
	font-weight: bold;
}

.text_colorBlueVioletBold
{
	color: #5C41B7;
	font-weight: bold;
}
	
}


.text_normal					
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-weight:normal;
	font-style: normal;
	font-variant: normal;
	color: black;
	text-decoration: none;
	text-transform: none;
}

.text_indent_10px
{
	text-indent: 10px;	
}

.text_indent_20px
{
	text-indent: 20px;	
}


