﻿/*
	Team Project Prototype Site
	Author:	Jay W
	Date:	April 15, 2015
	
	
	Filename:	index.html
	
	INFO1500

*/

/* Styles to be used for print displays */

@page {
  size: 8.5in 11in;
  margin: .20in .25in .0in .25in;
}

/* Hide page elements that will not be printed */

nav, nav.horizontal, nav.vertical, article.side, input#submit, footer  {
  display: none
}

body {
  background-color: white;
	
}
header {
  background-color: rgb(38,126,64);
  background-image: url(../images/CCClogo.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 1.5in;
  height: 1in;
  padding: .2in
}
section {
  border: none;
  width: 8in;
  background-color: white;
}
article.main {
	width: 90%;
	height: 7in;
	background-color: white;

}

article.main ul{
    
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;

    -webkit-column-gap: .25in; /* Chrome, Safari, Opera */
    -moz-column-gap: .25in; /* Firefox */
    column-gap: .25in;
	
	page-break-inside: avoid;
}
article.main h2 {
    margin-top: .08in;
	page-break-inside: avoid;
   
}
article.main p {
    margin: 0in .5in 0in 0in;
}

article.main li {
    font-size: 12pt;
    color: blue;
	margin-top: 0in;
	line-height: 110%;
	list-style: none;
	page-break-inside: avoid;

}
article.main h4.last-of-type {
    page-break-before: auto;
	
}
 h4:nth-of-type(3) {
   page-break-before: always;
 }









