/* CSS PAGE	FOR HARPTHERAPYWORLD - 05.20.20*/
/* EDITED 27 JULY 2022*/
/* --- MAIN LEVEL ELEMENTS --- */
/* --- RESET BROWSER DEFAULTS TO 0 --- */

* {
	margin: 0;
  	padding: 0;	
} 
/*/////////////////////////////////////////////
///////////////////////////////////////////////
//////////////////BODY ELEMENTS////////////////
///////////////////////////////////////////////

/* --- DEFINE ELEMENT SIZE TO INCLUDE CONTENT PADDING AND BORDER--*/

* {
	box-sizing: border-box;
}

body {
	
/* This is the formatting color of the area OUTSIDE of the text area*/
	margin: 20px;
	background-color: moccasin;
}

p { /* This controls content with <p></p> tags */ 
	
	padding: 0px 0px 0px 0px;
	font-family: Arial, Verdana, Courier, monospace;
	font-size: 2.4vw;
	color:black;
	line-height: 1.15em; /* This gives added white space between lines */
}

h1 {
	color: #004C4C;
	font-weight: bold;
	font-size: 4.50vw;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

h2 {
	color: #004C4C;
	font-weight: bold;
	font-size: 1.90em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align:center;
}

h3 {
	/*this is for image captions*/
	font-size: 27px;
	text-align:center;
	color: #E0B3EE;
	
}

/*FOR UNIT SUMMARY TITLE HEADERS*/
h4 {
	
	color:#497542;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.15em;
	
}

h5{
	font-family: Arial, Helvetica, sans-serif;
	text-align:left;
	font-size: 2.15vw;
	padding:10px;
}

h6 {
	
	font-family:Arial, Courier, monospace;
	font-size:45px;
	height:40px;
	text-align:center;
	margin: 0px;
	padding:20px;
}

li {
	margin: 8px 0px 0px 60px;
	font-family:Verdana, Arial, Courier, monospace;
	font-size:2.4vw;
	
}

/* --- STYLE HYPERLINKS ---*/

/*--- when mousing over link change background color */

a:hover { 
	color: #C39 ; 
	background: gold; 
}

/* selected link */
a:active {
    color: #1972EE;
	text-decoration: none;
}

/* unvisited link */
a:link {
    color: #1972EE;
	text-decoration:none;
}
/* visited link */
a:visited {
    color: #93F;
	text-decoration: none;
}

/* mouse over link */
a {
  color:blue;
  /* First we need to help some browsers along for this to work.
     Just because a vendor prefix is there, doesn't mean it will
     work in a browser made by that vendor either, it's just for
     future-proofing purposes I guess. */
	-o-transition:color .1s ease-out, background 2s ease-in;
	-ms-transition:color .1s ease-out, background 2s ease-in;
	-moz-transition:color .1s ease-out, background 2s ease-in;
	-webkit-transition:color .1s ease-out, background 2s ease-in;
	/* ...and now for the proper property */
	transition:color .1s ease-out, background 2s ease-in;
}

/*---STYLE THE TOP BANNER ---*/
/* The height measurement here controls the width between the header and the body text */

.header {

	padding: 0px 10px 10px 0px;
	height:7vw;
}


/* --- STYLE WHERE A USER IS AND PARENT PAGES ---*/


.breadcrumbs {
	
	font-family: Verdana, Courier new, Comic Sans,  Arial, Helvetica, sans-serif;
	font-size: 1.99vw;
 	margin: 0px 0px 34px 0px;
	padding: 40px 0px 0px 0px;
}

.breadcrumbs a {   /*this is the color of "Home" */
	
	font-family: Courier new, Comic Sans,  Arial, Helvetica, sans-serif;
	font-size: 2.59vw;
	color: blue;
	text-decoration: none;
	font-weight:550;
}

/* --- CREATE CONTENT AREA  ---*/

/* Create two columns that float next to each other */
/* The first column is the navigation menu */
.column1 {
  	float: left;
  	width: 24.33%;
  	padding: 0px;
}

/* The second column is the content area */
.column2 {
  	float: right;
  	width: 75.0%;
  	padding: 0px;
 
}

/* Clear floats after the columns */
.row:after {
  	content: "";
  	display: table;
  	clear: both;
}

/* --- FOOTER --- */
.footer {
	position:relative;
  	margin:-22px -3px 30px px;
  	background-color:#fef3d9;
  	text-align: center;
  	padding: 0px;
  	font-size:2.6vw;
  	width:98%;
  	height:120px;   /* Height of the footer */
}

#last_edited  {
	
	background-color:#fef3d9;
	font-size:1.4vw;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serifArial, "Courier New", Courier, monospace;	
	font-style: italic;
	margin:10px 0px -20px 0px;
	text-align:center;
	width:100%;	
	
	line-height: 1.1em;
}

