<!DOCTYPE html>
<html  ng-app="vpModule" ng-controller="VPController">
<head>
   <meta charset="utf-8"/>
   <meta name="viewport" content="width=1200">
   <meta name="msvalidate.01" content="AF86D6C94D0294C6DCFF4C02777B9787" />
   
   <link rel="stylesheet" href="/st/css/main.css">
   <link rel="stylesheet" href="/st/css/common.css">
   
   <link rel="stylesheet" href="https://vjs.zencdn.net/4.5/video-js.css">
   
   <script  src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
   <script  src="/st/js/o/easing.js"></script>
   
   <link rel="apple-touch-icon" sizes="57x57" href="/st/fav/apple-touch-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="114x114" href="/st/fav/apple-touch-icon-114x114.png">
   <link rel="apple-touch-icon" sizes="72x72" href="/st/fav/apple-touch-icon-72x72.png">
   <link rel="apple-touch-icon" sizes="144x144" href="/st/fav/apple-touch-icon-144x144.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/st/fav/apple-touch-icon-60x60.png">
   <link rel="apple-touch-icon" sizes="120x120" href="/st/fav/apple-touch-icon-120x120.png">
   <link rel="apple-touch-icon" sizes="76x76" href="/st/fav/apple-touch-icon-76x76.png">
   <link rel="apple-touch-icon" sizes="152x152" href="/st/fav/apple-touch-icon-152x152.png">
   <meta name="apple-mobile-web-app-title" content="Videopixie">
   <link rel="icon" type="image/png" href="/st/fav/favicon-196x196.png" sizes="196x196">
   <link rel="icon" type="image/png" href="/st/fav/favicon-160x160.png" sizes="160x160">
   <link rel="icon" type="image/png" href="/st/fav/favicon-96x96.png" sizes="96x96">
   <link rel="icon" type="image/png" href="/st/fav/favicon-16x16.png" sizes="16x16">
   <link rel="icon" type="image/png" href="/st/fav/favicon-32x32.png" sizes="32x32">
   <meta name="msapplication-TileColor" content="#ffffff">
   <meta name="msapplication-TileImage" content="/st/fav/mstile-144x144.png">
   <meta name="application-name" content="Videopixie">
   
   
   
   <title>Top 20 Videographers in New Hampshire | Videopixie</title>
   <meta name="description" content="A selection of the best videographers in New Hampshire and around.  Includes one-man-band video freelancers as well as full-service video production companies and studios.">
   <link rel="stylesheet" href="/st/css/creator_list.css"/>
   
   <script>
   
      var angularTemplate = '';
      var allProfiles = [];
   
   </script>
   

      
   <link href='//fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
   <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
   
   <script  src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-animate.min.js"></script>
   
   <script>
      window.SES={};
      SES.is_dev_enviro = false;
      SES.coupon_unavailable = false;

      var vpModule = angular.module('vpModule', ['ngAnimate',]);
       
   </script>
   
  
   
   <script src="/st/build/vjs.4.5.min.js"></script>
   
   <!--
      <script type="text/javascript" src="/st/build/vjs-extra.concat.js"></script>
   -->
   <script  src="/st/build/vjs-extra.min.js"></script>
   
   <script  src="/st/js/o/common.js"></script>
   <script  src="/st/js/c/VPController.js"></script>
   <script  src="/st/js/c/DirectivesCommon.js"></script>
   <script  src="/st/js/c/MediaModalController.js"></script>
   <script  src="/st/js/c/EditorProfileController.js"></script>
   <script>
      
   var log = VPL('HomePageController');
      
   
   vpModule.controller('HomePageController', ['$scope', 'comm', '$http', 
      function($scope, comm, $http){
      
         $scope.mediaClick = function(id, evt, _options, size){
         
            log.d('mediaClick', _options);

            var content = $(evt.currentTarget).children('.about').eq(0).html()
            var options = _options || {}
            
            comm.broadcast(VP.SHOW_MEDIA,{
               mode: (content ? VP.SIDEBAR_MODES.HTML_MODE : VP.SIDEBAR_MODES.ASSET_MODE),
               htmlSidebarContent: content,
               mediaData: {
                  bucket: options.bucket || "our.s3.videopixie.com/examples/",
                  provider: options.provider || "",
                  provider_id: id,
                  file_extension: 'mp4', 
                  hasWebm: true,
                  overlays: options.overlays || null,
                  format: options.format || null
               },
               size: size
            });
         };
         
         $scope.homepageVideo = function(id,evt){
         
            $scope.mediaClick(id, evt, {
               bucket: 'our.s3.videopixie.com/video/',
               format: '704p'
            },
            {
               width: 1024,
               height: 576,
               media_width: 1024,
               media_height: 576
            });
         }
         
         
         $scope.$watch('MediaModal',function(isPlaying){
         
            window.isPlayingVideo = !!isPlaying;
         });
         
         
         $scope.registerNew = function(){
         
            var path = '/register/new';
            
            if (!$scope.registerNewEmailAddress || $scope.registerNewEmailAddress.length < 3){
               return;
            }
            
            var data = {
               email_address: $scope.registerNewEmailAddress,
               type_context: SES.type_context || ''
            };
            
            $scope.registerNewPending = true;
            $scope.registerNewErrorMsg = null;
           
            $http.post(path, data).then(
               function registerNewSuccess(response){
                  log.d('SUCCESS', path);
                  $scope.registerNewComplete = true;
                  $scope.registerNewPending = false;
               },
               function registerNewError(response){
                  log.d('ERROR', path, response);
                  $scope.registerNewErrorMsg = response.data.error.human;
                  $scope.registerNewPending = false;
               }
            );
            
         
         }

         
         
      }]);
      
      
      
      $(document).ready(function(){
         $('.click-proxy').click(function(evt){
         
            var id = $(evt.currentTarget).attr('click-proxy');
            //console.log('click-proxy', id);
            $('#'+id).triggerHandler('click');
            
         });
         
         (function(d, s, id) {
           var js, fjs = d.getElementsByTagName(s)[0];
           if (d.getElementById(id)) return;
           js = d.createElement(s); js.id = id;
           js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=257876044244230";
           fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));
      
      });

   </script>

   
   <!-- start Mixpanel -->
   <script type="text/javascript">
    (function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
    '//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
    'track_forms','register','register_once','unregister','identify','alias','name_tag',
    'set_config','people.set','people.increment','people.track_charge','people.append'];
    for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
    mixpanel.init("");
   </script>
   <!-- end Mixpanel -->
   
   
   <script type="text/javascript" src="/st/js/v/ses_mixpanel.js"></script>
   
   <!--[if lt IE 7.]>
      <script defer type="text/javascript" src="st/pngfix.js"></script>
   <![endif]-->
   
   <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-42918769-1', 'videopixie.com');
      ga('require', 'displayfeatures');
      ga('send', 'pageview');
      
      var referrerCookieName = 'vpFirstReferrer';
      if (!readCookie(referrerCookieName)){
         var ref = document.referrer || 'empty';
         createCookie(referrerCookieName , ref ,365*2);
      }
   </script>
  
   
   
   <script  src="/st/js/nm/VideoCreators.js"></script>
   <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css'>

   

  
