/* Working Project Code: Main CSS File Included in on each page*/

/*
CSS like this would set the line height for all of your header tags:

h1, h2, h3, h4, h5, h6{
  line-height: 30px; 
}
Or this would set top and bottom margin's for all headers:
*/


* {
    font-family: Arial, "Times New Roman", Times, sans-serif;
  }
  
h1, h2, h3, h4, h5, h6{
  margin-top:3px;
  margin-bottom:0px;
}


a:link {color: blue;} /* sets normal link color */
a:visited {color:blue;} /* sets visited link color */
a:active {color: blue;} /* sets active link color */

.centerblue {
  color: blue;
  text-align: center;
}
h1 {
  color: blue;
  text-align: center;
}
.centerdivold {
  width: 499px;
  margin-left: auto;
  margin-right: auto;
  color: red;
}
.centerdivold2{
  margin: auto;
  width: 50%;
  color: red;
}
.center_only {
	text-align: center;
}

.center_text_red {
text-align: center;
color: red;
}
.center_text_blue {
text-align: center;
color: blue;
}
.center_text {
text-align: center;
}

.center_strong_text {
text-align: center;
color: red;
font-weight: strong;
}

.center_bold_text {
text-align: center;
color: red;
font-weight: bold;
}
/* change name of below to center_green*/
.center_div_red {
text-align: center;
color: red;
}

.testclass {
  font-weight: bold;
  font-size: 400%;
  color: #33cc00;
  text-transform: capitalize;
}
.boldclass{
	font-weight: bold
}
.normaltext{
font-family: arial;
color: green;
}

.indentP{
font-family: arial;
color: green;
text-indent: 20px;
}

img.one {
	display: block;
	margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 60%;
}

.td_align_tip{
	    vertical-align: bottom;
}