/* Make all images responsive to the viewport size  */
.img {
  	width: 100%;
  	height: auto;
}

/*The follow code styles the salutation, link to account, and logoff*/

.account_box_image  {
	
	margin: 30px -2px 0px 0px;
	float:right;
	height:9.5vw;
	width:12.5%;
}

.account_box_text  {
	/*display:block;*/
	float: right;
	font-family:  Arial, Verdana, Helvetica, sans-serif;
	line-height:1.37em;
	text-align:center;
	margin: 34px 10px -30px 5px;
	font-weight:200;
	font-size:1.9vw;	
}

/*style the "Processing...please wait" spinning icon*/

#spinner {
	width:20%;
	height:auto;
}

/*position and style Page Titles*/

.pagetitle {
	font-family:Verdana, Geneva, sans-serif;
	margin: 0px 0px 0px 0px;
	background-color:#CCAED0;	
	border: 1px solid #39F ;
	color:  #FFFFFF; /*font color*/
	font-size:3.79vw;
	padding: 4px 4px 4px 0px ;
	height: auto;
	width: 98%;
	text-align:center;
}

#pagetext { 
	/*Style page content*/
	background-color:#fef3d9;
	font-size: 4U6px;
	margin: 0px 0px 0px 0px; /* This makes room for the nav menu + margin */ 
	padding: 20px 20px;
	width: 98%;
}

/*This code styles the underlying box of the navigation menu*/

#nav {  
position:relative;
	float:left;
	display:block;
	width:auto;
	height:auto;
  	text-align:center;
	background-color: #DBD0BC;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size:26px;
	
}

#nav a {  /*this level designs the appearance of the top level of navigation*/
	display:block; /* this makes the menu selections appear rectangular and straight */
	font-family: Arial, Helvetica, sans-serif;
	font-size:2.1vw;
	color: #ffffff;
	width:22.8vw;
	margin:0px 0px 0px 0px;
}
 
.nav_active_1 a {  /* red nav strip with red border */ 
	/*background-color:  #A4A6A3;*/
	background-color:#ebc07a;
	border: 2px solid #8C5251;
	border-right: 10px solid #FF0000;
	font-weight: bold;
	width: 185px;

		
}

.nav_parent_1 a {  /* dark salmon nav strip */ 
	/*background-color:  #A4A6A3;*/
	/*background-color:#d0ceae;*/
	font-weight: bold;
	text-decoration: none;
	/*text-transform: uppercase;*/
	margin: 3px 0px 3px 10px; 
	padding: 3px 5px 3px 11px;
	width: 185px;
	
}

.nav_parent_1 a:hover {   
	/*background-color:  #A4A6A3;
	background-color:#d0ceae;
	border: 1px solid #0C6B7F;
	border-left: 10px solid #0C6B7F;*/
	font-weight: bold;
	
	text-decoration: none;
	/*text-transform: uppercase;*/
	margin: 3px 0px 3px 0px; 
	padding: 2px 5px 2px 11px;
	width: 184px;
}

/*edit this to display menu links that are not selected*/

.nav_inactive_1 a { /* light blue nav strip -  */
	/*background-color:  #A4A6A3;*/
	background-color:#d0ceae;
	font-weight: bold;
	/*text-transform: uppercase;*/
	margin: 3px 0px 3px 0px; 
	padding: 3px 5px 3px 11px;
	width: auto;
		
}

