/*
   New Perspectives on HTML and CSS

   Final: Price Table

   Order Table Stylesheet
   Author: Josh Robertson
   Date: August 30, 2015  

   Filename:         orderTable.css
   Supporting files: ContactForm.htm, 

*/

/* Styles for the schedule table */

table.artPricing {
   font-size: 16px;
   margin-top: -5px;
   margin-bottom: 20px;
   margin-right: 100px;
   float: right;
   border-collapse: collapse;
   background-color: rgb(60, 150, 60);
}

/* Styles for table cells*/

table.artPricing th {
   padding: 0px 20px 0px 20px;
}

/* Styles for table Caption */

table.artPricing caption {
   font-size: 18px;
   color: white;
   letter-spacing: 2px;
   text-position: center;
   margin-bottom: 10px;
}

/* Styles for table header*/

table.artPricing thead {
   border-bottom: 2px solid blue;
}

table.artPricing thead tr {
   height: 40px;
}

table.artPricing thead th {
   padding: 0px 20px 0px 20px;
   letter-spacing: 2px;
}

table.artPricing thead th {
   background-color: rgb(200, 200, 200);
}

}

/* Styles for table footer*/

table.artPricing tfoot {
   border-top: 2px solid blue;
   background-color: rgb(200, 200, 200);
}

table.artPricing tfoot tr {
   height: 40px;
}

table.artPricing tfoot th {
   background-color: rgb(200, 200, 200);
}

/* Styles for table body */

table.artPricing tbody tr {
   height: 50px;
   border-bottom: 1px solid blue;
}


/* Styles for table columns*/

table.artPricing col.firstCol {
   width: 22%;
}

table.artPricing col.middleCol {
   width: 30%;
}

table.artPricing col.lastCol {
   width: 22%;
}