@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
body,td,th,a {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
body {
	background-image: url(_images/title_bg.jpg);
	background-repeat: no-repeat;
	background-size:cover;
}
img, object, embed, video {
	max-width: 100%;
}

.guide-button {
	padding: .5em 1em .5em 1em;
	background-color: #ff2525;
	border: none;
	border-radius: 6px;
	text-decoration: none;
	transition-duration: 0.2s;
	color: white;
}
.guide-button:visited {
	color: white;
}
.guide-button:hover {
	border: solid 2px #ff2525;
	background-color: white;
	color: #ff2525;
	transition-duration: 0.2s;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
table 
{
    table-layout:fixed;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		6;
	dw-num-cols-desktop:	6;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87%;
	padding-left: 1.5%;
	padding-right: 1.5%;
	clear: none;
	float: none;
}
.animated {
	-webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.ui-state-default {
	border-bottom:0;
	opacity: 0.5;
}
.ui-state-active {
	/*border-bottom: solid 0.5em #FF3000;*/
	opacity: 1.0;
}
.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
}
#TabImages {
	text-align:center;
}
#TabImages img {
margin-bottom: .5em;
}
#TabImages img:hover {
	transform: rotate(-3deg);
}
#TabImages li {
	font-size: 16px;
}
.snapcheattab {
	display:inline-block;
	width:18%;
	height:auto;
	max-width:75px;
	max-height:75px;
	padding:0;
}
.CheatContent {
	border: solid 3px;
	min-height: 100px;
	padding: 0.5em 1em;
	margin: 1em 0;
	clear: both;
	border-radius: 18px;
	background-color: #FFFFFF;
}
.CheatContent h3 {
	background-color: #e4e4e4;
	padding: .5em;
	cursor: pointer;
	border-radius: 6px;
	transition-duration: .2s;
}
.CheatContent h3:hover {
	background-color: #dadada;
	transition-duration: .2s;
}
#plus {
	float: right;
}
.footer {
	text-align: center;
	font-size: x-small;
	background-color: #F3F3F3;
	border-radius: 10px;
}

@media only screen and (max-width: 480px) {
.guide-button {
	padding: 0 .25em 0 .25em;
	font-size: 80%;
}
.mobile-hide {
	display: none;
}
#TabImages li {
	margin-right: 1.75em;
}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 87%;
	padding-left: 1.5%;
	padding-right: 1.5%;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
.snapcheattab {
	max-width:125px;
	max-height:125px;
	font-size: 8pt;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

.gridContainer {
	width: 87%;
	max-width: 800px;
	padding-left: 1.5%;
	padding-right: 1.5%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_desktop {
    margin-left: 0;
}
.hide_desktop {
    display: none;
}
.snapcheattab {
	max-width:168px;
	max-height:155px;
}
}