.nav_inactive_1 a:hover { /* light blue nav strip with blue border */
	/*background-color:  #A4A6A3;*/
	/*background-color:#d0ceae;*/
	/*border: 1px solid #0C6B7F;
	/*border-left: 10px solid blue;*/
	font-weight: bold;
	text-decoration: none;
	margin: 3px 0px 3px 0px; 
	padding: 2px 5px 2px 11px;
	width: 188px;
	
}

.nav_active_2 a {  /* red nav strip with red border */ 
	background-color: #7798ed;
	
	/*border: 1px solid #8C5251;*/
	border-right: 10px solid #FF0000;
	text-decoration: none;
	margin: 3px 0px 3px 25px; 
	padding: 2px 5px 2px 10px;
	width: 169px;
	
}

/*edit this to change inactive children of 1a*/
.nav_inactive_2 a { /* medium salmon nav strip */
	background-color: #BBB1A2;
	border: none;
	margin: 3px 0px 3px 15px; 
	padding: 3px 5px 3px 11px;
	width: 192px;
}

.nav_inactive_2 a:hover { /* medium salmon nav strip with green border */ 
	
	background-color:gainsboro;
	border: 1px solid #BBB1A2;
	border-right: 5px solid green;
	text-decoration: none;
	margin: 3px 0px 3px 0px; 
	padding: 2px 5px 2px 11px;
	width: 169px;
	
}


.nav_active_3 a {  /* red nav strip with red border */
	background-color: #CBBDB3;
	border: 1px solid #8C5251;
	border-right: 10px solid #FF0000;
	text-decoration: none;
	margin: 3px 0px 3px 40px; 
	padding: 2px 5px 2px 10px;
	width: 154px;
}

.nav_inactive_3 a { /* light salmon nav strip */
	background-color: #d4a89b;
	border: none;
	text-decoration: none;
	margin: 3px 0px 3px 40px;
	padding: 3px 5px 3px 11px;
	width: 155px;
}

.nav_inactive_3 a:hover {  /* light salmon nav strip with blue border */ 
	border: 1px solid #CBBDB3;
	
	border-right: 5px solid green;
	
	text-decoration: none;
	margin: 3px 0px 3px 0px;
	padding: 2px 5px 2px 11px;
	width: 154px;
}

.nav_active_4 a {  /* light salmon nav strip with red border */
	background-color: #B8CAE2;
	border: 1px solid #8C5251;
	border-right: 10px solid #FF0000;
	text-decoration: none;
	margin: 3px 0px 3px 55px; 
	padding: 2px 5px 2px 10px;
	width: 140px;
      color: #FF0000;
}

.nav_inactive_4 a { /* light salmon nav strip */
	background-color: #B8CAE2;
	border: none;
	text-decoration: none;
	margin: 3px 0px 3px 55px;
	padding: 3px 5px 3px 11px;
	width: 141px;
	color: #FF0000;
}

.nav_inactive_4 a:hover {  /* light salmon nav strip with blue border */ 
	background-color: #B8CAE2;
	border: 1px solid #B8CAE2;
	
	border-right: 5px solid green;
	
	text-decoration: none;
	margin: 3px 0px 3px 0px;
	padding: 2px 5px 2px 11px;
	width: 140px;
	color: #FF0000;
}

.nav_active_5 a {  /* light salmon nav strip with red border */
	background-color: #C3F;
	border: 1px solid #8C5251;
	border-right: 10px solid #FF0000;
	text-decoration: none;
	margin: 3px 0px 3px 55px; 
	padding: 2px 5px 2px 10px;
	width: 140px;
      color: #FF0000;
}

.nav_inactive_5 a { /* light salmon nav strip */
	background-color: #A06BD1;
	border: none;
	text-decoration: none;
	margin: 3px 0px 3px 75px;
	padding: 3px 5px 3px 11px;
	width: 121px;
	color: #FF0000;
}

.nav_inactive_5 a:hover {  /* light salmon nav strip with blue border */ 
	border: 1px solid #C3F;
	
	border-right: 5px solid green;
	
	text-decoration: none;
	margin: 3px 0px 3px 35px;
	padding: 2px 5px 2px 11px;
	width: 120px;
	color: #FF0000;
}

