table, tr, th, td {
	border: 1px solid black;
	padding: 1px 1px 1px 1px;
	// Single border
	border-collapse: collapse;
}

// Striped tables

//tr:nth-child(odd) {
//    background: pink;
//}

tr:nth-child(even) {
    background: #eeeeee;;
}

th, td {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

th {
	background-color: #4CAf50;
	//background-color: #4C50AF;
	color: white;
}

.red { 
 color : #f00; text-decoration : none;
}

.green { 
 color : #0f0; text-decoration : none;
}

.blue { 
 color : #00f; text-decoration : none;
}

.right {
  text-align: right;
}

// Avoid wrap
.ref {
	white-space: nowrap;
}

.nowrap {
	white-space: nowrap;
}

// Numbered headings
//body {
//        counter-reset: h2counter;
//}
//h1 {
//        //counter-reset: h2counter;
//}
//h2:before {
//        content: counter(h2counter) ".\0000a0\0000a0";
//        counter-increment: h2counter;
//}
//h2 {
//        counter-reset: h3counter;
//}
//h2.nocount:before {
//        content: none;
//        counter-increment: none;
//}
//    
//h3:before {
//        content: counter(h2counter) "." counter(h3counter) ".\0000a0\0000a0";
//        counter-increment: h3counter;
//}
//h3.nocount:before {
//        content: none;
//        counter-increment: none;
//}

// None for h4
h1 { font-size: 2em; margin: .67em 0 }
h2 { font-size: 1.5em; margin: .75em 0 }
h3 { font-size: 1.17em; margin: .83em 0 }
h5 { font-size: .83em; margin: 1.5em 0 }
h6 { font-size: .75em; margin: 1.67em 0 }
h1, h2, h3, h4, h5, h6    { font-weight: bolder }
