*
{
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*	====================================================================================
	Default behavior for all links:
	==================================================================================== */
a:link
{
	color: rgb(0, 0, 209);
	text-decoration: none;
}

a:visited
{
	color: rgb(0, 0, 209);
	text-decoration: none;
}

a:hover
{
	color: rgb(0, 0, 209);
	text-decoration: underline;
}

a:active
{
	color: black;
}

body
{
	height: 100%;
	background-color: #dddddd;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

html
{
	height: 100%;
}

/*	====================================================================================
	Support for the menus.
	==================================================================================== */
.nav {
	margin: 0;
	width: 100%;
	padding: 7px 0px 0px;
	line-height: 100%;

	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	
	box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);

	background-image: linear-gradient(top, rgb(30, 88, 189), 
		rgb(118,193,246), rgb(52, 114, 231), rgb(0, 0, 209));
	background-image: -webkit-linear-gradient(top, rgb(30, 88, 189), 
		rgb(118,193,246), rgb(52, 114, 231), rgb(0, 0, 209));
	background-image: -moz-linear-gradient(top, rgb(30, 88, 189), 
		rgb(118,193,246), rgb(52, 114, 231), rgb(0, 0, 209));
	background-image: -o-linear-gradient(top, rgb(30, 88, 189), 
		rgb(118,193,246), rgb(52, 114, 231), rgb(0, 0, 209));
	border: solid 1px #6d6d6d;
}

.nav li {
	margin: 0 5px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
}

/* main level link */
.nav a {
	color: #383838;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .9);
	display: block;
	padding:  6px 15px;
	margin: 0px 0px 0px 0px;
	border-radius: 1.6em;
	-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;
	font-family: Arial, Helvetica, sans-serif;
}

.nav > li > a
{
	font-weight: bold;
	color: #f0f0f0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .7);
}

/*	Currently selected main level menu item has a different background color */
li.current > a
{
	background: #e0e0e0;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .9);
}

/*	The hover has a darker background color */
.nav a:hover
{
	background: #c0c0c0;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .9);
}

/* The current select main level item and the hover item have the same decoration */
li.current > a, .nav a:hover
{
	color: #383838;
	
	box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-webkit-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-moz-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}

/* level 2 list */
.nav ul {
	background: #e0e0e0;

	display: none;
	margin: 0;
	padding: 4px;
	width: 243px;
	position: absolute;
	z-index: 1;
	top: 35px;
	left: 0;
	border: solid 1px #b4b4b4;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

/* level 3 list */
.nav ul ul
{
	left: 228px;
	top: -3px;
	width: 278px;
}

@media (max-width: 826px)
{
	.nav ul ul
	{
		left: -273px;
	}

}

/* dropdown */
.nav li:hover > ul {
	display: block;
}

.nav ul li {
	float: none;
	margin: 0;
	padding: 0;
	box-shadow: 0px 0px 0px black;
	-webkit-box-shadow: 0 0px 0px black;
	-moz-box-shadow: 0px 0px 0px black;
}

/* clearfix */
.nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.nav
{
	display: inline-block;
}

html[xmlns] .nav
{
	display: block;
}

* html .nav {
	height: 1%;
}
/* end styles for menus */

/*	====================================================================================
	Support for the page wrapper
	==================================================================================== */
.page_box
{
		margin: 0px;
		padding: 0px 0px 1px 0px;
		margin-left: auto;
		margin-right: auto;
		min-width: 640px;
		max-width: 1020px;
		min-height: 95%;
		background-color: white;
		box-shadow: 0px 3px 8px 1px rgb(150, 150, 150);
}

/*	====================================================================================
	Support for the page header
	==================================================================================== */
.header_box_top
{
	height: 130px;
}

.header_logo_box
{
	margin-top: 30px;
	padding-left: 32px;
	padding-right: 22px;
	height:80px;
	
	float: left;
}

.header_name_box
{
	margin-top: 30px;
	height: 80px;
	float: left;
}

.header_button_outer_box
{
	margin: 20px;
	height: 90px;
	width: 120px;
	padding: 10px;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(240, 240, 240);
	border-bottom: 1px solid rgb(120, 120, 120);
	border-radius: 6px;
	box-shadow: 0px 3px 8px 1px rgb(150, 150, 150);
	background-color: rgb(253,202,1);
	float: right;
	text-align: center;
}

.header_button_inner_box
{
	/*margin: 20px 20px 30px 20px;*/
	letter-spacing: -.05em;
	padding: 3px;
	height: 68px;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(120, 120, 120);
	border-bottom: 1px solid rgb(240, 240, 240);
	border-radius: 4px;
	box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-webkit-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-moz-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .9);
	color: rgb(0, 0, 209);
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	background-image: linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
	background-image: -webkit-linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
	background-image: -moz-linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
	background-image: -o-linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
}

.header_button_inner_box:hover
{
	background-image: linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
	background-image: -webkit-linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
	background-image: -moz-linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
	background-image: -o-linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
}

.header_demo_box
{
}

.header_purchase_box
{
}

/*	Make the download demo box and purchase now box disappear if there is not enough room. */
@media (max-width: 970px)
{
	.header_demo_box
	{
		display: none;
	}
}

@media (max-width: 810px)
{
	.header_purchase_box
	{
		display: none;
	}
}

/*	====================================================================================
	Support for the breadcrumb box.
	==================================================================================== */
.breadcrumb_box
{
	width: 100%;
	padding-bottom: 6px;
	overflow: hidden;
	border-bottom: 1px solid #939393;
	background-color: #f4f4f4;
	box-shadow: 0px 3px 8px 1px rgb(150, 150, 150);
}

.breadcrumb_margin
{
	margin-left: 18px;
}

.breadcrumbs
{
	font-family: 'Lucida Grande', Arial, san-serif;
	font-size: 10px;
	white-space: nowrap;
	color: #666666;
}

a.breadcrumbs:link, a.breadcrumbs:visited
{
	text-decoration: none;
	color: #666666;
}

a.breadcrumbs:hover
{
	text-decoration: underline;
}

a.breadcrumbs:active
{
	color: black;
}

/*	====================================================================================
	Support for the footer
	==================================================================================== */
.footer_box
{
	margin: 30px;
	padding: 6px 20px 10px 20px;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(240, 240, 240);
	border-bottom: 1px solid rgb(120, 120, 120);
	border-radius: 6px;
	box-shadow: 0px 3px 8px 1px rgb(150, 150, 150);
	background-color: #eee;
	
}

.footer_copyright
{
	padding-top: 6px;
	font-size: 10px;
	float: right;
}

.footer_link
{
	padding-left: 6px;
	font-size: 12px;
	color: rgb(0, 0, 209);
}

a.footer_link:link, a.footer_link:visited
{
	text-decoration: none;
}

a.footer_link:hover
{
	text-decoration: underline;

}

/*	====================================================================================
	Support for the topic boxes
	==================================================================================== */
.topic_box
{
	margin: 30px;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(240, 240, 240);
	border-bottom: 1px solid rgb(120, 120, 120);
	border-radius: 8px;
	box-shadow: 0px 3px 8px 1px rgb(150, 150, 150);
}
.justine_box
{
	height: auto; 
    width: auto; 
    max-width: 960px;
}

#BirthdayCake.jpg{
	height: auto; 
    width: auto; 
    max-width: 960px;
  }