.TextWrap /*This styles the text around images*/{	
	float: left;
	margin-top:8px;
	margin-right:25px;
	margin-bottom:10px;	
}

#proc_message {/*style for all alerts and messages when users interact with MySQL - some "return to previous page" links use this also*/
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size:2.5vw;
	font-weight:bold;
	text-align:center;
}

#proc_message_no_center {/*style for all alerts and messages when users interact with MySQL - this is positioned left*/
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size:25px;
	font-weight:bold;

}

div.label {
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size:25px;
	font-weight:bold;
	text-align:left;
}

input[type="text"] {
    width: 300px;
    padding: 4px 10px;
    margin: 0px 0;
    box-sizing: border-box;
	font-size:26px;
	font-style:normal;
}

.button {
    background-color: blue; 
    border: none;
    color: white;
	margin: 30px 0px 0px 0px;
    padding: 12px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
	font-weight:bold;
}

.button1 {
	
    background-color: #faf1cd; 
    border: double;
    color: black;
	margin: 30px 30px 30px 536px;
    padding: 12px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
	font-weight:bold;
}

.button2 {
	
    background-color: #faf1cd; 
    border: double;
    color: black;
	margin: 30px 30px 30px -20px;
    padding: 12px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
	font-weight:bold;
}

.button3 {
	
    background-color: #CF9 ; 
    border: ;
    color: black;
	margin: 30px 30px 30px -20px;
    padding: 12px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 26px;
	font-weight:bold;
}

.button3:hover {
	background-color:salmon;
}

.button4 {
	
    background-color: #CF9 ; 
    border: ;
    color: black;
	margin: 30px 30px 30px 50px;
    padding: 12px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 26px;
	font-weight:bold;
}

.button6 {

    background-color: #998BC4; /* Green */
    border: none;
    color: white;
	height:40px;
	margin: 10px 0px 0px 0px;
    padding: 12px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 29px;
	font-weight:bold;
}

.button6:hover {
	background-color:#476e9e;
}
.button6:active {
	position:relative;
	top:1px;
}

.button7 {

    background-color: #998BC4; 
    border: none;
    color: white;
	height:60px;
	margin:0px;
	
    padding: 10px 10px 10px 10px;
    
    font-size: 29px;
	font-weight:bold;
}

.button7:hover {
	background-color:#476e9e;
}
.button7:active {
	position:relative;
	top:1px;
}

.goBack_button {
	
	-moz-border-radius:28px;
	-webkit-border-radius:28px;
	border-radius:28px;
	border:1px solid #4e6096;
	/*display:inline-block;*/
	cursor:pointer;
	color:blue;
	font-family:Arial;
	font-size:2.5vw;
	font-weight:bold;
	padding:9px 31px;
	/*margin: 20px 0px 0px 0px;*/
	text-align:center;
}
.goBack_button:hover {
	background-color:pink;
}
.goBack_button:active {
	position:relative;
	top:1px;
}

.upload_button {
	background-color:#7892c2;
	-moz-border-radius:28px;
	-webkit-border-radius:28px;
	border-radius:28px;
	border:1px solid #4e6096;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:21px;
	font-weight:bold;
	padding:9px 31px;
	margin: 20px 0px 0px 0px;
	text-decoration:none;
	text-shadow:0px 1px 0px #283966;
	text-align:center;
}

.upload_button:hover {
	background-color:#476e9e;
}

.upload_button:active {
	position:relative;
	top:1px;
}

/*This isn't used much*/
.textbox { 
	margin: 30px 30px 25px 536px;
    border: double; 
    outline:0; 
    height:25px; 
    width: 275px; 
  } 

/*The dropcontainer series style the dropdown 
menus - the reason there are so many of them is 
because different pages need different menu widths
and margins*/

.dropcontainer {
	
	font-size: 27px;
	color:  #000;
	width:400px;
	margin:10px 10px 10px 40px;
}

.dropcontainer2 {

	font-size: 27vw;
	color:#000;
	width:980px;
	height:50px;
	margin: 10px 0px 0px -50px; 
	padding: 0px;
}

