* {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    min-height: 100%;
    position: relative;
    padding-bottom: 80px;
    font-family: 'Times New Roman', Times, serif;
    background-image: url("../images/linedpaper.png");
    background-attachment: fixed;
}
.navbar {
    background: whitesmoke;
    border: 1px solid lightgray;
}
a, a:hover {
    color: #ff6868;
}
footer {
    font-style: italic;
    background-color: grey;
    color: white;
    text-align: center;
    position: absolute; 
    bottom: 0;
    width: 100%;
    padding: 10px;
    box-shadow: 3px 0px 3px black;
}
footer p {
    margin: 0;
}
h1 {
    text-align:center;
    font-size: 50px;  
    font-style: italic;
    color: #297070;  
    padding: 20px;
}
h2 a, h2 a:hover {
    color: lightseagreen;
    text-decoration: none;
    font-weight: bold;
}
h2 a:hover {
    text-shadow: 1px 1px 1px black;
}
.container p {
    text-align: justify;
    font-size: 18px;
}
.loginForm * , .alert {
    font-size: 17px;
}
.comments strong {
    font-size: 19px;
}
.comments span {
    color: grey;
}
.admin {
    font-size: 16px;
}
.admin .row {
    padding: 20px;
}

.index .comments {
    font-style: italic;
}
.index .suite p {
    text-align: right;
}
.index .suite, .index .date, .index .comments {
    font-size: 16px;        
}
.index .billet {
    box-shadow: 3px 3px 10px grey;
    margin: 20px;
    background-color: white;
}
th:nth-last-child(-n+3), td:nth-last-child(-n+3) {
    text-align: center;
}

/*color buttons */
.btn-outline {
    background-color: transparent;
    color: inherit;
    transition: all .5s;
}
.btn-primary.btn-outline {
    color: lightseagreen;
    border: 1px solid lightseagreen;
}
.btn-primary.btn-outline:hover {
    color: #fff;
    background-color: lightseagreen;
}
.admin a:hover {
    cursor: pointer;
}
.nav-pills > li.active > a, 
.nav-pills > li.active > a:hover {
    background-color: lightseagreen;
}
ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
#errorPanel {
    padding-top: 30px;
    padding-bottom: 10px;
}