</head>
<body class="VP"  ng-controller="HomePageController">
   
   <div id="header">
      <a href="/"><img id="logo" src="/st/images/logo_text_and_pixie.png" alt="Videopixie"></a>
      <a id="phone" href="tel:1 800 510 6570">1 (800) 510-6570</a>
      
      
      
         
         
         
         
      
      
      
      <a class="right-link" href="/pricing">Pricing</a>
      <a class="right-link" href="/video-school">Video School</a>
      <a class="right-link browse-link browse-link-first" href="/videographers">Videographers</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-animators">Animators</a>
      <span class="link-spacer">|</span>
      <a class="right-link browse-link" href="/video-editors">Browse:&nbsp; Video editors</a>
      
   </div>
   
   
   


   <div id="hero" 
      >
   
      <h1>Top 20 Videographers in New Hampshire</h1>
      <h2>Videopixie helps you hire the best New Hampshire Videographers</h2>
      
      <div class="buttonWrapper">
         <a href="/start"><div class="button">Start getting quotes today</div></a>
      </div>
      
   </div>
   
   <div id="relatedWrapper">
      
   </div>

   <div id="creatorsList" class="content" ng-controller="CreatorListController">
      
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/VideoMarketingSolutions__4E233NHaQaievuEGx7iTpw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/VideoMarketingSolutions">   
                  <h3>
                     Video Marketing Solutions
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Manchester, NH 03104, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">We help small to mid-size businesses and local communities communicate more effectively with captivating video and well-produced, cost-effective media.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="133659381" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/526812688_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '133659381')"
                        ng-class="{full: showFullComments['133659381']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="120737839" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/508678791_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '120737839')"
                        ng-class="{full: showFullComments['120737839']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="144049800" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541792222_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '144049800')"
                        ng-class="{full: showFullComments['144049800']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Dark_White_Media__uOYnQNcJSWirxukjjCgwMA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/darkwhitemedia">   
                  <h3>
                     Dark White Media
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Lowell, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Dark White Media is a full service video production company serving the greater Boston area. Our team, led by award winning filmmaker Anthony Caddigan, has produced dozens of videos for our satisfied clients since our inception in 2012, and continues to grow and increase its reach on a daily basis.

