#popupmessage {
    display: none;
    position: fixed;
    
    bottom: 50%;
    right: 50%;
    
    background-color: white;
    width: 150px;
    padding: 10px;
    border: 5px ridge lightblue;
}
#popupform {
    display: none;
    position: fixed;
    
    bottom: 20%;
    right: 50%;
    
    background-color: white;
    
    padding: 10px;
    border: 5px ridge lightblue;
}

#popupform .form-buttons {
    margin-top: 5px;
}

#popupform label {
    display: block;
    margin-bottom: 5px;
    
}
#popupform input {

	border: 1px solid #cecece;
	
	font-size: 13px;
	/*padding: 6px 0 4px 10px;*/
	background: #F6F6f6;
	border-radius: 8px;
}
#popupform input { /* Для IE8 */
	padding-bottom: 5px\0;
}

#popupform input.button, a.popup {
	cursor: pointer;
	border: 1px solid #cecece;
	background: #f6f6f6;
	
	box-shadow: inset 0px 20px 20px #ffffff;
	border-radius: 8px;
	
	padding: 8px 14px;
	width: 105px;
	margin-right: 20px;
}

#popupform input.button {
    float: left;
    margin: 5px;
    background-color: lightblue;
}

#popupform textarea {
    resize: none;
    width: 140px;
    height: 3em;
}

a.popup {
    box-shadow: inset 4px 4px 4px #ffffff;
    text-decoration: none;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    background-color: #65d676;
    font-family: Helvetica, Arial, Sans-Serif;
}

#popupform input.button:hover, a.popup:hover {
	box-shadow: inset 4px -4px 4px #ffffff;
}

#popupform input.button:active, a.popup:active {
	margin-top: 1px;
	margin-bottom: -1px;
	zoom: 1;
}

.error_form {
    color: red;
}

/* ----------------- REFACTORING ------------------ */

.l-rightblock {
    float: right; margin-top: 20px;
}

/* ------------------------------------------------ */
/* Внешнее уравление */

.recallrequestbuttons {
    float: right; margin-left: 20px;
}

a.btn-request {
    text-decoration: none;
    color: #FCFDFE;
    padding: 6px;
	background-color: #66cc66;
	border-radius:6px;
	
	float: right;
	cursor: pointer;
}
.btn-request img {
    vertical-align: middle;
}

.btn-recall {
    display: inline;
    float: right;
    clear: right;
    margin-top: 12px;
}
.btn-recall img {
    vertical-align: middle;
    padding-right: 5px;
}

.btn-recall a {
    font-size: 0.8em;
    
    /*font-family: 'Courier New', Courier, monospace;*/
    border-bottom-style: dotted;
    color: black;
    
    cursor: pointer;
    border-bottom-width: 1px;
    
    margin-right: 9px;
}
.btn-recall:hover a { 
    border-bottom-style: none;
    
}