body {
    background-color:#2d7d82/*#112032*/;
}
h3 {
    margin:1px;
    font-family: 'Segoe UI';
    font-size:16px;
}
span {
    margin:1px;
    font-size:13px;
}
div {
    padding:1px;
    background-color:white;/*rgb(219, 219, 219);*/
    font-family: 'Segoe UI';
    font-size:10px;
    border-radius:5px;
    color: rgb(31, 31, 31);
    box-shadow: #1d495e 0px 0px 10px;
}
.elemItem {
    background-color:rgb(170, 245, 186);
    box-shadow:1px 1px 1px;
    transition:all 0.1s;
    font-family: 'Arial';
    border-radius:2px;
}
.elemItem:hover {
    background-color:rgb(134, 224, 187);
    box-shadow:1px 1px 4px;
    cursor:pointer;
    transform:scale(1.5, 1.5);
    z-index:2;
    border-radius:2px;
}
.elemItem:active {
    background-color:rgb(101, 196, 175);
    box-shadow:1px 1px 4px;
    cursor:pointer;
    transform:scale(1.4, 1.4);
    border-radius:2px;
}
/*a {
    color:black;
    text-decoration:underline;
}
a:hover {
    color:blue;
    text-decoration:underline;
    cursor:pointer;
}
a:visited {
    color:black;
    text-decoration:underline;
}
a:active {
    color:rgb(0, 0, 161);
    text-decoration:underline;
}*/
/* a */
a {
    text-decoration:none;
    color:white;
    font-size:13px;
    margin-right:0px;
    padding-left: 25px;
    padding-right:25px;
}
a:hover {
    text-decoration:underline;
    color:white;
    cursor:pointer;
    font-size:13px;
    box-shadow:#2d7d82 0px 0px 5px;
}
a:active {
    text-decoration:underline;
    color:white;
    cursor:pointer;
    font-size:13px;
    background-color:#2d7d82;
}
/* Regular link class */
.link {
    text-decoration:underline;
    color:#46aea3;
    cursor:pointer;
    font-size:16px;
    background:none;
    margin-left:0px;
    padding-left:0px;
    padding-right:0px;
}
.link:hover {
    text-decoration:underline;
    color:#2d7d82;
    cursor:pointer;
    font-size:16px;
    background:none;
    margin-left:0px;
    padding-left:0px;
    padding-right:0px;
}
.link:active {
    text-decoration:underline;
    color:#46aea3;
    cursor:pointer;
    font-size:16px;
    background:none;
    margin-left:0px;
    padding-left:0px;
    padding-right:0px;
}
.t_gray {
    color: rgb(175, 175, 175);
}