Whether in our Westford, MA studio or on location, we have the tools and techniques to create great video content with a methodical and detail oriented approach. From script to screen, we handle every aspect of the production, keeping your goals and vision ever-present and in the forefront.

Specializing in both commercial video and music video production, Dark White Media is ready to help you with your video needs, large or small.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="qNS_wv7ZJ4k" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/qNS_wv7ZJ4k/0.jpg)"></div>
                     <img class="play" alt="Dark White Media Short Film &amp; Music Video Showreel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'qNS_wv7ZJ4k')"
                        ng-class="{full: showFullComments['qNS_wv7ZJ4k']}">
                        Dark White Media Short Film &amp; Music Video Showreel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="kU7U54z1Rbk" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/kU7U54z1Rbk/0.jpg)"></div>
                     <img class="play" alt="Dark White Media Corporate Showreel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'kU7U54z1Rbk')"
                        ng-class="{full: showFullComments['kU7U54z1Rbk']}">
                        Dark White Media Corporate Showreel
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/CharlesGeoghegan__S5MEU1acRI2X_Tr3adRV1Q.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/charlesgeoghegan">   
                  <h3>
                     Charles Geoghegan
                     <span>New Hampshire Videographers in </span>
                     <span class="location">New Hampshire, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I am a video producer &amp; editor specializing in post production of all types of videos including teasers, interviews, sales pitches, tutorials and event recaps. Stylized color grading, audio sweetening and custom motion titles come standard with my work.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="oxVVm75k_8Q" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://i.ytimg.com/vi/oxVVm75k_8Q/maxresdefault.jpg)"></div>
                     <img class="play" alt="Beatport Interview with Amon Tobin- Shooting, Recording, Mixing,  Editing and Graphics." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'oxVVm75k_8Q')"
                        ng-class="{full: showFullComments['oxVVm75k_8Q']}">
                        Beatport Interview with Amon Tobin- Shooting, Recording, Mixing,  Editing and Graphics.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="155005840" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/555729395_1280.jpg)"></div>
                     <img class="play" alt="A real estate video I shot in collaboration with Mountain Graphics Photography and edited for Sotheby&#39;s Real Estate." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '155005840')"
                        ng-class="{full: showFullComments['155005840']}">
                        A real estate video I shot in collaboration with Mountain Graphics Photography and edited for Sotheby&#39;s Real Estate.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="159011636" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/560649311_1280.jpg)"></div>
                     <img class="play" alt="A feature trailer I edited for the director to submit to film festivals." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '159011636')"
                        ng-class="{full: showFullComments['159011636']}">
                        A feature trailer I edited for the director to submit to film festivals.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from New Hampshire Videographerss</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/JoshKastorf__4uqUsvknQxyxwLtEi4tTiA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/JoshKastorf">   
                  <h3>
                     Josh Kastorf
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Cambridge, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Freelance video producer, videographer, and video editor.  I have experience with documentary/promotional videos, music videos, and video for live events.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="130275044" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/522072955_640.jpg)"></div>
                     <img class="play" alt="Documentary for MIT.  Produced, edited, conducted research and interviews." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '130275044')"
                        ng-class="{full: showFullComments['130275044']}">
                        Documentary for MIT.  Produced, edited, conducted research and interviews.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="103563721" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/485845902_640.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '103563721')"
                        ng-class="{full: showFullComments['103563721']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="31006524" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/208633254_640.jpg)"></div>
                     <img class="play" alt="Multi-day wedding edited into three short videos (more at https://vimeo.com/album/2489393)" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '31006524')"
                        ng-class="{full: showFullComments['31006524']}">
                        Multi-day wedding edited into three short videos (more at https://vimeo.com/album/2489393)
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/GeoffKing__7ok0KxFnQ6OwAFBXj1EJSQ.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/GeoffKing">   
                  <h3>
                     Geoff King
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Boston, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Has camera. Will travel.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162564050" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/565044896_1280.jpg)"></div>
                     <img class="play" alt="Screencast capabilities example." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162564050')"
                        ng-class="{full: showFullComments['162564050']}">
                        Screencast capabilities example.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="162562495" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/565043786_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '162562495')"
                        ng-class="{full: showFullComments['162562495']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="151650361" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/551451066_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '151650361')"
                        ng-class="{full: showFullComments['151650361']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/EdemanteDesignFilm__TWTMwJCOSfOLaCPtmyaYVw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Edemante">   
                  <h3>
                     Edemanté Design & Film
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Boston, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">It’s no secret that video has taken over! It’s everywhere! Facebook, Twitter, Instagram. There’s really no escaping the massive amount of videos that are put in front of us on a daily basis. Some videos we can do without but for the most part it’s a true testament to the marketing power of video. The reason we see so many of them is because they work. People are engaged by them and the creators know that they work. Now think of your brand, business or personality and ask yourself, how can it benefit from video.

