?/* ibell_style.css*/
/* jlu- Note: No space in front of ":" and on both sides of "-" , otherwise the style.css would not work properly -- 13/10/16 */
/* Ctrl-F5 on Chrome to refresh .css */
/* Notation of Attributes

 id
 #example -- id="example"

 class
 .example -- class="example"

 End of Notation of Attributes  */

#pageContainer {
	/* containing the whole page */
	position: relative;
	top: 10px;
	width: 100%;
	max-width: 1800px;	/* fit the max width of the brower */
	height: 3000px;
	margin: 10px auto 10px auto; /* center in the brower  or margin: 0px auto 0px auto; */
	/* padding: 10px;  clear area around the content */
	border-style: solid;
	border-width: thin; /* or use px; border-width does not work if used alone; Use the "border-style" property to set the borders first. */
	background-color: #FFFFFF; /* white */
	border-color: red; /* need to change to white after test */
}

.center {
	margin: auto;
}

#captionDiv {/* including logo, caption text and calendar-bell image */
	position: relative;
	width: 1000px;
	right: auto; /* right padding */
	left: auto; /* left padding */
	height: 100px;	/* 94 */
	/* background-color: #C0C0C0; = grey */
	border-width: 2px;
	border-color: blue;
}

#logo {
	width: 126px;
	height: 55px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #FFFFFF;
}

#captionText {/* div for caption text */
	position: relative;
	top: 30px;
	left: 5px;
	width: 500px;
	height: 50px;
	background-color: #FFFFFF;
	text-align: center;
}

#captionSymbolImg {
	position: absolute;
	width: 80px;
	height: 80px;
	top: 10px;
	left: 1100px;
	background-color: #FFFFFF;
}

#links {
	position: absolute;
	width: 620px;
	height: 30px;
	background-color: #C0C0C0;
}

img {
	/* working */
	width: auto;
	max-width: 100%;
	height: auto;
}

.auto-style2 {
	font-size: xx-large;
}

/* new navigation -- working -- 13/10/16*/
#navigationDiv ul {
	/* navigationDiv is the ID of a div */
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#navigationDiv ul li {
	float: left;
	display: inline;
	padding: 0px;
}

/* end of new navigation*/

a:visited {
	display: block;
	width: 120px;
	background-color: #98bf21; /* green */
	text-align: center;
	padding: 4px;
	text-decoration: none;
}

a:link:hover {
	color: #FFFFFF;	/* white */
	background-color: #7A991A; /* dark green */
}

a:hover, a:active {
	color: #FFFFFF;	/* white */
	background-color: #7A991A; /* dark green */
}

.for_a {/* for a href -- jlu- added - working for singup in download.html */
	display: block;
	width: 120px;
	color: #FFFFFF;
	background-color: #98bf21;
	text-align: center;
	padding: 4px;
	text-decoration: none;
	text-transform: uppercase;
	/*border: 1px solid;	#e5e5e5; -- color? */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.left {
	float: left;
	display: inline;
	padding: 0px;
}

.right {
	float: left;
	display: inline;
	padding: 0px;
	margin: 0 0 0 10px;
}
/* end of navigation */

/* div.contentDiv{ */
.contentDiv {
	list-style-type: none;
	/* width: 1788px; */
	min-height: 2200px;
	resize: vertical;
	/*
	 border-style: solid; /* this is a must otherwise border would not work */
	border-width: thick;
	border-color: green;*/
}

#navigationDiv, #contentDiv {
	list-style-type: none;
	position: relative;
	width: 100%;
}

#navigationDiv {
	font-size: large;
	height: 42px;
	top: 6px;
	padding: 0px;
	margin: 0px;
	left: 0px;
	background-color: #98bf21;
}

.leftSideDiv, .rightSideDiv {
	margin: 0px 10px 10px 10px;	/* to prevent the div from fleeing/overlapping top div - working  */
	/*height: 2100px;*/
	resize: vertical;
}

