#my-button {
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	cursor:pointer;
}

#my-button2 {
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	cursor:pointer;
}
#element_to_pop_up {
	background-color:#ffffff;
	padding:20px; 
	border-radius:10px; 
	display:none;
	width:300px;
}

#element_to_pop_up2 {
	background-color:#ffffff;
	padding:20px; 
	border-radius:10px; 
	display:none;
	width:300px;
}
.e-title { border-bottom:solid 1px #cccccc;
	font-size:14px;
	padding-bottom:10px; 
	margin-bottom:10px;
}

.e-title2 { border-bottom:solid 1px #cccccc;
	font-size:14px;
	padding-bottom:10px; 
	margin-bottom:10px;
	color:#00adee;
	font-weight:bold;
}

.e-submit { 
	background-color:#2b91af;
	border-radius:5px;
	cursor:pointer;
	border:0;
	padding:5px 10px 5px 10px;
	color:#ffffff;
}

.e-submit2 { 
	background-color:#00adee;
	border-radius:5px;
	cursor:pointer;
	border:0;
	padding:5px 10px 5px 10px;
	color:#ffffff;
}

.bClose {
	position:absolute;
	right:-7px;
	top:-7px;
	background-color:#2b91af;
	border-radius:7px;
	box-shadow:0 2px 3px rgba(0,0,0,0.3);
	color:#fff;
	cursor:pointer;
	display:inline-block;
	padding:5px 10px 5px 10px;
	text-align:center;
	text-decoration:none
}