We film and produce things while taking a unique approach to each project. We want your film, ad or video to tell the right story, to the right audience and be so good that people want to share it. It’s all about the messaging and impact. Using all the skills and tricks we’ve learned to create something amazing. Oh and we do use some pretty bad a** equipment to get the job done too!</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="157669428" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/558997580_1280.jpg)"></div>
                     <img class="play" alt="Edemanté Film Reel" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '157669428')"
                        ng-class="{full: showFullComments['157669428']}">
                        Edemanté Film Reel
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142272933" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/552697695_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142272933')"
                        ng-class="{full: showFullComments['142272933']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="145329361" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/543419154_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '145329361')"
                        ng-class="{full: showFullComments['145329361']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Get 5-10 bids from talented New Hampshire Videographerss by tomorrow</span>
               <a href="/start"><div class="button">Post a project - free!</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Zak_Brickett__mwADZM2CR7qdhUiJRTfuDg.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/ZakBrickett">   
                  <h3>
                     Zak Brickett
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Boston, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Video production specialist with a background in marketing.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="111691506" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/496400539_640.jpg)"></div>
                     <img class="play" alt="Short deadline.  Product line video for a boutique AV Store in Boston, MA." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '111691506')"
                        ng-class="{full: showFullComments['111691506']}">
                        Short deadline.  Product line video for a boutique AV Store in Boston, MA.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="109988501" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/504951680_640.jpg)"></div>
                     <img class="play" alt="30 second teaser video for  high-end interior finishes." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '109988501')"
                        ng-class="{full: showFullComments['109988501']}">
                        30 second teaser video for  high-end interior finishes.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="84904597" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/461999186_640.jpg)"></div>
                     <img class="play" alt="Explainer video for a medical product." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '84904597')"
                        ng-class="{full: showFullComments['84904597']}">
                        Explainer video for a medical product.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/NickPapps__dUT5yxgXTHeyLOw5JPwI7w.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/NickPapps">   
                  <h3>
                     Nick Papps
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Dedham, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">www.nickpapps.com

