Skip to content

Instantly share code, notes, and snippets.

@calmez
Created September 9, 2014 14:21
Show Gist options
  • Save calmez/e2a118c3ba0e31c56bba to your computer and use it in GitHub Desktop.
Save calmez/e2a118c3ba0e31c56bba to your computer and use it in GitHub Desktop.
ruby string matching overhead benchmark
require 'benchmark'
n = 100_000
with_iframe = open('with_iframe.html').read
without_iframe = open('without_iframe.html').read
Benchmark.bm do |x|
x.report("with_iframe, include?") do
n.times { with_iframe.include? "<iframe" }
end
x.report("without_iframe, include?") do
n.times { without_iframe.include? "<iframe" }
end
x.report("with_iframe, scan") do
n.times { with_iframe.scan(/<iframe/) }
end
x.report("without_iframe, scan") do
n.times { without_iframe.scan(/<iframe/) }
end
end
<!DOCTYPE html>
<!-- saved from url=(0019)http://liquidm.com/ -->
<html class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths js_active vc_desktop vc_transform vc_transform " lang="en-US" prefix="og: http://ogp.me/ns#" data-ember-extension="1" style=""><!--<![endif]--><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div{font-size:10px}</style><link type="text/css" rel="stylesheet" href="./without_iframe_files/css"><style type="text/css">@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style type="text/css">.gm-style{font-family:Roboto,Arial,sans-serif;font-size:11px;font-weight:400;text-decoration:none}</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>LiquidM - Mobile Advertising Management Platform</title>
<meta name="description" content="LiquidM - LiquidM">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900,900italic">
<link rel="stylesheet" href="./without_iframe_files/general.css" type="text/css" media="screen">
<link rel="stylesheet" href="./without_iframe_files/style.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="./without_iframe_files/animate.css" type="text/css" media="screen">
<link rel="stylesheet" href="./without_iframe_files/noJS.css" type="text/css" media="screen">
<link rel="shortcut icon" href="http://liquidmcom.c.presscdn.com/wp-content/uploads/2013/10/fav-icon.png">
<style>
.text-color, a.link-big:hover, .navbar .nav > li > a:hover, .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle, .portfolio-image:after, .blog-post h3 a:hover, footer .tweet_list .tweet_text a , .nav-pills > li > a:hover, .accordion-heading a, .home-header .link:hover
{ color: #0477BC; }
header .dropdown-menu
{ background-color: #0477BC; }
.navbar .nav > li > .dropdown-menu:after
{ border-bottom: 7px solid #0477BC; }
.contact-form button, #commentform #submit, .nav-pills > li > a:hover, .nav-pills > li.active > a,.nav-pills > li.active > a:hover
{ border: 1px solid #0477BC; }
.base_color { background-color: #0477BC; }
header.navbar-fixed-top, header.navbar-fixed-bottom {position: fixed;}
h1 { font-size: 40px; font-family: "Quicksand"; } h2 { font-size: 14px; font-family: "Open Sans"; } h3 { font-size: 25px; font-family: "Open Sans"; } h4 { font-size: 18px; font-family: "Quicksand"; } h5 { font-size: 16px; font-family: "Quicksand"; } h6 { font-size: 13px; font-family: "Open Sans"; } body { font-size: 18px; font-family: "Open Sans"; } .navbar .nav > li > a { font-size: 16px; font-family: "Quicksand"; } footer { font-size: 14px; font-family: "Open Sans"; }
#menu-item-554, #menu-item-478 {
cursor: pointer;
}
.designer ul li {
line-height: 32px;
font-weight: 400;
}
.designer h3 {
margin-top: 30px;
}
.designer p {
font-weight: 300;
}
.p_color {
color: #002c40 !important;
}
.p_color a {
color: #002c40 !important;
text-decoration: underline;
}
footer h4 {
display: none;
}
footer li {
display: inline-block;
margin-right: 20px;
}
.blog-article {
margin-bottom: 100px;
color: #333 !important;
}
.blog-article h2 {
font-size: 28px;
line-height: 40px;
font-weight: bold
}
.blog-article h4 {
font-family: "Open Sans";
font-style: normal;
font-size: 20px;
line-height: 34px;
margin: 15px 0;
}
.blog-article a {
color: #333 !important;
text-decoration: underline;
cursor: pointer;
} </style>
<!-- This site is optimized with the Yoast WordPress SEO plugin v1.5.6 - https://yoast.com/wordpress/plugins/seo/ -->
<link rel="canonical" href="./without_iframe_files/without_iframe.html">
<link rel="next" href="http://liquidm.com/page/2/">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="LiquidM - LiquidM">
<meta property="og:url" content="http://liquidm.com">
<meta property="og:site_name" content="LiquidM">
<!-- / Yoast WordPress SEO plugin. -->
<link rel="alternate" type="application/rss+xml" title="LiquidM » Feed" href="http://liquidm.com/feed/">
<link rel="alternate" type="application/rss+xml" title="LiquidM » Comments Feed" href="http://liquidm.com/comments/feed/">
<link rel="stylesheet" id="rs-settings-css" href="./without_iframe_files/settings.css" type="text/css" media="all">
<link rel="stylesheet" id="rs-captions-css" href="./without_iframe_files/captions.css" type="text/css" media="all">
<link rel="stylesheet" id="Quicksand:300,regular,700&amp;subset=latin-css" href="./without_iframe_files/css(1)" type="text/css" media="all">
<link rel="stylesheet" id="Open Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic&amp;subset=cyrillic,vietnamese,latin,greek-ext,cyrillic-ext,latin-ext,greek-css" href="./without_iframe_files/css(2)" type="text/css" media="all">
<link rel="stylesheet" id="pt-mediaqueries-css" href="./without_iframe_files/mediaqueries.css" type="text/css" media="all">
<script type="text/javascript" async="" src="./without_iframe_files/ga.js"></script><script type="text/javascript" src="./without_iframe_files/jquery.js"></script>
<script type="text/javascript" src="./without_iframe_files/jquery-migrate.min.js"></script>
<script type="text/javascript" src="./without_iframe_files/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="./without_iframe_files/modernizr-2.6.2.min.js"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://liquidm.com/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://liquidmcom.c.presscdn.com/wp-includes/wlwmanifest.xml">
<style type="text/css"></style><script type="text/javascript" charset="UTF-8" src="./without_iframe_files/{common,map,util,marker}.js"></script><style>[touch-action="none"]{ -ms-touch-action: none; touch-action: none; }[touch-action="pan-x"]{ -ms-touch-action: pan-x; touch-action: pan-x; }[touch-action="pan-y"]{ -ms-touch-action: pan-y; touch-action: pan-y; }[touch-action="scroll"],[touch-action="pan-x pan-y"],[touch-action="pan-y pan-x"]{ -ms-touch-action: pan-x pan-y; touch-action: pan-x pan-y; }</style><style id="style-1-cropbar-clipper">/* Copyright 2014 Evernote Corporation. All rights reserved. */
.en-markup-crop-options {
top: 18px !important;
left: 50% !important;
margin-left: -90px !important;
width: 180px !important;
border: 2px rgba(255,255,255,.38) solid !important;
border-radius: 4px !important;
}
.en-markup-crop-options div div:first-of-type {
margin-left: 0px !important;
}
</style><script type="text/javascript" charset="UTF-8" src="./without_iframe_files/{onion}.js"></script><script type="text/javascript" charset="UTF-8" src="./without_iframe_files/{controls,stats}.js"></script></head>
<body class="home blog wpb-js-composer js-comp-ver-3.6.6 vc_responsive">
<!-- Begin Header / Nav -->
<header class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
<a class="logo" href="http://www.liquidm.com/">
<img src="./without_iframe_files/logo_nav.png">
</a>
<!-- Logo
<a href="http://liquidm.com" class="brand">LiquidM</a> -->
<!-- Navigation -->
<div class="nav-collapse collapse" id="navigation">
<ul id="menu-menu-1" class="nav"><li id="menu-item-100" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-100 dropdown active"><a href="http://liquidm.com/#liquidm-solutions" data-toggle="dropdown" data-target="#" class="dropdown-toggle">LiquidM Solutions <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="menu-item-371" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-371 active"><a href="http://liquidm.com/#liquidm-solutions">LiquidM Solutions</a></li>
<li id="menu-item-98" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-98"><a href="http://liquidm.com/#mobile-media-buyers">Mobile Media Buyers</a></li>
<li id="menu-item-568" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-568"><a href="http://liquidm.com/#mobile-ad-networks">Mobile Ad Networks</a></li>
</ul>
</li>
<li id="menu-item-301" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-301"><a href="http://liquidm.com/#liquidm-technology">LiquidM Technology</a></li>
<li id="menu-item-285" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-285 dropdown"><a href="http://liquidm.com/#company" data-toggle="dropdown" data-target="#" class="dropdown-toggle">Company <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="menu-item-370" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-370"><a href="http://liquidm.com/#company">Company</a></li>
<li id="menu-item-289" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-289"><a href="http://liquidm.com/#management-and-team">Management and Team</a></li>
<li id="menu-item-286" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-286"><a href="http://liquidm.com/#contact">Contact</a></li>
</ul>
</li>
<li id="menu-item-287" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-287"><a href="http://liquidm.com/#careers">Careers</a></li>
<li id="menu-item-554" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-554"><a>Blog</a></li>
<li id="menu-item-478" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-478"><a>Customer Login</a></li>
</ul> </div>
</div>
</div>
</header>
<!-- End Header / Nav -->
<section id="liquidm-solutions" class="page liquidm-solutions text-color no-height " style="margin-top: 73px; background-color: rgb(23, 76, 115);"><div class="stripe" style="background:#fff"></div><div class="container"><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_revslider_element wpb_content_element">
<!-- START REVOLUTION SLIDER 3.0.3 fullwidth mode -->
<div id="rev_slider_1_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" style="margin: 0px auto -50px; padding: 0px; max-height: 700px; overflow: visible; background-color: rgb(23, 76, 115);">
<div id="rev_slider_1_1" class="rev_slider fullwidthabanner revslider-initialised tp-simpleresponsive hovered" style="max-height: 700px; height: 548px;">
<ul style="display: block; overflow: hidden; width: 100%; height: 100%; max-height: 700px;">
<li data-transition="slidehorizontal,slideleft" data-slotamount="7" data-masterspeed="300" style="width: 100%; height: 100%; overflow: hidden; visibility: visible; left: 0px; top: 0px; z-index: 20; opacity: 1;">
<div class="slotholder"><img src="./without_iframe_files/transparent.png" alt="landing_page_04" data-lazyload="http://liquidmcom.c.presscdn.com/wp-content/plugins/revslider/images/transparent.png" data-fullwidthcentering="on" class="defaultimg" style="width: 990px; height: 990px; position: absolute; top: -221px; left: -25px; opacity: 1;"></div>
<div class="tp-caption big_yellow lfl start" data-x="472" data-y="173" data-speed="300" data-start="2000" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 69px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 1; left: -246px; top: 135.434285714286px;">Mobile </div>
<div class="tp-caption big_white sfr start" data-x="744" data-y="236" data-speed="300" data-start="2500" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 56px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 632.8px; top: 184.754285714286px;">Advertising </div>
<div class="tp-caption small_text fade start" data-x="489" data-y="445" data-speed="300" data-start="3600" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 16px; padding: 0px; margin: 0px; border-width: 0px; line-height: 20px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 383.05px; top: 348.371428571429px;">LiquidM is the only white-labeled<br>
Mobile Advertising Management Platform (MAMP),<br>
which allows media buyers to optimize their processes <br>across the full
range of premium to performance advertising. </div>
<div class="tp-caption fade start" data-x="72" data-y="64" data-speed="300" data-start="500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 56.4px; top: 50.1028571428571px; visibility: visible; opacity: 1;"><img src="./without_iframe_files/1308-website-Animation-carousel-PSD02-1.png" alt="Image 7" style="width: 290.616666666667px; height: 440.748571428571px;"> </div>
<div class="tp-caption fade start" data-x="72" data-y="64" data-speed="300" data-start="1000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 56.4px; top: 50.1028571428571px; visibility: visible; transition: opacity 300ms ease; -webkit-transition: opacity 300ms ease; opacity: 1;"><img src="./without_iframe_files/1308-website-Animation-carousel-PSD02-2.png" alt="Image 9" style="width: 290.616666666667px; height: 440.748571428571px;"> </div>
<div class="tp-caption fade start" data-x="72" data-y="64" data-speed="300" data-start="1500" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; opacity: 0; left: 56.4px; top: 50.1028571428571px;"><img src="./without_iframe_files/1308-website-Animation-carousel-PSD02-3.png" alt="Image 9" style="width: 290.616666666667px; height: 440.748571428571px;"> </div>
<div class="tp-caption big_white sfr start" data-x="471" data-y="301" data-speed="300" data-start="3000" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 56px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 418.95px; top: 235.64px;">Management </div>
<div class="tp-caption big_white sfr start" data-x="851" data-y="370" data-speed="300" data-start="3300" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 56px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 716.616666666667px; top: 289.657142857143px;"> Platform </div>
</li>
<li data-transition="fade" data-slotamount="7" data-masterspeed="300" style="width: 100%; height: 100%; overflow: hidden; opacity: 1; visibility: visible; left: 0px; top: 0px; z-index: 18;">
<div class="slotholder"><img src="./without_iframe_files/transparent.png" alt="caru2_11" data-lazyload="http://liquidmcom.c.presscdn.com/wp-content/plugins/revslider/images/transparent.png" data-fullwidthcentering="on" class="defaultimg" style="width: 990px; height: 990px; position: absolute; top: -221px; left: -25px; opacity: 0;"></div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/1.png" alt="Image 11" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="1000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/2.png" alt="Image 12" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="1500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/3.png" alt="Image 13" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="2000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/4.png" alt="Image 14" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="2500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/5.png" alt="Image 15" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="3000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/6.png" alt="Image 16" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="4300" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/7.png" alt="Image 17" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="4500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/8.png" alt="Image 18" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="4800" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/9.png" alt="Image 9" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="5000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/10.png" alt="Image 10" style="width: 737.9px; height: 500.245714285714px;"> </div>
</li>
</ul>
<div class="tp-loader" style="display: none;"></div><div class="tp-bannertimer" style="visibility: hidden; overflow: hidden; width: 16.1518987341772%;"></div></div>
<div style="visibility: hidden;" class="tp-leftarrow tparrows round"></div><div style="visibility: hidden;" class="tp-rightarrow tparrows round"></div></div>
<script type="text/javascript">
var tpj=jQuery;
tpj.noConflict();
var revapi1;
tpj(document).ready(function() {
if (tpj.fn.cssOriginal != undefined)
tpj.fn.css = tpj.fn.cssOriginal;
if(tpj('#rev_slider_1_1').revolution == undefined)
revslider_showDoubleJqueryError('#rev_slider_1_1');
else
revapi1 = tpj('#rev_slider_1_1').show().revolution(
{
delay:8000,
startwidth:1200,
startheight:700,
hideThumbs:200,
thumbWidth:100,
thumbHeight:50,
thumbAmount:2,
navigationType:"none",
navigationArrows:"none",
navigationStyle:"round",
touchenabled:"on",
onHoverStop:"off",
navigationHAlign:"center",
navigationVAlign:"bottom",
navigationHOffset:0,
navigationVOffset:20,
soloArrowLeftHalign:"left",
soloArrowLeftValign:"center",
soloArrowLeftHOffset:20,
soloArrowLeftVOffset:0,
soloArrowRightHalign:"right",
soloArrowRightValign:"center",
soloArrowRightHOffset:20,
soloArrowRightVOffset:0,
shadow:0,
fullWidth:"on",
fullScreen:"off",
stopLoop:"off",
stopAfterLoops:-1,
stopAtSlide:-1,
shuffle:"off",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
startWithSlide:0,
videoJsPath:"http://liquidmcom.c.presscdn.com/wp-content/plugins/revslider/rs-plugin/videojs/",
fullScreenOffsetContainer: ""
});
}); //ready
</script>
<!-- END REVOLUTION SLIDER -->
</div>
</div>
</div>
</div>
</div></section><svg id="bigTriangleColor" xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100" viewBox="0 0 100 102" preserveAspectRatio="none"><path d="M0 0 L50 100 L100 0 Z"></path></svg><section id="mobile-media-buyers" class="page mobile-media-buyers text-white no-height " style="background-color:#0477BC;"><div class="container"><h1 class="page-title">Mobile Media Buyers</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span6 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<p>LiquidM’s modular cloud-based software allows agencies and trading desks to run&nbsp;their ad tech infrastructure on a standardized, open platform that is customizable&nbsp;to their individual needs. LiquidM uniquely combines media, data, technology and&nbsp;strategy to allow audience reach at scale. LiquidM provides more efficiency, greater&nbsp;control and deeper insights to media planning and buying, to drive better results.&nbsp;Integrated data management, audience targeting and inventory procurement drive&nbsp;success in the mobile display media marketplace.</p>
</div>
</div>
</div>
</div>
<div class="vc_span6 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper">
<div class="media_buyer">
<img src="./without_iframe_files/A-001-144.gif">
</div>
</div>
</div>
</div>
</div>
</div>
</div></section><div class="back"></div><section id="mobile-ad-networks" class="page mobile-ad-networks text-white no-height " style="background-color:#174C73;"><div class="container"><iframe src="example.com" /><h1 class="page-title">Mobile Ad Networks</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span8 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper">
<div class="ad_networks">
<img style="float: left; position: relative; z-index: 1;" src="./without_iframe_files/B3-001-144-animation.gif">
<img style="float: left; margin-left: -2px;" src="./without_iframe_files/B3-add-001-037-animation.gif">
</div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_left-to-right">
<div class="wpb_wrapper">
<p>
LiquidM’s modular cloud-based software allows mobile ad networks and&nbsp;saleshouses to run their ad tech infrastructure on a standardized, open platform&nbsp;that is customizable to their individual needs. LiquidM’s sophisticated technology&nbsp;platform allows them to focus on what they do best – i.e., operating and running ad&nbsp;campaigns, sales and creative, without having to worry about developing in-house&nbsp;technology. Non-technical advertisers can easily create, operate and run campaigns&nbsp;in less time, thus increasing productivity. LiquidM’s innovative Decision Engine&nbsp;brings programmatic optimization to the entire spectrum from premium supply to&nbsp;RTB reach extension.</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div></section><div class="back_reverse"></div><section id="liquidm-technology" class="page liquidm-technology text-white no-height " style="background-color:#174C73;"><div class="container"><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<h1><span style="font-weight: 400;">LiquidM´s Modules in a Nutshell</span></h1>
<p>&nbsp;</p>
<p>Built from the ground up for mobile, LiquidM’s white-labeled Mobile Advertising&nbsp;Management Platform (MAMP) allows mobile media buyers to optimize their&nbsp;management processes across the full range of premium to performance&nbsp;advertising. LiquidM provides a business model-agnostic full stack to manage&nbsp;and optimize mobile advertising campaigns. LiquidM’s modular, cloud-based&nbsp;SaaS replaces Build-Your-Own (BYO) or inadequate point solutions of ad tech&nbsp;infrastructure with a standardized, open platform that is customizable to individual&nbsp;needs. LiquidM’s unique combination of delivering quality and performance in one&nbsp;platform allows for reach extension through real-time bidding, targeting, rich media&nbsp;formats and the ability to work closely with mobile operators.</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper">
<div style="position: relative; height: 250px;">
<ul class="technology">
<li>
<a>
<img src="./without_iframe_files/technology-11.png">
<div><span>Targeting<br><br>Rich media (MRAID)<br><br>Video (VAST)</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-21.png">
<div><span>Device identification<br><br>Finger Printing<br><br>1st/2nd/3rd party data collection</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-31.png">
<div><span>Programmatic Optimization<br><br>Machine Learning<br><br>3rd Party Data Integration<br><br>Fraud detection</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-41.png">
<div><span>Reach Extension<br><br>Access massive global supply<br><br>Full transparency</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-51.png">
<div><span>Easy to use<br><br>Unified, granular reporting<br><br>Great UI</span></div>
</a>
</li>
<ul>
</ul></ul></div>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<p><b>Key Features</b></p>
<p><b>Best-in-Breed Technology</b></p>
<p>Sophisticated technology platform allows customers to focus on what they do best&nbsp;– i.e., operating and running ad campaigns, sales and creative, without having to&nbsp;worry about developing in-house technology</p>
<p><b></b><b>Customizable</b><br>
Business model-agnostic core is customizable for individual customer needs</p>
<p><b>Easy Integration</b><br>
Can easily integrate with any other tool in the market, whether it be from suppliers,&nbsp;trackers, data warehouses, etc</p>
<p><b>Transparency</b><br>
Entire lifecycle is transparent from ad spending through conversion to analytics</p>
<p><b>User Interface</b><br>
Non-technical audience can easily create, operate and run campaigns in less time and increase productivity</p>
<p><b>Quality meets Performance</b><br>
Innovative technology was built from the ground up to cover the entire mobile ad&nbsp;value chain in premium and performance environments</p>
<p><b>Performance</b><br>
Optimize advertising spending for individual performance targets; seamless big data&nbsp;integration, processing and complex performance-related technology</p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="company" class="page company text-white no-height " style="background-color:#0477BC;"><div class="container"><h1 class="page-title">Company</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_left-to-right">
<div class="wpb_wrapper">
<p>At LiquidM, we are software and technology experts who are passionate about&nbsp;bringing the world’s best products to a rapidly growing industry: Mobile&nbsp;Advertising. Unlike the first generation of mobile ad networks, we focus on building&nbsp;the most cutting edge, white-labeled Mobile Advertising Management Platform&nbsp;(MAMP), which allows media buyers to improve their efficiency, returns, and time&nbsp;to market.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="management-and-team" class="page management-and-team text-white no-height " style="background-image:url(http://liquidmcom.c.presscdn.com/wp-content/uploads/2013/10/company_low_blu.jpg);background-position:center top;"><div class="container"><h1 class="page-title">Management and Team</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/1308-website-Mgmt-CW.jpg" width="185" height="250" alt="1308-website-Mgmt-CW">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Christof Wittig<br>
CEO</p>
<p><a href="http://www.linkedin.com/in/christof" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/1308-website-Mgmt-RC.jpg" width="185" height="250" alt="1308-website-Mgmt-RC">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Roi Chobadi<br>
CPO</p>
<p><a href="http://www.linkedin.com/in/roichobadi" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/Julian-Toi.jpg" width="185" height="250" alt="Julian-Toi">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Julian Tol</p>
<p>CRO</p>
<p><a href="https://www.linkedin.com/in/jpntol" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/joe21.jpg" width="185" height="250" alt="joe2">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Joe Ayyoub</p>
<p>SVP, Business Development and Operations</p>
<p><a href="http://liquidm.com/www.linkedin.com/in/ayyoub" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/philipp01-185x250.jpg" width="185" height="250" alt="philipp01">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Philipp Simon</p>
<p>VP Business Development EMEA</p>
<p><a href="https://www.linkedin.com/pub/philipp-simon/62/62a/459" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/1308-website-Mgmt-AD.jpg" width="185" height="250" alt="1308-website-Mgmt-AD">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Anne Dorman<br>
CFO</p>
<p><a href="http://www.linkedin.com/pub/anne-dorman/0/597/2a6" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="careers" class="page careers text-white no-height " style="background-color:#174C73;"><div class="container"><h1 class="page-title">Careers</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_top-to-bottom">
<div class="wpb_wrapper">
<p>Join our world class team. We’re constantly on the lookout for people who want&nbsp;to change the world with us. Software developers, product managers, mobile&nbsp;advertising experts, and backoffice staff. Locations include San Francisco, New York,&nbsp;London, Berlin, and Singapore.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid margin_bottom">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_row vc_row-fluid">
<div class="vc_span12 title_career wpb_column column_container">
<div class="wpb_wrapper">
<h3 class=" align-left" style="color:;">Technology / Product</h3>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<p><a title="DevOps" href="http://liquidm.com/devops-fm-berlin/" target="_blank">DevOps</a></p>
<p><a title="Web Designer" href="http://liquidm.com/web-designer-fm-berlin/" target="_blank">Web Designer</a></p>
<p><a title="Product Manager" href="http://liquidm.com/product-manager-fm-berlin/" target="_blank">Product Manager</a></p>
<p><a title="Decision Engine Product Manager" href="http://liquidm.com/decision-engine-product-manager-fm-berlin/" target="_blank">Decision Engine Product Manager</a></p>
<p><a title="Senior Software Developer" href="http://liquidm.com/?p=412" target="_blank">Senior Software Developer</a></p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_row vc_row-fluid">
<div class="vc_span12 title_career wpb_column column_container">
<div class="wpb_wrapper">
<h3 class=" align-left" style="color:;">Operations &amp; Intelligence</h3>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<p><a title="Technical Support Engineer" href="http://liquidm.com/technical-support-engineer/">Technical Support Engineer</a></p>
<p><a title="Internship AdOperations" href="http://liquidm.com/internship-adoperations-fm-berlin/">Internship AdOperations</a></p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_row vc_row-fluid">
<div class="vc_span12 title_career wpb_column column_container">
<div class="wpb_wrapper">
<h3 class=" align-left" style="color:;">International</h3>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_separator wpb_content_element"></div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<h2>Contact Details</h2>
<h4>Daniela Strauss</h4>
<p>Human Resources Manager</p>
<p>+49 176 15 00 38 04<br>
<a href="mailto:daniela.strauss@liquidm.com">daniela.strauss@liquidm.com</a></p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="contact" class="page contact text-white no-height contact " style="background-color:#0477BC;"><div style="overflow: hidden; -webkit-transform: translateZ(0px); background-color: rgb(4, 119, 188);" id="contact_map"><div class="gm-style" style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0; cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1; width: 100%; transform-origin: 0px 0px 0px; transform: matrix(1, 0, 0, 1, 0, 0);"><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 100; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 779px;"></div></div></div></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 101; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 102; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 103; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: -1;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 779px;"></div></div></div><div style="width: 22px; height: 22px; position: absolute; left: 949px; top: 396px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div><div style="width: 22px; height: 22px; position: absolute; left: 1087px; top: 385px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div><div style="width: 22px; height: 22px; position: absolute; left: 1335px; top: 336px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div><div style="width: 22px; height: 22px; position: absolute; left: 568px; top: 508px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="-webkit-transform: translateZ(0px); position: absolute; left: 796px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 540px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 284px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 28px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: -228px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(3)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(3)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(4)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(4)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(5)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(5)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(6)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(6)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(8)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(8)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(9)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(9)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(10)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(10)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(11)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(11)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(12)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(12)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(13)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(13)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(14)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(14)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(15)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(15)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 2; width: 100%; height: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 3; width: 100%; transform-origin: 0px 0px 0px; transform: matrix(1, 0, 0, 1, 0, 0);"><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 104; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 105; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 106; width: 100%;"><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 949px; top: 396px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 1087px; top: 385px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 1335px; top: 336px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 568px; top: 508px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 107; width: 100%;"></div></div></div><div style="margin-left: 5px; margin-right: 5px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;"><a target="_blank" href="http://maps.google.com/maps?ll=37.791286,-122.391795&z=2&hl=en-US&gl=US&mapclient=apiv3" title="Click to see this area on Google Maps" style="position: static; overflow: visible; float: none; display: inline;"><div style="width: 62px; height: 26px; cursor: pointer;"><img src="./without_iframe_files/google_white2.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 62px; height: 26px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></a></div><div class="gmnoprint" style="z-index: 1000001; position: absolute; right: 70px; bottom: 0px; width: 12px;"><div draggable="false" class="gm-style-cc" style="-webkit-user-select: none;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="width: auto; height: 100%; margin-left: 1px; background-color: rgb(245, 245, 245);"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a style="color: rgb(68, 68, 68); text-decoration: none; cursor: pointer; display: none;">Map Data</a><span style="display: none;"></span></div></div></div><div style="padding: 15px 21px; border: 1px solid rgb(171, 171, 171); font-family: Roboto, Arial, sans-serif; color: rgb(34, 34, 34); -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; z-index: 10000002; display: none; width: 256px; height: 148px; position: absolute; left: 810px; top: 317px; background-color: white;"><div style="padding: 0px 0px 10px; font-size: 16px;">Map Data</div><div style="font-size: 13px;"></div><div style="width: 13px; height: 13px; overflow: hidden; position: absolute; opacity: 0.7; right: 12px; top: 12px; z-index: 10000; cursor: pointer;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -2px; top: -336px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoscreen" style="position: absolute; right: 0px; bottom: 0px;"><div style="font-family: Roboto, Arial, sans-serif; font-size: 11px; color: rgb(68, 68, 68); direction: ltr; text-align: right; background-color: rgb(245, 245, 245);"></div></div><div class="gmnoprint gm-style-cc" draggable="false" style="z-index: 1000001; position: absolute; -webkit-user-select: none; right: 0px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="width: auto; height: 100%; margin-left: 1px; background-color: rgb(245, 245, 245);"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a href="http://www.google.com/intl/en-US_US/help/terms_maps.html" target="_blank" style="text-decoration: none; cursor: pointer; color: rgb(68, 68, 68);">Terms of Use</a></div></div><div draggable="false" class="gm-style-cc" style="-webkit-user-select: none; display: none; position: absolute; right: 0px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="width: auto; height: 100%; margin-left: 1px; background-color: rgb(245, 245, 245);"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a target="_new" title="Report errors in the road map or imagery to Google" href="http://maps.google.com/maps?ll=37.791286,-122.391795&z=2&hl=en-US&gl=US&mapclient=apiv3&skstate=action:mps_dialog$apiref:1&output=classic" style="font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); text-decoration: none; position: relative;">Report a map error</a></div></div><div class="gmnoprint" draggable="false" controlwidth="78" controlheight="80" style="margin: 5px; -webkit-user-select: none; position: absolute; left: 0px; top: 0px;"><div class="gmnoprint" controlwidth="78" controlheight="80" style="cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; width: 78px; height: 78px; position: absolute; left: 0px; top: 0px;"><div class="gmnoprint" controlwidth="78" controlheight="80" style="width: 78px; height: 78px; position: absolute; left: 0px; top: 0px;"><div style="visibility: hidden;"><svg version="1.1" overflow="hidden" width="78px" height="78px" viewBox="0 0 78 78" style="position: absolute; left: 0px; top: 0px;"><circle cx="39" cy="39" r="35" stroke-width="3" fill-opacity="0.2" fill="#f2f4f6" stroke="#f2f4f6"></circle><g transform="rotate(0 39 39)"><rect x="33" y="0" rx="4" ry="4" width="12" height="11" stroke="#a6a6a6" stroke-width="1" fill="#f2f4f6"></rect><polyline points="36.5,8.5 36.5,2.5 41.5,8.5 41.5,2.5" stroke-linejoin="bevel" stroke-width="1.5" fill="#f2f4f6" stroke="#000"></polyline></g></svg></div></div><div class="gmnoprint" controlwidth="59" controlheight="59" style="position: absolute; left: 10px; top: 11px;"><div style="width: 59px; height: 59px; overflow: hidden; position: relative;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"><div title="Pan left" style="position: absolute; left: 0px; top: 20px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div><div title="Pan right" style="position: absolute; left: 39px; top: 20px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div><div title="Pan up" style="position: absolute; left: 20px; top: 0px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div><div title="Pan down" style="position: absolute; left: 20px; top: 39px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div></div></div></div></div><div class="gmnoprint" draggable="false" controlwidth="25" controlheight="218" style="margin: 5px; -webkit-user-select: none; position: absolute; top: 0px; right: 25px;"><div class="gmnoprint" controlwidth="0" controlheight="0" style="opacity: 0.6; display: none; position: absolute;"><div title="Rotate map 90 degrees" style="width: 22px; height: 22px; overflow: hidden; position: absolute; cursor: pointer;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -38px; top: -360px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoprint" controlwidth="25" controlheight="218" style="position: absolute; left: 0px; top: 0px;"><div title="Zoom in" style="width: 23px; height: 24px; overflow: hidden; position: relative; cursor: pointer; z-index: 1;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -400px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Click to zoom" style="width: 25px; height: 170px; overflow: hidden; position: relative; cursor: pointer; top: -4px;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -87px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Drag to zoom" style="width: 21px; height: 14px; overflow: hidden; position: absolute; -webkit-transition: top 0.25s ease; transition: top 0.25s ease; z-index: 2; cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; left: 2px; top: 164px;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: 0px; top: -384px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Zoom out" style="width: 23px; height: 23px; overflow: hidden; position: relative; cursor: pointer; top: -4px; z-index: 3;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -361px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div></div></div></div><div class="container"><h1 class="page-title">Contact</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<h3>Get in touch with us.</h3>
<p>Email us or come to visit us at:</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>San Francisco</b><b>:</b></div>
<div>
<div>
<p>LiquidM Inc.<br>
201 Spear Street,&nbsp;Suite 1100<br>
San Francisco, CA&nbsp;94105<br>
USA</p>
<p>phone: +1 415 230 5374</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>New York</b><b>:</b></div>
<div>
<p>LiquidM Inc.<br>
415 Madison Avenue, 14th Floor<br>
New York, NEW YORK 10017<br>
USA</p>
<p>phone:&nbsp;+1 650 391 4422</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>Berlin</b><b>:</b></div>
<div>
<p>LiquidM Technology GmbH,<br>
Paul-Lincke-Ufer 39/40,<br>
10999 Berlin,<br>
Germany</p>
<p>phone: +49 3060 985 4650</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<p>&nbsp;</p>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>London</b><b>:</b></div>
<div>
<div>
<p>Winchester House<br>
259-269 Old Marylebone Road<br>
LONDON, NW1 5RA<br>
United Kingdom</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>Singapore</b><b>:</b></div>
<div>
<p>Singapore<br>
1 Raffles Place<br>
#20-61 One Raffles Place Tower 2<br>
Singapore 048616</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div><div class="contact-form-wrapper">
<div class="container">
<header>
<i class="entypo mail-icon">✉</i>
<!-- <h3>Send us your message</h3>
<p class="op8">Imagine that you have something you want to share with us.</p> -->
</header>
<br>
<form class="row contact-form" action="http://liquidm.com/#" method="post" novalidate="novalidate">
<div class="span9">
<div class="controls controls-row">
<input class="span3 required" type="text" placeholder="Name (required)" name="name" required="">
<input class="span3 required email" type="email" placeholder="E-mail (required)" name="email" required="">
<input class="span3 required" type="text" placeholder="Subject (required)" name="subject" required="">
</div>
<textarea class="span9 required" placeholder="Message (required)" name="message" rows="3" required=""></textarea>
</div>
<div class="span2 controls">
<button type="submit" class="span2">Send<br>
Message</button>
</div>
<div class="contact-info span9"></div>
</form>
</div>
</div>
</section><!-- Begin footer -->
<footer id="footer">
<section id="pages-2" class="widget widget_pages"><h4 class="widget-title">Pages</h4> <ul>
<li class="page_item page-item-33"><a href="http://liquidm.com/home/">LiquidM Solutions</a></li>
<li class="page_item page-item-69"><a href="http://liquidm.com/media-buyers/">Mobile Media Buyers</a></li>
<li class="page_item page-item-259"><a href="http://liquidm.com/ad-networks-solution/">Mobile Ad Networks</a></li>
<li class="page_item page-item-82"><a href="http://liquidm.com/liquidm-technology/">LiquidM Technology</a></li>
<li class="page_item page-item-281"><a href="http://liquidm.com/company-2/">Company</a></li>
<li class="page_item page-item-88"><a href="http://liquidm.com/team-mgmt-and-board/">Management and Team</a></li>
<li class="page_item page-item-92"><a href="http://liquidm.com/careers/">Careers</a></li>
<li class="page_item page-item-95"><a href="http://liquidm.com/contact/">Contact</a></li>
</ul>
</section><section id="text-2" class="widget widget_text"> <div class="textwidget"><div style="border-top: 1px solid #fff; width: 300px; height: 50px; line-height: 50px; margin: auto;">
<a href="http://www.liquidm.com/privacy-policy/" target="_blank">
Privacy Policy</a> -
<a href="http://liquidm.com/legal-information/" target="_blank">Legal Information</a>
</div></div>
</section>
<section class="copyright op4">
Copyright © 2013 LiquidM<br>All rights reserved. </section>
</footer>
<!-- End footer -->
<div id="lightwindow">
<div id="lightwindow-content"></div>
</div>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-51195480-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<link rel="stylesheet" id="js_composer_front-css" href="./without_iframe_files/js_composer_front.css" type="text/css" media="screen">
<script type="text/javascript" src="./without_iframe_files/js"></script><script src="./without_iframe_files/main.js" type="text/javascript"></script>
<script type="text/javascript" src="./without_iframe_files/plugins.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var AjaxHelper = {"blog_url":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/template-news.php","portfolio_url":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/template-portfolio.php","portfolio2_url":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/template-portfolio2.php","ajaxurl":"http:\/\/liquidm.com\/wp-admin\/admin-ajax.php","pt_twitter_path":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/functions\/twitter\/"};
var pt_settings = {"base_color":"#0477BC","google_maps_circle_color":"#FE4600","google_maps_landscape_color":"#174C73","google_maps_water_color":"#0477BC","portfolio_items_page":"5","blog_items_page":"16","pt_google_maps_latitude_1":"37.791286","pt_google_maps_longitude_1":"-122.391795","pt_google_maps_title_popover_1":"","pt_google_maps_text_popover_1":"","pt_google_maps_latitude_2":"40.748135","pt_google_maps_longitude_2":"-73.984405","pt_google_maps_title_popover_2":"","pt_google_maps_text_popover_2":"","pt_google_maps_latitude_3":"52.49582","pt_google_maps_longitude_3":"13.423122","pt_google_maps_title_popover_3":"","pt_google_maps_text_popover_3":"","pt_google_maps_latitude_4":"1.284692","pt_google_maps_longitude_4":"103.852974","pt_google_maps_title_popover_4":"","pt_google_maps_text_popover_4":""};
/* ]]> */
</script>
<script type="text/javascript" src="./without_iframe_files/main(1).js"></script>
<script type="text/javascript" src="./without_iframe_files/js_composer_front.js"></script>
<script type="text/javascript" src="./without_iframe_files/waypoints.min.js"></script>
<script src="./without_iframe_files/jarallax_beta.js" type="text/javascript"></script>
<script src="./without_iframe_files/animations.js" type="text/javascript"></script>
<script type="text/javascript" src="./without_iframe_files/jquery.hoverdir.js"></script>
<script type="text/javascript">
jQuery(function() {
jQuery('.technology > li').each( function() { jQuery(this).hoverdir(); } );
});
</script>
<!-- Served from: liquidm.com @ 2014-09-09 12:34:57 by W3 Total Cache --><script type="text/javascript" src="chrome-extension://bmdblncegkenkacieihfhpjfppoconhi/in-page-script.js"></script></body></html>
<!DOCTYPE html>
<!-- saved from url=(0019)http://liquidm.com/ -->
<html class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths js_active vc_desktop vc_transform vc_transform " lang="en-US" prefix="og: http://ogp.me/ns#" data-ember-extension="1" style=""><!--<![endif]--><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div{font-size:10px}</style><link type="text/css" rel="stylesheet" href="./without_iframe_files/css"><style type="text/css">@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style type="text/css">.gm-style{font-family:Roboto,Arial,sans-serif;font-size:11px;font-weight:400;text-decoration:none}</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>LiquidM - Mobile Advertising Management Platform</title>
<meta name="description" content="LiquidM - LiquidM">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900,900italic">
<link rel="stylesheet" href="./without_iframe_files/general.css" type="text/css" media="screen">
<link rel="stylesheet" href="./without_iframe_files/style.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="./without_iframe_files/animate.css" type="text/css" media="screen">
<link rel="stylesheet" href="./without_iframe_files/noJS.css" type="text/css" media="screen">
<link rel="shortcut icon" href="http://liquidmcom.c.presscdn.com/wp-content/uploads/2013/10/fav-icon.png">
<style>
.text-color, a.link-big:hover, .navbar .nav > li > a:hover, .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle, .portfolio-image:after, .blog-post h3 a:hover, footer .tweet_list .tweet_text a , .nav-pills > li > a:hover, .accordion-heading a, .home-header .link:hover
{ color: #0477BC; }
header .dropdown-menu
{ background-color: #0477BC; }
.navbar .nav > li > .dropdown-menu:after
{ border-bottom: 7px solid #0477BC; }
.contact-form button, #commentform #submit, .nav-pills > li > a:hover, .nav-pills > li.active > a,.nav-pills > li.active > a:hover
{ border: 1px solid #0477BC; }
.base_color { background-color: #0477BC; }
header.navbar-fixed-top, header.navbar-fixed-bottom {position: fixed;}
h1 { font-size: 40px; font-family: "Quicksand"; } h2 { font-size: 14px; font-family: "Open Sans"; } h3 { font-size: 25px; font-family: "Open Sans"; } h4 { font-size: 18px; font-family: "Quicksand"; } h5 { font-size: 16px; font-family: "Quicksand"; } h6 { font-size: 13px; font-family: "Open Sans"; } body { font-size: 18px; font-family: "Open Sans"; } .navbar .nav > li > a { font-size: 16px; font-family: "Quicksand"; } footer { font-size: 14px; font-family: "Open Sans"; }
#menu-item-554, #menu-item-478 {
cursor: pointer;
}
.designer ul li {
line-height: 32px;
font-weight: 400;
}
.designer h3 {
margin-top: 30px;
}
.designer p {
font-weight: 300;
}
.p_color {
color: #002c40 !important;
}
.p_color a {
color: #002c40 !important;
text-decoration: underline;
}
footer h4 {
display: none;
}
footer li {
display: inline-block;
margin-right: 20px;
}
.blog-article {
margin-bottom: 100px;
color: #333 !important;
}
.blog-article h2 {
font-size: 28px;
line-height: 40px;
font-weight: bold
}
.blog-article h4 {
font-family: "Open Sans";
font-style: normal;
font-size: 20px;
line-height: 34px;
margin: 15px 0;
}
.blog-article a {
color: #333 !important;
text-decoration: underline;
cursor: pointer;
} </style>
<!-- This site is optimized with the Yoast WordPress SEO plugin v1.5.6 - https://yoast.com/wordpress/plugins/seo/ -->
<link rel="canonical" href="./without_iframe_files/without_iframe.html">
<link rel="next" href="http://liquidm.com/page/2/">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="LiquidM - LiquidM">
<meta property="og:url" content="http://liquidm.com">
<meta property="og:site_name" content="LiquidM">
<!-- / Yoast WordPress SEO plugin. -->
<link rel="alternate" type="application/rss+xml" title="LiquidM » Feed" href="http://liquidm.com/feed/">
<link rel="alternate" type="application/rss+xml" title="LiquidM » Comments Feed" href="http://liquidm.com/comments/feed/">
<link rel="stylesheet" id="rs-settings-css" href="./without_iframe_files/settings.css" type="text/css" media="all">
<link rel="stylesheet" id="rs-captions-css" href="./without_iframe_files/captions.css" type="text/css" media="all">
<link rel="stylesheet" id="Quicksand:300,regular,700&amp;subset=latin-css" href="./without_iframe_files/css(1)" type="text/css" media="all">
<link rel="stylesheet" id="Open Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic&amp;subset=cyrillic,vietnamese,latin,greek-ext,cyrillic-ext,latin-ext,greek-css" href="./without_iframe_files/css(2)" type="text/css" media="all">
<link rel="stylesheet" id="pt-mediaqueries-css" href="./without_iframe_files/mediaqueries.css" type="text/css" media="all">
<script type="text/javascript" async="" src="./without_iframe_files/ga.js"></script><script type="text/javascript" src="./without_iframe_files/jquery.js"></script>
<script type="text/javascript" src="./without_iframe_files/jquery-migrate.min.js"></script>
<script type="text/javascript" src="./without_iframe_files/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="./without_iframe_files/modernizr-2.6.2.min.js"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://liquidm.com/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://liquidmcom.c.presscdn.com/wp-includes/wlwmanifest.xml">
<style type="text/css"></style><script type="text/javascript" charset="UTF-8" src="./without_iframe_files/{common,map,util,marker}.js"></script><style>[touch-action="none"]{ -ms-touch-action: none; touch-action: none; }[touch-action="pan-x"]{ -ms-touch-action: pan-x; touch-action: pan-x; }[touch-action="pan-y"]{ -ms-touch-action: pan-y; touch-action: pan-y; }[touch-action="scroll"],[touch-action="pan-x pan-y"],[touch-action="pan-y pan-x"]{ -ms-touch-action: pan-x pan-y; touch-action: pan-x pan-y; }</style><style id="style-1-cropbar-clipper">/* Copyright 2014 Evernote Corporation. All rights reserved. */
.en-markup-crop-options {
top: 18px !important;
left: 50% !important;
margin-left: -90px !important;
width: 180px !important;
border: 2px rgba(255,255,255,.38) solid !important;
border-radius: 4px !important;
}
.en-markup-crop-options div div:first-of-type {
margin-left: 0px !important;
}
</style><script type="text/javascript" charset="UTF-8" src="./without_iframe_files/{onion}.js"></script><script type="text/javascript" charset="UTF-8" src="./without_iframe_files/{controls,stats}.js"></script></head>
<body class="home blog wpb-js-composer js-comp-ver-3.6.6 vc_responsive">
<!-- Begin Header / Nav -->
<header class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
<a class="logo" href="http://www.liquidm.com/">
<img src="./without_iframe_files/logo_nav.png">
</a>
<!-- Logo
<a href="http://liquidm.com" class="brand">LiquidM</a> -->
<!-- Navigation -->
<div class="nav-collapse collapse" id="navigation">
<ul id="menu-menu-1" class="nav"><li id="menu-item-100" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-100 dropdown active"><a href="http://liquidm.com/#liquidm-solutions" data-toggle="dropdown" data-target="#" class="dropdown-toggle">LiquidM Solutions <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="menu-item-371" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-371 active"><a href="http://liquidm.com/#liquidm-solutions">LiquidM Solutions</a></li>
<li id="menu-item-98" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-98"><a href="http://liquidm.com/#mobile-media-buyers">Mobile Media Buyers</a></li>
<li id="menu-item-568" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-568"><a href="http://liquidm.com/#mobile-ad-networks">Mobile Ad Networks</a></li>
</ul>
</li>
<li id="menu-item-301" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-301"><a href="http://liquidm.com/#liquidm-technology">LiquidM Technology</a></li>
<li id="menu-item-285" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-285 dropdown"><a href="http://liquidm.com/#company" data-toggle="dropdown" data-target="#" class="dropdown-toggle">Company <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="menu-item-370" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-370"><a href="http://liquidm.com/#company">Company</a></li>
<li id="menu-item-289" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-289"><a href="http://liquidm.com/#management-and-team">Management and Team</a></li>
<li id="menu-item-286" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-286"><a href="http://liquidm.com/#contact">Contact</a></li>
</ul>
</li>
<li id="menu-item-287" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-287"><a href="http://liquidm.com/#careers">Careers</a></li>
<li id="menu-item-554" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-554"><a>Blog</a></li>
<li id="menu-item-478" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-478"><a>Customer Login</a></li>
</ul> </div>
</div>
</div>
</header>
<!-- End Header / Nav -->
<section id="liquidm-solutions" class="page liquidm-solutions text-color no-height " style="margin-top: 73px; background-color: rgb(23, 76, 115);"><div class="stripe" style="background:#fff"></div><div class="container"><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_revslider_element wpb_content_element">
<!-- START REVOLUTION SLIDER 3.0.3 fullwidth mode -->
<div id="rev_slider_1_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" style="margin: 0px auto -50px; padding: 0px; max-height: 700px; overflow: visible; background-color: rgb(23, 76, 115);">
<div id="rev_slider_1_1" class="rev_slider fullwidthabanner revslider-initialised tp-simpleresponsive hovered" style="max-height: 700px; height: 548px;">
<ul style="display: block; overflow: hidden; width: 100%; height: 100%; max-height: 700px;">
<li data-transition="slidehorizontal,slideleft" data-slotamount="7" data-masterspeed="300" style="width: 100%; height: 100%; overflow: hidden; visibility: visible; left: 0px; top: 0px; z-index: 20; opacity: 1;">
<div class="slotholder"><img src="./without_iframe_files/transparent.png" alt="landing_page_04" data-lazyload="http://liquidmcom.c.presscdn.com/wp-content/plugins/revslider/images/transparent.png" data-fullwidthcentering="on" class="defaultimg" style="width: 990px; height: 990px; position: absolute; top: -221px; left: -25px; opacity: 1;"></div>
<div class="tp-caption big_yellow lfl start" data-x="472" data-y="173" data-speed="300" data-start="2000" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 69px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 1; left: -246px; top: 135.434285714286px;">Mobile </div>
<div class="tp-caption big_white sfr start" data-x="744" data-y="236" data-speed="300" data-start="2500" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 56px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 632.8px; top: 184.754285714286px;">Advertising </div>
<div class="tp-caption small_text fade start" data-x="489" data-y="445" data-speed="300" data-start="3600" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 16px; padding: 0px; margin: 0px; border-width: 0px; line-height: 20px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 383.05px; top: 348.371428571429px;">LiquidM is the only white-labeled<br>
Mobile Advertising Management Platform (MAMP),<br>
which allows media buyers to optimize their processes <br>across the full
range of premium to performance advertising. </div>
<div class="tp-caption fade start" data-x="72" data-y="64" data-speed="300" data-start="500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 56.4px; top: 50.1028571428571px; visibility: visible; opacity: 1;"><img src="./without_iframe_files/1308-website-Animation-carousel-PSD02-1.png" alt="Image 7" style="width: 290.616666666667px; height: 440.748571428571px;"> </div>
<div class="tp-caption fade start" data-x="72" data-y="64" data-speed="300" data-start="1000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 56.4px; top: 50.1028571428571px; visibility: visible; transition: opacity 300ms ease; -webkit-transition: opacity 300ms ease; opacity: 1;"><img src="./without_iframe_files/1308-website-Animation-carousel-PSD02-2.png" alt="Image 9" style="width: 290.616666666667px; height: 440.748571428571px;"> </div>
<div class="tp-caption fade start" data-x="72" data-y="64" data-speed="300" data-start="1500" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; opacity: 0; left: 56.4px; top: 50.1028571428571px;"><img src="./without_iframe_files/1308-website-Animation-carousel-PSD02-3.png" alt="Image 9" style="width: 290.616666666667px; height: 440.748571428571px;"> </div>
<div class="tp-caption big_white sfr start" data-x="471" data-y="301" data-speed="300" data-start="3000" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 56px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 418.95px; top: 235.64px;">Management </div>
<div class="tp-caption big_white sfr start" data-x="851" data-y="370" data-speed="300" data-start="3300" data-easing="easeOutExpo" style="transform: rotate(0deg); visibility: visible; font-size: 56px; padding: 1px 3px 0px; margin: 0px; border-width: 0px; line-height: 28px; white-space: nowrap; min-width: 0px; min-height: 0px; opacity: 0; left: 716.616666666667px; top: 289.657142857143px;"> Platform </div>
</li>
<li data-transition="fade" data-slotamount="7" data-masterspeed="300" style="width: 100%; height: 100%; overflow: hidden; opacity: 1; visibility: visible; left: 0px; top: 0px; z-index: 18;">
<div class="slotholder"><img src="./without_iframe_files/transparent.png" alt="caru2_11" data-lazyload="http://liquidmcom.c.presscdn.com/wp-content/plugins/revslider/images/transparent.png" data-fullwidthcentering="on" class="defaultimg" style="width: 990px; height: 990px; position: absolute; top: -221px; left: -25px; opacity: 0;"></div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/1.png" alt="Image 11" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="1000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/2.png" alt="Image 12" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="1500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/3.png" alt="Image 13" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="2000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/4.png" alt="Image 14" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="2500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/5.png" alt="Image 15" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="3000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/6.png" alt="Image 16" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="4300" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/7.png" alt="Image 17" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="4500" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/8.png" alt="Image 18" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="4800" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/9.png" alt="Image 9" style="width: 737.9px; height: 500.245714285714px;"> </div>
<div class="tp-caption fade start" data-x="120" data-y="35" data-speed="300" data-start="5000" data-easing="easeOutExpo" style="transform: rotate(0deg); left: 94px; top: 27.4px; visibility: visible; opacity: 0;"><img src="./without_iframe_files/10.png" alt="Image 10" style="width: 737.9px; height: 500.245714285714px;"> </div>
</li>
</ul>
<div class="tp-loader" style="display: none;"></div><div class="tp-bannertimer" style="visibility: hidden; overflow: hidden; width: 16.1518987341772%;"></div></div>
<div style="visibility: hidden;" class="tp-leftarrow tparrows round"></div><div style="visibility: hidden;" class="tp-rightarrow tparrows round"></div></div>
<script type="text/javascript">
var tpj=jQuery;
tpj.noConflict();
var revapi1;
tpj(document).ready(function() {
if (tpj.fn.cssOriginal != undefined)
tpj.fn.css = tpj.fn.cssOriginal;
if(tpj('#rev_slider_1_1').revolution == undefined)
revslider_showDoubleJqueryError('#rev_slider_1_1');
else
revapi1 = tpj('#rev_slider_1_1').show().revolution(
{
delay:8000,
startwidth:1200,
startheight:700,
hideThumbs:200,
thumbWidth:100,
thumbHeight:50,
thumbAmount:2,
navigationType:"none",
navigationArrows:"none",
navigationStyle:"round",
touchenabled:"on",
onHoverStop:"off",
navigationHAlign:"center",
navigationVAlign:"bottom",
navigationHOffset:0,
navigationVOffset:20,
soloArrowLeftHalign:"left",
soloArrowLeftValign:"center",
soloArrowLeftHOffset:20,
soloArrowLeftVOffset:0,
soloArrowRightHalign:"right",
soloArrowRightValign:"center",
soloArrowRightHOffset:20,
soloArrowRightVOffset:0,
shadow:0,
fullWidth:"on",
fullScreen:"off",
stopLoop:"off",
stopAfterLoops:-1,
stopAtSlide:-1,
shuffle:"off",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
startWithSlide:0,
videoJsPath:"http://liquidmcom.c.presscdn.com/wp-content/plugins/revslider/rs-plugin/videojs/",
fullScreenOffsetContainer: ""
});
}); //ready
</script>
<!-- END REVOLUTION SLIDER -->
</div>
</div>
</div>
</div>
</div></section><svg id="bigTriangleColor" xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100" viewBox="0 0 100 102" preserveAspectRatio="none"><path d="M0 0 L50 100 L100 0 Z"></path></svg><section id="mobile-media-buyers" class="page mobile-media-buyers text-white no-height " style="background-color:#0477BC;"><div class="container"><h1 class="page-title">Mobile Media Buyers</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span6 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<p>LiquidM’s modular cloud-based software allows agencies and trading desks to run&nbsp;their ad tech infrastructure on a standardized, open platform that is customizable&nbsp;to their individual needs. LiquidM uniquely combines media, data, technology and&nbsp;strategy to allow audience reach at scale. LiquidM provides more efficiency, greater&nbsp;control and deeper insights to media planning and buying, to drive better results.&nbsp;Integrated data management, audience targeting and inventory procurement drive&nbsp;success in the mobile display media marketplace.</p>
</div>
</div>
</div>
</div>
<div class="vc_span6 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper">
<div class="media_buyer">
<img src="./without_iframe_files/A-001-144.gif">
</div>
</div>
</div>
</div>
</div>
</div>
</div></section><div class="back"></div><section id="mobile-ad-networks" class="page mobile-ad-networks text-white no-height " style="background-color:#174C73;"><div class="container"><h1 class="page-title">Mobile Ad Networks</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span8 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper">
<div class="ad_networks">
<img style="float: left; position: relative; z-index: 1;" src="./without_iframe_files/B3-001-144-animation.gif">
<img style="float: left; margin-left: -2px;" src="./without_iframe_files/B3-add-001-037-animation.gif">
</div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_left-to-right">
<div class="wpb_wrapper">
<p>
LiquidM’s modular cloud-based software allows mobile ad networks and&nbsp;saleshouses to run their ad tech infrastructure on a standardized, open platform&nbsp;that is customizable to their individual needs. LiquidM’s sophisticated technology&nbsp;platform allows them to focus on what they do best – i.e., operating and running ad&nbsp;campaigns, sales and creative, without having to worry about developing in-house&nbsp;technology. Non-technical advertisers can easily create, operate and run campaigns&nbsp;in less time, thus increasing productivity. LiquidM’s innovative Decision Engine&nbsp;brings programmatic optimization to the entire spectrum from premium supply to&nbsp;RTB reach extension.</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div></section><div class="back_reverse"></div><section id="liquidm-technology" class="page liquidm-technology text-white no-height " style="background-color:#174C73;"><div class="container"><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<h1><span style="font-weight: 400;">LiquidM´s Modules in a Nutshell</span></h1>
<p>&nbsp;</p>
<p>Built from the ground up for mobile, LiquidM’s white-labeled Mobile Advertising&nbsp;Management Platform (MAMP) allows mobile media buyers to optimize their&nbsp;management processes across the full range of premium to performance&nbsp;advertising. LiquidM provides a business model-agnostic full stack to manage&nbsp;and optimize mobile advertising campaigns. LiquidM’s modular, cloud-based&nbsp;SaaS replaces Build-Your-Own (BYO) or inadequate point solutions of ad tech&nbsp;infrastructure with a standardized, open platform that is customizable to individual&nbsp;needs. LiquidM’s unique combination of delivering quality and performance in one&nbsp;platform allows for reach extension through real-time bidding, targeting, rich media&nbsp;formats and the ability to work closely with mobile operators.</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_content_element wpb_raw_html">
<div class="wpb_wrapper">
<div style="position: relative; height: 250px;">
<ul class="technology">
<li>
<a>
<img src="./without_iframe_files/technology-11.png">
<div><span>Targeting<br><br>Rich media (MRAID)<br><br>Video (VAST)</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-21.png">
<div><span>Device identification<br><br>Finger Printing<br><br>1st/2nd/3rd party data collection</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-31.png">
<div><span>Programmatic Optimization<br><br>Machine Learning<br><br>3rd Party Data Integration<br><br>Fraud detection</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-41.png">
<div><span>Reach Extension<br><br>Access massive global supply<br><br>Full transparency</span></div>
</a>
</li>
<li>
<a>
<img src="./without_iframe_files/technology-51.png">
<div><span>Easy to use<br><br>Unified, granular reporting<br><br>Great UI</span></div>
</a>
</li>
<ul>
</ul></ul></div>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<p><b>Key Features</b></p>
<p><b>Best-in-Breed Technology</b></p>
<p>Sophisticated technology platform allows customers to focus on what they do best&nbsp;– i.e., operating and running ad campaigns, sales and creative, without having to&nbsp;worry about developing in-house technology</p>
<p><b></b><b>Customizable</b><br>
Business model-agnostic core is customizable for individual customer needs</p>
<p><b>Easy Integration</b><br>
Can easily integrate with any other tool in the market, whether it be from suppliers,&nbsp;trackers, data warehouses, etc</p>
<p><b>Transparency</b><br>
Entire lifecycle is transparent from ad spending through conversion to analytics</p>
<p><b>User Interface</b><br>
Non-technical audience can easily create, operate and run campaigns in less time and increase productivity</p>
<p><b>Quality meets Performance</b><br>
Innovative technology was built from the ground up to cover the entire mobile ad&nbsp;value chain in premium and performance environments</p>
<p><b>Performance</b><br>
Optimize advertising spending for individual performance targets; seamless big data&nbsp;integration, processing and complex performance-related technology</p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="company" class="page company text-white no-height " style="background-color:#0477BC;"><div class="container"><h1 class="page-title">Company</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_left-to-right">
<div class="wpb_wrapper">
<p>At LiquidM, we are software and technology experts who are passionate about&nbsp;bringing the world’s best products to a rapidly growing industry: Mobile&nbsp;Advertising. Unlike the first generation of mobile ad networks, we focus on building&nbsp;the most cutting edge, white-labeled Mobile Advertising Management Platform&nbsp;(MAMP), which allows media buyers to improve their efficiency, returns, and time&nbsp;to market.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="management-and-team" class="page management-and-team text-white no-height " style="background-image:url(http://liquidmcom.c.presscdn.com/wp-content/uploads/2013/10/company_low_blu.jpg);background-position:center top;"><div class="container"><h1 class="page-title">Management and Team</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/1308-website-Mgmt-CW.jpg" width="185" height="250" alt="1308-website-Mgmt-CW">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Christof Wittig<br>
CEO</p>
<p><a href="http://www.linkedin.com/in/christof" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/1308-website-Mgmt-RC.jpg" width="185" height="250" alt="1308-website-Mgmt-RC">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Roi Chobadi<br>
CPO</p>
<p><a href="http://www.linkedin.com/in/roichobadi" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/Julian-Toi.jpg" width="185" height="250" alt="Julian-Toi">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Julian Tol</p>
<p>CRO</p>
<p><a href="https://www.linkedin.com/in/jpntol" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/joe21.jpg" width="185" height="250" alt="joe2">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Joe Ayyoub</p>
<p>SVP, Business Development and Operations</p>
<p><a href="http://liquidm.com/www.linkedin.com/in/ayyoub" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/philipp01-185x250.jpg" width="185" height="250" alt="philipp01">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Philipp Simon</p>
<p>VP Business Development EMEA</p>
<p><a href="https://www.linkedin.com/pub/philipp-simon/62/62a/459" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element">
<div class="wpb_wrapper">
<img src="./without_iframe_files/1308-website-Mgmt-AD.jpg" width="185" height="250" alt="1308-website-Mgmt-AD">
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>Anne Dorman<br>
CFO</p>
<p><a href="http://www.linkedin.com/pub/anne-dorman/0/597/2a6" target="_blank"><img class="alignnone wp-image-436" src="./without_iframe_files/linkedin-neg.png" alt="linkedin-neg" width="32" height="32"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="careers" class="page careers text-white no-height " style="background-color:#174C73;"><div class="container"><h1 class="page-title">Careers</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_top-to-bottom">
<div class="wpb_wrapper">
<p>Join our world class team. We’re constantly on the lookout for people who want&nbsp;to change the world with us. Software developers, product managers, mobile&nbsp;advertising experts, and backoffice staff. Locations include San Francisco, New York,&nbsp;London, Berlin, and Singapore.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid margin_bottom">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_row vc_row-fluid">
<div class="vc_span12 title_career wpb_column column_container">
<div class="wpb_wrapper">
<h3 class=" align-left" style="color:;">Technology / Product</h3>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<p><a title="DevOps" href="http://liquidm.com/devops-fm-berlin/" target="_blank">DevOps</a></p>
<p><a title="Web Designer" href="http://liquidm.com/web-designer-fm-berlin/" target="_blank">Web Designer</a></p>
<p><a title="Product Manager" href="http://liquidm.com/product-manager-fm-berlin/" target="_blank">Product Manager</a></p>
<p><a title="Decision Engine Product Manager" href="http://liquidm.com/decision-engine-product-manager-fm-berlin/" target="_blank">Decision Engine Product Manager</a></p>
<p><a title="Senior Software Developer" href="http://liquidm.com/?p=412" target="_blank">Senior Software Developer</a></p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_row vc_row-fluid">
<div class="vc_span12 title_career wpb_column column_container">
<div class="wpb_wrapper">
<h3 class=" align-left" style="color:;">Operations &amp; Intelligence</h3>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<p><a title="Technical Support Engineer" href="http://liquidm.com/technical-support-engineer/">Technical Support Engineer</a></p>
<p><a title="Internship AdOperations" href="http://liquidm.com/internship-adoperations-fm-berlin/">Internship AdOperations</a></p>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_row vc_row-fluid">
<div class="vc_span12 title_career wpb_column column_container">
<div class="wpb_wrapper">
<h3 class=" align-left" style="color:;">International</h3>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_separator wpb_content_element"></div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>&nbsp;</p>
<h2>Contact Details</h2>
<h4>Daniela Strauss</h4>
<p>Human Resources Manager</p>
<p>+49 176 15 00 38 04<br>
<a href="mailto:daniela.strauss@liquidm.com">daniela.strauss@liquidm.com</a></p>
</div>
</div>
</div>
</div>
</div>
</div></section><section id="contact" class="page contact text-white no-height contact " style="background-color:#0477BC;"><div style="overflow: hidden; -webkit-transform: translateZ(0px); background-color: rgb(4, 119, 188);" id="contact_map"><div class="gm-style" style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0; cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1; width: 100%; transform-origin: 0px 0px 0px; transform: matrix(1, 0, 0, 1, 0, 0);"><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 100; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 267px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 523px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 11px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 779px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: -245px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 779px;"></div></div></div></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 101; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 102; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 103; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: -1;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 267px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 523px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 11px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 779px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: -245px;"></div><div style="width: 256px; height: 256px; overflow: hidden; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 779px;"></div></div></div><div style="width: 22px; height: 22px; position: absolute; left: 949px; top: 396px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div><div style="width: 22px; height: 22px; position: absolute; left: 1087px; top: 385px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div><div style="width: 22px; height: 22px; position: absolute; left: 1335px; top: 336px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div><div style="width: 22px; height: 22px; position: absolute; left: 568px; top: 508px; z-index: 99999;"><canvas width="22" height="22" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none;"></canvas></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="-webkit-transform: translateZ(0px); position: absolute; left: 796px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 540px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 284px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 28px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: -228px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: -245px;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="-webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(3)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(3)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(4)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(4)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(5)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(5)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(6)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(6)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 796px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: -228px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1820px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(8)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(8)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(9)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(9)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(10)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 267px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(10)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1052px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(11)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 28px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(11)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 540px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(12)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1564px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(12)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(13)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 779px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(13)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(14)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 523px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(14)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 1308px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(15)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div><div style="width: 256px; height: 256px; -webkit-transform: translateZ(0px); position: absolute; left: 284px; top: 11px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./without_iframe_files/vt(15)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; -webkit-transform: translateZ(0px);"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 2; width: 100%; height: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 3; width: 100%; transform-origin: 0px 0px 0px; transform: matrix(1, 0, 0, 1, 0, 0);"><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 104; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 105; width: 100%;"></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 106; width: 100%;"><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 949px; top: 396px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 1087px; top: 385px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 1335px; top: 336px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div class="gmnoprint" title="" style="width: 22px; height: 22px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; left: 568px; top: 508px; z-index: 99999;"><img src="./without_iframe_files/transparent(1).png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 22px; height: 22px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div style="-webkit-transform: translateZ(0px); position: absolute; left: 0px; top: 0px; z-index: 107; width: 100%;"></div></div></div><div style="margin-left: 5px; margin-right: 5px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;"><a target="_blank" href="http://maps.google.com/maps?ll=37.791286,-122.391795&z=2&hl=en-US&gl=US&mapclient=apiv3" title="Click to see this area on Google Maps" style="position: static; overflow: visible; float: none; display: inline;"><div style="width: 62px; height: 26px; cursor: pointer;"><img src="./without_iframe_files/google_white2.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 62px; height: 26px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></a></div><div class="gmnoprint" style="z-index: 1000001; position: absolute; right: 70px; bottom: 0px; width: 12px;"><div draggable="false" class="gm-style-cc" style="-webkit-user-select: none;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="width: auto; height: 100%; margin-left: 1px; background-color: rgb(245, 245, 245);"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a style="color: rgb(68, 68, 68); text-decoration: none; cursor: pointer; display: none;">Map Data</a><span style="display: none;"></span></div></div></div><div style="padding: 15px 21px; border: 1px solid rgb(171, 171, 171); font-family: Roboto, Arial, sans-serif; color: rgb(34, 34, 34); -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; z-index: 10000002; display: none; width: 256px; height: 148px; position: absolute; left: 810px; top: 317px; background-color: white;"><div style="padding: 0px 0px 10px; font-size: 16px;">Map Data</div><div style="font-size: 13px;"></div><div style="width: 13px; height: 13px; overflow: hidden; position: absolute; opacity: 0.7; right: 12px; top: 12px; z-index: 10000; cursor: pointer;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -2px; top: -336px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoscreen" style="position: absolute; right: 0px; bottom: 0px;"><div style="font-family: Roboto, Arial, sans-serif; font-size: 11px; color: rgb(68, 68, 68); direction: ltr; text-align: right; background-color: rgb(245, 245, 245);"></div></div><div class="gmnoprint gm-style-cc" draggable="false" style="z-index: 1000001; position: absolute; -webkit-user-select: none; right: 0px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="width: auto; height: 100%; margin-left: 1px; background-color: rgb(245, 245, 245);"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a href="http://www.google.com/intl/en-US_US/help/terms_maps.html" target="_blank" style="text-decoration: none; cursor: pointer; color: rgb(68, 68, 68);">Terms of Use</a></div></div><div draggable="false" class="gm-style-cc" style="-webkit-user-select: none; display: none; position: absolute; right: 0px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="width: auto; height: 100%; margin-left: 1px; background-color: rgb(245, 245, 245);"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a target="_new" title="Report errors in the road map or imagery to Google" href="http://maps.google.com/maps?ll=37.791286,-122.391795&z=2&hl=en-US&gl=US&mapclient=apiv3&skstate=action:mps_dialog$apiref:1&output=classic" style="font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); text-decoration: none; position: relative;">Report a map error</a></div></div><div class="gmnoprint" draggable="false" controlwidth="78" controlheight="80" style="margin: 5px; -webkit-user-select: none; position: absolute; left: 0px; top: 0px;"><div class="gmnoprint" controlwidth="78" controlheight="80" style="cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; width: 78px; height: 78px; position: absolute; left: 0px; top: 0px;"><div class="gmnoprint" controlwidth="78" controlheight="80" style="width: 78px; height: 78px; position: absolute; left: 0px; top: 0px;"><div style="visibility: hidden;"><svg version="1.1" overflow="hidden" width="78px" height="78px" viewBox="0 0 78 78" style="position: absolute; left: 0px; top: 0px;"><circle cx="39" cy="39" r="35" stroke-width="3" fill-opacity="0.2" fill="#f2f4f6" stroke="#f2f4f6"></circle><g transform="rotate(0 39 39)"><rect x="33" y="0" rx="4" ry="4" width="12" height="11" stroke="#a6a6a6" stroke-width="1" fill="#f2f4f6"></rect><polyline points="36.5,8.5 36.5,2.5 41.5,8.5 41.5,2.5" stroke-linejoin="bevel" stroke-width="1.5" fill="#f2f4f6" stroke="#000"></polyline></g></svg></div></div><div class="gmnoprint" controlwidth="59" controlheight="59" style="position: absolute; left: 10px; top: 11px;"><div style="width: 59px; height: 59px; overflow: hidden; position: relative;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"><div title="Pan left" style="position: absolute; left: 0px; top: 20px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div><div title="Pan right" style="position: absolute; left: 39px; top: 20px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div><div title="Pan up" style="position: absolute; left: 20px; top: 0px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div><div title="Pan down" style="position: absolute; left: 20px; top: 39px; width: 19.6666666666667px; height: 19.6666666666667px; cursor: pointer;"></div></div></div></div></div><div class="gmnoprint" draggable="false" controlwidth="25" controlheight="218" style="margin: 5px; -webkit-user-select: none; position: absolute; top: 0px; right: 25px;"><div class="gmnoprint" controlwidth="0" controlheight="0" style="opacity: 0.6; display: none; position: absolute;"><div title="Rotate map 90 degrees" style="width: 22px; height: 22px; overflow: hidden; position: absolute; cursor: pointer;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -38px; top: -360px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoprint" controlwidth="25" controlheight="218" style="position: absolute; left: 0px; top: 0px;"><div title="Zoom in" style="width: 23px; height: 24px; overflow: hidden; position: relative; cursor: pointer; z-index: 1;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -400px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Click to zoom" style="width: 25px; height: 170px; overflow: hidden; position: relative; cursor: pointer; top: -4px;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -87px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Drag to zoom" style="width: 21px; height: 14px; overflow: hidden; position: absolute; -webkit-transition: top 0.25s ease; transition: top 0.25s ease; z-index: 2; cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; left: 2px; top: 164px;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: 0px; top: -384px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Zoom out" style="width: 23px; height: 23px; overflow: hidden; position: relative; cursor: pointer; top: -4px; z-index: 3;"><img src="./without_iframe_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -361px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div></div></div></div><div class="container"><h1 class="page-title">Contact</h1><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_bottom-to-top">
<div class="wpb_wrapper">
<h3>Get in touch with us.</h3>
<p>Email us or come to visit us at:</p>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>San Francisco</b><b>:</b></div>
<div>
<div>
<p>LiquidM Inc.<br>
201 Spear Street,&nbsp;Suite 1100<br>
San Francisco, CA&nbsp;94105<br>
USA</p>
<p>phone: +1 415 230 5374</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>New York</b><b>:</b></div>
<div>
<p>LiquidM Inc.<br>
415 Madison Avenue, 14th Floor<br>
New York, NEW YORK 10017<br>
USA</p>
<p>phone:&nbsp;+1 650 391 4422</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>Berlin</b><b>:</b></div>
<div>
<p>LiquidM Technology GmbH,<br>
Paul-Lincke-Ufer 39/40,<br>
10999 Berlin,<br>
Germany</p>
<p>phone: +49 3060 985 4650</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span12 wpb_column column_container">
<div class="wpb_wrapper">
<p>&nbsp;</p>
</div>
</div>
</div><div class="wpb_row vc_row-fluid">
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>London</b><b>:</b></div>
<div>
<div>
<p>Winchester House<br>
259-269 Old Marylebone Road<br>
LONDON, NW1 5RA<br>
United Kingdom</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div><b>Singapore</b><b>:</b></div>
<div>
<p>Singapore<br>
1 Raffles Place<br>
#20-61 One Raffles Place Tower 2<br>
Singapore 048616</p>
</div>
<div>mail:&nbsp; <a href="mailto:info@liquidM.com" target="_blank">info@liquidM.com</a></div>
</div>
</div>
</div>
</div>
<div class="vc_span4 wpb_column column_container">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div><div class="contact-form-wrapper">
<div class="container">
<header>
<i class="entypo mail-icon">✉</i>
<!-- <h3>Send us your message</h3>
<p class="op8">Imagine that you have something you want to share with us.</p> -->
</header>
<br>
<form class="row contact-form" action="http://liquidm.com/#" method="post" novalidate="novalidate">
<div class="span9">
<div class="controls controls-row">
<input class="span3 required" type="text" placeholder="Name (required)" name="name" required="">
<input class="span3 required email" type="email" placeholder="E-mail (required)" name="email" required="">
<input class="span3 required" type="text" placeholder="Subject (required)" name="subject" required="">
</div>
<textarea class="span9 required" placeholder="Message (required)" name="message" rows="3" required=""></textarea>
</div>
<div class="span2 controls">
<button type="submit" class="span2">Send<br>
Message</button>
</div>
<div class="contact-info span9"></div>
</form>
</div>
</div>
</section><!-- Begin footer -->
<footer id="footer">
<section id="pages-2" class="widget widget_pages"><h4 class="widget-title">Pages</h4> <ul>
<li class="page_item page-item-33"><a href="http://liquidm.com/home/">LiquidM Solutions</a></li>
<li class="page_item page-item-69"><a href="http://liquidm.com/media-buyers/">Mobile Media Buyers</a></li>
<li class="page_item page-item-259"><a href="http://liquidm.com/ad-networks-solution/">Mobile Ad Networks</a></li>
<li class="page_item page-item-82"><a href="http://liquidm.com/liquidm-technology/">LiquidM Technology</a></li>
<li class="page_item page-item-281"><a href="http://liquidm.com/company-2/">Company</a></li>
<li class="page_item page-item-88"><a href="http://liquidm.com/team-mgmt-and-board/">Management and Team</a></li>
<li class="page_item page-item-92"><a href="http://liquidm.com/careers/">Careers</a></li>
<li class="page_item page-item-95"><a href="http://liquidm.com/contact/">Contact</a></li>
</ul>
</section><section id="text-2" class="widget widget_text"> <div class="textwidget"><div style="border-top: 1px solid #fff; width: 300px; height: 50px; line-height: 50px; margin: auto;">
<a href="http://www.liquidm.com/privacy-policy/" target="_blank">
Privacy Policy</a> -
<a href="http://liquidm.com/legal-information/" target="_blank">Legal Information</a>
</div></div>
</section>
<section class="copyright op4">
Copyright © 2013 LiquidM<br>All rights reserved. </section>
</footer>
<!-- End footer -->
<div id="lightwindow">
<div id="lightwindow-content"></div>
</div>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-51195480-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<link rel="stylesheet" id="js_composer_front-css" href="./without_iframe_files/js_composer_front.css" type="text/css" media="screen">
<script type="text/javascript" src="./without_iframe_files/js"></script><script src="./without_iframe_files/main.js" type="text/javascript"></script>
<script type="text/javascript" src="./without_iframe_files/plugins.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var AjaxHelper = {"blog_url":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/template-news.php","portfolio_url":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/template-portfolio.php","portfolio2_url":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/template-portfolio2.php","ajaxurl":"http:\/\/liquidm.com\/wp-admin\/admin-ajax.php","pt_twitter_path":"http:\/\/liquidm.com\/wp-content\/themes\/disillusion\/functions\/twitter\/"};
var pt_settings = {"base_color":"#0477BC","google_maps_circle_color":"#FE4600","google_maps_landscape_color":"#174C73","google_maps_water_color":"#0477BC","portfolio_items_page":"5","blog_items_page":"16","pt_google_maps_latitude_1":"37.791286","pt_google_maps_longitude_1":"-122.391795","pt_google_maps_title_popover_1":"","pt_google_maps_text_popover_1":"","pt_google_maps_latitude_2":"40.748135","pt_google_maps_longitude_2":"-73.984405","pt_google_maps_title_popover_2":"","pt_google_maps_text_popover_2":"","pt_google_maps_latitude_3":"52.49582","pt_google_maps_longitude_3":"13.423122","pt_google_maps_title_popover_3":"","pt_google_maps_text_popover_3":"","pt_google_maps_latitude_4":"1.284692","pt_google_maps_longitude_4":"103.852974","pt_google_maps_title_popover_4":"","pt_google_maps_text_popover_4":""};
/* ]]> */
</script>
<script type="text/javascript" src="./without_iframe_files/main(1).js"></script>
<script type="text/javascript" src="./without_iframe_files/js_composer_front.js"></script>
<script type="text/javascript" src="./without_iframe_files/waypoints.min.js"></script>
<script src="./without_iframe_files/jarallax_beta.js" type="text/javascript"></script>
<script src="./without_iframe_files/animations.js" type="text/javascript"></script>
<script type="text/javascript" src="./without_iframe_files/jquery.hoverdir.js"></script>
<script type="text/javascript">
jQuery(function() {
jQuery('.technology > li').each( function() { jQuery(this).hoverdir(); } );
});
</script>
<!-- Served from: liquidm.com @ 2014-09-09 12:34:57 by W3 Total Cache --><script type="text/javascript" src="chrome-extension://bmdblncegkenkacieihfhpjfppoconhi/in-page-script.js"></script></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment