﻿body {
	background: #061B32;
	margin: 0;
	text-align: center;
}

.contentWrapper {
	width: 90%;
	min-width: 1000px;
	max-width: 1600px;
	margin: auto;
	margin-top: 60px;
	overflow: hidden;
}

.bodyWrapper {
	width: auto;
	height: 100%;
	margin: 10px;
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0px 0px 10px 10px #AAAAAA inset;
	text-align: justify;
	line-height: 140%;
	font-family: Tahoma;
	font-size: 10pt;
	color: #000000;
	overflow: auto;
}

#mainMenu {
	width: 100%;
	position: absolute;
	top: 260px;
	border-top: 3px solid #061B32;
	opacity: 0.9;
	z-index: 1000;
}

.tickerWrapper {
	width: 950px;
	margin: auto;
	margin-bottom: 5px;
	position: absolute;
	top: 300px;
	left: 50%;
	margin-left: -475px;
}

div.stallionRightCol {
	float: right;
	margin-left: 10px;
	text-align: center;
}

div.stallionRightCol a {
	text-decoration: none;
}

div.stallionRightCol img {
	border: 1px solid #CC0000;
	border-radius: 10px;
}

div.stallionRecordBreed {
	text-align: center;
	font-weight: bold;
}

div.stallionWriteup {
	margin-top: 20px;
	text-align: justify;
}

span.stallionStudFee {
	font-size: 12pt;
	font-weight: bold;
	color: #CC0000;
}

img.stallionThumbs {
	height: 35px;
}

div.stallionButton {
	height: 50px;
	background-position: 0 0;
	background-repeat: no-repeat;
	padding-left: 55px;
	line-height: 50px;
	color: #0000FF;
	cursor: pointer;
	text-align: left;
	margin-bottom: -10px;
	white-space: nowrap;
}

div.stallionButton i {
	color: #00CC00;
	font-style: normal;
}

div.stallionButton:hover {
	color: #FF0000;
	text-decoration: underline;
}

div.stallionRightCol .stallionButton {
	width: 125px;
	display: inline-block;
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 10px;
}

div.stallionVideos a {
	text-decoration: none;
}

ul.news {
	font-family: Times New Roman;
	font-size: 12pt;
}

ul.news li {
	line-height: 125%;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 15%;
}

ul.news li div {
	display: inline-block;
	width: 130px;
	font-family: Courier New;
	font-size: 11pt;
	font-weight: bold;
}

ul.news a {
	font-style: italic;
}

ul.news a:hover {
	color: #FF0000;
}

ul.news img {
	height: 50px;
	border: 1px solid #0000FF;
	border-radius: 5px;
	vertical-align: middle;
	margin-left: 10px;
}

ul.news img:hover {
	border-color: #FF0000;
}

table.yearlings {
	margin: auto;
}

table.yearlings td:nth-child(2),
table.yearlings td:nth-child(3),
table.yearlings td:nth-child(7) {
	text-align: center;
}

table.yearlings td:nth-child(1) {
	font-weight: bold;
}

table.yearlings td {
	background-color: #E6F3F7;
	padding: 5px;
	padding-left: 20px;
	padding-right: 20px;
	white-space: nowrap;
	border-radius: 5px;
}

table.yearlings .header td {
	font-weight: bold;
}

table.yearlings img {
	border-radius: 5px;
}


.shimmer-text {
  font-size: 1rem; /* Adjust as needed */
  font-weight: bold;
  color: #000; /* Base color of the text */
  position: relative;
  overflow: hidden;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.shimmer-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  transform: skewX(-25deg);
  z-index: 1;
  animation: shimmer 1s infinite;
  animation-direction: alternate;
}

.shimmer-text::after {
  content: attr(class); /* Optional */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: inherit;
  background: inherit;
  z-index: -1;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}