I am a creative multimedia producer based in the Boston area.  My business creates promotional videos,  films, motion graphics, 3D animations, music videos, photography and more. My work is featured online and on television for businesses, restaurants, nightclubs, music videos and more.

Currently, I&#39;m focused on helping businesses create engaging online content for social media to drive brand imaging and strengthen their online presence.  The use of Facebook, Pinterest and Instagram for example are growing at an exponential rate each year.  Their impact for marketing to drive sales cannot be ignored.  Having engaging multimedia content is essential for any modern business.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="115305096" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/501358832_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '115305096')"
                        ng-class="{full: showFullComments['115305096']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143402900" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/540977345_1280.jpg)"></div>
                     <img class="play" alt="This was completed on behalf of Small Army, Boston.  I was responsible for the editing, graphics, animation, 3D elements but not the filming on this piece." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143402900')"
                        ng-class="{full: showFullComments['143402900']}">
                        This was completed on behalf of Small Army, Boston.  I was responsible for the editing, graphics, animation, 3D elements but not the filming on this piece.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="149246654" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/548479530_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '149246654')"
                        ng-class="{full: showFullComments['149246654']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Keli__T2zsqZ28Tumw94ujFTegtw.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/Keli">   
                  <h3>
                     Keli 
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Worcester, MA, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Cinematography, Video Editing</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="121150419" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/509237963_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '121150419')"
                        ng-class="{full: showFullComments['121150419']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="142826931" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/540231836_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '142826931')"
                        ng-class="{full: showFullComments['142826931']}">
                        
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="143525601" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/541130945_1280.jpg)"></div>
                     <img class="play" alt="" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '143525601')"
                        ng-class="{full: showFullComments['143525601']}">
                        
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Find the best New Hampshire Videographers for your project</span>
               <a href="/start"><div class="button">Connect with New Hampshire Videographerss</div></a>
            </div>
         </div>
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/AtYourServiceVideo__gjGheuqSS0GiiSjEllKGaA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/AtYourServiceVideo">   
                  <h3>
                     At Your Service Video
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Saco, ME, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">I can do that for you!