/* h1 and h2 go outside of a topic_text_box and h3 goes inside a topic_text_box */
h1
{
	margin: 20px 15px 15px 15px;
	font-weight: bold;
	font-size: 2em;
	color: rgb(145, 16, 30);
	text-align: center;
}

h1 a:hover
{
	text-decoration: none;
	color: rgb(145, 16, 30);
}

h2
{
	margin: 15px 30px 15px 30px;
	font-weight: bold;
	font-size: 1.3em;
	color: rgb(145, 16, 30);
	text-align: left;
}

h2 a:hover
{
	text-decoration: none;
	color: rgb(145, 16, 30);
}

h3
{
	margin: 30px 0px 10px 0px;
	font-weight: bold;
	color: rgb(145, 16, 30);
}

h3 a:hover
{
	text-decoration: none;
	color: rgb(145, 16, 30);
}

.title_left
{
	margin-left: 30px;
	text-align: left;
}

.volume_label
{
	font-weight: bold;
	font-size: 1.4em;
	color: rgba(57,51,70,1);
}

.half_line
{
	font-size: 0.5em;
}

.topic_step_title
{
	font-weight: bold;
	color: rgb(145, 16, 30);
}

.topic_image_box
{
	margin: 10px auto 30px auto;
	overflow: visible;
	text-align: center;
	position: relative;
}

.topic_left_box
{
	width: 50%;
	float:left;
}

.topic_right_box
{
	width: 50%;
	float:right;
}

.topic_clear_right_left_box
{
	clear: both;
}

.topic_table
{
    border-collapse: collapse;
    border: 2px solid black;
	color: rgba(57,51,70,1);
	float: left;
}

.topic_table_cell_border
{
    border: 1px solid black;
	padding: 4px;
}

.topic_table_cell_no_border
{
	padding: 4px;
}

.topic_tile_image
{
	padding: 5px;
}

.topic_box_shadow
{
	box-shadow: 0px 3px 8px 1px rgba(50, 50, 50, 0.6);
}

.topic_box_small_shadow
{
	box-shadow: 0px 1px 2px 1px rgba(50, 50, 50, 0.6);
}

a .topic_box_shadow:hover
{
	box-shadow: 0px 4px 11px 3px rgba(40, 40, 40, 0.7);
}

.topic_image
{
    max-width: 94%;
    display: inline-block;
	box-sizing: content-box;
}

.topic_screenshot_image
{
    max-width: 100%;
    display: inline-block;
}

@media (max-width: 900px)
{
	.topic_box_disappearing_shadow
	{
		box-shadow: none;
		padding: 0px 5px;
	}
	
	.topic_tile_image
	{
		padding: 5px;
	}
}

