/* Start of CMSMS style sheet 'typography' */
/*
Set initial font styles
*/
body {
   font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", verdana, geneva, sans-serif;
   font-size: 75.1%;
   line-height: 1.9em;
text-align: justified;
color: #333333;

}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}
/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #999999; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #999999;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   color: #ed0e69;
   text-decoration: underline;

}






div#footer p {
   font-size: 9px;
   padding: 1em;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 1em;
line-height: 1.4em;
text-transform: uppercase;
letter-spacing: 0.1em;
}

div#footer p a {
   font-size: 8px;
   color: #999999; /* needed becouse footer link would be same color as background otherwise */
}

div#jack  {
width: 850px
   padding: 1em;      /* some air for footer */
   text-align: center; /* centered text */
   margin-top: 6em;
line-height: 1.4em;
text-transform: uppercase;
letter-spacing: 0.1em;
   text-align: center; /* centered text */
}

div#jack p {
   font-size: 7px;
   padding: 1em;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 1em;
line-height: 1.4em;
text-transform: uppercase;
letter-spacing: 0.1em;
   color: #999999; /* needed becouse footer link would be same color as background otherwise */
}

div#jack p a {
   font-size: 7px;
   color: #999999; /* needed becouse footer link would be same color as background otherwise */
}






/********************
CONTENT STYLING
*********************/
div#content {
   margin-top: 1em;
}

/* HEADINGS */


h3 a {
   color: #999999; 
   font-size: 0.7em;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 0.3em;
 margin-bottom: 1em;
}


h3 {
   color: #333333b; 
   font-size: 0.9em; 

	font-weight: bold;	
text-transform: uppercase;

	letter-spacing: 0.3em;
text-transform: uppercase;
border-top: 1px dotted #cccccc; 
border-bottom: 0px dotted #cccccc; 
padding-top: 5px;
padding-bottom: 5px;
text-align: left;

}

h2 {
border-top: 1px dotted #cccccc; 
   color: #333333;
   font-size: 1.2em;
text-transform: uppercase;
font-weight: bold;
   line-height: 1em;
margin-bottom: 1em;
letter-spacing: 0.2em;
	font-weight: normal;	
margin-bottom: 1em;
padding-top: 1em;


}

div#C2 h1 {
   color: #666666;
   text-indent: 20px;
   font-size: 1.4em;
text-transform: uppercase;
font-weight: bold;
   line-height: 1em;
letter-spacing: 0.2em;
	font-weight: normal;	
width: 100%;
background: #000000 url(uploads/images/callnow.gif) no-repeat 10px 0;
padding-top: 5px;
padding-bottom: 5px;

}


div#content h1 {
   color: #666666;
   text-indent: 0px;
   font-size: 1.4em;
text-transform: uppercase;
font-weight: bold;
   line-height: 1em;
letter-spacing: 0.2em;
	font-weight: normal;	
width: 100%;
margin-bottom: 20px;

}

div#C2 {
   	

}








div#chead h1 {
   color: #a3a3a3; 
   font-size: 2em; 
width: 900px;
	font-weight: normal;	
text-transform: uppercase;
	letter-spacing: 0.1em;

}



div#content h4 {
        color: #a3a3a3; 
   font-size: 0.8em; 
width: 900px;
	font-weight: normal;	
text-transform: uppercase;
width: 100%;
	letter-spacing: 0.3em;
text-transform: uppercase;
border-top: 1px dotted #cccccc; 
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px dotted #cccccc; 
text-align: center;
margin-bottom: 1.9em;
}

div#content h5 {
   font-size: 0.8em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
text-transform: uppercase;
	font-weight: normal;	
	letter-spacing: 0.1em;
margin-bottom: 1.9em;
}
h6 {
   font-size: 1em;
   margin: 0 0 0.25em 0;
	text-transform: uppercase;
}
/* END HEADINGS */

/* TEXT */
div#main p{
   font-size: 12px;
   margin: 0 0 1.9em 0;  /* some air around p elements */
   padding: 0;
color: #333333;
text-align: justify;

}
div#S2 p{
   margin: 0 0 1.9em 0;  /* some air around p elements */
   padding: 0;
color: #999999;
text-align: justify;

}

div#Sidebar p{
   margin: 0 0 1.9em 0;  /* some air around p elements */
   padding: 0;
color: #999999;
text-align: justify;

}

p {
   font-size: 0.8em;
   margin: 0 0 1.9em 0;  /* some air around p elements */
   padding: 0;
color: #666666;
}


blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}



.navTalk{
	margin-bottom:0.4em;
	background-color: #FFFFFF;
	background-repeat: repeat-y;
	background-position: right top;
}
.navTalk li{
	color:#0054A6;
	background-image: url(uploads/images/talk1.gif);
	background-repeat: no-repeat;
	margin-top: 1px;
	margin-bottom: 20px;
	height: 40px;

}
.navTalk li a:link, .navTalk li a:visited, .navTalk li a:active{
	display:block;
	width:100%;
	color:#cc0000;
	font-weight:bold;
		text-indent: 40px;
			padding-top: 4px;


}
.navTalk li a:hover{
	color:#F2F2F2;
	background-image: url(uploads/images/talk2.gif);
	background-repeat: no-repeat;
	height: 40px;


}
.navTalk li a span{
	display:block;
	padding:6px 0px;
}
.navTalkTitle{
	display:none;
}

.navTalk, .navTalk li{
	margin:0;
	padding:0;
	list-style:none;

}
/* END LISTS */
/* End of 'typography' */

