body {

	width: 908px;
	background: black;
	font-family: 'Verdana';
	color: white


	}


h1 { color: gray; background: black; font-size: 28px; font-family: 'Verdana'; text-align: center; word-spacing: 5px; border-style: double; border-width: 0px; border-color: DarkYellow; }
h2 { color: gray; background: black; font-size: 22px; font-family: 'Verdana'; text-align: center; }
h3 { color: gray; background: black; font-size: 16px; font-family: 'Verdana'; text-align: center; }
h4 { color: gray; background: black; font-size: 14px; font-family: 'Verdana'; text-align: center; }
h5 { color: gray; background: black; font-size: 13px; font-family: 'Verdana'; text-align: center; }
p { color: gray; background: black; font-size: 13px; font-family: 'Verdana'; text-align: justify; padding:5px; }

A:link { color: gray; text-decoration: underline }
A:active { color: gray; text-decoration: bold }
A:visited { color: gray; text-decoration: underline }
/*   */


body,
	html {
		margin:0 auto;
		padding:5px;
		background: black;
		color:white;
		font-family:'Verdana';

		background-image: url('favicon.ico');
		background-repeat: no-repeat;
		background-position: top left, top right;
		background-size: 105px 105px;
		background-image 90%;
		background-attachment: scroll;

	}

	body {
		min-width:908px;
		background: black;

	}
	#wrap {
		background:black;
		color:white;
		margin:0 auto;
		width:860px;
	}
	#header {
		background:black;
		color:gray;
		padding:0px;
		background:black;
	}
	#header h1 {
			background-color: black;
    	padding:0px;
	    margin:0;
    }
	#nav {
		background:black;
		padding:5px;
	}

	#nav ul{
		margin:0;
		padding:0;
		list-style:none;
	}
	#nav li{
		display:inline;
		margin:0;
		padding:0;
	}
	#main {
		background: black;
		margin:0 auto;
		width:908px;
		color:white;
		padding-left:5px;
		padding-right:5px;

	}
	#main h2, #main h3, #main p {
		padding-left:5px;
		padding-right:5px;
		color:gray;


    }
	#sidebar {
		background:black;
		float:right;
		width:152px;
		color:gray;
		padding:5px;

	}
	#sidebar ul {
		margin-bottom:0px;
    }
    #sidebar h3, #sidebar p {
		padding:5px;
    }
	#footer {
		background:black;
		clear:both;
	}
	#footer p {
		padding:5px;
		margin:0;
		color:white

    }


ul { color: gray; background: black; font-size: 14px; font-family: 'Verdana'; text-align: center;}
ol { color: gray; background: black; font-size: 14px; font-family: 'Verdana'; text-align: left;}
/*
p { color: gray; background: #f2f2f2; font-size: 14px; font-family: "Copperplate Gothic Light",garamond,"Verdana", Verdana; text-align: justify; padding: 38px; border-style: double; border-width: 5px; border-color: #5f2221;}
*/


/*
table {
	color: gray;
	background: #4b1b1a;
	font-size: 14px;
	font-family: "Verdana", Verdana; text-align: justify;
	padding: 8px;
	border-style: double;
	border-width: 5px;
	border-color: #4b1b1a;


	}
*/


.fade-in-text {
  font-family: Verdana;
  font-size: 25px;
  animation: fadeIn 1s;
}

/* Class to spin an image */
@keyframes spinning {
	from { transform: rotate(0deg) }
	to { transform: rotate(360deg) }
}
.spin {
	animation-name: spinning;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	/* linear | ease | ease-in | ease-out | ease-in-out */
	animation-timing-function: linear;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Class to fade in an image */
.fade-in-image { animation: fadeIn 1s; }



#slider {
    position: absolute;
    width: 100px;
    height: 100px;
    background: blue;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.slide-in {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}

.slide-out {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
    100% { transform: translateX(0%); }
}

@-webkit-keyframes slide-in {
    100% { -webkit-transform: translateX(0%); }
}

@keyframes slide-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

@-webkit-keyframes slide-out {
    0% { -webkit-transform: translateX(0%); }
    100% { -webkit-transform: translateX(-100%); }
}


.box {
	height: 300px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.box>* {
	flex: 1 1 80px;
}


table {
    color: black;
	background: white;
	font-size: 14px;
	font-family: 'Verdana'; text-align: justify;
	padding: 6px;

	border-spacing: 0;
	border-width: 1px;
    width: 100%;
		border-radius: 6px 6px 6px 6px;

}

th, td {
    padding: 6px;
    text-align: left;
    border-bottom: 1px solid gray;
}

th {
	background: white;
	color: black;
}

th:first-child {
	border-radius: 6px 0 0 6px;
}

th:last-child {
	border-radius: 0 6px 6px 0;
}

th:only-child{
	border-radius: 6px 6px 6px 6px;

}


td:first-child {
	border-radius: 6px 0 0 6px;
}

td:last-child {
	border-radius: 0 6px 6px 0;
}

td:only-child{
	border-radius: 6px 6px 6px 6px;

}

tr:nth-child(even){background-color: lightgray}
/* tr:hover{background-color:white; color:gray;} */
table a:link, table a:visited, table a:active {
  color: black;
  text-decoration: none;
}

table a:hover {
  color: red;
	background-color: white;
  font-family: 'Verdana';

	text-decoration: Underline;
}

.article
{
    display: flex;
}
.article .item,
.article .price
{
    flex: 1 0 auto;
}

.article .dots
{
    flex: 0 1 auto;
}

.dots::before
{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    content:
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
}

.popup
{
COLOR: gray;
CURSOR: help;
TEXT-DECORATION: none
}

.hovertext {
  position: relative;
  border-bottom: 1px dotted black;
}

.hovertext:before {
  content: attr(data-hover);
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  transition: opacity 1s ease-in-out;

  position: absolute;
  z-index: 1;
  left: 0;
  top: 110%;
}


.hovertext:hover:before {
  opacity: 1;
  visibility: visible;
}

.hide {
  display: none;
}

.myDIV:hover + .hide {
  display: block;
  color: red;
}


.right {
  text-align: right;
  margin-right: 1em;
}

.left {
  text-align: left;
  margin-left: 1em;
}

/* slighty_rounded */
img {
  border-radius: 9px;
}
