@charset "utf-8";
/* My CSS File  */

body {
	color: #000;										/**/
	margin: 0px;
	background-color: #FFFFE6;						/*#F3F3F3;*/   /*#EEE3BE;*/
	font-family: Calibri, sans-serif;
	font-size: 18pt;
    }

h1, h2, h3, h4, h5, h6, p, a:link, a:visited, a:hover, a:active, a:focus {
	margin: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;         /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 24pt;
	font-style: normal;
	line-height: 22pt;
	font-weight: bold;
	color: #F00;
}
.container header hgroup .TitleBlock a h1 .Mulberry {
	color: #348F62;
}


h2 {
	font-size: 22pt;
	font-style: normal;
	line-height: 20pt;
	font-weight: normal;
	color: #F00;
}

h3 {
	font-size: 20pt;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
}

h4 {
	font-size: 18pt;
	/* [disabled]line-height: normal; */
	font-style: normal;
	font-weight: bold;
	color: #F00;
}

h5 {
	font-size: 16pt;
	line-height: normal;
	font-style: normal;
	font-weight: bold;
	color: #000;
}

h6 {
	font-size: 14pt;
	font-style: normal;
	line-height: 12pt;
}

.TinyFont {
	font-size: 12pt;
	font-style: normal;
}

.BoldTinyFont {
	font-size: 12pt;
	font-style: normal;
	font-weight: bold;
	}

.CenteredTinyFont {
	font-size: 12pt;
	font-style: normal;
	text-align: center;
	font-weight: bold;
}

.BoldInlineTinyFont {
	font-size: 12pt;
	font-weight: bold;
	display: inline;
	}

.BlueBoldInlineTinyFont {
	font-size: 12pt;
	font-weight: bold;
	display: inline;
	color: #0C74F3;
}


/* this selector removes the default blue border displayed in some browsers around 
	 an image when it is surrounded by a link */
	 
a img { 
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #1A8E2E; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	text-decoration: none;
}

a:visited {
	color: #FF0000;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #F00;
}

/* ~~ This fixed width container surrounds all other blocks ~~ */

/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	height: 130px;
	background-color: #EEEEEE;					/*#5C78E4;*/
}

.container header #Logo {
	position: absolute;
	left: 4px;
	top: 6px;
	background-image: url(graphics/LogoBea150.jpg);
}

.container header h1 {
	text-transform: uppercase;
	}


.container header hgroup .TitleBlock {
	padding-left: 155px;
	padding-right: 5px;
	text-align: center;
  }


/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/

.sidebar {
	float: left;
	width: 160px;
	padding-top: 4px;
	background-color: #EEEEEE;
	padding-left: 4px;
}

.content {
	margin-left: 163px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 5px 5px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none;   /* this removes the list marker */
	/* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 5pt; /* this creates the space between the navigation on the content below */
	font-size: 14pt;
	font-weight: bold;
    }

nav ul a, nav ul a:visited { 
	display: block; 
	text-decoration: none;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 5px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* ~~ The footer ~~ */

footer {
	padding: 5px;
	position: relative;
	clear: both;
	text-align: center;
	margin-top: 5px;
	margin-left: 163px;
}
footer { padding: 10px 0; position: relative; /* this gives IE6 hasLayout to properly clear */ clear: both; /* this clear property forces the .container to understand where the columns end and contain them */ text-align: center;
  }

.container .content  article {
	padding-right: 5px;
	padding-left: 5px;
}


/* ~~ Miscellaneous float/clear classes ~~ */

.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}

.TitleBlock a:link {
	color: #009;
}

.TitleBlock a:visited {
	color: #009;
}

.TitleBlock a:hover, .TitleBlock a:active, .TitleBlock a:focus  {
	color: #F60;
}

.container header hgroup .TitleBlock a h2 {
	margin-bottom: 6pt;
}

.container .content article .Ember img {
	float: right;
}

form {
	display: inline;
	vertical-align: middle;
}

.container .content .CenterLines {
	text-align: center;
}

.container .content .video .LizCarlin {
	color: #03F;
}

.container .content .video .UpToDate {
	font-style: italic;
	color: #00F;
	display: inline;
	font-weight: bold;
	font-size: 16pt;
}
.container .content .VideoInfo h3 {
	font-weight: bold;
	margin-bottom: 6px;
}
.container .content .VideoInfo section p {
	margin-bottom: 6pt;
}
.container .content .VideoInfo section {
	margin-bottom: 12pt;
}
.container .content .video p {
	margin-bottom: 12pt;
}
.container .content .video  h3 {
	margin-bottom: 12pt;
}

