/* big tablets to computers 1024-1200px */
@media only screen and (max-width: 1200px) {}


/* small tablets to big tablets 768-1023px */
@media only screen and (max-width: 1023px) {
    h1 {
        font-size: 200%;
        color: antiquewhite;
        letter-spacing: 1px;
        word-spacing: 5px;
    }

    .head-text-box {
        left: 6%;
    }
}

/* small phones to small tablets 481px -767px */
@media only screen and (max-width: 767px) {
    .headertext  {
        font-size: 115%;
        color: green;
        letter-spacing: 1px;
        word-spacing: 5px;
    }

    .head-text-box {
        left: 5%;
    }
}

/* small phones 0-480px */
@media only screen and (max-width: 480px) {
  .headertext {
        font-size: 90%;
        color: antiquewhite;
        letter-spacing: 1.5px;
        word-spacing: 4px;
		margin-left:55px;
		
    }


    .head-text-box {
        left: 10%;
    }
}

@media only print {
	
	table {
		background-color:white;
		width: 8.5in;
		font-size: 12pt;
	}
	h4 {
		text-align: center;
		font-size: 16pt;
	}
	.spacer {
		height:1px;
	}	
	table.dreport tr{
height: 1em;
}
}