.topic_text_box
{
	margin: 15px 30px 30px 30px;
}

.topic_2_column_box
{
	margin: 0px;
	padding: 0px;
	column-count: 2;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	
	column-gap: 10px;
	-moz-column-gap: 10px;
	-webkit-column-gap: 10px;
}

.topic_button_outer_box
{
	margin: 20px 20px 30px 20px;
	width: 220px;
	padding: 10px;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(240, 240, 240);
	border-bottom: 1px solid rgb(120, 120, 120);
	border-radius: 6px;
	box-shadow: 0px 3px 8px 1px rgb(150, 150, 150);
	background-color: rgb(253,202,1);
	margin-right:auto;
	margin-left: auto;
	text-align: center;
}

.topic_button_inner_box
{
	/*margin: 20px 20px 30px 20px;*/
	letter-spacing: -.05em;
	padding: 10px;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(120, 120, 120);
	border-bottom: 1px solid rgb(240, 240, 240);
	border-radius: 4px;
	box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-webkit-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-moz-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .9);
	background-image: linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
	background-image: -webkit-linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
	background-image: -moz-linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));
	background-image: -o-linear-gradient(top, rgb(209, 209, 209), rgb(231, 231, 231), 
		rgb(246, 246, 246), rgb(231, 231, 231),  rgb(200, 200, 200), rgb(189, 189, 189));	color: rgb(0, 0, 209);
	text-align: center;
}

.topic_button_inner_box:hover
{
	background-image: linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
	background-image: -webkit-linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
	background-image: -moz-linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
	background-image: -o-linear-gradient(top, rgb(189, 189, 189), rgb(216, 216, 216), 
		rgb(236, 236, 236), rgb(216, 216, 216),  rgb(180, 180, 180), rgb(169, 169, 169));
}

.topic_expanding_box
{
	position: absolute;
	width: 15%;
	height: 10%;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(240, 240, 240);
	border-bottom: 1px solid rgb(120, 120, 120);
	border-radius: 6px;
	box-shadow: 0px 1px 1px 1px rgba(150, 150, 150, 0.6);
	
	-webkit-user-select: none;
	-webkit-touch-callout: none;        
}

.topic_expanding_box_icon
{
	width: 9%;
	height: 11%;
}

.topic_expanding_box_pipe
{
	width: 3.5%;
	height: 5%;
}

.topic_expanding_box_1_text_line
{
	width: 15%;
	height: 4%;
}

.topic_expanding_box_2_text_lines
{
	width: 26.25%;
	height: 6%;
}

.topic_expanding_box_highlight_ring
{
	width: 100%;
	height: 100%;
	border: 3px solid rgb(253, 202, 1);
	border-radius: 6px;
}

.topic_expanding_box_highlight_ring:hover
{
	width: 100%;
	height: 100%;
	border: 6px solid rgb(253, 202, 1);
	border-radius: 6px;
}

.topic_expanding_box_inner_bezel
{
	width: 100%;
	height: 100%;
	border: 1px solid rgb(150, 150, 150);
	border-top: 1px solid rgb(120, 120, 120);
	border-bottom: 1px solid rgb(240, 240, 240);
	box-shadow: inset 0 1px 1px rgba(40, 40, 40, 0.6);
	-webkit-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
	-moz-box-shadow: inset 0 1px 1px rgba(40, 40, 40, 1);
}

.topic_expanding_box:hover
{
	width: 225px;
	height: 210px;
	transition-duration: 0.2s;
	transition-delay: 0.1s;
	transition-timing-function: ease-out;
	z-index: 2;
	box-shadow: 0px 3px 8px 1px rgba(150, 150, 150, 0.6);
}

.topic_expanding_content_box
{
	font-size: .9em;
	padding: 6px;
	opacity: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(230,230,230, 0.95);
	overflow: hidden;
	text-align: left;
}

.topic_expanding_box_title
{
	font-weight: bold;
	color: rgb(145, 16, 30);
	text-align: center;
	padding-bottom: 8px;
}

.topic_expanding_box:hover .topic_expanding_content_box
{
	transition-delay: 0.2s;
	transition-property: opacity;
	opacity: 1;
}

.topic_expanding_content_box p
{
	margin-bottom: 0.1em;
}

.topic_icon_box
{
	margin: 20px 0px 20px 0px;
	overflow: hidden;
}

.topic_1_icon_box
{
	margin: 0 auto;
	text-align: center;
}

.topic_3_icon_box
{
	width: 33%;
	float: left;
	text-align: center;
}

.topic_4_icon_box
{
	width: 25%;
	float: left;
	text-align: center;
}

.topic_5_icon_box
{
	width: 20%;
	float: left;
	text-align: center;
}
.topic_6_icon_box
{
	width: 16%;
	float: left;
	text-align: center;
}

.topic_small_text
{
	font-size: 0.8em;
}

.simple_list
{
	margin: 15px 0px 10px 0px;
	padding: 0px;
	list-style-type: none;
}