/*This styles the wireless carrier dropdown on the Create Account page*/

.dropcontainer3 {

	font-size: 30px;
	color:#000;
	width:520px;
	height:70px;
	margin: 10px 0px 0px -50px; 
	padding: 10px;
}

/*this styles "My Account" page*/

#account_info {
	
	font-family: Garamond, Geneva, sans-serif, "Courier New", Courier, monospace;
	font-size:2.2vw;
	font-weight: bold;		
}

.account_title {
	
	font-family: Verdana,Times-New Roman, sans-serif, "Courier New", Courier, monospace;
	font-size:2.2vw;
	font-weight: bold;
	
}

.account_info {
	
	font-family: Geneva, sans-serif, "Courier New", Courier, monospace;
	font-size:2.2vw;
	font-weight: bold;
	color: #656565;		
}

/*style search when there is no item available*/

#redfont {
	
	font-family: Geneva, sans-serif, monospace;
	font-size:2.9vw;
	font-weight: bold;
	color: red;		
}
#returns {
	
font-size:24px;	
text-align:center;
font-weight:bold;
	
}
/*style search returns when there is an item available*/

#greenfont{
	
	font-family: Geneva, sans-serif, "Courier New", Courier, monospace;
	font-size:2.9vw;
	font-weight: bold;
	color:  #399;	
	}
	
	blockquote {
		font-size:18px;		
	}
	
	#choices {
	
	font-size:2.9vw;
}

/**********************************
Style the Create Account / Change password forms
***********************************/
form.signupform fieldset {
	margin-bottom: 10px;
}

form.signupform legend {
	padding: 0 2px;
	font-weight: bold;
	_margin: 0 -7px; /* IE Win */
}

form.signupform label {
	display: inline-block;
	line-height: 1.8;
	vertical-align: top;
	cursor: hand;
}

form.signupform fieldset p {
	list-style: none;
	padding: 5px;
	margin: 0;
}

form.signupform fieldset fieldset {
	border: none;
	margin: 3px 0 0;
}

form.signupform fieldset fieldset legend {
	padding: 0 0 5px;
	font-weight: normal;
}

form.signupform fieldset fieldset label {
	display: block;
	width: auto;
}

form.signupform label { width: 100px; } /* Width of labels */
form.signupform fieldset fieldset label { margin-left: 103px; } /* Width plus 3 (html space) */
form.signupform label.error {
	margin-left: 103px;
	width: 220px;
	font-size:26px;
}

form.signupform input.submit {
	margin-left: 3px;
}

.menu {
	
	margin: 20px 0px 0px 50px;
}
/*\*//*/ form.signupform legend { display: inline-block; } /* IE Mac legend fix */

div.container_page_msg {
	width: 960px;
	height: 610px;
	margin:50px auto;
}

div.main_page_msg {
	width: 608px;
	margin-top: 35px;
	border-radius: 5px;
	Border:8px solid #C9F;
	padding:0px 50px 20px;
}

div.container_terms {
	width: 1060px;
	height: 810px;
	margin:50px auto;
}

div.main_terms {
	width: 908px;
	margin-top: 35px;
	border-radius: 5px;
	border:8px solid #C9F;
	padding:0px 50px 20px;
}



#terms {
	
	padding: 0px 0px 0px 10px;
	font-family:Arial, "Book Antiqua", Palatino, serif;
	font-size:3vw;
	text-align:center;
	font-weight:bold;
	background-color:#fef3d9;
	width:120%;

	
}

#login_greeting {
font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
font-size:47px;
font-weight:bold;
text-align:center;
}

#logout_text {
	
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
font-size:47px;
font-weight:bold;
text-align:center;
	
}

.container {
	
	background:#FFCC33;
	height: auto;
	width: 85vw;
	padding: 0.5em;
	margin: 5px 0 0 -20px;	
}

.item {
	
	background:#FFFFCC;
	margin: 0.15em;	
	padding:20px;
}

.list {
	
	margin:0px 0px 0px 0px;
	font-size:4.5vw;
	
	
}