.Grey    {color: #EEE;}
.HotPink {color: #F0F;}



.RedFont {
	color: #F00;
}
.Green {
	color: #0F0;
	display: inline;
}
.container .Red {
	color: #F00;
}
.container .YellowBkgd {
	background-color: #FF0;
	display: inline;
}

.container .content .InlineBlue {
	color: #00F;
	display: inline;
}

.GreenBkgnd {
	background-color: #0F0;
	display: inline;
}

.container .content .video section h4 {
	font-style: italic;
	color: #0C74F3;
}
.container .content .video section table tr .Prices {
	background-color: #DFF1FF;
	border: medium double #666;
}

.noBlock {display: inline;}

.container .content .video section table tr td .DVDLinerNotes {
	text-align: center;
	color: #0C74F3;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.container .content .video .LightBox {
	border: thin dotted #360;
	text-align: center;
}

.container .content .video section table .DVDRow {
	vertical-align: top;
}
.container .content .video section .ComicInline {
	color: #00F;
	display: inline;
	font-weight: bold;
}
.container .content .Signs section table .SignListItems td ol {	
	color: #00F;
}
.container .content .Signs section table .SignListItems h5 {
	text-decoration: underline;
}
.container .content .Signs section table .SignListItems {
	vertical-align: top;
}
.container .content .Signs section table .SignListItems td {
	padding-right: 10px;
	padding-left: 5px;
}
.container .content .Signs section table .SignListItems .VertCtr {
	vertical-align: middle;
}
.container .content .Box {
	border: medium solid #090;
	margin-bottom: 12pt;
	margin-top: 1px;
	margin-right: 1px;
	margin-left: 1px;
}
.container .content .Box h3 {
	margin-bottom: 5px;
}
.Price {
	display: inline;
	vertical-align: middle;
	color: #000;
}
.container .content .Box table .SignListItems .VertCtr .Borders tr td {
	border: medium solid #00F;
}
.container .content .Box table .SignListItems .VertCtr .Borders .NoBorders td {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.container .content .Bold {
	font-weight: bold;
}
.container .content .Box table .SignListItems td li {
	list-style-position: outside;
	list-style-type: decimal;
}
.container .content .Harrington {
	font-size: 26pt;
	font-weight: bold;
	font-style: normal;
	text-align: center;
}
.container .content .Signs .Box h2 {
	text-align: center;
}

.container .content .InLine {
	display: inline;
}
.container .content .Box div p img {
	position: relative;
}
.container .content .Box div p {
	margin-bottom: 12pt;
	color: #000;
}

.container .content  .SmallFont {
	font-size: 14pt;
}
.container .content .Signs .Box p img  {
	margin-right: 25px;
}
.container .content .Signs .Box div div ul {
	list-style-position: outside;
}
.container .content .Signs .Box  p {
	margin-bottom: 1em;
}
.container .content .Signs .Box .Price .PriceBorder {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #999;
}
.container .content .Signs .Box .Price tr form table tr td {
	text-align: center;
	vertical-align: top;
}

.container .content .Signs .Box .TableMargin {
	margin-bottom: 15px;
}
.container .content .RingGatesImage {
	display: inline;
	margin-bottom: 10px;
	margin-left: 10px;
	float: right;
}

.container .content .RallyCourse img {
	margin-bottom: 10px;
	margin-right: 25px;
}

.container .content .RallyCourse .CenterLines .RingGatesImage img {
	margin-right: 0px;
	margin-bottom: 10px;
	border: medium double #033;
}
.container .content .RallyCourse .CenterLines .CoverImg {
	float: left;
	border: medium double #033;
}
.container .content .Workbook section p {
	margin-bottom: 10px;
}
.container .content .RallyCourse .CenterLines .RingGatesImage .CourseOrder {
	text-align: center;
}
.container .content .IntroRally section div .PuppyImage {
	display: inline;
	margin-right: 25px;
	border: medium solid #00F;
}
.container .content .IntroRally .Box table {
	margin: 0px;
}

.WingDing {
	font-family: Wingdings, "Wingdings 2", "Wingdings 3";
	display: inline;
}
.container .content .IntroRally section p {
	margin-bottom: 10pt;
}
.container .content article section table tr .EventHeader {
	background-color: #FFFFFF;
	border: thin solid #333399;
}
.container .content article section .Events {
	background-color: #FFFFFF;
	color: #666666;
	font-size: 18pt;
}
.container .content article section .Secretaries tr th {
	background-color: #ff0;
}
.container .content article section .Secretaries {
	font-size: 18pt;
	background-color: #CCC;
	color: #006;
	border: medium groove #093;
}
.container .content article .FavoriteLinks {
	font-size: 18pt;
	list-style-type: none;
}
.container .content article .FavoriteLinks ul {
	list-style-type: none;
	padding-left: -25px;
}
.container .content article .FavoriteLinks ul li .DogTrainingClasses {
	margin-left: 30pt;
}
.container .content .RallyCourse2 section img {
	float: right;
	border: thin solid #036;
	margin-left: 5px;
}
.container .content .RallyCourse2 h2 {
	text-align: center;
	margin-bottom: 10px;
}
.container .content .RallyCourse2 section ul {
	list-style-type: square;
}

.container .content .RallyCourse .clearLeftFloat {
	clear: left;
}
.container .content .Signs .Box table .SignListItems .VertCtr .Borders tr td form .NoBorders tr td {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.container .sidebar aside {
	text-align: center;
}
.container .content .TrackingGuide section img {
	float: right;
}
.container .content .clearRightFloat {
	clear: right;
}

.container .content .TrackingGuide section h2 {
	text-align: center;
}

.container .content .FlashCards section h2 {
	text-align: center;
}

.container .content .TrackingGuide section .underlinedRed {
	color: #F00;
	text-decoration: underline;
}
.container .content .FlashCards section .Principal {
	font-size: 18pt;
	text-align: center;
}
.container .content .FlashCards section .WebSign {
	width: 611px;
	margin-right: auto;
	margin-left: auto;
}
.container .content .FlashCards section .cards {
	height: 428px;
	width: 572px;
	margin-right: auto;
	margin-left: auto;
}
.container .content .AboutAuthor {
	color: #0000FF;
}
.container .content .AboutAuthor section p {
	margin-bottom: 12pt;
}

.container .content .AboutRally section ul li {
	color: #800000;
}
.container .content .AboutRally section .SampleSigns {
	float: right;
	border: medium dashed #309;
}
.container .content .AboutRally section p {
	color: #800000;
	margin-bottom: 12pt;
}
.container .content .HomePage p {
	margin-bottom: 12pt;
}
.container .content .LocalClasses section ul {
	list-style-type: none;
}
.container .content .LocalClasses section ul li {
	margin-bottom: 12pt;
}
.container header hgroup .TitleBlock .MenuItem {
	font-size: 14pt;
}
.container .content .Tracking section p {
	margin-bottom: 12pt;
}
.container .content .Tracking section h2 {
	margin-bottom: 12pt;
	display: inline;
}
.container .content .Tracking section .Problem {
	font-style: italic;
}

.container .content .Tracking section .Blue {
	color: #03F;
}
.container .content .Tracking section .Bridge {
	background-color: #808000;
	color: #FFFFFF;
	display: inline;
}
.container .content .Tracking section .AllIn {
	color: #008000;
}
.container .content .Tracking section .Flashfire {
	color: #800080;
}
.container .content .Tracking section .Au {
	color: #FF00FF;
}
.container .content .Tracking section .Zia {
	color: #800080;
}
.container .content .Tracking section .class {
	font-style: italic;
}
.container .content .TrackingTools section table {

}
.container .content .TrackingTools section {
	margin-bottom: 12pt;
}
.container .content .TrackingTools section ul li .Footnote {
	font-style: normal;
	font-weight: bold;
}
.container .content .TrackingTools section table tr td {
	border: thin solid #CCC;
	padding-right: 5px;
	padding-left: 5px;
}
.container .content .TrackingTools section hr {
	text-align: left;
	width: 100px;
	float: left;
}
.container .content .TrackingInfo section p {
	margin-bottom: 12pt;
}
.container .content .TrackingInfo section div img {
	display: inline;
}
.container .content .TrackingInfo .Scarf div {
	display: inline-block;
}
.container .content .TrackingInfo section {
	margin-bottom: 18pt;
}
.container .content .TrackingInfo h3 {
	margin-bottom: 12pt;
}
.container .content .RallySetup {
	color: #333399;
}
.container .content .RallySetup h3 {
	margin-bottom: 12pt;
}
.container .content .RallySetup p {
	margin-bottom: 12pt;
}
.container .content .RallySetup .Option2 {
	float: right;
	margin-left: 10px;
}
.container .content .RallyBooks table tr {
	width: 100%;
}

.Inline{
	display: inline;
}.container .RallyCourse .Rally4Images  {
	float: right;
}
.container .RallyCourse .Rally4Images .ImgBrdr  {
	margin: 5px;
	border: medium solid #00C;
	display: inline;
}
.container .content .RallyCourse .Rally4Images .noBreak  {
	display: inline-block;
}
.container .content .RallyCourse .Rally4Images table tr td h4  {
	text-align: center;
}
.calibri {
	font-family: Calibri;
}
arial {
	font-family: Arial, Helvetica, sans-serif;
}
.container .content .Box div .Price tr td p {
	color: #F00;
}
.container .content .Box div .Price tr td p {
	color: #000;
}
.RED {
	color: #F00;
}
.red {
	color: #F00;
}
.red {
	color: #F00;
}
red {
	color: #F00;
}
.red {
	color: #F00;
}
.container .content article .Box h5 a {
	font-family: Tahoma, Geneva, sans-serif;
}
.container .content article .Box h5 a {
	font-family: Comic Sans MS, cursive;
}