Professional video services for commercial, web, marketing, corporate and weddings.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="RHL792h-bPA" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/RHL792h-bPA/0.jpg)"></div>
                     <img class="play" alt="Demo" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'RHL792h-bPA')"
                        ng-class="{full: showFullComments['RHL792h-bPA']}">
                        Demo
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="FlXXS3ht1IE" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/FlXXS3ht1IE/0.jpg)"></div>
                     <img class="play" alt="100th Anniversary for the local Rotary club in Portland ME" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'FlXXS3ht1IE')"
                        ng-class="{full: showFullComments['FlXXS3ht1IE']}">
                        100th Anniversary for the local Rotary club in Portland ME
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="TM_ghOmtAvU" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/TM_ghOmtAvU/0.jpg)"></div>
                     <img class="play" alt="Local Chamber" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'TM_ghOmtAvU')"
                        ng-class="{full: showFullComments['TM_ghOmtAvU']}">
                        Local Chamber
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/Timothy_Palmer-Benson__6EpMrqfPTsqe3RoHpHHrAA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/TimothyPalmerBenson">   
                  <h3>
                     Timothy Palmer-Benson
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Woodstock, VT, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Experienced videographer/filmmaker with extensive background in story telling, journalism and wedding film. Multiple camera/operator coverage of your event available. </div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="113819374" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/499299681_1280.jpg)"></div>
                     <img class="play" alt="Best movie I&#39;ve done, but it was because of the couple more than anything else" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '113819374')"
                        ng-class="{full: showFullComments['113819374']}">
                        Best movie I&#39;ve done, but it was because of the couple more than anything else
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="140789714" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/537472100_1280.jpg)"></div>
                     <img class="play" alt="Typical highlights reel, just with music and no dialogue" src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '140789714')"
                        ng-class="{full: showFullComments['140789714']}">
                        Typical highlights reel, just with music and no dialogue
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="163628854" vp-provider="vimeo">
                     <div class="reel-thumbnail" style="background-image: url(https://i.vimeocdn.com/video/567050314_1280.jpg)"></div>
                     <img class="play" alt="Cinematic style with some time shifting, but not frenetic, more laid back." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '163628854')"
                        ng-class="{full: showFullComments['163628854']}">
                        Cinematic style with some time shifting, but not frenetic, more laid back.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         <div class="creator">
            <div class="profile-pic" 
               style="background-image: url(https://s3.amazonaws.com/our.s3.videopixie.com/creator/profile/avatar/h80/RyanVemmer__ijBtIakRT_u3B6EYJAZLdA.jpg)" ></div>
            <div class="right">
               <a class="name" href="/creator/RyanVemmer">   
                  <h3>
                     Ryan Vemmer
                     <span>New Hampshire Videographers in </span>
                     <span class="location">Rhode Island, USA</span>
                  </h3>
               </a>
               
               
               
               <div class="blurb">Filmmaker, editor, and writer. I&#39;m used to working as a one-man show, yet able to develop high quality, creative work under time pressure (both shooting and editing). I can find the story in the roughest OR most beautiful pre-existing footage, and do it with verve.</div>
               
               <div class="reel">
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="6o1GeGliIdc" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/6o1GeGliIdc/0.jpg)"></div>
                     <img class="play" alt="An interview-based project supporting scholarship fundraising." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, '6o1GeGliIdc')"
                        ng-class="{full: showFullComments['6o1GeGliIdc']}">
                        An interview-based project supporting scholarship fundraising.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="BQSFNUgkxLQ" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/BQSFNUgkxLQ/0.jpg)"></div>
                     <img class="play" alt="A fun high school musical promo I created with the help of students. Another example of quick work with quality, fun outcome." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'BQSFNUgkxLQ')"
                        ng-class="{full: showFullComments['BQSFNUgkxLQ']}">
                        A fun high school musical promo I created with the help of students. Another example of quick work with quality, fun outcome.
                     </p>
                  </div>
                  
                  
               
                  <div class="asset-wrapper" 
                     vp-asset="IYFpIkyWvz8" vp-provider="youtube">
                     <div class="reel-thumbnail" style="background-image: url(https://img.youtube.com/vi/IYFpIkyWvz8/0.jpg)"></div>
                     <img class="play" alt="An interview-based project to support this organization spring fundraising efforts." src="/st/images/play_outline_83x83.png"/>
                     <p class="comment" ng-click="showComment($event, 'IYFpIkyWvz8')"
                        ng-class="{full: showFullComments['IYFpIkyWvz8']}">
                        An interview-based project to support this organization spring fundraising efforts.
                     </p>
                  </div>
                  
                  
               </div>
               
            </div>
         </div>
       
         
         
         
         
      
         
         
         
         <div class="ctaWrapper">
            <div class="ctaInner">
               <span>Creators are ready to bid on your project</span>
               <a href="/start"><div class="button">Get quotes from New Hampshire Videographerss</div></a>
            </div>
         </div>
         
         
      
      
   </div>
         
   

   
   <div id="footer">
      
      <div class="content">
         <img id="footer-logo" src="/st/images/logo_text_and_pixie.png" alt="videopixie logo">
         
         <div id="footer-left">
            <a href="/im_a_pro">Sign-up as a Professional</a>
            <a href="/video-production">Browse Video Producers</a>
            <a href="/learn-more">Learn More</a>
            <a href="/pricing">Pricing</a>
         </div>
         
         <div id="footer-left">
            <a href="/video-school">Video School</a>
            <a href="/about">Our Team</a>
            <a href="/jobs">Jobs</a>
            <a href="/faq">FAQ</a>
         </div>
      
         <div id="social-links">
            <a target="vp_facebook" href="//www.facebook.com/videopixie" class="facebook social-box">f</a>
            <a target="vp_twitter" href="//www.twitter.com/videopixie" class="twitter social-box">t</a>
            <a target="vp_google" href="//www.google.com/+videopixie" class="google social-box">g+</a>
            <a target="vp_linkedin" href="//www.linkedin.com/company/videopixie" class="linkedin social-box">in</a>
         </div>
         
         <div id="footer-bottom">
            <span>Copyright 2015 TT Labs Inc.</span>
            <a href="/st/privacy.html">Privacy Policy</a>
            <a href="/st/dmca.html">DMCA</a>
         </div>
      
      </div>
      
      
      
   </div>
  
   
   
   <div id="media-modal" class="modal modal-wrapper video-modal dn" vp-size="size" vp-fade="[[MediaModal]]" vp-closeable="MediaModal"  ng-controller="MediaModalController">
