/* CSS Document */

/*------------------------------------------
Trident Technical College - Online Catalog
version:	1.0
author:		Daniel Vice
email:		daniel.vice@tridenttech.edu
-------------------------------------------*/

/* Text
-------------------------------------------*/

article h1{
	/*Position Attributes*/
	/*Size Attributes*/
	/*Color Attributes*/
	/*Formatting Attributes*/
	padding:0;
	margin: 10px 0 10px 0;
	/*Type Attributes*/
	font-weight: bold;
    font-size: 110%;
	/*Other Attributes*/
	clear: both;
}

article h2{
	/*Position Attributes*/
	/*Size Attributes*/
	/*Color Attributes*/
	/*Formatting Attributes*/
	padding:0;
	margin: 10px 0 10px 0;
	/*Type Attributes*/
	font-weight: bold;
	font-size: 100%;
	/*Other Attributes*/
}

article ul, ol {
	/*Position Attributes*/
	/*Size Attributes*/
	/*Color Attributes*/
	/*Formatting Attributes*/
	margin: -7px 10px 0px 20px;
	/*Type Attributes*/
	/*Other Attributes*/
	list-style: none;
}

article ul li{
	/*Position Attributes*/
	/*Size Attributes*/
	/*Color Attributes*/
	/*Formatting Attributes*/
	margin: 4px;
	/*Type Attributes*/
	/*Other Attributes*/
}


/* Images
-------------------------------------------*/
article img {
		float: right;
		width: 150px;
		height: 150px;
		margin: 0px 20px 0px 20px;
}

/* ************ Break 1 for menu size ******************* */

@media screen and (max-width: 860px) {	
}

/* ************ Tablet  ******************* */
@media screen and (max-width: 715px) {
}

/* ************ Phone Styles ******************* */
@media screen and (max-width: 570px) {	
}

/* ************ Widescreen Styles ******************* */
@media screen and (min-width: 1516px) {
}

/* ************ Print Styles ******************* */
@media print {
	article img {
		display: none;
}
}


}

