/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
p {
color:white;
font-size: 12px;
font-family: "MS UI Gothic", "Times New Roman", Times, serif;
text-shadow:
-1px -1px 0 black,
0px -1px 0 black,
1px -1px 0 black,
-1px  0px 0 black,
1px  0px 0 black,
-1px  1px 0 black,
0px  1px 0 black,
1px  1px 0 black;
}
a {
color: #fff;
text-decoration: none;
text-decoration: underline dotted #666;  
font-size:12px;
}
a:hover {
color: #ffffff;
text-decoration: underline dotted #666;  
text-shadow:
-1px -1px 0 black,
0px -1px 0 black,
1px -1px 0 black,
-1px  0px 0 black,
1px  0px 0 black,
-1px  1px 0 black,
0px  1px 0 black,
1px  1px 0 black;
}
::selection {
background: rgba(0,0,0,0.5);
color: #737373;
}
#s-m-t-tooltip{
z-index: 99999;
margin: 24px 14px 7px 12px;
background: linear-gradient(to bottom, #0a0a0a, #000);
color: #dfdfe3;
font-size: 12px;
font-family: "MS UI Gothic", "Times New Roman", Times, serif;
padding: 8px 8px;
white-space: normal;
max-width: 180px;
line-height:14px;
word-wrap: break-word;outline: 1px solid rgba(0, 0, 0, 1);
outline-offset: -2px;
box-shadow:
0 0 0 1px black,   
1px 1px 0 #000;  text-shadow:
-1px -1px 0 black,
0px -1px 0 black,
1px -1px 0 black,
-1px  0px 0 black,
1px  0px 0 black,
-1px  1px 0 black,
0px  1px 0 black,
1px  1px 0 black;
}
.button {
display: block;
margin: 5px auto; 
font-family: "MS UI Gothic", "Times New Roman", Times, serif;
font-size: 13px;
text-align: left;
color: #fff;
background: linear-gradient(to bottom, #0a0a0a 0%, #000000 61%, #030303 100%);padding: 0.55em 1em;
width: 160px;
line-height: 1.1;
box-sizing: border-box;
white-space: nowrap;
outline: 1px solid rgba(0, 0, 0, 1);
outline-offset: -4px;
box-shadow: 2px 2px #000;
border: solid 1px black;
text-shadow:
-1px -1px 0 black,
0px -1px 0 black,
1px -1px 0 black,
-1px  0px 0 black,
1px  0px 0 black,
-1px  1px 0 black,
0px  1px 0 black,
1px  1px 0 black;
}
.button:hover {
background: linear-gradient(to bottom, #ffffff 0%, #9c9c9c 61%, #cccccc 100%);padding: 0.55em 1em;
font-style:italic;
text-shadow:
-1px -1px 0 black,
0px -1px 0 black,
1px -1px 0 black,
-1px  0px 0 black,
1px  0px 0 black,
-1px  1px 0 black,
0px  1px 0 black,
1px  1px 0 black;
}
.button:active {
transform: translateY(1px);
}