<!--vp-fade-but-leave-in-display="MediaModal" -->

   <div id="media-background" vp-width-by-aspect="[[aspectRatio]]"></div>
   <div id="image-wrapper"
      ng-class="{ontop: imageViewerMode, small_hide: !imageViewerMode}"
      vp-img-child="src: '[[imageSrc]]', valid: true">
      <!--img is inserted by vp-img-child -->
   </div>
   <div id="player-wrapper" ng-class="{small_hide: imageViewerMode}">
      <video id="video-element" class="video-js vjs-default-skin" controls ng-controller = "VideoPlayerController"></video>
      <div id="video-overlay" ng-bind-html="overlayHtml">
         
      </div>
   </div>
   
   <div id="sidebar-wrapper">
      
      <div ng-show="mode.design_mode" ng-controller="DesignSideBarController" class="side-bar designSideBar"><!-- Design Mode -->
         
         <div class="font-14-999 fr">[[currentQuestion.name]]</div>
         <div class="currentOptionWrapper clearfix">
         
            <div class="option clearfix"
               ng-click="onCurrentOptionClick()"
               ng-class="{selected:currentOption.selected}"
               vp-hover-exclusion="not-hot">
               <div class="mainRow fl">
                  <div class="thumbnailWrapper fl" 
                     vp-img-child="src: '[[AWS + mediaData.bucket + currentOption.video.provider_id]]' + '_120h.jpg', valid: [[!!currentOption.video.provider_id]]">
                     <!--img is inserted by vp-img-child -->
                     
                  </div>
                  <div class="font-16-666-b optionName fl">[[currentOption.name]]</div>
                  <div class="ok"></div>
               </div>
               <div class="font3 details fl">[[currentOption.details]]</div>
            </div>
            
         </div>
         
         <div class = "otherOptionsWrapper">
            
            <div class="bar"></div>
            <div class="font4 subtitle">Other [[currentQuestion.name]] options:</div>
            <div class="vp-scroll-bar vp-scroll-shadows scroll-wrapper">
               <div class="option clearfix" 
                  ng-repeat="(optionIdx,option) in currentQuestion.options" 
                  ng-hide='optionIdx == currentOptionIdx || option.hidden || option.renderer == "lengthInput"'
                  ng-class="{clickable:option.video.provider_id}"
                  ng-click="onOtherOptionClick(optionIdx)">
                  
                  <div class="thumbnailWrapper fl"
                     vp-img-child="src: '[[AWS + mediaData.bucket + option.video.provider_id]]' + '_120h.jpg', valid: [[!!option.video.provider_id]]">
                     <!--img is inserted by vp-img-child -->
                     
                     <div class="no-example" ng-hide="option.video.provider_id">No example</div>
                  </div>
                  <div class="font3 optionName">[[option.name]]</div>               
               </div>
            </div>
         </div>
         
      </div>
      
      <div ng-show="mode.html_mode" class="html-side-bar side-bar">
      
         <div ng-bind-html="htmlSidebarContent"></div>
      
      </div>
         
      
   </div>
   <div class="x close"></div>