.leftSideDiv {
	/* overflow:hidden;	-- Not working */

	float: left;
	/*width: 300px;	*/ /* previous 400px;*/
	width: 30%;	/*changed on 19/8/17 */
	border-style: solid; /* this is a must otherwise border would not work */
	border-width: thin;
	border-color: white; /* blue; */
}

.schoolLogoTextDiv {/* working -- 6/4/17 */
	/*border-style: solid;
	 border-width: thin;*/
	margin-bottom: 10px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-color: #00BFFF;
}

.schoolLogoDiv {
	float: left;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 10px;
}

.saidTextDiv {
	padding: 10px;
}

.rightSideDiv {
	margin-left: 31%;
	*/	/* previous 420px; to prevent the div from fleeing/overlapping leftsidediv - working */
	/*float:   right;*/
	width: 68%;	/*changed on 19/8/17 */
	/* border-style: solid;  -- this is a must otherwise border would not work
	 border-width: thick;
	 border-color: blue;	 red; */
}

#commentAdDiv {
	/* position: relative; */
	/* height: 340px;	 jlu-added on 8/12/16 */
	margin: 0px auto 0px 0px;
	/*min-height: 200px;*/
	height: auto;
	font: arial;
	/* font-size: large; */
	text-align: left;
}

#principals_comment_div {
	font-size: large;
	width: 1130px;
	height: 68px;
	resize: vertical;
	/*margin-top: 5px;*/

	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-color: #00BFFF;
}

.featureBox {
	/*min-height: 548px;*/
	height: 560px; /*top: 10px; left: 0px; */
	/* margin: auto; center the box */
}

.icon_div {
	margin-left: 10px;
}
.interface_div {
	margin-top: 15px;
	right: 10px;
}

#schedulerScrnShot {
	position: absolute;
	width: 600px;
	height: 500px;
	top: 140px;
	left: 20px;
	background-color: #C0C0C0;
}

#imgFloatLeft {
	float: left;
	margin: 0 0 10px 10px;
}

#imgFloatRight {
	float: right;
	margin: 0 0 10px 10px;
}

/* footer position & width is the same as navigationDiv */
.footer {
	list-style-type: none;
	position: relative;
	top: 0px;
	/* text-align: center;--commented out on 31/8/21 */
	width: 100%;
	height: 30px;
	padding: 0px;
	margin-top: 15px;
	/*left: 0px;
	right: 30px;	--commented out on 31/8/21 */ /* added for vist count - 13/4 */
	font-size: x-large;
	color: white;
	background-color: gray;
	/*clear: both;*/
}

/* visit-counter class added on 3/5/20 */
.visit-counter {
	position: left;
	/*top: 0px;
	 right: 30px;
	 height: 30px;
	 */
	text-align: left;
	font-size: large;
	color: white;
}

.auto-style3 {
	margin-top: 0px;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 40%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
}

/* The Close Button */
.close {
	color: white;
	float: right;
	font-size: 30px;
	font-weight: bold;
}

.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	padding: 2px 16px;
	background-color: #5cb85c;	/* green */
	color: white;
}

.modal-body {
	padding: 2px 16px;
}

form li {
	list-style: none;
	margin-bottom: 5px;
}

form ul li label {
	float: left;
	clear: left;
	width: 210px; /* OK -- replced 100px; */
	text-align: right;
	margin-right: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

form ul li input, select, span {
	float: left;
	margin-bottom: 10px;
}

form textarea {
	float: left;
	width: 350px;
	height: 150px;
}

[type=submit] {
	clear: left;
	margin: 20px 0 0 230px;
	font-size: 18px
}

p {
	margin-left: 70px;
	font-weight: bold;
}

/* jlu- added below */

#buttonListDiv {
	/* for 2 buttons in signup or download.html */
	width: auto;	/* 290px; */
	height: 44px;
	padding: 0px;
	margin: 0px;
	left: 0px;
	background-color: #98bf21;
}

