/* CSS Document */




iframe {
border-radius: 50px 15px;
border:8px solid #f29522;
width:995px;
height:720px;
	box-shadow: 0 9px #999;
	background-image: url(../images/connectedglobe.png);

 } 

.button1 {
	outline: 0;
    background-color: #F29522;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
	border-radius: 25px;
	 box-shadow: 0 9px #999;
}


.button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button1 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -50px;
  transition: 0.5s;
}

.button1:hover span {
  padding-right: 25px;
}

.button1:hover span:after {
  opacity: 1;
  right: 0;
}

.button1:active {
  background-color: #999;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