</div>

   
   <div class="dimmer dn" vp-fade="[[Dimmer]]" vp-match-document-height></div>
   
   <div id="fb-root"></div>
      
   
   <!-- begin olark code -->
   <script data-cfasync="false" type='text/javascript'>
   /*<![CDATA[*/
   if(!SES.is_dev_enviro){
      window.olark||(function(c){var f=window,d=document,l=f.location.protocol=="https:"?"https:":"http:",z=c.name,r="load";var nt=function(){
      f[z]=function(){
      (a.s=a.s||[]).push(arguments)};var a=f[z]._={
      },q=c.methods.length;while(q--){(function(n){f[z][n]=function(){
      f[z]("call",n,arguments)}})(c.methods[q])}a.l=c.loader;a.i=nt;a.p={
      0:+new Date};a.P=function(u){
      a.p[u]=new Date-a.p[0]};function s(){
      a.P(r);f[z](r)}f.addEventListener?f.addEventListener(r,s,false):f.attachEvent("on"+r,s);var ld=function(){function p(hd){
      hd="head";return["<",hd,"></",hd,"><",i,' onl' + 'oad="var d=',g,";d.getElementsByTagName('head')[0].",j,"(d.",h,"('script')).",k,"='",l,"//",a.l,"'",'"',"></",i,">"].join("")}var i="body",m=d[i];if(!m){
      return setTimeout(ld,100)}a.P(1);var j="appendChild",h="createElement",k="src",n=d[h]("div"),v=n[j](d[h](z)),b=d[h]("iframe"),g="document",e="domain",o;n.style.display="none";m.insertBefore(n,m.firstChild).id=z;b.frameBorder="0";b.id=z+"-loader";if(/MSIE[ ]+6/.test(navigator.userAgent)){
      b.src="javascript:false"}b.allowTransparency="true";v[j](b);try{
      b.contentWindow[g].open()}catch(w){
      c[e]=d[e];o="javascript:var d="+g+".open();d.domain='"+d.domain+"';";b[k]=o+"void(0);"}try{
      var t=b.contentWindow[g];t.write(p());t.close()}catch(x){
      b[k]=o+'d.write("'+p().replace(/"/g,String.fromCharCode(92)+'"')+'");d.close();'}a.P(2)};ld()};nt()})({
      loader: "static.olark.com/jsclient/loader0.js",name:"olark",methods:["configure","extend","declare","identify"]});
      /* custom configuration goes here (www.olark.com/documentation) */
      olark.identify('3567-618-10-4944');
   }/*]]>*/
   </script>
   <noscript><a href="https://www.olark.com/site/3567-618-10-4944/contact" title="Contact us" target="_blank">Questions? Feedback?</a> powered by <a href="http://www.olark.com?welcome" title="Olark live chat software">Olark live chat software</a></noscript>
   <!-- end olark code -->
   
  
   
   <!-- Google Code for Remarketing Tag -->
   <!--------------------------------------------------
   Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. See more information and instructions on how to setup the tag on: http://google.com/ads/remarketingsetup
   --------------------------------------------------->
   <script type="text/javascript">
   /* <![CDATA[ */
   var google_conversion_id = 993449120;
   var google_custom_params = window.google_tag_params;
   var google_remarketing_only = true;
   /* ]]> */
   </script>
   <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
   </script>
   <noscript>
      <div style="display:inline;">
         <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/993449120/?value=0&amp;guid=ON&amp;script=0"/>
      </div>
   </noscript>

   
   <script type="text/javascript">
      (function() {
         window._pa = window._pa || {};
         // _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions
         // _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions
         // _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads
         var pa = document.createElement('script'); pa.type = 'text/javascript'; pa.async = true;
         pa.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + "//tag.perfectaudience.com/serve/53dac13adc92cfda2d000130.js";
         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(pa, s);
      })();
   </script>
   
</body>
</html>
