/*
   New Perspectives on HTML and CSS
   Tutorial 5
   Case Problem 3

   Dome Table Style Sheet
   Author: Carolyn Adams
   Date:   March 24, 2015

   Filename:         dtable.css
   

*/

/* specs for table  */

table {
	font-Size: 16px; 
	margin-bottom: 20px;
	margin-left: 20px;
	float: right;
	border-collapse: collapse;
	}

/* specs for cells  */
    
table td {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
}

/*  specs for table caption */
table.experience caption {
    font-size: 12px;
    text-align: center;
    margin-bottom: 5px;}


/* specs for table header  */
table thead tr {
	border-top: 2px solid gray;
	border-bottom: 2px solid gray;
        background-size: contain;
        height: 40px;
	padding-top: 0px;
    	padding-right: 5px;
    	padding-bottom: 0px;
    	padding-left: 5px;
	letter-spacing: 2px;
	}

/*  specs for rows in body */
table tbody tr {
	border-bottom: 2px dotted gray;
        text-align: left;
		}

/* width for first column  */
table.capabilities col.firstColumn {
	width: 10%}


/*  width for middle columns */
table.capabilities col.middleColumn {
	width: 70%}


/* width for last column  */
table.capabilities col.lastColumn {
	width: 20%}

/* width for first column  */
table.experience col.firstColumn {
width: 10%}


/*  width for middle columns */
table.experience col.middleColumn {
width: 10%}


/* width for last column  */
table.experience col.lastColumn {
width: 10%}

/*  specs for rows in body */
table.experience tbody tr {
	border-bottom: 2px dotted gray;
        text-align: center;
		}