/* jlu - align divs */
.row {
	position: relative;
	top: 7px;
	text-align: center;
	border-color: white;
}

.row button {/* button itself */
	height: 35px;
	width: 115px;
	font-size: 20px;
	color: black;
	background: white;
}

.row button:hover {/* not working - jlu-added */
	background-color: #DCDCDC;	/* light gray */
}

.btn {/* the div contain a button */
	height: 35px;
	width: 115px;
	font-size: x-large;
	display: inline-block;
	margin-right: 10px;	/* space to the right in div */
	background-color: white;	/* #EEE; */
}

.btn:hover {/* working - jlu-added */
	background-color: #DCDCDC;	/* light gray */
}

.clear {
	clear: both;
}

#btn-submit {
	height: 45px;
}

/* For classes of forms in modal in home */
@charset "utf-8";
.form-signin, .form-register, .form-forgot, .form-download, .form-office, .form-order, .form-contact, .form-payment {/*jlu- added .form-download, .form-order pm 19/1/17 - add .form-forgot on 26/2/17 */
	resize: vertical;	/* Working -- 19/4/17 */
	overflow: auto;
	max-width: 500px;
	padding: 19px 29px 29px;
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
	box-shadow: 0 1px 2px rgba(0,0,0,.05);
	/* font-family:Tahoma, Geneva, sans-serif; */
	color: #3366CC;	/* sky blue */
	font-weight: lighter;
}

.form-contact input[type=text], .form-contact input[type=email] {
	font-size: 16px;
	height: 45px;
	padding: 7px 9px;
}

.form-contact input[type=textarea] {
	font-size: 16px;
	height: 360px;
	padding: 7px 9px;
}

#questionAnswer_div {/* cannot regulate pannels width */

	min-width: 800px;
	width: 100%;
	font-style: normal;
	text-align: left;
}

.panel-group {
	min-width: 600px;
	max-width: 800px; /*working*/
	font-style: normal;
	text-align: left;
}

#download_btn {/* for a href -- 24/7/17 */
	/*display: block;
	 width: 140px;*/
	/*height: 62px;
	 color: #FFFFFF;
	 background-color: #6495ED;  original #98bf21;
	 font-size: large;

	 text-align: center;
	 padding: 4px;
	 text-decoration: none;
	 text-transform: uppercase;
	 -webkit-border-radius: 5px;
	 -moz-border-radius: 5px;
	 border-radius: 5px;*/
}

.inline_divs {
	display: inline;
	height: 62px;
}

.form-signin input[type=text], .form-signin input[type=password], .form-signin input[type=email] {
	font-size: 16px;
	height: 45px;
	padding: 7px 9px;
}

.form-forgot input[type=text], .form-forgot input[type=email] {
	font-size: 16px;
	height: 45px;
	padding: 7px 9px;
}

.form-register input[type=text], .form-register input[type=password], .form-register input[type=email] {
	font-size: 16px;
	height: 45px;
	padding: 7px 9px;
}

.form-support {
	resize: vertical;
	overflow: auto;
	max-width: 760px;
	padding: 19px 29px 29px;
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
	box-shadow: 0 1px 2px rgba(0,0,0,.05);
	/* font-family:Tahoma, Geneva, sans-serif; */
	color: #3366CC;	/* sky blue */
	font-weight: lighter;
}

.form-support input[type=textarea] {/* added on 15/5/17 */
	font-size: 16px;
	height: 360px;
	padding: 7px 9px;
}

#signFeedbackDiv {
	overflow: auto;
	max-width: 800px;
	margin-top: 20px;
}

.signDivElement {
	/* Working - 12/1/17 */
	overflow: hidden; /* not working -- added on 20/1/17 -- Need to sort out */
	font-size: x-large;
	display: inline-block;
	box-sizing: border-box;
	padding: 5px;
}

#login_btn {
	margin-left: 20px; /* to apart from register button */
}

