/* CSS for v2 of video player */

.video-player {
  position: relative;
  background: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
}

.video-player:after {
  background: transparent url("https://www.paypalobjects.com/webstatic/mktg/kb/play-overlay.png") center center no-repeat;
  content: "";
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.video-player.loaded {
  cursor: auto;
}

.video-player.loaded:after {
  display: none;
  background-image: none;
}
.video-player a {
  cursor: pointer;
}
.video-player .video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 34px;
  width: 100%;
  background-color: #9191a9;
  background-color: rgba(245,245,245,0.3);
  
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate(0,0);
  transform: translate3d(0,0,0);

  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  -moz-transition: -moz-transform 0.4s ease-in-out;
  -ms-transition: -ms-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
.video-player.playing .video-controls.autohide {
  -webkit-transform: translate3d(0,34px,0);
  -moz-transform: translate3d(0,34px,0);
  -ms-transform: translate(0,34px);
  transform: translate3d(0,34px,0);
}
.video-player.playing:hover .video-controls.autohide {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate(0,0);
  transform: translate3d(0,0,0);
}
.video-controls a.video-play {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 15px;
  margin-right: 20px;
  margin-top: 5px;
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/kb/play-pause-sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -1px;
  z-index: auto;
  opacity: 0.7;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-out-in;
  -ms-transition: all 0.2s ease-out-in;
  transition: all 0.2s ease-in-out;
}
.video-player .video-controls a.paused-button {
  background-repeat: no-repeat;
  background-position: -29px -1px;
}
/* seek */
.video-player .video-seek {
  display: inline-block;
  position: relative;
  top: -12px;
  width: 520px;
  height: 8px;
  margin-top: 13px;
  border-radius: 15px;
  background: #535353;
  background: -moz-linear-gradient(top, rgba(186,186,186,1) 0%, rgba(222,222,226,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(186,186,186,1)), color-stop(100%,rgba(222,222,226,1)));
  background: -webkit-linear-gradient(top, rgba(186,186,186,1) 0%,rgba(222,222,226,1) 100%);
  background: -ms-linear-gradient(top, rgba(186,186,186,1) 0%,rgba(222,222,226,1) 100%);
  background: linear-gradient(to bottom, rgba(186,186,186,1) 0%,rgba(222,222,226,1) 100%);
  box-shadow: inset 0 -2px 2px #efefef;
}
.video-player .video-seek .ui-slider-handle {
  width: 10px;
  height: 20px;
  border: none;
  top: -6px;
  border-radius: 6px;
  box-shadow: inset 0 -2px 2px rgba(101,101,149,0.7);
  background: #e6e6e6;
  background: -moz-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(213,213,213,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(230,230,230,1)), color-stop(100%,rgba(213,213,213,1)));
  background: -webkit-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: -ms-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: linear-gradient(to bottom, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
}
.video-player .video-seek .ui-slider-handle.ui-state-hover {
  background: #fff;
}
.video-player .video-seek .ui-slider-loaded {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border: 0 none;
  position: absolute;
  z-index: 1;
  border-radius: 6px;
  box-shadow: inset 0 2px 2px rgba(101,101,149,0.4);
  background: #c4c4c4;
  background: -moz-linear-gradient(top, rgba(206,206,206,1) 0%, rgba(173,173,173,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(206,206,206,1)), color-stop(100%,rgba(173,173,173,1)));
  background: -webkit-linear-gradient(top, rgba(206,206,206,1) 0%,rgba(173,173,173,1) 100%);
  background: -ms-linear-gradient(top, rgba(206,206,206,1) 0%,rgba(173,173,173,1) 100%);
  background: linear-gradient(to bottom, rgba(206,206,206,1) 0%,rgba(173,173,173,1) 100%);
}
.video-player .video-seek .ui-slider-range {
  border-radius: 15px;
  box-shadow: inset 0 -3px 3px rgba(57,162,206,0.7);
  background: #4cbae8;
  background: -moz-linear-gradient(top, rgba(76,186,232,1) 0%, rgba(57,162,206,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(76,186,232,1)), color-stop(100%,rgba(57,162,206,1)));
  background: -webkit-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: -ms-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: linear-gradient(to bottom, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  z-index: 2;
}
/* volume */
.video-player .video-controls .volume-box {
  position: absolute;
  bottom: 1px;
  right: 0px;
  overflow: hidden;
  width: 24px;
  height: 30px;
  color: #fff;
  padding: 0px 10px;
}
.video-player .video-controls .volume-box:hover {
  height: 135px;
  padding-top: 5px;
}
.video-player .video-controls .volume-box:hover .volume-slider {
  position: relative;
  visibility: visible;
  opacity: 1;
}
.video-player .video-controls .volume-slider {
  position: relative;
  height: 100px;
  width: 8px;
  top: 0;
  left: 0;
  visiblity: hidden;
  opacity: 0;
  border-radius: 4px;
  box-shadow: inset 0 3px 3px rgba(239,239,239,0.7);
  background: rgb(222,222,226);
  background: -moz-linear-gradient(top, rgba(222,222,226,1) 0%, rgba(186,186,186,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(222,222,226,1)), color-stop(100%,rgba(186,186,186,1)));
  background: -webkit-linear-gradient(top, rgba(222,222,226,1) 0%,rgba(186,186,186,1) 100%);
  background: -ms-linear-gradient(top, rgba(222,222,226,1) 0%,rgba(186,186,186,1) 100%);
  background: linear-gradient(to bottom, rgba(222,222,226,1) 0%,rgba(186,186,186,1) 100%);
  
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.video-player .video-controls .volume-slider .ui-slider-handle {
  width: 16px;
  height: 9px;
  left: -4px;
  margin-bottom: -0.6em;
  margin-left: 0;
  border-radius: 6px;
  box-shadow: inset 0 -2px 2px rgba(101,101,149,0.7);
  background: #e6e6e6;
  background: -moz-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(213,213,213,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(230,230,230,1)), color-stop(100%,rgba(213,213,213,1)));
  background: -webkit-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: -ms-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: linear-gradient(to bottom, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
}
.video-player .video-controls .volume-slider .ui-slider-handle .ui-state-hover {
  background: #fff;
}
.video-player .volume-slider .ui-slider-range {
  border-radius: 15px;
  box-shadow: inset -3px 0 3px rgba(76,186,232,0.7);
  background: #4cbae8;
  background: -moz-linear-gradient(top, rgba(76,186,232,1) 0%, rgba(57,162,206,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(76,186,232,1)), color-stop(100%,rgba(57,162,206,1)));
  background: -webkit-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: -ms-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: linear-gradient(to bottom, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
}
/* volume button */
.video-player .video-controls .volume-button {
  position: absolute;
  bottom: 3px;
  right: 15px;
  display: block;
  width: 29px;
  height: 25px;
  border-radius: 2px;
  background-color: rgba(245,245,245,0.6);
  background-position: center center;
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/kb/volumefull.png');
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/volumefull.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/volumefull2x.png") 2x);
  background-size: 23px 23px;
  background-repeat: no-repeat;
}
.video-player .video-controls .volume-mute {
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/kb/volumemute.png');
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/volumemute.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/volumemute2x.png") 2x);
  background-size: 23px 23px;
  background-repreat: no-repeat;
}
.video-player .video-fullscreen {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(245,245,245,0.6);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("https://www.paypalobjects.com/webstatic/mktg/kb/fullscreen.png");
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/fullscreen.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/fullscreen2x.png") 2x);
  background-size: 24px 24px;
  border-radius: 2px;
  overflow: hidden;
  text-indent: -999em;
  opacity: 0;
  
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.video-player:hover .video-fullscreen {
  opacity: 1;
}
/* Disable in lightbox */
.ui-dialog .video-player .video-fullscreen {
  display: none;
}
.video-player.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}
.video-player.fullscreen .video-fullscreen {
  background-image: url("https://www.paypalobjects.com/webstatic/mktg/kb/shrink.png");
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/shrink.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/shrink2x.png") 2x);
  background-size: 24px 24px;
}

/* inline jquery ui styles */
.ui-slider-handle {
  position: absolute;
  z-index: 2;
  display: block;
  margin-left: -0.6em;
  outline: none;
}
.ui-slider-range {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border: 0 none;
  position: absolute;
  z-index: 1;
}
.video-modal .ui-dialog-content {
  padding-bottom: 1.5em;
}
/* accessibility fix */
.ui-dialog .ui-dialog-titlebar-close:focus {
    border: 1px dotted #999;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
.nav > li.disabled > a {
  color: #e6e6e6;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #e6e6e6;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #f5f5f5;
  border-color: #0079c1;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #f5f5f5 #f5f5f5 #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #777777;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
}
@media (min-width: 768px) {
  
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #0079c1;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
}
@media (min-width: 768px) {
  
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

#body.modal-on{overflow:hidden}.hero-dark-text{color:#333;margin-bottom:10px}.hero-bg{background-image:url('https://www.paypalobjects.com/webstatic/en_US/mktg/credit-card-reader/here-engagement-hero.jpg');height:374px}@media (orientation:portrait){html[data-device-type="portable"] .hero-bg{background-position:-170px 0}}html[data-device-type="mobile"] .hero-bg{background:none;min-height:400px}.hero-bg .containerCentered{height:420px}.hero-bg .editorial-container{width:34%}@media (orientation:portrait){html[data-device-type="portable"] .hero-bg .editorial-container{width:66%}}html[data-device-type="mobile"] .hero-bg .editorial-container .editorial-cell{padding-top:10px}html[data-device-type="mobile"] .hero-bg .editorial-container .editorial-cell .contentPara{color:#777}.hero-bg .hatch{margin-top:15px}html[data-device-type="mobile"] .hero-bg .hatch{width:270px;margin:0 auto}.hero-bg .hatch:after{clear:both;content:'';display:block}.hero-icon-links{display:block;float:left;width:74px;height:75px;cursor:pointer;background-image:url('https://www.paypalobjects.com/webstatic/en_US/mktg/credit-card-reader/iconsSprite.png');text-indent:-99999px}.hero-icon-links.videos-icon{background-position:-111px 0}.hero-icon-links.topics-icon{background-position:-223px}.hero-icon-links+.hero-icon-links{margin-left:40px}html[data-device-type="mobile"] .hero-icon-links+.hero-icon-links{margin-left:20px}.nav-bar{height:50px;background:#eee;padding:7px 0;text-align:right;box-shadow:none}.nav-bar .nav-bar-right{width:500px;height:36px;font-size:16px;line-height:32px;color:#888}.nav-bar .nav-bar-right .btn{width:260px;height:34px;margin-left:20px;line-height:13px}html[data-device-type="mobile"] .nav-bar{height:auto}html[data-device-type="mobile"] .nav-bar .pull-right{width:auto;height:auto;left:0;text-align:center}html[data-device-type="mobile"] .nav-bar .pull-right .btn{margin:0 auto 5px;display:block;width:50%}.grey-down-arrow{width:0;height:0;display:block;margin:0 auto;border-left:17px solid transparent;border-right:17px solid transparent;border-top:17px solid #eee}.pulloutPara{font-size:18px}#business .pulloutPara{margin-bottom:15px}#business a.btn{color:#fff}#business a.btn:hover,#business a.btn:focus{color:#fff}#contactus{padding:65px 0}#contactus .pulloutPara{padding-bottom:0}#contactus .pulloutPara span{display:block;padding-top:15px}#contactus .phone{font-size:24px}#contactus .times{font-size:14px}.row-fluid .span4{color:#fff}.dark p{color:#fff}.lightContent{height:420px;background-color:#01437d;background:-moz-radial-gradient(circle at 60% 50%, #2e88c8, #01437d, #01437d);background:-webkit-radial-gradient(60% 50%, circle, #2e88c8, #01437d, #01437d);background:-ms-radial-gradient(circle at 60% 50%, #2e88c8, #01437d, #01437d);background:radial-gradient(circle at 60% 50%, #2e88c8, #01437d, #01437d)}html[data-device-type="mobile"] .lightContent{background:-webkit-radial-gradient(50% 38%, circle, #2e88c8, #01437d, #01437d);background:-ms-radial-gradient(circle at 50% 38%, #2e88c8, #01437d, #01437d);background:radial-gradient(circle at 50% 38%, #2e88c8, #01437d, #01437d)}.editorial-cell{top:-85px;position:relative}#videos{padding:24px 0}#videos .pulloutHeadline{padding:24px 0}#videos .center-block{width:100%}.videos-thumbnails li{padding:5px;text-align:center;display:inline-block;vertical-align:top;width:32%}html[data-device-type="dedicated"] .videos-thumbnails li{margin:15px 0}.videos-thumbnails li p{padding:2px 0;text-align:left;width:240px}.videos-thumbnails li .thumb-subhead{display:block;margin:0 auto;font-size:14px;font-weight:normal;color:#e6e6e6}.videos-thumbnails .thumb-head{font-size:16px}.videos-thumbnails .play{display:inline-block}.videos-thumbnails .play>span{left:82%;top:77px;width:30px;height:30px;border:2px solid #009cde;margin:0}.videos-thumbnails .play>span:after{top:68%;left:66%;border-width:7px 13px;border-left-color:#009cde}.nav-tabs{padding:0;border-bottom:1px solid #009cde;text-align:center}.nav-tabs a{display:inline-block;font-size:inherit;color:#009cde;text-decoration:none;height:28px}.nav-tabs a.active,.nav-tabs a:hover{color:#777}.nav-tabs a+a{padding:0 35px;border-left:1px solid #d2eaf6}@media (orientation:landscape){html[data-device-type="portable"] .nav-tabs a+a{padding:0 25px}}@media (orientation:portrait){html[data-device-type="portable"] .nav-tabs a+a{padding:0 5px}}.nav-tabs a:first-child{padding-right:35px}@media (orientation:landscape){html[data-device-type="portable"] .nav-tabs a:first-child{padding-right:25px}}@media (orientation:portrait){html[data-device-type="portable"] .nav-tabs a:first-child{padding-right:5px}}html[data-device-type="mobile"] .nav-tabs{margin:0;text-align:left;border:none}html[data-device-type="mobile"] .nav-tabs a+a{padding:0;border:none}html[data-device-type="mobile"] .nav-tabs a:after{content:'';display:inline-block;width:0;height:0;margin-left:5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #009cde}html[data-device-type="mobile"] .nav-tabs a.active:after{content:'';display:inline-block;width:0;height:0;margin-left:5px;position:relative;top:3px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #777}.arrow{display:block;position:relative;width:0;height:0;margin:0 auto;left:-450px;border-bottom:none;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #009cde}@media (orientation:landscape){html[data-device-type="portable"] .arrow{left:-400px}}@media (orientation:portrait){html[data-device-type="portable"] .arrow{left:-310px}}.active{border:none}.faqs-cat{margin-top:30px;width:100%;display:inline-block}.faqs-cat.active{display:inline-block}.faqs-cat a{width:47%;display:inline-block;vertical-align:middle;padding:10px;border:1px solid #e6e6e6;height:60px}.faqs-cat a:hover{background-color:#fafafa}.faqs-cat a span{font-size:18px}.faq .subheadline{font-size:16px}.faq-a{display:none}.faq-a.content{padding:15px}.faq-a h3{font-size:25px;padding-bottom:12px}.faq-a p{font-size:16px}.hr6{border:0;height:0;margin:15px 0;border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}.navigators{margin-top:10px}.navigators .faq-prev{float:left}.navigators .faq-next{float:right}p.footnotes{clear:both;padding-top:.5em;font-size:13px}p.footnotes a{font-size:13px}table.chart{border-collapse:collapse}table.chart td,table.chart th{padding:5px;border:1px solid black}table.chart td:first-child,table.chart th:first-child{border-left:0}table.chart td:last-child,table.chart th:last-child{border-right:0}table.chart tr:first-child td{border-top:0}table.chart tr:last-child td{border-bottom:0}.ui-dialog{-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.nav-hero .row-fluid{background-color:transparent}.videos-pullout .pulloutPara{padding:20px 0}.videos-pullout .list-anchors li{float:left;margin-right:5px}.videos-pullout .list-anchors li:after{content:'\007C';color:#003087}.videos-pullout .list-anchors li a span{margin-right:5px}.videos-pullout .list-anchors li a span:after{content:' \25b8 '}.videos-pullout .list-anchors li:last-child:after{content:''}.videos-pullout .right-pullout{margin-left:0}.videos-pullout .right-pullout .row{margin-bottom:25px}.videos-pullout .right-pullout .row div{display:inline-block;color:#777;vertical-align:middle}.videos-pullout .right-pullout .row div.content{padding-left:3%;width:70%}.videos-pullout .right-pullout .row div.ppf{color:#009cde;font-size:80px;width:80px;overflow:hidden}.videos-pullout .right-pullout .row div span{padding:0}.videos-pullout .right-pullout .row a:after{content:' \25b8 '}.learn-more{margin-top:30px}.learn-more a.bottom-acquisitionlink{color:#0079ad}.learn-more a.bottom-acquisitionlink:hover{color:#0c8dc4}html[data-device-type="mobile"] select.wide-select{width:240px}html[data-device-type="mobile"] .lightContent{height:560px}html[data-device-type="mobile"] .editorial-cell{top:0}html[data-device-type="mobile"] .hero-bg .containerCentered{background-position:center 30%;background-size:80%}html[data-device-type="mobile"] .hero-bg p{margin-top:10px;color:#fff}html[data-device-type="mobile"] .pull-left{float:none}html[data-device-type="mobile"] .pull-right{float:none;left:20px;position:relative}html[data-device-type="mobile"] .faqs-cat a{width:90%}html[data-device-type="mobile"] .categories a{display:block;margin:10px 0}html[data-device-type="mobile"] .nav-login span{text-align:left;margin-top:15px;width:50%;float:none}html[data-device-type="mobile"] .nav-login .pull-right{float:none;left:0}html[data-device-type="mobile"] .mobile-modal{overflow-y:scroll}html[data-device-type="mobile"] .videos-pullout .list-anchors li{float:none}html[data-device-type="mobile"] .videos-pullout .list-anchors li:after{content:none}html[data-device-type="mobile"] .videos-pullout .right-pullout .row{clear:both;margin:0;padding:15px 0}html[data-device-type="mobile"] .videos-pullout .right-pullout .row .content{padding-left:0}html[data-device-type="mobile"] #business a.btn{padding:10px}html[data-device-type="portable"] .editorial-cell{width:80%}html[data-device-type="portable"] .videos-thumbnails .thumb-head{width:100%}@media only screen and (max-width:321px){html[data-device-type="mobile"] .mobile-modal{width:91%;height:95%}}@media only screen and (min-width:321px){html[data-device-type="mobile"] .mobile-modal{width:95%;height:91%}}html[data-device-type="mobile"] .videos-thumbnails li{width:96%;margin:20px 0}html[data-device-type="mobile"] .videos-thumbnails li .play>span{top:77px;left:82%}@media (orientation:landscape){html[data-device-type="mobile"] .hero-bg .editorial-cell{top:45px}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){.videos-thumbnails .play>span{top:70px}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait){.faqs-cat a{width:45%}.hero-bg .containerCentered{background-size:65%}.videos-thumbnails li{width:40%}.videos-thumbnails li .thumb-subhead,.videos-thumbnails li a.play{width:240px}}.pulloutPara+a.contentLink{padding:10px}

.pp-articles-head{padding:80px 0}.pp-articles-body{padding-top:50px}.pp-article{display:inline-block !important;margin-left:0 !important;float:none !important;padding-right:1.1em;margin:40px 0;vertical-align:top}.pp-article .article-title{height:50px;display:table-cell;vertical-align:middle}.pp-article.span3{width:24.61%}.pp-article.span4{width:33%}.pp-article.span6{width:49.6%}.pp-article p.contentPara{min-height:91px;padding-bottom:5px}html[data-device-type="mobile"] .pp-article{width:100% !important}@media (max-width:768px) and (orientation:portrait){html[data-device-type="portable"] .pp-article{width:49% !important}}

@font-face{font-family:'ppf-actions';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.eot?-acnm6v&_=999999');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.woff?-acnm6v&_=999999') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.ttf?-acnm6v&_=999999') format('truetype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.svg?-acnm6v&_=999999#ppf-actions') format('svg')}@font-face{font-family:'ppf-features';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.eot?-acnm6v&_=999999');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.woff?-acnm6v&_=999999') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.ttf?-acnm6v&_=999999') format('truetype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.svg?-acnm6v&_=999999#ppf-features') format('svg')}@font-face{font-family:'ppf-media';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.eot?-acnm6v&_=999999');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.eot?#iefix-acnm6v&_=999999') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.woff?-acnm6v&_=999999') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.ttf?-acnm6v&_=999999') format('truetype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.svg?-acnm6v&_=999999#ppf-media') format('svg')}@font-face{font-family:'ppf-misc';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.eot?-acnm6v&_=999999');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.woff?-acnm6v&_=999999') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.ttf?-acnm6v&_=999999') format('truetype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.svg?-acnm6v&_=999999#ppf-misc') format('svg')}@font-face{font-family:'ppf-utility';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.eot?-acnm6v&_=999999');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.woff?-acnm6v&_=999999') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.ttf?-acnm6v&_=999999') format('truetype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.svg?-acnm6v&_=999999#ppf-utility') format('svg')}@font-face{font-family:'ppf-web';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.eot?-acnm6v&_=999999');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.woff?-acnm6v&_=999999') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.ttf?-acnm6v&_=999999') format('truetype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.svg?-acnm6v&_=999999#ppf-web') format('svg')}.ppf{speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;display:none\8;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ppf.actions,.ppf.action{font-family:'ppf-actions',Helvetica Neue,Arial,sans-serif}.ppf.features,.ppf.feature{font-family:'ppf-features',Helvetica Neue,Arial,sans-serif}.ppf.media{font-family:'ppf-media',Helvetica Neue,Arial,sans-serif}.ppf.misc{font-family:'ppf-misc',Helvetica Neue,Arial,sans-serif}.ppf.utility{font-family:'ppf-utility',Helvetica Neue,Arial,sans-serif}.ppf.web{font-family:'ppf-web',Helvetica Neue,Arial,sans-serif}

