/*
   New Perspectives on HTML and CSS
   Tutorial 5
   Case Problem 3

   Dome Table Style Sheet
   Author: Jovana Nenadic
   Date:   2/24/16

   Filename:         dtable.css
   Supporting files: bottom.jpg, bottomleft.jpg, bottomright.jpg,
                     left.jpg,right.jpg, tableback.jpg,
                     top.jpg, topleft.jpg, topright.jpg

*/

/* Table syle */
table.nearestStars {
	font-size: 12px;
	margin-bottom: 20px;
	margin-left: 20px;
	float: center;
	border-collapse: collapse;
	width: 70%;
}



.nearestStars td {
	padding: 0px 5px;
}

/* Style settings for table caption. */
.nearestStars caption {
	font-size: 16px;
	vertical-align: top;
	text-align: center;
	margin-bottom: 10px;
}

/* Style for the table header. */
.nearestStars thead tr {
	border-bottom: 1px solid gray;
	height: 20px;
	padding: 0px 5px;
	text-align: center;
}


/* Style for the table footer. */
.nearestStars tfoot tr {
	border-top: 2px solid blue;
	text-align: center;
	height: 20px;
}

/* Style for the table body. */
.nearestStars tbody tr {
	height:20px;
	border-bottom: 1px dotted blue;
	text-align: center;
}



/* Adjusts the width of the columns */
.firstColumn .secondColumn .thirdColumn .fourthColumn .fifthColumn .lastColumn{
	width: 20%;
}