#text_download_Div {
	/*height: 62px;*/
	resize: vertical;
	/*margin-top: 5px;*/
	width: 1130px;
	/*height: 50%;
	 margin: 5px auto;*/
}

#freeTrailTextDiv {
	width: 85%;
	margin-top: 5px;
	font-size: xx-large;
	color: white; /* original red; */
	background: #6495ED; /* original yellow; */
	text-align: center;
	line-height: 60px; /*78px;*/
}

#briefFeatureDiv {
	font-size: large;
	margin: 0px auto 0px 0px;
	padding-left: 10px;
	min-height: 665px;
	resize: vertical;
	height: auto;
	font: arial;
	/* font-size: large; */
	text-align: left;
	padding: 0px 10px 0px 10px;
	border-style: solid;
	border-width: medium;
	border-color: #6495ED;
}

.interfaceDiv {
	margin: 0px auto 0px 0px;
	min-height: 600px;
	resize: vertical;
	height: auto;
	padding: 0px 10px 0px 10px;
	border-style: solid;
	border-width: medium;
	border-color: #6495ED;	/* #00BFFF; -- light green */
}

#questionAnswerDiv {
	font-size: large;
	overflow: hidden;
	height: 50px;
	/*width:100px;
	 display:flex;
	 flex-wrap: wrap; */
	/* justify-content: center ;  for horizontal aligning of child divs */
	/* align-items : center ;  for vertical aligning */
}

.signUpInHref {
	width: 25%;
	display: inline-block;
	margin-right: -4px;
	box-sizing: border-box;
	padding: 1%;
	font-size: x-large;
}

/*-------- 20/1/17 ----------*/

.btnDownload, .payPrompt {
	/* display: block;*/
	float: right;
	width: 120px;
	height: 30px;
	font-weight: normal;
	color: #FFFFFF;
	background-color: #98bf21;
	text-align: center;
	margin-right: 5px;	/* OK */
	padding: 4px;
	text-decoration: none;
}

table {
	align-items: center; /* for vertical aligning */
	border-collapse: collapse;
	width: 100%;
}

table, th, td {
	height: 40px;
	border: 1px solid blue;	/* sky blue */;
}

.order_options_div {
	font-size: large;
	overflow: hidden;
	padding: 5px;
}

#fullVersion_div {
	/* Working - 24/1/17 */
	font-size: large;
	overflow: hidden;
	align-items: center; /* for vertical aligning */
	padding: 5px;
	border: 2px solid blue;
}

.purchaseVersion {
	/* Working - 24/1/17 */
	overflow: hidden;
	left: 8px;
	/* height: 40px; */
}

#lease_div {
	/* Working - 24/1/17 */
	font-size: large;
	overflow: hidden;
	align-items: center; /* for vertical aligning */
	padding: 5px;
	border: 2px solid blue;
}

.leasePeriod {
	/* Working - 24/1/17 */
	overflow: hidden;
	left: 8px;
	/* height: 40px; */
}

.leasePeriodPriceDivElement {
	/* 24/1/17 */
	overflow: hidden; /* not working -- added on 20/1/17 -- Need to sort out */
	display: inline-block; /* working - aligh elements in the same line */
	box-sizing: border-box;
	padding: 5px;
}

.leaseDate {/* working - next line to the last leasePeriodPriceDivElement - 25/1/17 */
	font-size: large;
	padding: 5px;
}

/* refundTerm - added on 2/2/17 */
display: block;
width: 120px;
font-weight: bold;
color: #FFFFFF;
background-color: #98bf21;
text-align: center;
padding: 4px;
text-decoration: none;
text-transform: uppercase;

#a_refundTerm {
	display: none;
	color: #3366CC;	/* sky blue */
	font-size: large;
	overflow: hidden;
	text-transform: none;
}

/* for feedback message - added on 4/8/20 */
#message_div {
	font: arial;
	font-size: x-large;
	background-color: white;
	width: 600px;
	border: 5px solid green;
	padding: 10px;
	/*margin: 20px;*/
}
