CINXE.COM

Ricardo Pillai - Insider Monkey

<!DOCTYPE html> <html lang="en-US" > <head> <meta name="p:domain_verify" content="fc32faf46ac5f8f5307db3b4c126edb7"/> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-WKF8XR');</script> <script> // Creates IMONKEY global namespace var IMONKEY = IMONKEY || {}; // use .lazy instead of .lazyload window.lazySizesConfig = window.lazySizesConfig || {}; window.lazySizesConfig.lazyClass = 'lazy'; // Sets JavaScript globals for imonkey namespace (function() { var viewportWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); IMONKEY.inMobile = (viewportWidth < 1024); IMONKEY.isUserLoggedIn = false; IMONKEY.isUserPremium = false; ; IMONKEY.LATEST_CHART_DATE = "2021-03-22"; IMONKEY.ABS_APP_HTTPS_URL = "https://www.insidermonkey.com/"; IMONKEY.OAUTH_GOOGLE_LOGIN_DEFAULT_URL = "https://accounts.google.com/o/oauth2/v2/auth?response_type=code&access_type=online&client_id=104770911893-0juidemf1d5055t3pek2hvrs08cejh90.apps.googleusercontent.com&redirect_uri=https%3A%2F%2Fwww.insidermonkey.com%2Fservices%2Flogin_google.php&state=aHR0cHM6Ly93d3cuaW5zaWRlcm1vbmtleS5jb20vYmxvZy9hdXRob3IvcmlzaGFiLXBpbGxhaS8%3D&scope=email%20profile&approval_prompt=auto"; IMONKEY.GOOGLE_ONETAP_LOGIN_DESKTOP_BREAKPOINT = 1439; IMONKEY.IS_MOBILE_ADS_DISABLED = false; IMONKEY.currentPage = "blog"; IMONKEY.currentModule = ""; IMONKEY.isNonFinancePost = false; IMONKEY.postCategories = []; if ('IntersectionObserver' in window && 'IntersectionObserverEntry' in window && 'intersectionRatio' in window.IntersectionObserverEntry.prototype) { let options = { root: null, rootMargin: "0px", threshold: [0, 1], }; IMONKEY.observer = new IntersectionObserver(handleIntersect, options); function handleIntersect(entries, observer) { entries.forEach((entry) => { // Fire GA4 event when cta button is in the viewport if (entry.intersectionRatio > 0) { // get data attributes - button-id const buttonId = entry.target.getAttribute('data-button-id'); // get href from the child element a const href = entry.target.querySelector('a').getAttribute('href'); // extract offer_id and coupon code from the href - https://www.insidermonkey.com/checkout/subscription/10/?code=PR24C, offer_id = 10, coupon_code = PR24C const url = new URL(href); const pathParts = url.pathname.split('/'); const offerId = pathParts[pathParts.length - 1] !== '' ? pathParts[pathParts.length - 1] : pathParts[pathParts.length - 2]; const couponCode = url.searchParams.get('code'); window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'cta_display', button_id: buttonId, source_page: window.location.href, offer_id: offerId, coupon_code: couponCode }); // Stop observing observer.unobserve(entry.target); } }); }; } // Checks for ad blocker IMONKEY.checkForAdBlocker = async function () { if (typeof fetch !== "function" || typeof Request !== "function") { return false; // can't check, assume ad blocker is not used } let Blocked; async function AdsenseRequest() { try { return fetch( new Request( "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js", { method: 'HEAD', mode: 'no-cors' })) .then(function(response) { // There is no AdBlocker Blocked = false; return Blocked; }).catch(function(e) { // Failed, Because of an AdBlocker Blocked = true; return Blocked; }); } catch (error) { Blocked = true; return Blocked; } } return Blocked !== undefined ? Blocked : await AdsenseRequest(); }; /** * Returns target string for the given ad definition object. Used for zoning ads * Refer to document: https://docs.google.com/spreadsheets/d/1tLkQeNBpSk5kfOdJaRVfjWFL-fc_9x0VVITA2gTBqCM/edit?usp=sharing * * @param {object} ad Ad Definition object */ IMONKEY.getICZone = function () { /*jshint maxcomplexity:false */ if (IMONKEY.currentPage === "home") { return "home"; } if (IMONKEY.currentPage === "latest" || // insider trading pages IMONKEY.currentPage === "insider" || // insider profile page IMONKEY.currentPage === "filing" || // insider filing page (IMONKEY.currentPage === "companies" && IMONKEY.currentModule === "browse_index") || // brose companies page (IMONKEY.currentPage === "education-center" && IMONKEY.currentModule === "insider-trading") // insider trading education center ) { if (IMONKEY.currentPage === "latest") { if (IMONKEY.currentModule === "buys") { return "insidertrading_purchases"; } if (IMONKEY.currentModule === "sells") { return "insidertrading_sales"; } if (IMONKEY.currentModule === "latest_13dg_filings") { return "insidertrading_latestfilings"; } if (IMONKEY.currentModule === "screener") { return "insidertrading_screnner"; } } if (IMONKEY.currentPage === "companies" && IMONKEY.currentModule === "browse_index") { return "insidertrading_companies"; } if (IMONKEY.currentPage === "education-center" && IMONKEY.currentModule === "insider-trading") { return "insidertrading_educationcenter"; } return "insidertrading"; // default } if (IMONKEY.currentPage === "hedge-funds" || IMONKEY.currentPage === "hedge-fund" || IMONKEY.currentPage === "small-fund" || IMONKEY.currentPage === "small-funds" || (IMONKEY.currentPage === "education-center" && IMONKEY.currentModule === "hedge-fund") ) { if (IMONKEY.currentPage === "education-center" && IMONKEY.currentModule === "hedge-fund") { return "hedgefund_educationcenter"; } if (IMONKEY.currentPage === "hedge-funds") { if (IMONKEY.currentModule === "browse") { return "hedgefund_browse"; } if (IMONKEY.currentModule === "best") { return "hedgefund_bestperforming"; } if (IMONKEY.currentModule === "worst") { return "hedgefund_worstperforming"; } } if (IMONKEY.currentPage === "small-funds" || IMONKEY.currentPage === "small-fund") { return "hedgefund_institutionalinvestors"; } return "hedgefund"; // default } if (IMONKEY.currentPage === "company") { return "quotes"; // previously it was equities } if (IMONKEY.currentPage === "blog") { const moduleToTargetMap = { "main": "opinion", "hedge-fund-analysis" : "blog_hedgefundanalysis", "stock-analysis": "blog_stockanalysis", "hedge-funds": "blog_hedgefunds", "insider-trading": "blog_insidertrading", "the-smart-set": "blog_thesmartset", "dividend-stocks": "blog_dividendstocks", "we-disagree": "blog_wedisagree", "lists": "blog_lists", "macroeconomic-predictions": "blog_macroeconomicpredictions", "etf-trading": "blog_etftrading", "commodities": "blog_commodities", "gold": "blog_gold", "futuresforex": "blog_futuresforex", "options": "blog_options", "market-movers": "blog_marketmovers", "tech-2" : "blog_tech", "earnings-report": "blog_earningsreport", "news": "blog_news", "authors": "authors" }; const moduleRanks = { "opinion": 1, "blog_hedgefunds": 2, "blog_insidertrading": 3, "blog_thesmartset": 4, "blog_dividendstocks": 5, "blog_wedisagree": 6, "blog_lists": 7, "blog_macroeconomicpredictions": 8, "blog_etftrading": 9, "blog_commodities": 10, "blog_gold": 11, "blog_futuresforex": 12, "blog_options": 13, "blog_marketmovers": 14, "blog_tech": 15, "blog_earningsreport": 16, "blog_hedgefundanalysis": 17, "blog_stockanalysis": 18, "blog_news": 19, "authors": 20 }; // return ad zone if the current module is a blog category if (moduleToTargetMap.hasOwnProperty(IMONKEY.currentModule)) { return moduleToTargetMap[IMONKEY.currentModule]; } if (IMONKEY.currentModule === "article") { // non finance article if (IMONKEY.isNonFinancePost) { return "blog_nonfinance"; } else { // does the post have a category? if (IMONKEY.postCategories && IMONKEY.postCategories.length > 0) { const getTargetModuleFromPostCategories = function (postCategories) { let targetModule = ""; for (let i = 0; i < postCategories.length; i++) { if (moduleToTargetMap.hasOwnProperty(postCategories[i])) { const candidateModule = moduleToTargetMap[postCategories[i]]; if (targetModule === "" || moduleRanks[candidateModule] < moduleRanks[targetModule]) { targetModule = candidateModule; } } } return targetModule; }; // try to find the category of the blog post (blog_tech, blog_stockanalysis, etc.) let targetModule = getTargetModuleFromPostCategories(IMONKEY.postCategories); return targetModule === "" ? "blog_finance" : targetModule; } return "blog_finance"; // default if the post is not categorized } } // default to all blog pages return "blog_finance"; } return "default"; }; /** * Cookie Functions below are taken from quirksmode: * * http://www.quirksmode.org/js/cookies.html * */ /** * Creates cookie * @param string name Name of the Cookie * @param mixed value value to be stored at the Cookie * @param number days days until the cookie expires * @return void */ IMONKEY.createCookie = function (name,value,days) { var expires = ""; if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); expires = "; expires="+date.toGMTString(); } else { expires = ""; } document.cookie = name + "=" + value + expires + "; path=/"; }; /** * Reads Cookie * @param string name Name of the Cookie * @return string Value of the Cookie */ IMONKEY.readCookie = function (name) { var nameEQ = name + "=", ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0) === ' ') { c = c.substring(1,c.length); } if (c.indexOf(nameEQ) === 0) { return c.substring(nameEQ.length,c.length); } } return null; }; /** * Deletes a Cookie * @param string name Name of the Cookie to delete * @return void */ IMONKEY.eraseCookie = function (name) { IMONKEY.createCookie(name,"",-1); }; })(); </script> <style> @media screen and (max-width: 768px) { .ad-horizontal-top-wrapper { display: none; height: 0; } .article-page .middle-col .top-left-ad { display: none; height: 0; min-height: auto; } } </style> <title>Ricardo Pillai - Insider Monkey</title> <link rel="canonical" href="https://www.insidermonkey.com/blog/pge-corporation-pcg-a-bull-case-theory-2-1467420/"/> <meta name="msapplication-config" content="https://d13a9k2cw5p3go.cloudfront.net/browserconfig.xml" /> <link rel="icon" href="https://d13a9k2cw5p3go.cloudfront.net/img/favicon.png" type="image/png"/> <link rel="apple-touch-icon" href="//d13a9k2cw5p3go.cloudfront.net/img/apple-touch-icon.png" type="image/png"/> <link rel="apple-touch-icon" sizes="114x114" href="//d13a9k2cw5p3go.cloudfront.net/img/apple-touch-icon-114x114-precomposed.png" type="image/png"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=3" /> <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> <meta name="content-category" content="finance"/> <meta name="robots" content="noindex, follow" /> <meta property="fb:app_id" content="193583031131172" /> <meta name="twitter:card" content="summary"/> <meta name="twitter:creator" content="@insidermonkey"/> <meta name="twitter:site" content="@insidermonkey"/> <meta name="twitter:domain" content="https://www.insidermonkey.com/"/> <meta name="twitter:title" content="Ricardo Pillai" /> <meta name="twitter:url" content="https://www.insidermonkey.com/blog/pge-corporation-pcg-a-bull-case-theory-2-1467420/"/> <meta name="twitter:description" content=""/> <meta name="twitter:image" content="https://d13a9k2cw5p3go.cloudfront.net/img/logo_light.png"/> <meta property='og:locale' content='en_US'/> <meta property='og:type' content='article'/> <meta property='og:title' content='Ricardo Pillai'/> <meta property='og:description' content=''/> <meta property='og:url' content='https://www.insidermonkey.com/blog/pge-corporation-pcg-a-bull-case-theory-2-1467420/'/> <meta property='og:site_name' content='Insider Monkey'/> <meta property='fb:admins' content='151227491636134'/> <meta property='og:image' content='https://d13a9k2cw5p3go.cloudfront.net/img/logo_light.png'/> <link rel="alternate" type="application/rss+xml" title="Insider Monkey &#8211; Free Hedge Fund and Insider Trading Data RSS Feed" href="https://www.insidermonkey.com/blog/feed/"/> <link rel="pingback" href="https://www.insidermonkey.com/blog/xmlrpc.php"/> <script type="text/javascript"> try{!function(t,e,n,r,a,s,i,l){n&&(s=n[r],s&&(i=t.createElement("style"),i.innerHTML=s,t.getElementsByTagName("head")[0].appendChild(i)),l=e.setAttribute,e.setAttribute=function(t,p,u,c){"string"==typeof p&&p.indexOf(a)>-1&&(u=new XMLHttpRequest,u.open("GET",p,!0),u.onreadystatechange=function(){if(4===u.readyState){c=u.responseText.replace(/url\(\//g,"url("+a+"/");try{c!==s&&(n[r]=c)}catch(t){s&&(s=i.innerHTML="")}}},u.send(null),e.setAttribute=l),l.apply(this,arguments)})}(document,Element.prototype,localStorage,"tk","https://use.typekit.net")}catch(x){}; (function() { var config = { kitId: 'pux4pza' }; var d = false; var tk = document.createElement('script'); tk['data-cfasync'] = "false"; tk.src = '//use.typekit.net/' + config.kitId + '.js'; tk.type = 'text/javascript'; tk.async = 'true'; tk.onload = tk.onreadystatechange = function() { var rs = this.readyState; if (d || rs && rs != 'complete' && rs != 'loaded') return; d = true; try { Typekit.load(config); } catch (e) {} }; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(tk, s); })(); </script> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-4811283071987061", enable_page_level_ads: true }); </script> <style> .badge,audio,canvas,progress,sub,sup,video{vertical-align:baseline}.quick-search,pre,textarea{overflow:auto}.badge,b,dt,label,optgroup,strong{font-weight:700}hr,img{border:0}.fMain,.fText{font-family:proxima-nova,proxima-nova-fallback,Arial,sans-serif}.fTitle,.section-header .spanh1,.section-header h1,.section-header h3{font-family:proxima-nova-condensed,"Proxima Nova Condensed Fallback",Arial,sans-serif}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}dfn{font-style:italic}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{vertical-align:middle}svg:not(:root){overflow:hidden}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.glyphicon,address,em{font-style:normal}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.img-thumbnail,body{background-color:#FFF}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#fund-manager-label,.popover,.tooltip,body{font-family:proxima-nova,proxima-nova-fallback,Arial,sans-serif}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{margin:0;font-size:14px;line-height:1.42857143;color:#000}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#144574;text-decoration:none}a:focus,a:hover{color:#144574;text-decoration:underline}a:focus{outline-offset:-2px}figure{margin:0}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.nav .nav-divider,.sr-only{height:1px;overflow:hidden}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #DADADA}.sr-only{position:absolute;width:1px;margin:-1px;padding:0;clip:rect(0,0,0,0);border:0}.page-header,.related-posts{border-bottom:1px solid #DADADA}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:600;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#AAA}.h1,.h2,.h3,h1,h2,h3{margin:0}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin:0}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#AAA}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}address,dl,legend{margin-bottom:20px}ol,ul{margin-bottom:10px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dd,dt{line-height:1.42857143}dd{margin-left:0}@media (min-width:1025px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #AAA}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #DADADA}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#AAA}a.list-group-item,legend{color:#555}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #DADADA;border-left:0;text-align:right}.container,.container-fluid{margin-right:auto;margin-left:auto;padding-right:10px;padding-left:10px}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{line-height:1.42857143}.container{max-width:1260px}@media (min-width:768px){.container{width:740px}}@media (min-width:992px){.container{width:960px}}@media (min-width:1260px){.container{width:1260px}}.row{margin-left:-10px;margin-right:-10px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}fieldset,legend{padding:0;border:0}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}body .sm-hidden,body .sm-hidden-inline{display:none}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}body .sm-hidden{display:block}body .sm-hidden-inline{display:inline}body .sm-below{display:none!important}}body .md-hidden{display:none}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}body .md-hidden{display:block}body .md-below{display:none!important}}body .xs-hidden,body .xs-hidden-inline{display:none}@media (min-width:480px){body .xs-hidden{display:block}body .xs-hidden-inline{display:inline}body .xs-below{display:none!important}}@media (min-width:1260px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}fieldset{margin:0;min-width:0}legend{display:block;width:100%;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin-top:1px\9;line-height:normal}.form-control,output{font-size:14px;line-height:1.42857143;display:block;color:#6A6A6A}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-moz-transition:border-color ease-in-out .15s,-moz-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-webkit-input-placeholder{color:#aaa}.form-control:-moz-placeholder{color:#aaa}.form-control::-moz-placeholder{color:#aaa}.form-control:-ms-input-placeholder{color:#aaa}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#DADADA;opacity:1}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=datetime-local],input[type=month],input[type=time]{line-height:34px}input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.btn-block+.btn-block,.help-block{margin-top:5px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.form-group-sm .form-control,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.form-group-sm .form-control,select.input-sm{height:30px;line-height:30px}select[multiple].form-group-sm .form-control,select[multiple].input-sm,textarea.form-group-sm .form-control,textarea.input-sm{height:auto}.form-group-lg .form-control,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.form-group-lg .form-control,select.input-lg{height:46px;line-height:46px}select[multiple].form-group-lg .form-control,select[multiple].input-lg,textarea.form-group-lg .form-control,textarea.input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.btn,.nav-tabs>li>a,.pagination>li>a,.pagination>li>span,.thumbnail{line-height:1.42857143}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.btn-group.open .dropdown-toggle,.btn.active,.btn:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);-moz-box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-control,.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .checkbox,.form-inline .control-label,.form-inline .form-group,.form-inline .radio{margin-bottom:0;vertical-align:middle}.form-inline .form-control{width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-10px;margin-right:-10px}.form-horizontal .has-feedback .form-control-feedback{right:10px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;zoom:1;-webkit-opacity:.65;-moz-opacity:.65;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#144574;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#144574;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#AAA;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-block{display:block;width:100%}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-moz-transition-property:height,visibility;-o-transition-property:height,visibility;-webkit-transition-property:height,visibility;transition-property:height,visibility;-moz-transition-duration:.35s;-o-transition-duration:.35s;-webkit-transition-duration:.35s;transition-duration:.35s;-moz-transition-timing-function:ease;-o-transition-timing-function:ease;-webkit-transition-timing-function:ease;transition-timing-function:ease}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group,.input-group-btn>.btn+.btn{margin-left:-1px}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}.badge,.input-group-addon{line-height:1;text-align:center}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.nav>li,.nav>li>a{display:block;position:relative}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;color:#6A6A6A;background-color:#DADADA;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#DADADA}.nav>li.disabled>a{color:#AAA}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#AAA;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#DADADA;border-color:#144574}.nav .nav-divider{margin:9px 0;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#DADADA #DADADA #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#6A6A6A;background-color:#FFF;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#FFF}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#FFF}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.breadcrumb>li,.pagination{display:inline-block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.breadcrumb,.pagination,.progress{border-radius:4px}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#AAA}.pagination{padding-left:0;margin:20px 0}.pager li,.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;text-decoration:none;color:#144574;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#144574;background-color:#DADADA;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#AAA;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#DADADA}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#AAA;background-color:#fff;cursor:not-allowed}.label-default{background-color:#AAA}.label-default[href]:focus,.label-default[href]:hover{background-color:#919191}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;white-space:nowrap;background-color:#AAA;border-radius:10px}.badge:empty,.modal,.popover{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#144574;background-color:#fff}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;background-color:#DADADA}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.alert,.progress,.thumbnail{margin-bottom:20px}.jumbotron>hr{border-top-color:#c1c1c1}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;background-color:#FFF;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-moz-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#144574}.thumbnail .caption{padding:9px;color:#000}.alert,.panel-body{padding:15px}.alert{border:1px solid transparent;border-radius:4px}.content,.media-right,.media>.pull-right{padding-left:10px}.alert h4{margin-top:0;color:inherit}.alert>p+p,.panel-group .panel+.panel{margin-top:5px}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert-dismissable,.alert-dismissible{padding-right:35px}.content,.media-left,.media>.pull-left{padding-right:10px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-striped .progress-bar-info,.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-bar-warning{background-color:#f0ad4e}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#DADADA;color:#AAA;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#AAA}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.close{line-height:1}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive,.panel>.table-responsive>.table{margin-bottom:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;font-size:16px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table-bordered,.panel>.table-responsive,.panel>.table-responsive>.table-bordered{border:0}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.middle-col,.well{margin-bottom:20px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#555;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#555}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;color:#000;text-shadow:0 1px 0 #fff;zoom:1;-webkit-opacity:.2;-moz-opacity:.2;opacity:.2;filter:alpha(opacity=20)}.modal-title,.popover{line-height:1.42857143}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;zoom:1;-webkit-opacity:.5;-moz-opacity:.5;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-moz-transform:translate(0,-25%);-o-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-o-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);-moz-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{zoom:1;-webkit-opacity:0;-moz-opacity:0;opacity:0;filter:alpha(opacity=0)}.carousel-control,.modal-backdrop.in{-webkit-opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);zoom:1}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.43px}.modal-header .close{margin-top:-2px}.modal-title{margin:0}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);-moz-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:12px;font-weight:400;line-height:1.4;zoom:1;-webkit-opacity:0;-moz-opacity:0;opacity:0;filter:alpha(opacity=0)}.tooltip.in{zoom:1;-webkit-opacity:.9;-moz-opacity:.9;opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;max-width:276px;padding:1px;font-size:14px;font-weight:400;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000}.carousel-inner>.item.active.right,.carousel-inner>.item.next{transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;zoom:1;-webkit-opacity:.9;-moz-opacity:.9;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.content:after,.content:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.footer:after,.footer:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.middle-col:after,.middle-col:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.content:after,.dl-horizontal dd:after,.footer:after,.form-horizontal .form-group:after,.middle-col:after,.modal-footer:after,.nav:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.hidden{visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1259px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1260px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1259px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}/*! * CleanSlate * github.com/premasagar/cleanslate * */.cleanslate,.cleanslate a,.cleanslate abbr,.cleanslate acronym,.cleanslate address,.cleanslate applet,.cleanslate area,.cleanslate article,.cleanslate aside,.cleanslate audio,.cleanslate b,.cleanslate big,.cleanslate blockquote,.cleanslate button,.cleanslate canvas,.cleanslate caption,.cleanslate cite,.cleanslate code,.cleanslate col,.cleanslate colgroup,.cleanslate datalist,.cleanslate dd,.cleanslate del,.cleanslate dfn,.cleanslate div,.cleanslate dl,.cleanslate dt,.cleanslate em,.cleanslate fieldset,.cleanslate figcaption,.cleanslate figure,.cleanslate footer,.cleanslate form,.cleanslate h1,.cleanslate h2,.cleanslate h3,.cleanslate h4,.cleanslate h5,.cleanslate h6,.cleanslate header,.cleanslate hr,.cleanslate i,.cleanslate iframe,.cleanslate img,.cleanslate input,.cleanslate ins,.cleanslate kbd,.cleanslate label,.cleanslate legend,.cleanslate li,.cleanslate main,.cleanslate map,.cleanslate mark,.cleanslate menu,.cleanslate meta,.cleanslate nav,.cleanslate object,.cleanslate ol,.cleanslate optgroup,.cleanslate option,.cleanslate output,.cleanslate p,.cleanslate pre,.cleanslate progress,.cleanslate q,.cleanslate samp,.cleanslate section,.cleanslate select,.cleanslate small,.cleanslate span,.cleanslate strike,.cleanslate strong,.cleanslate sub,.cleanslate summary,.cleanslate sup,.cleanslate table,.cleanslate tbody,.cleanslate td,.cleanslate textarea,.cleanslate tfoot,.cleanslate th,.cleanslate thead,.cleanslate time,.cleanslate tr,.cleanslate tt,.cleanslate ul,.cleanslate var,.cleanslate video{background-attachment:scroll!important;background-color:transparent!important;background-image:none!important;background-position:0 0!important;background-repeat:repeat!important;border-color:currentColor!important;border-style:none!important;border-width:medium!important;bottom:auto!important;clear:none!important;clip:auto!important;color:inherit!important;counter-increment:none!important;counter-reset:none!important;cursor:auto!important;direction:inherit!important;display:inline!important;float:none!important;font-family:inherit!important;font-size:inherit!important;font-style:inherit!important;font-variant:normal!important;font-weight:inherit!important;height:auto!important;left:auto!important;letter-spacing:normal!important;line-height:inherit!important;list-style-type:inherit!important;list-style-position:outside!important;list-style-image:none!important;margin:0!important;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:1;outline:0!important;overflow:visible!important;padding:0!important;position:static!important;quotes:"" ""!important;right:auto!important;table-layout:auto!important;text-align:inherit!important;text-decoration:inherit!important;text-indent:0!important;text-transform:none!important;top:auto!important;unicode-bidi:normal!important;vertical-align:baseline!important;visibility:inherit!important;white-space:normal!important;width:auto!important;word-spacing:normal!important;z-index:auto!important;-webkit-background-origin:padding-box!important;background-origin:padding-box!important;-webkit-background-clip:border-box!important;background-clip:border-box!important;-webkit-background-size:auto!important;-moz-background-size:auto!important;background-size:auto!important;-webkit-border-image:none!important;-moz-border-image:none!important;-o-border-image:none!important;border-image:none!important;-webkit-border-radius:0!important;-moz-border-radius:0!important;border-radius:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important;-webkit-column-count:auto!important;-moz-column-count:auto!important;column-count:auto!important;-webkit-column-gap:normal!important;-moz-column-gap:normal!important;column-gap:normal!important;-webkit-column-rule:medium none #000!important;-moz-column-rule:medium none #000!important;column-rule:medium none #000!important;-webkit-column-span:1!important;-moz-column-span:1!important;column-span:1!important;-webkit-column-width:auto!important;-moz-column-width:auto!important;column-width:auto!important;font-feature-settings:normal!important;overflow-x:visible!important;overflow-y:visible!important;-webkit-hyphens:manual!important;-moz-hyphens:manual!important;hyphens:manual!important;-webkit-perspective:none!important;-moz-perspective:none!important;-ms-perspective:none!important;-o-perspective:none!important;perspective:none!important;-webkit-perspective-origin:50% 50%!important;-moz-perspective-origin:50% 50%!important;-ms-perspective-origin:50% 50%!important;-o-perspective-origin:50% 50%!important;perspective-origin:50% 50%!important;-webkit-backface-visibility:visible!important;-moz-backface-visibility:visible!important;-ms-backface-visibility:visible!important;-o-backface-visibility:visible!important;backface-visibility:visible!important;text-shadow:none!important;-webkit-transition:all 0s ease 0s!important;transition:all 0s ease 0s!important;-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important;-webkit-transform-origin:50% 50%!important;-moz-transform-origin:50% 50%!important;-ms-transform-origin:50% 50%!important;-o-transform-origin:50% 50%!important;transform-origin:50% 50%!important;-webkit-transform-style:flat!important;-moz-transform-style:flat!important;-ms-transform-style:flat!important;-o-transform-style:flat!important;transform-style:flat!important;word-break:normal!important}.cleanslate em,.cleanslate mark{font-style:italic!important}.cleanslate h1,.cleanslate h2,.cleanslate h3,.cleanslate h4,.cleanslate h5,.cleanslate h6,.cleanslate mark,.cleanslate strong{font-weight:700!important}.cleanslate ol,.cleanslate p,.cleanslate ul{margin:1em 0!important}.container-fluid,.content{max-width:1260px}.cleanslate,.cleanslate address,.cleanslate article,.cleanslate audio,.cleanslate blockquote,.cleanslate caption,.cleanslate colgroup,.cleanslate dd,.cleanslate dialog,.cleanslate div,.cleanslate dl,.cleanslate dt,.cleanslate fieldset,.cleanslate figure,.cleanslate footer,.cleanslate form,.cleanslate h1,.cleanslate h2,.cleanslate h3,.cleanslate h4,.cleanslate h5,.cleanslate h6,.cleanslate header,.cleanslate hgroup,.cleanslate hr,.cleanslate main,.cleanslate menu,.cleanslate nav,.cleanslate ol,.cleanslate option,.cleanslate p,.cleanslate pre,.cleanslate progress,.cleanslate section,.cleanslate summary,.cleanslate ul,.cleanslate video{display:block!important}.cleanslate h1{font-size:2em!important;padding:.67em 0!important}.cleanslate h2{font-size:1.5em!important;padding:.83em 0!important}.cleanslate h3{font-size:1.17em!important;padding:.83em 0!important}.cleanslate h4{font-size:1em!important}.cleanslate h5{font-size:.83em!important}.cleanslate table{display:table!important;border-collapse:collapse!important;border-spacing:0!important}.cleanslate thead{display:table-header-group!important}.cleanslate tbody{display:table-row-group!important}.cleanslate tfoot{display:table-footer-group!important}.cleanslate tr{display:table-row!important}.cleanslate td,.cleanslate th{display:table-cell!important;padding:2px!important}.cleanslate ol li,.cleanslate ol ol li,.cleanslate ol ol ol li,.cleanslate ol ol ul li,.cleanslate ol ul ul li,.cleanslate ul li,.cleanslate ul ol ol li,.cleanslate ul ul li,.cleanslate ul ul ol li,.cleanslate ul ul ul li{list-style-position:inside!important;margin-top:.08em!important}.cleanslate ol ol,.cleanslate ol ol ol,.cleanslate ol ol ul,.cleanslate ol ul,.cleanslate ol ul ul,.cleanslate ul ol,.cleanslate ul ol ol,.cleanslate ul ul,.cleanslate ul ul ol,.cleanslate ul ul ul{padding-left:40px!important;margin:0!important}.cleanslate nav ol,.cleanslate nav ul{list-style-type:none!important}#NmWgList li,.cleanslate,.cleanslate menu,.cleanslate ul{list-style-type:disc!important}.cleanslate ol{list-style-type:decimal!important}.cleanslate menu menu,.cleanslate menu ul,.cleanslate ol menu,.cleanslate ol ul,.cleanslate ul menu,.cleanslate ul ul{list-style-type:circle!important}.cleanslate menu menu menu,.cleanslate menu menu ul,.cleanslate menu ol menu,.cleanslate menu ol ul,.cleanslate menu ul menu,.cleanslate menu ul ul,.cleanslate ol menu menu,.cleanslate ol menu ul,.cleanslate ol ol menu,.cleanslate ol ol ul,.cleanslate ol ul menu,.cleanslate ol ul ul,.cleanslate ul menu menu,.cleanslate ul menu ul,.cleanslate ul ol menu,.cleanslate ul ol ul,.cleanslate ul ul menu,.cleanslate ul ul ul{list-style-type:square!important}.cleanslate li{display:list-item!important;min-height:auto!important;min-width:auto!important;padding-left:20px!important}.cleanslate code,.cleanslate kbd,.cleanslate pre,.cleanslate samp{font-family:monospace!important}.cleanslate a{color:#00f!important;text-decoration:underline!important}.cleanslate a:visited{color:#529!important}.cleanslate a,.cleanslate a *,.cleanslate input[type=checkbox],.cleanslate input[type=radio],.cleanslate input[type=submit],.cleanslate select{cursor:pointer!important}.cleanslate button,.cleanslate input[type=submit]{text-align:center!important;padding:2px 6px 3px!important;border-radius:4px!important;text-decoration:none!important;font-family:arial,helvetica,sans-serif!important;font-size:small!important;-webkit-appearance:push-button!important;color:buttontext!important;border:1px solid #a6a6a6!important;background:#d3d3d3!important;background:-moz-linear-gradient(top,#fff 0,#ddd 100%,#d1d1d1 100%,#ddd 100%)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ddd),color-stop(100%,#d1d1d1),color-stop(100%,#ddd))!important;background:-webkit-linear-gradient(top,#fff 0,#ddd 100%,#d1d1d1 100%,#ddd 100%)!important;background:-o-linear-gradient(top,#fff 0,#ddd 100%,#d1d1d1 100%,#ddd 100%)!important;background:-ms-linear-gradient(top,#fff 0,#ddd 100%,#d1d1d1 100%,#ddd 100%)!important;background:linear-gradient(to bottom,#fff 0,#ddd 100%,#d1d1d1 100%,#ddd 100%)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd', GradientType=0)!important;-webkit-box-shadow:1px 1px 0 #eee!important;-moz-box-shadow:1px 1px 0 #eee!important;-o-box-shadow:1px 1px 0 #eee!important;box-shadow:1px 1px 0 #eee!important;outline:initial!important}.cleanslate button{padding:1px 6px 2px!important;margin-right:5px!important}.cleanslate input[type=hidden]{display:none!important}.cleanslate textarea{-webkit-appearance:textarea!important;background:#fff!important;padding:2px!important;margin-left:4px!important;word-wrap:break-word!important;white-space:pre-wrap!important;font-size:11px!important;font-family:arial,helvetica,sans-serif!important;line-height:13px!important;resize:both!important}.cleanslate input,.cleanslate select,.cleanslate textarea{border:1px solid #ccc!important}.cleanslate select{font-size:11px!important;font-family:helvetica,arial,sans-serif!important;display:inline-block}.cleanslate input:focus,.cleanslate textarea:focus{outline:-webkit-focus-ring-color auto 5px!important;outline:initial!important}.cleanslate input[type=text]{background:#fff!important;padding:1px!important;font-family:initial!important;font-size:small!important}.cleanslate input[type=checkbox],.cleanslate input[type=radio]{border:1px solid #2b2b2b!important;border-radius:4px!important;outline:intial!important}.cleanslate input[type=radio]{margin:2px 2px 3px!important}.cleanslate button:active,.cleanslate input[type=submit]:active{background:#3b679e!important;background:-moz-linear-gradient(top,#3b679e 0,#2b88d9 50%,#207cca 51%,#7db9e8 100%)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3b679e),color-stop(50%,#2b88d9),color-stop(51%,#207cca),color-stop(100%,#7db9e8))!important;background:-webkit-linear-gradient(top,#3b679e 0,#2b88d9 50%,#207cca 51%,#7db9e8 100%)!important;background:-o-linear-gradient(top,#3b679e 0,#2b88d9 50%,#207cca 51%,#7db9e8 100%)!important;background:-ms-linear-gradient(top,#3b679e 0,#2b88d9 50%,#207cca 51%,#7db9e8 100%)!important;background:linear-gradient(to bottom,#3b679e 0,#2b88d9 50%,#207cca 51%,#7db9e8 100%)!important;border-color:#5259b0!important}.cleanslate ins,.cleanslate mark{background-color:#ff9!important;color:#000!important}.icon-arrow-down,.icon-arrow-down-dark,.icon-calendar,.icon-checkmark,.icon-close,.icon-down,.icon-download,.icon-email,.icon-email-red,.icon-facebook,.icon-graph-down,.icon-graph-up,.icon-logo,.icon-logo-light,.icon-logo.with.bg,.icon-minus-less,.icon-new,.icon-pdf,.icon-plus-more,.icon-range,.icon-removed,.icon-search-gray-icon,.icon-search-white-icon,.icon-star,.icon-star2,.icon-twitter,.icon-unchanged,.icon-up{background-repeat:no-repeat}.cleanslate abbr[title],.cleanslate acronym[title],.cleanslate dfn[title]{cursor:help!important;border-bottom-width:1px!important;border-bottom-style:dotted!important}.cleanslate del{text-decoration:line-through!important}#NmWgList li a,.cleanslate,.notification-button{text-decoration:none!important}.cleanslate blockquote,.cleanslate q{quotes:none!important}.cleanslate blockquote:after,.cleanslate blockquote:before,.cleanslate li:after,.cleanslate li:before,.cleanslate q:after,.cleanslate q:before{content:""!important}.cleanslate input,.cleanslate select{vertical-align:middle!important}.cleanslate hr{display:block!important;height:1px!important;border:0!important;border-top:1px solid #ccc!important;margin:1em 0!important}.cleanslate [dir=rtl]{direction:rtl!important}.cleanslate menu{padding-left:40px!important;padding-top:8px!important}.cleanslate [hidden],.cleanslate template{display:none!important}.cleanslate abbr[title]{border-bottom:1px dotted!important}.cleanslate sub,.cleanslate sup{font-size:75%!important;line-height:0!important;position:relative!important;vertical-align:baseline!important}#shadow,.overlay{position:fixed;display:none}.cleanslate sup{top:-.5em!important}.cleanslate sub{bottom:-.25em!important}.cleanslate img{border:0!important}.cleanslate figure{margin:0!important}.cleanslate textarea{overflow:auto!important;vertical-align:top!important}.cleanslate{line-height:1.475em!important;direction:ltr!important;text-align:left!important;text-align:start!important;font-family:"Times New Roman",Times,serif!important;color:#000!important;font-style:normal!important;font-weight:400!important}.cleanslate pre{white-space:pre!important}.icon-arrow-down-dark{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2235px%22%20height%3D%2239px%22%20viewBox%3D%220%200%2035%2039%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EFill%201348%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22icons%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28-1012.418694%2C%20-3035.897171%29%22%20fill%3D%22%236A6A6A%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1030.17486%2C3074.19653%20L1013.31095%2C3036.6994%20L1029.91456%2C3048.94187%20L1047.41948%2C3036.86485%22%20id%3D%22Fill-1348%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-arrow-down{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2235px%22%20height%3D%2239px%22%20viewBox%3D%220%200%2035%2039%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EFill%201348%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22icons%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28-1012.418694%2C%20-3035.897171%29%22%20fill%3D%22%23AAAAAA%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1030.17486%2C3074.19653%20L1013.31095%2C3036.6994%20L1029.91456%2C3048.94187%20L1047.41948%2C3036.86485%22%20id%3D%22Fill-1348%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-calendar{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2216px%22%20height%3D%2218px%22%20viewBox%3D%220%200%2016%2018%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3Ecalendar%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22calendar%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%280.000000%2C%201.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M15.42%2C2.857%20C15.38%2C2.217%2014.732%2C1.714%2013.872%2C1.714%20L11.429%2C1.714%20L11.429%2C0.857%20C11.429%2C0.384%2011.045%2C0%2010.571%2C0%20C10.098%2C0%209.714%2C0.384%209.714%2C0.857%20L9.714%2C1.714%20L6.286%2C1.714%20L6.286%2C0.857%20C6.286%2C0.384%205.902%2C0%205.429%2C0%20C4.955%2C0%204.571%2C0.384%204.571%2C0.857%20L4.571%2C1.714%20L2.027%2C1.714%20C1.138%2C1.714%200.571%2C2.328%200.571%2C2.996%20L0.571%2C14.938%20C0.571%2C15.605%201.138%2C16%202.027%2C16%20L13.872%2C16%20C14.625%2C16%2015.216%2C15.714%2015.379%2C15.143%20L15.429%2C15.143%20L15.429%2C14.939%20L15.429%2C14.442%20L15.429%2C13.663%20L15.429%2C11.846%20L15.429%2C10.028%20L15.429%2C7.169%20L15.429%2C6.39%20L15.429%2C5.87%20L15.429%2C4.571%20L15.429%2C3.792%20L15.429%2C2.857%20L15.42%2C2.857%20L15.42%2C2.857%20Z%20M4.571%2C2.857%20L4.571%2C3.429%20C4.571%2C3.902%204.955%2C4.286%205.428%2C4.286%20C5.901%2C4.286%206.285%2C3.902%206.285%2C3.429%20L6.285%2C2.857%20L9.713%2C2.857%20L9.713%2C3.429%20C9.713%2C3.902%2010.098%2C4.286%2010.57%2C4.286%20C11.044%2C4.286%2011.427%2C3.902%2011.427%2C3.429%20L11.427%2C2.857%20L14.284%2C2.857%20L14.284%2C6.286%20L1.714%2C6.286%20L1.714%2C2.857%20L4.571%2C2.857%20L4.571%2C2.857%20Z%22%20id%3D%22Shape%22%20stroke%3D%22%23000000%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Ctext%20id%3D%2231%22%20sketch%3Atype%3D%22MSTextLayer%22%20font-family%3D%22Chalkboard%20SE%22%20font-size%3D%229%22%20font-weight%3D%22normal%22%20line-spacing%3D%229%22%20fill%3D%22%23000000%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ctspan%20x%3D%223%22%20y%3D%2214%22%3E31%3C%2Ftspan%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Ftext%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-checkmark{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2217px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2017%2014%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EFill%201%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M14%2C0%20L6%2C8%20L3%2C5%20L0%2C8%20L6%2C14%20L6%2C14%20L6%2C14%20L17%2C3%20L14%2C0%22%20id%3D%22Fill-1%22%20fill%3D%22%23000000%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-close{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M8%2C0%20C3.58171429%2C0%200%2C3.58196364%200%2C8%20C0%2C12.4183273%203.58171429%2C16%208%2C16%20C12.4182857%2C16%2016%2C12.4183273%2016%2C8%20C16%2C3.58196364%2012.4182857%2C0%208%2C0%20L8%2C0%20Z%20M12%2C10%20C12.114049%2C10.4618845%2012.114049%2C11.2019119%2012%2C12%20C11.201933%2C12.1137314%2010.4621332%2C12.1140126%2010%2C12%20L8%2C10%20L6%2C12%20C5.53786676%2C12.1140126%204.79806697%2C12.1140126%204%2C12%20C3.88595098%2C11.2019119%203.88595098%2C10.4621657%204%2C10%20L6%2C8%20L4%2C6%20C3.88595098%2C5.53811549%203.88595098%2C4.79808808%204%2C4%20C4.79806697%2C3.88598742%205.53759061%2C3.88598742%206%2C4%20L8%2C6%20L10%2C4%20C10.4621332%2C3.88598742%2011.201933%2C3.88598742%2012%2C4%20C12.114049%2C4.79808808%2012.114049%2C5.53783432%2012%2C6%20L10%2C8%20L12%2C10%20L12%2C10%20Z%22%20id%3D%22Imported-Layers%22%20fill%3D%22%23414141%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-down{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2211px%22%20height%3D%2213px%22%20viewBox%3D%220%200%2011%2013%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M6%2C13%20L10%2C9%20C10.1175268%2C9.03540259%2010.1177677%2C8.28977286%2010%2C8%20C9.17683054%2C7.37033557%208.46257589%2C7.37033557%208%2C8%20L7%2C9%20L7%2C1%20C6.79196678%2C0.598434979%206.25284303%2C0%206%2C0%20C4.92213723%2C0%204.38301348%2C0.598434979%204%2C1%20L4%2C9%20L3%2C8%20C2.61604624%2C7.37033557%201.8290412%2C7.37033557%201%2C8%20C0.888585834%2C8.28977286%200.876300172%2C9.03540259%201%2C9%20L5%2C13%20C4.82987432%2C12.9062713%205.16327346%2C13.0160197%205%2C13%20C5.82477203%2C13.0160197%206.15817117%2C12.9062713%206%2C13%22%20id%3D%22Imported-Layers%22%20fill%3D%22%23000000%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-email-red{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2220px%22%20height%3D%2213px%22%20viewBox%3D%220%200%2020%2013%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-Layers%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%23CB3A1B%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9.7232973%2C7.29475676%20L18.9543514%2C0.0203783784%20C18.8496486%2C0.00702702703%2018.7294865%2C0%2018.5896486%2C0%20L1.27786486%2C0%20C1.09762162%2C0%200.945135135%2C0.0144054054%200.811972973%2C0.0386486486%20L9.7232973%2C7.29475676%22%20id%3D%22Fill-1%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.6756757%2C10.8918919%20L19.6756757%2C1.05405405%20L19.6661892%2C1.05405405%20C19.6507297%2C0.861162162%2019.6521351%2C0.681621622%2019.6212162%2C0.527027027%20L13.1739189%2C5.65956757%20L19.6756757%2C11.8352703%20L19.6756757%2C10.8918919%22%20id%3D%22Fill-2%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M6.35313514%2C5.56962162%20L0.105405405%2C0.507702703%20C0.0165135135%2C0.699891892%200%2C0.928972973%200%2C1.16648649%20L0%2C11.4645946%20L6.35313514%2C5.56962162%22%20id%3D%22Fill-3%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M12.5372703%2C6.16621622%20L9.78935135%2C8.35372973%20L6.94551351%2C6.04956757%20L0.0428648649%2C12.5207568%20C0.131054054%2C12.8278378%200.399135135%2C13%201.21391892%2C13%20L18.9518919%2C13%20C19.2192703%2C12.9602973%2019.3868649%2C12.8822973%2019.492973%2C12.7737297%20L12.5372703%2C6.16621622%22%20id%3D%22Fill-4%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-email{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2220px%22%20height%3D%2213px%22%20viewBox%3D%220%200%2020%2013%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-Layers%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%23FFFFFF%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9.7232973%2C7.29475676%20L18.9543514%2C0.0203783784%20C18.8496486%2C0.00702702703%2018.7294865%2C0%2018.5896486%2C0%20L1.27786486%2C0%20C1.09762162%2C0%200.945135135%2C0.0144054054%200.811972973%2C0.0386486486%20L9.7232973%2C7.29475676%22%20id%3D%22Fill-1%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.6756757%2C10.8918919%20L19.6756757%2C1.05405405%20L19.6661892%2C1.05405405%20C19.6507297%2C0.861162162%2019.6521351%2C0.681621622%2019.6212162%2C0.527027027%20L13.1739189%2C5.65956757%20L19.6756757%2C11.8352703%20L19.6756757%2C10.8918919%22%20id%3D%22Fill-2%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M6.35313514%2C5.56962162%20L0.105405405%2C0.507702703%20C0.0165135135%2C0.699891892%200%2C0.928972973%200%2C1.16648649%20L0%2C11.4645946%20L6.35313514%2C5.56962162%22%20id%3D%22Fill-3%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M12.5372703%2C6.16621622%20L9.78935135%2C8.35372973%20L6.94551351%2C6.04956757%20L0.0428648649%2C12.5207568%20C0.131054054%2C12.8278378%200.399135135%2C13%201.21391892%2C13%20L18.9518919%2C13%20C19.2192703%2C12.9602973%2019.3868649%2C12.8822973%2019.492973%2C12.7737297%20L12.5372703%2C6.16621622%22%20id%3D%22Fill-4%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-facebook{background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1343%2012v264h-157q-86%200-116%2036t-30%20108v189h293l-39%20296h-254v759h-306v-759h-255v-296h255v-218q0-186%20104-288.5t277-102.5q147%200%20228%2012z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E)}.icon-graph-down{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2230px%22%20height%3D%2226px%22%20viewBox%3D%220%200%2030%2026%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-Layers%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%23000000%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M30%2C25.5%20C30%2C25.7765%2029.7605357%2C26%2029.4642857%2C26%20L0.535714286%2C26%20C0.239464286%2C26%200%2C25.7765%200%2C25.5%20C0%2C25.2235%200.239464286%2C25%200.535714286%2C25%20L29.4642857%2C25%20C29.7605357%2C25%2030%2C25.2235%2030%2C25.5%22%20id%3D%22Fill-1%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20.3636364%2C14%20L17.6363636%2C14%20C16.7325455%2C14%2016%2C14.7466667%2016%2C15.6666667%20L16%2C24%20L22%2C24%20L22%2C15.6666667%20C22%2C14.7466667%2021.2674545%2C14%2020.3636364%2C14%22%20id%3D%22Fill-2%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.3636364%2C9%20L10.6363636%2C9%20C9.73254545%2C9%209%2C9.74666667%209%2C10.6666667%20L9%2C24%20L15%2C24%20L15%2C10.6666667%20C15%2C9.74666667%2014.2674545%2C9%2013.3636364%2C9%22%20id%3D%22Fill-3%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M6.36363636%2C0%20L3.63636364%2C0%20C2.73254545%2C0%202%2C0.733090909%202%2C1.63636364%20L2%2C24%20L8%2C24%20L8%2C1.63636364%20C8%2C0.733090909%207.26745455%2C0%206.36363636%2C0%22%20id%3D%22Fill-4%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M27.3636364%2C19%20L24.6363636%2C19%20C23.7325455%2C19%2023%2C19.672%2023%2C20.5%20L23%2C24%20L29%2C24%20L29%2C20.5%20C29%2C19.672%2028.2674545%2C19%2027.3636364%2C19%22%20id%3D%22Fill-5%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28%2C16%20L26.2988543%2C12.2197735%20L25.4723309%2C13.4186583%20L10.8868174%2C2.11480643%20C10.6424539%2C1.92613506%2010.2963645%2C1.974861%2010.1122626%2C2.22528967%20C9.92760789%2C2.47515177%209.97570658%2C2.82983129%2010.22007%2C3.01850267%20L24.8337793%2C14.3438846%20L23.9541814%2C15.6192578%20L28%2C16%22%20id%3D%22Fill-6%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-graph-up{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2230px%22%20height%3D%2230px%22%20viewBox%3D%220%200%2030%2030%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-EPS%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%23000000%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-Layers%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M29.9956354%2C28.9243627%20C29.9956354%2C29.2205696%2029.756206%2C29.4599991%2029.4599991%2C29.4599991%20L0.535636347%2C29.4599991%20C0.239429447%2C29.4599991%200%2C29.2205696%200%2C28.9243627%20C0%2C28.6281558%200.239429447%2C28.3887264%200.535636347%2C28.3887264%20L29.4599991%2C28.3887264%20C29.756206%2C28.3887264%2029.9956354%2C28.6281558%2029.9956354%2C28.9243627%22%20id%3D%22Fill-1%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.89199982%2C17.6759995%20L3.21381808%2C17.6759995%20C2.32626865%2C17.6759995%201.60690904%2C18.3958947%201.60690904%2C19.2829085%20L1.60690904%2C27.3174537%20L7.49890886%2C27.3174537%20L7.49890886%2C19.2829085%20C7.49890886%2C18.3958947%206.77954924%2C17.6759995%205.89199982%2C17.6759995%22%20id%3D%22Fill-2%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.8185448%2C12.8552723%20L17.1403631%2C12.8552723%20C16.2528137%2C12.8552723%2015.5334541%2C13.5751676%2015.5334541%2C14.4621814%20L15.5334541%2C27.3174537%20L21.4254539%2C27.3174537%20L21.4254539%2C14.4621814%20C21.4254539%2C13.5751676%2020.7060943%2C12.8552723%2019.8185448%2C12.8552723%22%20id%3D%22Fill-3%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M26.7818173%2C3.74945443%20L24.1036356%2C3.74945443%20C23.2160862%2C3.74945443%2022.4967266%2C4.46934968%2022.4967266%2C5.35636347%20L22.4967266%2C27.3174537%20L28.3887264%2C27.3174537%20L28.3887264%2C5.35636347%20C28.3887264%2C4.46934968%2027.6693668%2C3.74945443%2026.7818173%2C3.74945443%22%20id%3D%22Fill-4%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M12.8552723%2C21.9610902%20L10.1770906%2C21.9610902%20C9.28954117%2C21.9610902%208.57018155%2C22.6809855%208.57018155%2C23.5679993%20L8.57018155%2C27.3174537%20L14.4621814%2C27.3174537%20L14.4621814%2C23.5679993%20C14.4621814%2C22.6809855%2013.7428218%2C21.9610902%2012.8552723%2C21.9610902%22%20id%3D%22Fill-5%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M21.3868881%2C4.06494424%20L21.9412717%2C0.168189813%20L18.2898387%2C1.63636904%20L19.4023554%2C2.50892065%20L10.2429739%2C14.1718665%20L2.4521432%2C10.8402084%20C2.1795043%2C10.7234397%201.8656214%2C10.8498498%201.74938831%2C11.1219531%20C1.63315522%2C11.3940564%201.75849413%2C11.7084749%202.03059739%2C11.824708%20L10.2440451%2C15.3384824%20C10.253151%2C15.3411606%2010.2606499%2C15.3470526%2010.2697557%2C15.3491952%20L10.4031291%2C15.4065082%20C10.6752324%2C15.5222057%2010.9896509%2C15.3963312%2011.105884%2C15.1242279%20C11.1540913%2C15.0112086%2011.1519487%2C14.8939043%2011.1246313%2C14.7835632%20L20.245447%2C3.1698959%20L21.3868881%2C4.06494424%22%20id%3D%22Fill-6%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-logo-light{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%22100px%22%20height%3D%2240px%22%20viewBox%3D%220%200%20100%2040%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22logo.with.bg%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28-2.000000%2C%20-10.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-Layers%22%20transform%3D%22translate%282.000000%2C%2010.000000%29%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M17.7590361%2C20.2329317%20L8.84337349%2C30.3289157%20L0%2C20.184739%20L0%2C37.751004%20L5.10843373%2C37.751004%20L5.10843373%2C33.124498%20L8.81927711%2C38.2092369%20L12.6506024%2C33.0759036%20L12.6506024%2C37.751004%20L17.7590361%2C37.751004%20L17.7590361%2C20.2329317%20L17.7590361%2C20.2329317%20Z%20M33.5180723%2C23.2690763%20C31.8072289%2C21.5341365%2029.7349398%2C20.6666667%2027.3012048%2C20.6666667%20C24.8674699%2C20.6666667%2022.7951807%2C21.5341365%2021.060241%2C23.2690763%20C19.3493976%2C24.9799197%2018.4819277%2C27.0518072%2018.4819277%2C29.4859438%20C18.4819277%2C31.9196787%2019.3493976%2C33.9923695%2021.060241%2C35.7269076%20C22.7951807%2C37.437751%2024.8674699%2C38.3052209%2027.3012048%2C38.3052209%20C29.7349398%2C38.3052209%2031.8072289%2C37.437751%2033.5180723%2C35.7269076%20C35.253012%2C33.9923695%2036.1204819%2C31.9196787%2036.1204819%2C29.4859438%20C36.1204819%2C27.0518072%2035.253012%2C24.9799197%2033.5180723%2C23.2690763%20L33.5180723%2C23.2690763%20Z%20M53.2048193%2C21.2449799%20L48.0722892%2C21.2449799%20L48.0722892%2C29.1730924%20L36.6024096%2C20.1124498%20L36.6024096%2C37.751004%20L41.7349398%2C37.751004%20L41.7349398%2C30.6662651%20L53.2048193%2C39.751004%20L53.2048193%2C21.2449799%20L53.2048193%2C21.2449799%20Z%20M64.0160643%2C29.3895582%20L69.0763052%2C24.3293173%20L65.4618474%2C20.7148594%20L59.462249%2C26.7144578%20L59.462249%2C21.2449799%20L54.3534137%2C21.2449799%20L54.3534137%2C37.751004%20L59.462249%2C37.751004%20L59.462249%2C32.0883534%20L65.4618474%2C38.0883534%20L69.0763052%2C34.4738956%20L64.0160643%2C29.3895582%20L64.0160643%2C29.3895582%20Z%20M75.0682731%2C32.0883534%20L82.0321285%2C32.0883534%20L82.0321285%2C26.9558233%20L75.0682731%2C26.9558233%20L75.0682731%2C26.4016064%20L82.0321285%2C26.4016064%20L82.0321285%2C21.2690763%20L69.9116466%2C21.2690763%20L69.9116466%2C37.751004%20L82.0321285%2C37.751004%20L82.0321285%2C32.6425703%20L75.0682731%2C32.6425703%20L75.0682731%2C32.0883534%20L75.0682731%2C32.0883534%20Z%20M93.7995984%2C21.2449799%20L91.2690763%2C25.6305221%20L88.7389558%2C21.2449799%20L82.8353414%2C21.2449799%20L88.7148594%2C31.4618474%20L88.7148594%2C37.751004%20L93.8232932%2C37.751004%20L93.8232932%2C31.4618474%20L99.7028112%2C21.2449799%20L93.7995984%2C21.2449799%20L93.7995984%2C21.2449799%20Z%22%20id%3D%22Fill-1%22%20fill%3D%22%23CB3A1B%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M0%2C17.6706827%20L5.10843373%2C17.6706827%20L5.10843373%2C1.16465863%20L0%2C1.16465863%20L0%2C17.6706827%20Z%20M22.8353414%2C1.16465863%20L17.7028112%2C1.16465863%20L17.7028112%2C9.09236948%20L6.23293173%2C0.0321285141%20L6.23293173%2C17.6706827%20L11.3654618%2C17.6706827%20L11.3654618%2C10.5863454%20L22.8353414%2C19.6706827%20L22.8353414%2C1.16465863%20L22.8353414%2C1.16465863%20Z%20M35.7188755%2C11.1405622%20C35.7188755%2C9.18875502%2035.0200803%2C7.52610442%2033.62249%2C6.12851406%20C33.4779116%2C5.95983936%2033.3092369%2C5.81526104%2033.1164659%2C5.67068273%20L33.1164659%2C1.16465863%20L28.6104418%2C1.16465863%20C26.3935743%2C1.16465863%2024.6104418%2C2.94779116%2024.6104418%2C5.16465863%20C24.6104418%2C6.2248996%2025.3815261%2C8.2248996%2027.935743%2C8.65863454%20C30.4658635%2C9.11646586%2030.562249%2C10.4658635%2030.562249%2C11.1405622%20C30.562249%2C11.6706827%2030.3694779%2C12.1285141%2030.0080321%2C12.5140562%20C29.62249%2C12.8995984%2029.1646586%2C13.0923695%2028.6104418%2C13.0923695%20C28.0803213%2C13.0923695%2027.62249%2C12.8995984%2027.2369478%2C12.5140562%20L23.5983936%2C16.1526104%20C24.9959839%2C17.5502008%2026.6586345%2C18.248996%2028.6104418%2C18.248996%20C30.5863454%2C18.248996%2032.248996%2C17.5502008%2033.6465863%2C16.1526104%20C34.4899598%2C15.2851406%2035.0923695%2C14.3212851%2035.4056225%2C13.2369478%20C35.62249%2C12.562249%2035.7188755%2C11.8634538%2035.7188755%2C11.1405622%20L35.7188755%2C11.1405622%20Z%20M36.6024096%2C17.6706827%20L41.7108434%2C17.6706827%20L41.7108434%2C1.16465863%20L36.6024096%2C1.16465863%20L36.6024096%2C17.6706827%20Z%20M57.7991968%2C9.42971888%20C57.7991968%2C7.16465863%2056.9799197%2C5.23694779%2055.3650602%2C3.62248996%20C53.751004%2C2.00803213%2051.8232932%2C1.18875502%2049.5582329%2C1.18875502%20L42.8353414%2C1.18875502%20L42.8353414%2C17.6706827%20L49.5582329%2C17.6706827%20C51.8232932%2C17.6706827%2053.751004%2C16.875502%2055.3650602%2C15.2610442%20C56.9799197%2C13.6465863%2057.7991968%2C11.6947791%2057.7991968%2C9.42971888%20L57.7991968%2C9.42971888%20Z%20M64.0803213%2C12.0080321%20L71.0441767%2C12.0080321%20L71.0441767%2C6.87550201%20L64.0803213%2C6.87550201%20L64.0803213%2C6.32128514%20L71.0441767%2C6.32128514%20L71.0441767%2C1.18875502%20L58.9240964%2C1.18875502%20L58.9240964%2C17.6706827%20L71.0441767%2C17.6706827%20L71.0441767%2C12.562249%20L64.0803213%2C12.562249%20L64.0803213%2C12.0080321%20L64.0803213%2C12.0080321%20Z%20M85.0361446%2C18.3212851%20L88.5542169%2C12.4658635%20C87.9759036%2C12.7309237%2086.4341365%2C13.188755%2085.3253012%2C13.188755%20C85.9518072%2C12.5381526%2086.4574297%2C11.815261%2086.8192771%2C10.9718876%20C87.1807229%2C10.1044177%2087.373494%2C9.21285141%2087.373494%2C8.24899598%20C87.373494%2C6.27309237%2086.6746988%2C4.61044177%2085.3012048%2C3.23694779%20C83.9036145%2C1.86345382%2082.2405622%2C1.16465863%2080.2891566%2C1.16465863%20L72.1686747%2C1.11646586%20L72.1686747%2C17.6706827%20L77.2771084%2C17.6706827%20L77.2771084%2C15.3092369%20L77.3253012%2C15.3092369%20C78.0236948%2C15.9598394%2078.746988%2C16.4899598%2079.5662651%2C16.9477912%20C80.3614458%2C17.3815261%2081.2048193%2C17.7188755%2082.0718876%2C17.9116466%20C82.3859438%2C18.0080321%2082.7228916%2C18.1044177%2083.0361446%2C18.1526104%20C83.373494%2C18.2008032%2083.7108434%2C18.248996%2084.0477912%2C18.248996%20C84.2168675%2C18.2730924%2084.3614458%2C18.2971888%2084.5301205%2C18.2971888%20C84.6987952%2C18.2971888%2084.8674699%2C18.3212851%2085.0361446%2C18.3212851%20L85.0361446%2C18.3212851%20Z%22%20id%3D%22Fill-2%22%20fill%3D%22%23231F1F%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M83.1325301%2C6.82730924%20C84.0196787%2C6.82730924%2084.7389558%2C7.54658635%2084.7389558%2C8.43373494%20C84.7389558%2C9.32088353%2084.0196787%2C10.0401606%2083.1325301%2C10.0401606%20C82.2453815%2C10.0401606%2081.5261044%2C9.32088353%2081.5261044%2C8.43373494%20C81.5261044%2C7.54658635%2082.2453815%2C6.82730924%2083.1325301%2C6.82730924%22%20id%3D%22Fill-3%22%20fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M54.2168675%2C6.82730924%20C55.1040161%2C6.82730924%2055.8232932%2C7.54658635%2055.8232932%2C8.43373494%20C55.8232932%2C9.32088353%2055.1040161%2C10.0401606%2054.2168675%2C10.0401606%20C53.3297189%2C10.0401606%2052.6104418%2C9.32088353%2052.6104418%2C8.43373494%20C52.6104418%2C7.54658635%2053.3297189%2C6.82730924%2054.2168675%2C6.82730924%22%20id%3D%22Fill-4%22%20fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M32.5301205%2C27.7108434%20C33.4172691%2C27.7108434%2034.1365462%2C28.4301205%2034.1365462%2C29.3172691%20C34.1365462%2C30.2044177%2033.4172691%2C30.9236948%2032.5301205%2C30.9236948%20C31.6429719%2C30.9236948%2030.9236948%2C30.2044177%2030.9236948%2C29.3172691%20C30.9236948%2C28.4301205%2031.6429719%2C27.7108434%2032.5301205%2C27.7108434%22%20id%3D%22Fill-5%22%20fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-logo{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%22249px%22%20height%3D%2299px%22%20viewBox%3D%220%200%20249%2099%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3ELogo%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Background-%2B-Logo%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28-26.000000%2C%20-51.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Logo%22%20transform%3D%22translate%2826.000000%2C%2051.000000%29%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M44.22%2C50.38%20L22.02%2C75.52%20L0%2C50.26%20L0%2C94%20L12.72%2C94%20L12.72%2C82.48%20L21.96%2C95.14%20L31.5%2C82.36%20L31.5%2C94%20L44.22%2C94%20L44.22%2C50.38%20Z%20M83.46%2C57.94%20C79.2%2C53.62%2074.04%2C51.46%2067.98%2C51.46%20C61.92%2C51.46%2056.76%2C53.62%2052.44%2C57.94%20C48.18%2C62.2%2046.02%2C67.36%2046.02%2C73.42%20C46.02%2C79.48%2048.18%2C84.64%2052.44%2C88.96%20C56.76%2C93.22%2061.92%2C95.38%2067.98%2C95.38%20C74.04%2C95.38%2079.2%2C93.22%2083.46%2C88.96%20C87.78%2C84.64%2089.94%2C79.48%2089.94%2C73.42%20C89.94%2C67.36%2087.78%2C62.2%2083.46%2C57.94%20Z%20M132.48%2C52.9%20L119.7%2C52.9%20L119.7%2C72.64%20L91.14%2C50.08%20L91.14%2C94%20L103.92%2C94%20L103.92%2C76.36%20L132.48%2C98.98%20L132.48%2C52.9%20Z%20M159.4%2C73.18%20L172%2C60.58%20L163%2C51.58%20L148.06%2C66.52%20L148.06%2C52.9%20L135.34%2C52.9%20L135.34%2C94%20L148.06%2C94%20L148.06%2C79.9%20L163%2C94.84%20L172%2C85.84%20L159.4%2C73.18%20Z%20M186.92%2C79.9%20L204.26%2C79.9%20L204.26%2C67.12%20L186.92%2C67.12%20L186.92%2C65.74%20L204.26%2C65.74%20L204.26%2C52.96%20L174.08%2C52.96%20L174.08%2C94%20L204.26%2C94%20L204.26%2C81.28%20L186.92%2C81.28%20L186.92%2C79.9%20Z%20M233.56%2C52.9%20L227.26%2C63.82%20L220.96%2C52.9%20L206.26%2C52.9%20L220.9%2C78.34%20L220.9%2C94%20L233.62%2C94%20L233.62%2C78.34%20L248.26%2C52.9%20L233.56%2C52.9%20Z%22%20id%3D%22MONKEY%22%20fill%3D%22%23CB3A1B%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M12.72%2C2.9%20L0%2C2.9%20L0%2C44%20L12.72%2C44%20L12.72%2C2.9%20Z%20M56.86%2C2.9%20L44.08%2C2.9%20L44.08%2C22.64%20L15.52%2C0.08%20L15.52%2C44%20L28.3%2C44%20L28.3%2C26.36%20L56.86%2C48.98%20L56.86%2C2.9%20Z%20M88.94%2C27.74%20C88.94%2C22.88%2087.2%2C18.74%2083.72%2C15.26%20C83.36%2C14.84%2082.94%2C14.48%2082.46%2C14.12%20L82.46%2C2.9%20L71.24%2C2.9%20C65.72%2C2.9%2061.28%2C7.34%2061.28%2C12.86%20C61.28%2C15.5%2063.2%2C20.48%2069.56%2C21.56%20C75.86%2C22.7%2076.1%2C26.06%2076.1%2C27.74%20C76.1%2C29.06%2075.62%2C30.2%2074.72%2C31.16%20C73.76%2C32.12%2072.62%2C32.6%2071.24%2C32.6%20C69.92%2C32.6%2068.78%2C32.12%2067.82%2C31.16%20L58.76%2C40.22%20C62.24%2C43.7%2066.38%2C45.44%2071.24%2C45.44%20C76.16%2C45.44%2080.3%2C43.7%2083.78%2C40.22%20C85.88%2C38.06%2087.38%2C35.66%2088.16%2C32.96%20C88.7%2C31.28%2088.94%2C29.54%2088.94%2C27.74%20L88.94%2C27.74%20Z%20M103.86%2C2.9%20L91.14%2C2.9%20L91.14%2C44%20L103.86%2C44%20L103.86%2C2.9%20Z%20M143.92%2C23.48%20C143.92%2C17.84%20141.88%2C13.04%20137.86%2C9.02%20C133.84%2C5%20129.04%2C2.96%20123.4%2C2.96%20L106.66%2C2.96%20L106.66%2C44%20L123.4%2C44%20C129.04%2C44%20133.84%2C42.02%20137.86%2C38%20C141.88%2C33.98%20143.92%2C29.12%20143.92%2C23.48%20L143.92%2C23.48%20Z%20M159.56%2C29.9%20L176.9%2C29.9%20L176.9%2C17.12%20L159.56%2C17.12%20L159.56%2C15.74%20L176.9%2C15.74%20L176.9%2C2.96%20L146.72%2C2.96%20L146.72%2C44%20L176.9%2C44%20L176.9%2C31.28%20L159.56%2C31.28%20L159.56%2C29.9%20Z%20M211.74%2C45.62%20L220.5%2C31.04%20C219.06%2C31.7%20215.22%2C32.84%20212.46%2C32.84%20C214.02%2C31.22%20215.28%2C29.42%20216.18%2C27.32%20C217.08%2C25.16%20217.56%2C22.94%20217.56%2C20.54%20C217.56%2C15.62%20215.82%2C11.48%20212.4%2C8.06%20C208.92%2C4.64%20204.78%2C2.9%20199.92%2C2.9%20L179.7%2C2.78%20L179.7%2C44%20L192.42%2C44%20L192.42%2C38.12%20L192.54%2C38.12%20C194.28%2C39.74%20196.08%2C41.06%20198.12%2C42.2%20C200.1%2C43.28%20202.2%2C44.12%20204.36%2C44.6%20C205.14%2C44.84%20205.98%2C45.08%20206.76%2C45.2%20C207.6%2C45.32%20208.44%2C45.44%20209.28%2C45.44%20C209.7%2C45.5%20210.06%2C45.56%20210.48%2C45.56%20C210.9%2C45.56%20211.32%2C45.62%20211.74%2C45.62%20L211.74%2C45.62%20Z%22%20id%3D%22INSIDER%22%20fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-1%22%20fill%3D%22%23191919%22%20cx%3D%22207%22%20cy%3D%2221%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-2%22%20fill%3D%22%23191919%22%20cx%3D%22135%22%20cy%3D%2221%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-3%22%20fill%3D%22%23191919%22%20cx%3D%2281%22%20cy%3D%2273%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-logo.with.bg{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%22300px%22%20height%3D%22200px%22%20viewBox%3D%220%200%20300%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EBackground%20%2B%20Logo%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Background-%2B-Logo%22%20sketch%3Atype%3D%22MSLayerGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20id%3D%22Background%22%20fill%3D%22%23191919%22%20sketch%3Atype%3D%22MSShapeGroup%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22300%22%20height%3D%22200%22%3E%3C%2Frect%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Logo%22%20transform%3D%22translate%2826.000000%2C%2051.000000%29%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M44.22%2C50.38%20L22.02%2C75.52%20L0%2C50.26%20L0%2C94%20L12.72%2C94%20L12.72%2C82.48%20L21.96%2C95.14%20L31.5%2C82.36%20L31.5%2C94%20L44.22%2C94%20L44.22%2C50.38%20Z%20M83.46%2C57.94%20C79.2%2C53.62%2074.04%2C51.46%2067.98%2C51.46%20C61.92%2C51.46%2056.76%2C53.62%2052.44%2C57.94%20C48.18%2C62.2%2046.02%2C67.36%2046.02%2C73.42%20C46.02%2C79.48%2048.18%2C84.64%2052.44%2C88.96%20C56.76%2C93.22%2061.92%2C95.38%2067.98%2C95.38%20C74.04%2C95.38%2079.2%2C93.22%2083.46%2C88.96%20C87.78%2C84.64%2089.94%2C79.48%2089.94%2C73.42%20C89.94%2C67.36%2087.78%2C62.2%2083.46%2C57.94%20Z%20M132.48%2C52.9%20L119.7%2C52.9%20L119.7%2C72.64%20L91.14%2C50.08%20L91.14%2C94%20L103.92%2C94%20L103.92%2C76.36%20L132.48%2C98.98%20L132.48%2C52.9%20Z%20M159.4%2C73.18%20L172%2C60.58%20L163%2C51.58%20L148.06%2C66.52%20L148.06%2C52.9%20L135.34%2C52.9%20L135.34%2C94%20L148.06%2C94%20L148.06%2C79.9%20L163%2C94.84%20L172%2C85.84%20L159.4%2C73.18%20Z%20M186.92%2C79.9%20L204.26%2C79.9%20L204.26%2C67.12%20L186.92%2C67.12%20L186.92%2C65.74%20L204.26%2C65.74%20L204.26%2C52.96%20L174.08%2C52.96%20L174.08%2C94%20L204.26%2C94%20L204.26%2C81.28%20L186.92%2C81.28%20L186.92%2C79.9%20Z%20M233.56%2C52.9%20L227.26%2C63.82%20L220.96%2C52.9%20L206.26%2C52.9%20L220.9%2C78.34%20L220.9%2C94%20L233.62%2C94%20L233.62%2C78.34%20L248.26%2C52.9%20L233.56%2C52.9%20Z%22%20id%3D%22MONKEY%22%20fill%3D%22%23CB3A1B%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M12.72%2C2.9%20L0%2C2.9%20L0%2C44%20L12.72%2C44%20L12.72%2C2.9%20Z%20M56.86%2C2.9%20L44.08%2C2.9%20L44.08%2C22.64%20L15.52%2C0.08%20L15.52%2C44%20L28.3%2C44%20L28.3%2C26.36%20L56.86%2C48.98%20L56.86%2C2.9%20Z%20M88.94%2C27.74%20C88.94%2C22.88%2087.2%2C18.74%2083.72%2C15.26%20C83.36%2C14.84%2082.94%2C14.48%2082.46%2C14.12%20L82.46%2C2.9%20L71.24%2C2.9%20C65.72%2C2.9%2061.28%2C7.34%2061.28%2C12.86%20C61.28%2C15.5%2063.2%2C20.48%2069.56%2C21.56%20C75.86%2C22.7%2076.1%2C26.06%2076.1%2C27.74%20C76.1%2C29.06%2075.62%2C30.2%2074.72%2C31.16%20C73.76%2C32.12%2072.62%2C32.6%2071.24%2C32.6%20C69.92%2C32.6%2068.78%2C32.12%2067.82%2C31.16%20L58.76%2C40.22%20C62.24%2C43.7%2066.38%2C45.44%2071.24%2C45.44%20C76.16%2C45.44%2080.3%2C43.7%2083.78%2C40.22%20C85.88%2C38.06%2087.38%2C35.66%2088.16%2C32.96%20C88.7%2C31.28%2088.94%2C29.54%2088.94%2C27.74%20L88.94%2C27.74%20Z%20M103.86%2C2.9%20L91.14%2C2.9%20L91.14%2C44%20L103.86%2C44%20L103.86%2C2.9%20Z%20M143.92%2C23.48%20C143.92%2C17.84%20141.88%2C13.04%20137.86%2C9.02%20C133.84%2C5%20129.04%2C2.96%20123.4%2C2.96%20L106.66%2C2.96%20L106.66%2C44%20L123.4%2C44%20C129.04%2C44%20133.84%2C42.02%20137.86%2C38%20C141.88%2C33.98%20143.92%2C29.12%20143.92%2C23.48%20L143.92%2C23.48%20Z%20M159.56%2C29.9%20L176.9%2C29.9%20L176.9%2C17.12%20L159.56%2C17.12%20L159.56%2C15.74%20L176.9%2C15.74%20L176.9%2C2.96%20L146.72%2C2.96%20L146.72%2C44%20L176.9%2C44%20L176.9%2C31.28%20L159.56%2C31.28%20L159.56%2C29.9%20Z%20M211.74%2C45.62%20L220.5%2C31.04%20C219.06%2C31.7%20215.22%2C32.84%20212.46%2C32.84%20C214.02%2C31.22%20215.28%2C29.42%20216.18%2C27.32%20C217.08%2C25.16%20217.56%2C22.94%20217.56%2C20.54%20C217.56%2C15.62%20215.82%2C11.48%20212.4%2C8.06%20C208.92%2C4.64%20204.78%2C2.9%20199.92%2C2.9%20L179.7%2C2.78%20L179.7%2C44%20L192.42%2C44%20L192.42%2C38.12%20L192.54%2C38.12%20C194.28%2C39.74%20196.08%2C41.06%20198.12%2C42.2%20C200.1%2C43.28%20202.2%2C44.12%20204.36%2C44.6%20C205.14%2C44.84%20205.98%2C45.08%20206.76%2C45.2%20C207.6%2C45.32%20208.44%2C45.44%20209.28%2C45.44%20C209.7%2C45.5%20210.06%2C45.56%20210.48%2C45.56%20C210.9%2C45.56%20211.32%2C45.62%20211.74%2C45.62%20L211.74%2C45.62%20Z%22%20id%3D%22INSIDER%22%20fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-1%22%20fill%3D%22%23191919%22%20cx%3D%22207%22%20cy%3D%2221%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-2%22%20fill%3D%22%23191919%22%20cx%3D%22135%22%20cy%3D%2221%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-3%22%20fill%3D%22%23191919%22%20cx%3D%2281%22%20cy%3D%2273%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-minus-less{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2233px%22%20height%3D%2233px%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EOval%202%20%2B%20little20%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Artboard-1%22%20sketch%3Atype%3D%22MSArtboardGroup%22%20transform%3D%22translate%28-538.000000%2C%20-580.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-2-%2B-little20%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28539.000000%2C%20581.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-2%22%20stroke%3D%22%23CCCCCC%22%20stroke-width%3D%222%22%20fill%3D%22%23FFFFFF%22%20sketch%3Atype%3D%22MSShapeGroup%22%20cx%3D%2215.5%22%20cy%3D%2215.5%22%20r%3D%2215.5%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22little20%22%20transform%3D%22translate%287.000000%2C%2015.000000%29%22%20fill%3D%22%23024775%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M16.0555556%2C0%20L0.944444444%2C0%20C0.423111111%2C0%200%2C0.448%200%2C1%20C0%2C1.55%200.423111111%2C2%200.944444444%2C2%20L16.0555556%2C2%20C16.575%2C2%2017%2C1.55%2017%2C1%20C17%2C0.448%2016.575%2C0%2016.0555556%2C0%20L16.0555556%2C0%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-new{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%22112px%22%20height%3D%22112px%22%20viewBox%3D%220%200%20112%20112%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3Enew49%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22new49%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%2855.757595%2C%2055.562690%29%20rotate%28-30.000000%29%20translate%28-55.757595%2C%20-55.562690%29%20translate%28-0.242405%2C%20-0.937310%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M112%2C57%20L97.016%2C46.01%20L104.496%2C29%20L86.025%2C26.975%20L84%2C8.504%20L66.99%2C15.989%20L56%2C1%20L45.01%2C15.985%20L28%2C8.504%20L25.975%2C26.975%20L7.504%2C29%20L14.988%2C46.01%20L1.42108547e-14%2C57%20L14.984%2C67.99%20L7.504%2C85%20L25.975%2C87.025%20L28%2C105.496%20L45.01%2C98.011%20L56%2C113%20L66.99%2C98.016%20L84%2C105.496%20L86.025%2C87.025%20L104.496%2C85%20L97.012%2C67.99%20L112%2C57%20L112%2C57%20Z%22%20id%3D%22Shape%22%20fill%3D%22%23CB3A1B%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Ctext%20id%3D%22NEW%22%20sketch%3Atype%3D%22MSTextLayer%22%20font-family%3D%22Proxima%20Nova%22%20font-size%3D%2232%22%20font-weight%3D%22526%22%20fill%3D%22%23FFFFFF%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ctspan%20x%3D%2222%22%20y%3D%2266%22%3ENEW%3C%2Ftspan%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Ftext%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-pdf{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2230px%22%20height%3D%2239px%22%20viewBox%3D%220%200%2030%2039%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3E1432302819_1-02%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%221432302819_1-02%22%20sketch%3Atype%3D%22MSLayerGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M22.3926749%2C39%20L2.60692399%2C39%20C1.16950621%2C39%20-1.36002321e-15%2C37.8438998%20-1.36002321e-15%2C36.4229591%20L-1.36002321e-15%2C8.57704091%20C-1.36002321e-15%2C7.1561002%201.16950621%2C6%202.60692399%2C6%20L14.1279238%2C6%20C15.3920814%2C6%2017.0825713%2C6.69223283%2017.9765457%2C7.57595963%20L23.4057657%2C12.9429447%20C24.2997401%2C13.8266715%2025%2C15.4977834%2025%2C16.74745%20L25%2C36.4229591%20C24.9995989%2C37.8438998%2023.8300927%2C39%2022.3926749%2C39%20L22.3926749%2C39%20Z%20M2.42900254%2C7%20C1.64100971%2C7%201%2C7.63015472%201%2C8.40480352%20L1%2C36.5951965%20C1%2C37.3698453%201.64100971%2C38%202.42900254%2C38%20L22.5709975%2C38%20C23.3589903%2C38%2024%2C37.3698453%2024%2C36.5951965%20L24%2C16.6762867%20C24%2C15.7398848%2023.4096178%2C14.3378909%2022.7359452%2C13.6760277%20L17.2089717%2C8.24264906%20C16.5357073%2C7.58078591%2015.1095628%2C7%2014.1570305%2C7%20L2.42900254%2C7%20L2.42900254%2C7%20Z%22%20id%3D%22Shape%22%20fill%3D%22%23313335%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M23.2656792%2C16%20L18.7606778%2C16%20C17.2384825%2C16%2016%2C14.7614913%2016%2C13.2392638%20L16%2C8.73374233%20C16%2C7.45403492%2016.6867717%2C7%2017.2754331%2C7%20C17.7086472%2C7%2018.1503556%2C7.22255781%2018.589091%2C7.6613025%20L24.338521%2C13.4108542%20C25.1395423%2C14.2118924%2025.0422815%2C14.8540821%2024.9135914%2C15.1658329%20C24.7836272%2C15.477159%2024.3984065%2C16%2023.2656792%2C16%20L23.2656792%2C16%20Z%20M17.0566673%2C8%20C17.0320983%2C8.06339982%2017%2C8.18861445%2017%2C8.4097213%20L17%2C12.613129%20C17%2C13.3778893%2017.6221518%2C14%2018.3869626%2C14%20L22.5902516%2C14%20C22.8113731%2C14%2022.936596%2C13.9679038%2023%2C13.9433364%20C22.972657%2C13.8811253%2022.9068754%2C13.7697794%2022.7503467%2C13.6136574%20L17.3863681%2C8.24963677%20C17.2302358%2C8.09351473%2017.1188825%2C8.02734117%2017.0566673%2C8%20L17.0566673%2C8%20Z%22%20id%3D%22Shape%22%20fill%3D%22%23313335%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M24.9998433%2C10%20C24.8186742%2C10%2024.6463529%2C9.92923077%2024.5266971%2C9.80538462%20L20.158837%2C5.29769231%20C19.9936782%2C5.12769231%2019.9536525%2C4.88538462%2020.0560341%2C4.67846154%20C20.1579944%2C4.47153846%2020.3834024%2C4.33846154%2020.6319832%2C4.33846154%20L22.1967785%2C4.33846154%20L22.1967785%2C0.576923077%20C22.1967785%2C0.258076923%2022.4799078%2C-1.05471187e-15%2022.8287636%2C-1.05471187e-15%20L27.1700803%2C-1.05471187e-15%20C27.5189361%2C-1.05471187e-15%2027.8020655%2C0.258076923%2027.8020655%2C0.576923077%20L27.8020655%2C4.33846154%20L29.3681247%2C4.33846154%20C29.6167055%2C4.33846154%2029.8421136%2C4.47153846%2029.9440738%2C4.67846154%20C30.0464554%2C4.88538462%2030.0060084%2C5.12769231%2029.8412709%2C5.29769231%20L25.4734108%2C9.80538462%20C25.3533337%2C9.92923077%2025.1810124%2C10%2024.9998433%2C10%20L24.9998433%2C10%20Z%20M22%2C5.10480349%20L25%2C8%20L28%2C5.10480349%20L27.1952259%2C5.10480349%20C26.8422847%2C5.10480349%2026.5558397%2C4.86062591%2026.5558397%2C4.55895197%20L26.5558397%2C1%20L23.4424552%2C1%20L23.4424552%2C4.55895197%20C23.4424552%2C4.86062591%2023.1560102%2C5.10480349%2022.8030691%2C5.10480349%20L22%2C5.10480349%20L22%2C5.10480349%20Z%22%20id%3D%22Shape%22%20fill%3D%22%23EE3E36%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%286.000000%2C%2029.000000%29%22%20fill%3D%22%23313335%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2.03552532%2C3.60144517%20L1.06235828%2C3.60144517%20L1.06235828%2C5.271465%20C1.06235828%2C5.51034287%201.01247166%2C5.691414%200.912320484%2C5.81467838%20C0.812169312%2C5.93794276%200.685563114%2C6%200.533257748%2C6%20C0.373393802%2C6%200.24452003%2C5.93879286%200.147014361%2C5.81680363%20C0.0491307634%2C5.69438935%203.74700271e-15%2C5.51586852%203.74700271e-15%2C5.27954095%20L3.74700271e-15%2C0.732360442%20C3.74700271e-15%2C0.469254746%200.0540438398%2C0.281382828%200.160997732%2C0.168744687%20C0.268329554%2C0.0561065458%200.43877551%2C0%200.67271353%2C0%20L2.03552532%2C0%20C2.43839758%2C0%202.74905518%2C0.0348540663%202.96598639%2C0.104562199%20C3.18027211%2C0.171720034%203.36621315%2C0.283083026%203.52229781%2C0.438651176%20C3.67876039%2C0.594219326%203.79743008%2C0.784641542%203.87830688%2C1.00991782%20C3.9595616%2C1.23519411%204%2C1.48894871%204%2C1.77075659%20C4%2C2.37177671%203.83522298%2C2.82700482%203.50604686%2C3.13686597%20C3.17724868%2C3.44630207%202.68707483%2C3.60144517%202.03552532%2C3.60144517%20L2.03552532%2C3.60144517%20Z%20M1.76929326%2C1%20L1%2C1%20L1%2C3%20L1.76929326%2C3%20C2.03858652%2C3%202.26360682%2C2.9674605%202.44435418%2C2.90190993%20C2.62469537%2C2.83635935%202.76279448%2C2.72930913%202.85783916%2C2.58028767%20C2.95247766%2C2.4317378%203%2C2.23650083%203%2C1.99551992%20C3%2C1.70690875%202.92688871%2C1.47158689%202.7810723%2C1.29002594%20C2.61657189%2C1.09667531%202.2794476%2C1%201.76929326%2C1%20L1.76929326%2C1%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.72626876%2C0%20L7.27069634%2C0%20C7.67197774%2C0%208.01719777%2C0.0380458279%208.30424886%2C0.114569823%20C8.59129995%2C0.191093818%208.85221716%2C0.334198011%209.08615748%2C0.544314743%20C9.69524532%2C1.07911803%2010%2C1.8923476%2010%2C2.98357112%20C10%2C3.34370947%209.96922947%2C3.67271941%209.90810993%2C3.97016861%20C9.84656888%2C4.26761781%209.75257124%2C4.53566796%209.62443096%2C4.77431907%20C9.49671219%2C5.01297017%209.33358624%2C5.22654561%209.13378857%2C5.41461306%20C8.97698533%2C5.55944661%208.8054291%2C5.67531345%208.61869836%2C5.76264591%20C8.43281066%2C5.84997838%208.23259147%2C5.91137051%208.0180408%2C5.94682231%20C7.80391165%2C5.9822741%207.5628056%2C6%207.29387962%2C6%20L5.74987355%2C6%20C5.53447985%2C6%205.37219693%2C5.9667099%205.26302479%2C5.89969736%20C5.15385264%2C5.83268482%205.08261676%2C5.73843493%205.04973866%2C5.61738003%20C5.01643905%2C5.49589278%205%2C5.3385214%205%2C5.14483355%20L5%2C0.744920017%20C5%2C0.482922611%205.0569044%2C0.293125811%205.17113472%2C0.175961954%20C5.28578655%2C0.0583657588%205.47040971%2C0%205.72626876%2C0%20L5.72626876%2C0%20Z%20M6%2C1%20L6%2C5%20L7.03047896%2C5%20C7.25641026%2C5%207.43347847%2C4.99447983%207.56216739%2C4.98386412%20C7.69037252%2C4.97324841%207.82293179%2C4.94649682%207.96032898%2C4.90360934%20C8.09772617%2C4.86072187%208.21673924%2C4.80042463%208.31736817%2C4.72271762%20C8.77213353%2C4.385138%209%2C3.80339703%209%2C2.97834395%20C9%2C2.39660297%208.89985486%2C1.96093418%208.70004838%2C1.67176221%20C8.4997581%2C1.38216561%208.25302371%2C1.19830149%207.96032898%2C1.11889597%20C7.66763425%2C1.03991507%207.31301403%2C1.00042463%206.89791969%2C1.00042463%20L6%2C1.00042463%20L6%2C1%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M14.4526098%2C0.921572795%20L12.1629974%2C0.921572795%20L12.1629974%2C2.43060574%20L14.0772093%2C2.43060574%20C14.2545736%2C2.43060574%2014.3868734%2C2.47141339%2014.474522%2C2.55345377%20C14.5617571%2C2.63549416%2014.6055814%2C2.74473964%2014.6055814%2C2.88119022%20C14.6055814%2C3.01806589%2014.5613437%2C3.12688629%2014.4724548%2C3.20722635%20C14.3835659%2C3.28756642%2014.252093%2C3.32794899%2014.0772093%2C3.32794899%20L12.1629974%2C3.32794899%20L12.1629974%2C5.27183847%20C12.1629974%2C5.51880978%2012.1088372%2C5.70201913%2012.0005168%2C5.82104145%20C11.8921964%2C5.94006376%2011.7528682%2C6%2011.5833592%2C6%20C11.4113695%2C6%2011.270801%2C5.93963868%2011.1624806%2C5.81891605%20C11.0541602%2C5.69819341%2011%2C5.51583422%2011%2C5.27141339%20L11%2C0.732412327%20C11%2C0.560680128%2011.0248062%2C0.420403826%2011.0744186%2C0.311583422%20C11.124031%2C0.203188098%2011.2017571%2C0.124123273%2011.3071835%2C0.0743889479%20C11.4130233%2C0.0246546227%2011.5478036%2C0%2011.711938%2C0%20L14.4517829%2C0%20C14.6370026%2C0%2014.774677%2C0.0420828905%2014.8648062%2C0.126673751%20C14.9549354%2C0.211264612%2015%2C0.321785335%2015%2C0.458660999%20C15%2C0.598087141%2014.9549354%2C0.710308183%2014.8648062%2C0.794899044%20C14.774677%2C0.879489904%2014.6378295%2C0.921572795%2014.4526098%2C0.921572795%20L14.4526098%2C0.921572795%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.36265443%2C28%20C4.77807849%2C28%204.30762454%2C27.7021352%204.10491834%2C27.2030319%20C3.76694167%2C26.3733226%204.2541548%2C25.2321728%205.44166196%2C24.0718575%20C6.37139707%2C23.1630902%207.669834%2C22.4152339%209.30305538%2C21.8466554%20C10.1717392%2C20.2335536%2010.9709922%2C18.506257%2011.5316264%2C17.0297098%20C10.2902505%2C15.0975812%2010.0612085%2C12.7122667%2010.4953509%2C11.3794613%20C10.7762666%2C10.5174101%2011.2626816%2C10.1931926%2011.6206097%2C10.0730086%20C12.1201927%2C9.90491059%2012.6301504%2C10.0306846%2012.9856843%2C10.4131974%20C13.5215788%2C10.9897615%2013.7179006%2C12.1508754%2013.5866204%2C13.9628199%20C13.5343477%2C14.6851222%2013.2945319%2C15.6549797%2012.8723603%2C16.8500326%20C12.8907156%2C16.873191%2012.9094699%2C16.8959501%2012.9282243%2C16.9187092%20C13.209938%2C17.2632901%2013.510406%2C17.6422094%2013.8252391%2C18.0394956%20C14.4972021%2C18.8871726%2015.252163%2C19.8394617%2016.0198928%2C20.6931279%20C16.2469397%2C20.6859408%2016.465607%2C20.6827466%2016.6766928%2C20.6827466%20C19.3892847%2C20.6827466%2021.2108473%2C21.2505265%2021.805798%2C22.2814742%20C22.0595797%2C22.7210844%2022.0647671%2C23.2157956%2021.820562%2C23.6390351%20C21.4909649%2C24.2104086%2020.777902%2C24.5513959%2019.9128094%2C24.5513959%20L19.9124104%2C24.5513959%20C19.7029207%2C24.5513959%2019.4862485%2C24.5310325%2019.2687783%2C24.490705%20C18.178634%2C24.2894665%2016.9819491%2C23.4685415%2015.5163195%2C21.9133356%20C15.1416323%2C21.933699%2014.7493878%2C21.9632459%2014.3471676%2C22.0023756%20C13.4832721%2C22.0854264%2011.8161334%2C22.3030355%2010.1282452%2C22.8352792%20C9.40201431%2C24.1477212%207.83902185%2C26.7985586%206.67346122%2C27.5607891%20C6.23253534%2C27.8482726%205.78003766%2C28%205.36265443%2C28%20L5.36265443%2C28%20Z%20M8%2C24%20C7.20177861%2C24.3710131%206.54300784%2C24.7992179%206.0305459%2C25.2805817%20C5.02352961%2C26.2271783%204.95799545%2C26.8203593%205.01438531%2C26.9534401%20C5.03076885%2C26.9919345%205.10125618%2C27%205.15688402%2C27%20C5.32757766%2C27%205.55580421%2C26.9182451%205.7825067%2C26.775999%20C6.28010915%2C26.4632775%207.1015723%2C25.4253941%208%2C24%20L8%2C24%20Z%20M17%2C22%20C17.9989174%2C22.5719346%2018.8372315%2C22.8915531%2019.5440627%2C22.9722071%20C19.7055484%2C22.9904632%2019.8643869%2C23%2020.0152834%2C23%20L20.0157247%2C23%20C20.5398916%2C23%2020.8827179%2C22.8891008%2020.9793446%2C22.7861035%20C20.9969934%2C22.7667575%2021.0221428%2C22.7405995%2020.9625784%2C22.6771117%20C20.7402045%2C22.439782%2019.6565732%2C22.0487738%2017%2C22%20L17%2C22%20Z%20M12.638895%2C18%20C12.1761326%2C18.9541579%2011.6125967%2C19.9854195%2011%2C21%20C12.519116%2C20.6845422%2013.8963536%2C20.5384901%2014.6914917%2C20.4743606%20C14.7949171%2C20.4662054%2014.8979006%2C20.4580502%2015%2C20.4506364%20C14.3675138%2C19.8256518%2013.759337%2C19.1828741%2013.201989%2C18.5934758%20C13.0092818%2C18.3895959%2012.8209945%2C18.1909057%2012.638895%2C18%20L12.638895%2C18%20Z%20M11.6097404%2C11%20C11.6004666%2C11%2011.5798115%2C11.0014906%2011.5481965%2C11.0108068%20C11.4057184%2C11.052916%2011.2602896%2C11.242221%2011.1591217%2C11.517235%20C10.855618%2C12.340041%2010.9761764%2C13.7244271%2011.6080542%2C15%20C11.8091254%2C14.3955655%2011.9292623%2C13.8876467%2011.9608773%2C13.5008385%20C12.1151583%2C11.6193404%2011.7707659%2C11.1337805%2011.6611674%2C11.0301845%20C11.6303955%2C11%2011.6190141%2C11%2011.6097404%2C11%20L11.6097404%2C11%20Z%22%20id%3D%22Shape%22%20fill%3D%22%23EE3E36%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20id%3D%22_x3C_Slice_x3E__11_%22%20sketch%3Atype%3D%22MSShapeGroup%22%20x%3D%22-1.36002321e-15%22%20y%3D%228.8817842e-16%22%20width%3D%2229%22%20height%3D%2241%22%3E%3C%2Frect%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-plus-more{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2233px%22%20height%3D%2233px%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EOval%201%20%2B%20add63%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Artboard-1%22%20sketch%3Atype%3D%22MSArtboardGroup%22%20transform%3D%22translate%28-538.000000%2C%20-476.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-1-%2B-add63%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28539.000000%2C%20477.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-1%22%20stroke%3D%22%23CCCCCC%22%20stroke-width%3D%222%22%20fill%3D%22%23FFFFFF%22%20sketch%3Atype%3D%22MSShapeGroup%22%20cx%3D%2215.5%22%20cy%3D%2215.5%22%20r%3D%2215.5%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22add63%22%20transform%3D%22translate%287.000000%2C%207.000000%29%22%20fill%3D%22%23024775%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M15.8069091%2C7.53409091%20L9.35741818%2C7.53409091%20L9.35741818%2C1.08367273%20C9.35741818%2C0.524527273%208.90552727%2C0.0726363636%208.34545455%2C0.0726363636%20C7.78569091%2C0.0726363636%207.33349091%2C0.524836364%207.33349091%2C1.08367273%20L7.33349091%2C7.53409091%20L0.884618182%2C7.53409091%20C0.324236364%2C7.53409091%20-0.127345455%2C7.9866%20-0.127345455%2C8.54543636%20C-0.127345455%2C9.10396364%200.324545455%2C9.55616364%200.884618182%2C9.55616364%20L7.33318182%2C9.55616364%20L7.33318182%2C16.0065818%20C7.33318182%2C16.5657273%207.78569091%2C17.0179273%208.34514545%2C17.0179273%20C8.90552727%2C17.0179273%209.35710909%2C16.5654182%209.35710909%2C16.0065818%20L9.35710909%2C9.55647273%20L15.8069091%2C9.55647273%20C16.3666727%2C9.55647273%2016.8182545%2C9.10427273%2016.8182545%2C8.54574545%20C16.8182545%2C7.9866%2016.3663636%2C7.53409091%2015.8069091%2C7.53409091%20L15.8069091%2C7.53409091%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-range{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20enable-background%3D%22new%200%200%2016%2016%22%20xml%3Aspace%3D%22preserve%22%3E%3Cimage%20overflow%3D%22visible%22%20width%3D%2252%22%20height%3D%2256%22%20xlink%3Ahref%3D%22data%3Aimage%2Fjpeg%3Bbase64%2C%2F9j%2F4AAQSkZJRgABAgAAZABkAAD%2F7AARRHVja3kAAQAEAAAAZAAA%2F%2B4AJkFkb2JlAGTAAAAAAQMAFQQDBgoNAAACswAABi4AAAczAAAH7%2F%2FbAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD%2F8IAEQgAOAA0AwERAAIRAQMRAf%2FEALMAAAMBAQEAAAAAAAAAAAAAAAAHCAkKBgEBAAAAAAAAAAAAAAAAAAAAABAAAgEDAwUBAAAAAAAAAAAABgcABRYXEAQIUAMTFRgCEQAAAwYDBAcIAgMAAAAAAAAEFAUBEQIDEwYAEhVhRGQlISKl5RY21hBlhcVGpgcnQpUxNDcSAQAAAAAAAAAAAAAAAAAAAFATAAICAgEDBQEAAAAAAAAAAAERAPAhQRAwUDFAUWFxocH%2F2gAMAwEAAhEDEQAAAdNCHyQDWg57zoQHqYIl4EvGlRiYbZnIUVsMAf4gAH%2BZBD%2FAf4gAH%2BQCX8BfxAIF%2FGAY%2FwAB%2FiAAf5AJVJ5Uf4gAH%2BTYf%2F%2FaAAgBAQABBQIh5Ap8Vqzs5FLQhV%2FFZwiS72X1GiojGP8AkVb31Giplpb2pxWWQQz%2B42OMQBt17xz467Ou7P5cRUUXHsq37O%2BXEVPL3fEqdkU7yHNfaYXPStOA1faZpDmvtMLnpWnoDHNlw5Ob0mc4DHNlw5Ob0mc9EZHnojI89QYGvSHINZcwZAYGvSHINZcwZpQK9VlRUzk5vSZzgMc2XDk5vSZzmOTa0v%2FaAAgBAgABBQLqP%2F%2FaAAgBAwABBQLqP%2F%2FaAAgBAgIGPwJH%2F9oACAEDAgY%2FAkf%2F2gAIAQEBBj8CFoa3egWQqAJjZIwOFTVxWhDT4GumB5ohISxwWERJi6I5efPBF0RMY3F1olk3rPm3IpSE4KClBke502bODxrKdqsk4MSAgaVBNR2T4Y80yHPA1sPS1rsXkm31c89JADJ6EKQAcYFbUw5hkKvAtTpEpLAD4QscyEpnzZKjmOfla7zz9s3h6fwnXbd1xjwiUP1zxUozdRHxDzaSoxBT8gFJFixuZaoRM6kWWNjIuhjH488%2FbN4en8eN%2FF6R4YrldSqTf93LUIEaWo6jT6xelWydOV2PyBNvpGjX5qVHbMwDMmKq0BmSpio244h8ccaYogohEYiIFLa1szO7L0Oe19yCPx1Y8zxiHkAxCRRXLjGz4oZCmCmqUuQEUFkSFEz5qTDPhggbBFFFE1jIOvlxc478uWEpyZNZKkW7KWRFwW4OhjlQqESvGQCi0sVGHmsmhnTJzGwvhbk%2FnjyN9zXh6gwFSPyDYawy00xqtr88cxTSkoUyWAGBwOmrQSMJqLWqsciOArOizwMe3qZseRvua8PUGKFSZRqVaOeKlVy5KlN%2BWpl6H%2F5dhe8NXzcFl09LO6ELUQupZtRLmiCom5yeWPJmzuqxOd0vS%2F2%2Ff6lqR36kuIHRJlPfoqpUNbHOx%2F3O%2FwD%2B3uL1RhU%2Fb9%2FpumkvqS4hlY4b9%2BhadMrte%2FCX%2B37%2FAFLUjv1JcQOiTKe%2FRVSoa2Odj%2Fud%2FwD9vcXqj2KnK9S1IlvpOiTN8IKqVDWxzsJfK9N007vpyscKcIFp0yu178eV%2B2%2B6MKnK9S1IlvpOiTN8IKqVDWxzsJfK9N007vpyscKcIFp0yu178eV%2B2%2B6PZdHwT5vi1%2Fjfyj2XR8E%2Bb4tf438o9qpzTTdNJbkcrHDfFhadMrte%2FCXzTUtSO7kTokynFiqlQ1sc7HmjsTvfCpzTTdNJbkcrHDfFhadMrte%2FCXzTUtSO7kTokynFiqlQ1sc7HmjsTvf2L6MuW2KYpzJwWQJCCxESdNCxp8Q2BrWZgYlgiVOaI6scPVaxj2NaxuEvlem6ad305WOFOEC06ZXa9%2BPK%2FbfdGFTlepakS30nRJm%2BEFVKhrY52Evlem6ad305WOFOEC06ZXa9%2BPK%2FbfdGPHHhxU8MnCeolZuV9Kobp5amm%2FwMuo1OpmzdGP%2FaAAgBAQMBPyE1XP8AAGy0nIiIEQzH4hCIaREAIkC1UFFwToGPBo7%2BWWNPplrPgyE7%2FYrKqbe%2FhUwBQZ1ViRNBAzx4ORHe7bBoQPlzx4xiZBuLt1sARZXgJwl4u7FQF9K6PEtMCql%2FeDCwTrU9vEl2CdanpZsE61PbxxLuDW593i4Nbn1WYlwa3Pu8XBrc%2Bqz0URES4Nbn1Wbg1ufd4iXBrc%2BqzcGtz7vHCAsAOwiLEJgHhQi4Nbn1WYlwa3Pu8XBrc%2BqzEok8vnQYf%2F%2FaAAgBAgMBPyHuP%2F%2FaAAgBAwMBPyHuP%2F%2FaAAwDAQACEQMRAAAQEgAkgEAkkkAAAAAAAAAAAAAAn%2F%2FaAAgBAQMBPxBasE4xcYonDRDBXBymrOg65VIgC2HU0gdheC2FYjc3pofvtVnD4EpJlYOgWEUuUUjQ8IgUSYQU0iAFwSYLB4FkvKIRYL51CkkxUQdAXC1en6%2Fq0eHp27y%2F9eqfxRr%2FAAfxRrz%2BKNf4PlGvPlGvA%2BUa8%2BUa8AAAPlGv6p8o14HyjXnyjXgL2CsY6qolqD5RrwPlGvPlGvAo0Tbt%2F9oACAECAwE%2FEO4%2F%2F9oACAEDAwE%2FEO4%2F%2F9k%3D%22%20transform%3D%22matrix%280.3077%200%200%200.2857%200%200%29%22%3E%3C%2Fimage%3E%3C%2Fsvg%3E)}.icon-removed{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M16%2C3%20L13%2C0%20L8%2C5%20L3%2C0%20L0%2C3%20L5%2C8%20L0%2C13%20L3%2C16%20L8%2C11%20L13%2C16%20L16%2C13%20L11%2C8%20L16%2C3%22%20id%3D%22Imported-Layers%22%20fill%3D%22%23000000%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-search-gray-icon{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EPage%201%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-EPS%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%236D6D6D%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M15.5585714%2C14.4788571%20L11.4808571%2C10.4011429%20C12.342%2C9.30742857%2012.8571429%2C7.92857143%2012.8574286%2C6.42828571%20C12.8568571%2C2.87771429%209.97914286%2C0%206.42885714%2C0%20C2.878%2C0%200.000571428571%2C2.87771429%200%2C6.42828571%20C0.000571428571%2C9.97942857%202.878%2C12.8562857%206.42885714%2C12.8568571%20C7.93685714%2C12.8565714%209.32228571%2C12.336%2010.4185714%2C11.4668571%20L14.4945714%2C15.5425714%20C14.7522857%2C15.8002857%2015.1994286%2C15.7711429%2015.4934286%2C15.4774286%20C15.7868571%2C15.1834286%2015.816%2C14.7362857%2015.5585714%2C14.4788571%20L15.5585714%2C14.4788571%20Z%20M1.42857143%2C6.42828571%20C1.434%2C3.66714286%203.66771429%2C1.43314286%206.42885714%2C1.42857143%20C9.18971429%2C1.43314286%2011.4234286%2C3.66714286%2011.4288571%2C6.42828571%20C11.4234286%2C9.18971429%209.18971429%2C11.4237143%206.42885714%2C11.4282857%20C3.66771429%2C11.4237143%201.434%2C9.18971429%201.42857143%2C6.42828571%20L1.42857143%2C6.42828571%20Z%22%20id%3D%22Page-1%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-search-white-icon{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EPage-1%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22search-gray-icon%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%23FFFFFF%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Page-1%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-EPS%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M15.5585714%2C14.4788571%20L11.4808571%2C10.4011429%20C12.342%2C9.30742857%2012.8571429%2C7.92857143%2012.8574286%2C6.42828571%20C12.8568571%2C2.87771429%209.97914286%2C0%206.42885714%2C0%20C2.878%2C0%200.000571428571%2C2.87771429%200%2C6.42828571%20C0.000571428571%2C9.97942857%202.878%2C12.8562857%206.42885714%2C12.8568571%20C7.93685714%2C12.8565714%209.32228571%2C12.336%2010.4185714%2C11.4668571%20L14.4945714%2C15.5425714%20C14.7522857%2C15.8002857%2015.1994286%2C15.7711429%2015.4934286%2C15.4774286%20C15.7868571%2C15.1834286%2015.816%2C14.7362857%2015.5585714%2C14.4788571%20L15.5585714%2C14.4788571%20L15.5585714%2C14.4788571%20Z%20M1.42857143%2C6.42828571%20C1.434%2C3.66714286%203.66771429%2C1.43314286%206.42885714%2C1.42857143%20C9.18971429%2C1.43314286%2011.4234286%2C3.66714286%2011.4288571%2C6.42828571%20C11.4234286%2C9.18971429%209.18971429%2C11.4237143%206.42885714%2C11.4282857%20C3.66771429%2C11.4237143%201.434%2C9.18971429%201.42857143%2C6.42828571%20L1.42857143%2C6.42828571%20L1.42857143%2C6.42828571%20Z%22%20id%3D%22Page-1%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-star{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2264px%22%20height%3D%2264px%22%20viewBox%3D%220%200%2064%2064%22%20enable-background%3D%22new%200%200%2064%2064%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M55.369%2C26.992c-0.085-0.261-0.391-0.867-1.395-0.867H38.27l-4.852-14.936c-0.311-0.955-0.983-1.058-1.257-1.058%20c-0.275%2C0-0.948%2C0.103-1.255%2C1.058l-4.854%2C14.936H10.349c-1.033%2C0-1.327%2C0.664-1.391%2C0.861c-0.068%2C0.204-0.227%2C0.916%2C0.613%2C1.528%20l12.706%2C9.231l-4.855%2C14.94c-0.21%2C0.66-0.039%2C1.09%2C0.139%2C1.33c0.4%2C0.553%2C1.244%2C0.62%2C1.895%2C0.142l12.706-9.23l12.703%2C9.229%20c0.314%2C0.229%2C0.621%2C0.343%2C0.939%2C0.343c0.387%2C0%2C0.735-0.176%2C0.961-0.483c0.178-0.246%2C0.346-0.679%2C0.135-1.334l-4.854-14.937%20l12.71-9.232C55.561%2C27.924%2C55.453%2C27.254%2C55.369%2C26.992z%20M40.21%2C36.503c-0.364%2C0.265-0.519%2C0.729-0.381%2C1.166l4.36%2C13.42%20l-11.42-8.297c-0.353-0.252-0.858-0.255-1.221%2C0.003L20.133%2C51.09l4.361-13.423c0.139-0.429-0.013-0.896-0.378-1.163L12.699%2C28.21%20H26.81c0.455%2C0%2C0.854-0.29%2C0.99-0.721l4.36-13.419l4.361%2C13.422c0.143%2C0.43%2C0.541%2C0.718%2C0.992%2C0.718h14.109L40.21%2C36.503z%22%2F%3E%3C%2Fsvg%3E)}.icon-star2{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2219px%22%20height%3D%2218px%22%20viewBox%3D%220%200%2019%2018%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20EPS%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-EPS%22%20sketch%3Atype%3D%22MSLayerGroup%22%20fill%3D%22%23000000%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9.16666667%2C3.76566667%20L10.893%2C7.26266667%20L11.76%2C7.389%20L14.752%2C7.82366667%20L11.9593333%2C10.546%20L12.6186667%2C14.3896667%20L9.16666667%2C12.575%20L5.715%2C14.3896667%20L6.37433333%2C10.546%20L3.58133333%2C7.82366667%20L6.57366667%2C7.389%20L7.44066667%2C7.26266667%20L9.16666667%2C3.76566667%20M9.16666667%2C0%20L6.334%2C5.73966667%20L0%2C6.66%20L4.58333333%2C11.128%20L3.50133333%2C17.4363333%20L9.16666667%2C14.458%20L14.832%2C17.4363333%20L13.75%2C11.128%20L18.3333333%2C6.66%20L11.9996667%2C5.73966667%20L9.16666667%2C0%22%20id%3D%22Page-1%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-twitter{background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1684%20408q-67%2098-162%20167%201%2014%201%2042%200%20130-38%20259.5t-115.5%20248.5-184.5%20210.5-258%20146-323%2054.5q-271%200-496-145%2035%204%2078%204%20225%200%20401-138-105-2-188-64.5t-114-159.5q33%205%2061%205%2043%200%2085-11-112-23-185.5-111.5t-73.5-205.5v-4q68%2038%20146%2041-66-44-105-115t-39-154q0-88%2044-163%20121%20149%20294.5%20238.5t371.5%2099.5q-8-38-8-74%200-134%2094.5-228.5t228.5-94.5q140%200%20236%20102%20109-21%20205-78-37%20115-142%20178%2093-10%20186-50z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E)}.icon-unchanged{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2215px%22%20height%3D%222px%22%20viewBox%3D%220%200%2015%202%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EFill%202%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Imported-Layers%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%280.000000%2C%20-16.000000%29%22%20fill%3D%22%23000000%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M0%2C16%20L15%2C16%20L15%2C18%20L0%2C18%20L0%2C16%20Z%22%20id%3D%22Fill-2%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-up{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%2211px%22%20height%3D%2213px%22%20viewBox%3D%220%200%2011%2013%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3EImported%20Layers%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M6%2C13%20L10%2C9%20C10.1175268%2C9.03540259%2010.1177677%2C8.28977286%2010%2C8%20C9.17683054%2C7.37033557%208.46257589%2C7.37033557%208%2C8%20L7%2C9%20L7%2C1%20C6.79196678%2C0.598434979%206.25284303%2C0%206%2C0%20C4.92213723%2C0%204.38301348%2C0.598434979%204%2C1%20L4%2C9%20L3%2C8%20C2.61604624%2C7.37033557%201.8290412%2C7.37033557%201%2C8%20C0.888585834%2C8.28977286%200.876300172%2C9.03540259%201%2C9%20L5%2C13%20C4.82987432%2C12.9062713%205.16327346%2C13.0160197%205%2C13%20C5.82477203%2C13.0160197%206.15817117%2C12.9062713%206%2C13%22%20id%3D%22Imported-Layers%22%20fill%3D%22%23000000%22%20sketch%3Atype%3D%22MSShapeGroup%22%20transform%3D%22translate%285.500000%2C%206.500000%29%20rotate%28-180.000000%29%20translate%28-5.500000%2C%20-6.500000%29%20%22%3E%3C%2Fpath%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E)}.icon-history{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='22px' height='22px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Estreamline-icon-interface-content-chart@20x20%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='streamline-icon-interface-content-chart@20x20' stroke='%23000000' stroke-width='1.42857143'%3E%3Crect id='Rectangle' transform='translate(10.000000, 10.000000) rotate(180.000000) translate(-10.000000, -10.000000) ' x='0.714285714' y='0.714285714' width='18.5714286' height='18.5714286' rx='1'%3E%3C/rect%3E%3Cline x1='4.28571429' y1='4.28571429' x2='7.14285714' y2='4.28571429' id='Path'%3E%3C/line%3E%3Cline x1='4.28571429' y1='7.85714286' x2='10.7142857' y2='7.85714286' id='Path'%3E%3C/line%3E%3Cpolyline id='Path' points='16.4285714 7.85714286 12.1428571 15 7.14285714 12.1428571 4.28571429 16.4285714'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-download{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='18px' height='20px' viewBox='0 0 18 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Edownload-svgrepo-com%3C/title%3E%3Cg id='Welcome' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop-HD' transform='translate(-197.000000, -433.000000)' fill='%23000000' fill-rule='nonzero'%3E%3Cg id='Group-2' transform='translate(158.000000, 424.000000)'%3E%3Cg id='download-svgrepo-com' transform='translate(39.000000, 9.000000)'%3E%3Cpath d='M8.89795918,0 C8.51020408,0 8.19591837,0.314285714 8.19591837,0.702040816 L8.19591837,14.2204082 L5.79591837,11.8204082 C5.52244898,11.5469388 5.07755102,11.5469388 4.80408163,11.8204082 C4.53061224,12.0938776 4.53061224,12.5387755 4.80408163,12.8122449 C4.98639456,12.9945578 6.18503401,14.1931973 8.4,16.4081633 C8.53469388,16.5428571 8.71428571,16.6122449 8.89387755,16.6122449 C9.07346939,16.6122449 9.25306122,16.5428571 9.3877551,16.4081633 L12.9836735,12.8122449 C13.2571429,12.5387755 13.2571429,12.0938776 12.9836735,11.8204082 C12.7102041,11.5469388 12.2653061,11.5469388 11.9918367,11.8204082 L9.59183673,14.2204082 L9.59183673,0.697959184 C9.59591837,0.310204082 9.28571429,0 8.89795918,0 Z' id='Path'%3E%3C/path%3E%3Cpath d='M17.7591837,19.3020408 L17.7591837,15.2326531 C17.7591837,14.844898 17.444898,14.5306122 17.0571429,14.5306122 C16.6693878,14.5306122 16.355102,14.844898 16.355102,15.2326531 L16.355102,18.6040816 L1.43673469,18.6040816 L1.43673469,15.2326531 C1.43673469,14.844898 1.12244898,14.5306122 0.73877551,14.5306122 C0.355102041,14.5306122 0.0367346939,14.844898 0.0367346939,15.2326531 L0.0367346939,19.3020408 C0.0367346939,19.6897959 0.351020408,20 0.73877551,20 L17.0571429,20 C17.444898,20 17.7591837,19.6897959 17.7591837,19.3020408 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-my-account{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='18px' height='18px' viewBox='0 0 18 18' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E1461959851582806320%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='1461959851582806320' fill='%23191919'%3E%3Cpath d='M9,1.5 C4.8578625,1.5 1.5,4.8578625 1.5,9 C1.5,10.92855 2.2273125,12.68685 3.4242,14.016225 C4.0501125,12.8178 5.3042325,12 6.75,12 L11.25,12 C12.695775,12 13.94985,12.8178 14.5758,14.016225 C15.77265,12.68685 16.5,10.92855 16.5,9 C16.5,4.8578625 13.1421,1.5 9,1.5 Z M13.39755,15.0762 C13.111425,14.162925 12.2577,13.5 11.25,13.5 L6.75,13.5 C5.742315,13.5 4.888605,14.162925 4.6024425,15.0762 C5.8379775,15.97215 7.35651,16.5 9,16.5 C10.643475,16.5 12.162,15.97215 13.39755,15.0762 Z M0,9 C0,4.029435 4.029435,0 9,0 C13.97055,0 18,4.029435 18,9 C18,11.806425 16.71465,14.313225 14.7033,15.96255 C13.15095,17.23545 11.16375,18 9,18 C6.836235,18 4.84902,17.23545 3.2967075,15.96255 C1.28538,14.313225 0,11.806425 0,9 Z M9,5.25 C7.74675,5.25 6.7365075,6.2605275 6.7365075,7.5 C6.7365075,8.73945 7.74675,9.75 9,9.75 C10.25325,9.75 11.2635,8.73945 11.2635,7.5 C11.2635,6.2605275 10.25325,5.25 9,5.25 Z M5.2365075,7.5 C5.2365075,5.4257625 6.9246525,3.75 9,3.75 C11.075325,3.75 12.7635,5.4257625 12.7635,7.5 C12.7635,9.5742 11.075325,11.25 9,11.25 C6.9246525,11.25 5.2365075,9.574275 5.2365075,7.5 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-my-account-w{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='18px' height='18px' viewBox='0 0 18 18' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E1461959851582806320%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='1461959851582806320' fill='%23DEDEDE'%3E%3Cpath d='M9,1.5 C4.8578625,1.5 1.5,4.8578625 1.5,9 C1.5,10.92855 2.2273125,12.68685 3.4242,14.016225 C4.0501125,12.8178 5.3042325,12 6.75,12 L11.25,12 C12.695775,12 13.94985,12.8178 14.5758,14.016225 C15.77265,12.68685 16.5,10.92855 16.5,9 C16.5,4.8578625 13.1421,1.5 9,1.5 Z M13.39755,15.0762 C13.111425,14.162925 12.2577,13.5 11.25,13.5 L6.75,13.5 C5.742315,13.5 4.888605,14.162925 4.6024425,15.0762 C5.8379775,15.97215 7.35651,16.5 9,16.5 C10.643475,16.5 12.162,15.97215 13.39755,15.0762 Z M0,9 C0,4.029435 4.029435,0 9,0 C13.97055,0 18,4.029435 18,9 C18,11.806425 16.71465,14.313225 14.7033,15.96255 C13.15095,17.23545 11.16375,18 9,18 C6.836235,18 4.84902,17.23545 3.2967075,15.96255 C1.28538,14.313225 0,11.806425 0,9 Z M9,5.25 C7.74675,5.25 6.7365075,6.2605275 6.7365075,7.5 C6.7365075,8.73945 7.74675,9.75 9,9.75 C10.25325,9.75 11.2635,8.73945 11.2635,7.5 C11.2635,6.2605275 10.25325,5.25 9,5.25 Z M5.2365075,7.5 C5.2365075,5.4257625 6.9246525,3.75 9,3.75 C11.075325,3.75 12.7635,5.4257625 12.7635,7.5 C12.7635,9.5742 11.075325,11.25 9,11.25 C6.9246525,11.25 5.2365075,9.574275 5.2365075,7.5 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-logout{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E20941844951543238901%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='20941844951543238901' transform='translate(1.000000, 1.000000)' stroke='%23191919' stroke-width='2'%3E%3Cpath d='M6,18 L2,18 C0.8954305,18 0,17.1045695 0,16 L0,2 C0,0.8954305 0.8954305,0 2,0 L6,0' id='Path'%3E%3C/path%3E%3Cpolyline id='Path' points='13 14 18 9 13 4'%3E%3C/polyline%3E%3Cline x1='18' y1='9' x2='6' y2='9' id='Path'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-logout-w{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E20941844951543238901%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='20941844951543238901' transform='translate(1.000000, 1.000000)' stroke='%23DEDEDE' stroke-width='2'%3E%3Cpath d='M6,18 L2,18 C0.8954305,18 0,17.1045695 0,16 L0,2 C0,0.8954305 0.8954305,0 2,0 L6,0' id='Path'%3E%3C/path%3E%3Cpolyline id='Path' points='13 14 18 9 13 4'%3E%3C/polyline%3E%3Cline x1='18' y1='9' x2='6' y2='9' id='Path'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-login{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E11460149911543238901%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='11460149911543238901' transform='translate(1.000000, 1.000000)' stroke='%23191919' stroke-width='2'%3E%3Cpath d='M12,0 L16,0 C17.1045695,0 18,0.8954305 18,2 L18,16 C18,17.1045695 17.1045695,18 16,18 L12,18' id='Path'%3E%3C/path%3E%3Cpolyline id='Path' points='7 14 12 9 7 4'%3E%3C/polyline%3E%3Cline x1='12' y1='9' x2='0' y2='9' id='Path'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-login-w{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E11460149911543238901%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='11460149911543238901' transform='translate(1.000000, 1.000000)' stroke='%23DEDEDE' stroke-width='2'%3E%3Cpath d='M12,0 L16,0 C17.1045695,0 18,0.8954305 18,2 L18,16 C18,17.1045695 17.1045695,18 16,18 L12,18' id='Path'%3E%3C/path%3E%3Cpolyline id='Path' points='7 14 12 9 7 4'%3E%3C/polyline%3E%3Cline x1='12' y1='9' x2='0' y2='9' id='Path'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-signup{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='18px' height='18px' viewBox='0 0 18 18' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E6836515911558965385%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='6836515911558965385' fill='%23191919' fill-rule='nonzero'%3E%3Cpath d='M12.4771429,15.5454545 L14,15.5454545 L14,16.9990909 C13.9826463,17.2693833 14.1238592,17.5265426 14.3666011,17.6666988 C14.609343,17.8068549 14.9135142,17.8068549 15.156256,17.6666988 C15.3989979,17.5265426 15.5402109,17.2693833 15.5228571,16.9990909 L15.5228571,15.5454545 L17.0485714,15.5454545 C17.4510093,15.5219122 17.7647643,15.2035023 17.7647643,14.8186364 C17.7647643,14.4337704 17.4510093,14.1153606 17.0485714,14.0918182 L15.5228571,14.0918182 L15.5228571,12.6354545 C15.4981937,12.2513093 15.1646215,11.9518159 14.7614286,11.9518159 C14.3582357,11.9518159 14.0246635,12.2513093 14,12.6354545 L14,14.0918182 L12.4771429,14.0918182 C12.1939793,14.0752533 11.9245744,14.2100475 11.7777441,14.4417556 C11.6309139,14.6734637 11.6309139,14.963809 11.7777441,15.1955171 C11.9245744,15.4272253 12.1939793,15.5620194 12.4771429,15.5454545 Z' id='Path'%3E%3C/path%3E%3Cpath d='M8.66571429,7.54636364 C6.56072041,7.54636364 4.85428571,5.91749415 4.85428571,3.90818182 C4.85428571,1.89886948 6.56072041,0.27 8.66571429,0.27 C10.7707082,0.27 12.4771429,1.89886948 12.4771429,3.90818182 C12.4755672,5.91687082 10.7700551,7.54485956 8.66571429,7.54636364 Z M8.66571429,1.72636364 C7.40334914,1.72636364 6.38,2.70319691 6.38,3.90818182 C6.38,5.11316673 7.40334914,6.09 8.66571429,6.09 C9.92807943,6.09 10.9514286,5.11316673 10.9514286,3.90818182 C10.9514286,3.32952766 10.7106129,2.77457367 10.2819584,2.36540339 C9.85330378,1.95623311 9.27192341,1.72636364 8.66571429,1.72636364 Z' id='Shape'%3E%3C/path%3E%3Cpath d='M9.42857143,16.2736364 L1.80857143,16.2736364 C1.81045082,13.7983225 3.27502415,11.5357679 5.59335164,10.4266967 C7.91167913,9.31762556 10.6871246,9.55178572 12.7657143,11.0318182 C12.8961529,11.1274174 13.055558,11.1800512 13.22,11.1818182 L13.22,11.1818182 C13.5502996,11.1791055 13.8418444,10.9752441 13.9441588,10.6754535 C14.0464732,10.3756629 13.9366726,10.046997 13.6714286,9.85909091 C12.0429206,8.69722189 10.0266562,8.14165262 8,8.29636364 C3.59428571,8.62363636 0.285714286,12.3081818 0.285714286,16.5272727 L0.285714286,16.9090909 C0.265007093,17.1159679 0.335487397,17.3217321 0.480230489,17.4769724 C0.624973581,17.6322127 0.8309042,17.7229056 1.04857143,17.7272727 L9.42857143,17.7272727 C9.84988579,17.7272727 10.1914286,17.4012546 10.1914286,16.9990909 L10.1914286,16.9990909 C10.1898548,16.5979927 9.84877253,16.2736336 9.42857143,16.2736364 L9.42857143,16.2736364 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-signup-w{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='18px' height='18px' viewBox='0 0 18 18' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E6836515911558965385%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='6836515911558965385' fill='%23DEDEDE' fill-rule='nonzero'%3E%3Cpath d='M12.4771429,15.5454545 L14,15.5454545 L14,16.9990909 C13.9826463,17.2693833 14.1238592,17.5265426 14.3666011,17.6666988 C14.609343,17.8068549 14.9135142,17.8068549 15.156256,17.6666988 C15.3989979,17.5265426 15.5402109,17.2693833 15.5228571,16.9990909 L15.5228571,15.5454545 L17.0485714,15.5454545 C17.4510093,15.5219122 17.7647643,15.2035023 17.7647643,14.8186364 C17.7647643,14.4337704 17.4510093,14.1153606 17.0485714,14.0918182 L15.5228571,14.0918182 L15.5228571,12.6354545 C15.4981937,12.2513093 15.1646215,11.9518159 14.7614286,11.9518159 C14.3582357,11.9518159 14.0246635,12.2513093 14,12.6354545 L14,14.0918182 L12.4771429,14.0918182 C12.1939793,14.0752533 11.9245744,14.2100475 11.7777441,14.4417556 C11.6309139,14.6734637 11.6309139,14.963809 11.7777441,15.1955171 C11.9245744,15.4272253 12.1939793,15.5620194 12.4771429,15.5454545 Z' id='Path'%3E%3C/path%3E%3Cpath d='M8.66571429,7.54636364 C6.56072041,7.54636364 4.85428571,5.91749415 4.85428571,3.90818182 C4.85428571,1.89886948 6.56072041,0.27 8.66571429,0.27 C10.7707082,0.27 12.4771429,1.89886948 12.4771429,3.90818182 C12.4755672,5.91687082 10.7700551,7.54485956 8.66571429,7.54636364 Z M8.66571429,1.72636364 C7.40334914,1.72636364 6.38,2.70319691 6.38,3.90818182 C6.38,5.11316673 7.40334914,6.09 8.66571429,6.09 C9.92807943,6.09 10.9514286,5.11316673 10.9514286,3.90818182 C10.9514286,3.32952766 10.7106129,2.77457367 10.2819584,2.36540339 C9.85330378,1.95623311 9.27192341,1.72636364 8.66571429,1.72636364 Z' id='Shape'%3E%3C/path%3E%3Cpath d='M9.42857143,16.2736364 L1.80857143,16.2736364 C1.81045082,13.7983225 3.27502415,11.5357679 5.59335164,10.4266967 C7.91167913,9.31762556 10.6871246,9.55178572 12.7657143,11.0318182 C12.8961529,11.1274174 13.055558,11.1800512 13.22,11.1818182 L13.22,11.1818182 C13.5502996,11.1791055 13.8418444,10.9752441 13.9441588,10.6754535 C14.0464732,10.3756629 13.9366726,10.046997 13.6714286,9.85909091 C12.0429206,8.69722189 10.0266562,8.14165262 8,8.29636364 C3.59428571,8.62363636 0.285714286,12.3081818 0.285714286,16.5272727 L0.285714286,16.9090909 C0.265007093,17.1159679 0.335487397,17.3217321 0.480230489,17.4769724 C0.624973581,17.6322127 0.8309042,17.7229056 1.04857143,17.7272727 L9.42857143,17.7272727 C9.84988579,17.7272727 10.1914286,17.4012546 10.1914286,16.9990909 L10.1914286,16.9990909 C10.1898548,16.5979927 9.84877253,16.2736336 9.42857143,16.2736364 L9.42857143,16.2736364 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-search-close{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='36px' height='36px' viewBox='0 0 36 36' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Eclose-svgrepo-com%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='close-svgrepo-com' fill='%23191919' fill-rule='nonzero'%3E%3Cpolygon id='Path' points='35.9254839 2.05287097 33.8727097 0 17.9627419 15.909871 2.05287097 0 0 2.05287097 15.909871 17.9627419 0 33.8727097 2.05287097 35.9254839 17.9627419 20.0156129 33.8727097 35.9254839 35.9254839 33.8727097 20.0156129 17.9627419'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-social-facebook{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EFill 183%3C/title%3E%3Cg id='Welcome' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop-HD-Copy' transform='translate(-146.000000, -6203.000000)'%3E%3Cg id='Footer-Copy' transform='translate(0.000000, 6091.000000)'%3E%3Crect id='Rectangle' fill='%231A1A1A' x='0' y='0' width='1440' height='300'%3E%3C/rect%3E%3Cg id='Footer-Social-Icons' transform='translate(146.000000, 112.000000)' fill='%23BDBDBD'%3E%3Cpath d='M20.155,10.656 L18.649,10.657 C17.468,10.657 17.239,11.218 17.239,12.041 L17.239,13.857 L20.056,13.857 L19.689,16.702 L17.239,16.702 L17.239,24 L14.302,24 L14.302,16.702 L11.846,16.702 L11.846,13.857 L14.302,13.857 L14.302,11.76 C14.302,9.325 15.789,8 17.96,8 C19,8 19.894,8.077 20.155,8.112 L20.155,10.656 Z M16,0 C7.164,0 0,7.163 0,16 C0,24.836 7.164,32 16,32 C24.837,32 32,24.836 32,16 C32,7.163 24.837,0 16,0 L16,0 Z' id='Fill-183'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-social-twitter{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath%3C/title%3E%3Cg id='Welcome' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop-HD-Copy' transform='translate(-193.000000, -6203.000000)'%3E%3Cg id='Footer-Copy' transform='translate(0.000000, 6091.000000)'%3E%3Crect id='Rectangle' fill='%231A1A1A' x='0' y='0' width='1440' height='300'%3E%3C/rect%3E%3Cg id='Footer-Social-Icons' transform='translate(146.000000, 112.000000)' fill='%23BDBDBD'%3E%3Cpath d='M69.362,12.737 C69.368,12.878 69.372,13.019 69.372,13.162 C69.372,17.499 66.07,22.501 60.032,22.501 C58.178,22.501 56.453,21.958 55,21.027 C55.257,21.057 55.518,21.072 55.783,21.072 C57.321,21.072 58.736,20.548 59.86,19.667 C58.423,19.641 57.211,18.692 56.793,17.388 C56.994,17.426 57.199,17.446 57.411,17.446 C57.71,17.446 58,17.406 58.276,17.331 C56.774,17.03 55.643,15.703 55.643,14.113 L55.643,14.071 C56.085,14.317 56.592,14.465 57.13,14.482 C56.249,13.893 55.669,12.888 55.669,11.75 C55.669,11.148 55.831,10.584 56.114,10.099 C57.733,12.085 60.152,13.392 62.88,13.529 C62.824,13.289 62.795,13.038 62.795,12.781 C62.795,10.968 64.265,9.498 66.077,9.498 C67.022,9.498 67.875,9.897 68.473,10.535 C69.221,10.388 69.924,10.115 70.558,9.739 C70.313,10.505 69.792,11.148 69.115,11.555 C69.779,11.475 70.411,11.299 71,11.038 C70.56,11.696 70.003,12.274 69.362,12.737 M63,0 C54.163,0 47,7.163 47,16 C47,24.836 54.163,32 63,32 C71.837,32 79,24.836 79,16 C79,7.163 71.837,0 63,0' id='Fill-184'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-social-youtube{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EGroup%3C/title%3E%3Cg id='Welcome' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop-HD-Copy' transform='translate(-240.000000, -6203.000000)'%3E%3Cg id='Footer-Copy' transform='translate(0.000000, 6091.000000)'%3E%3Crect id='Rectangle' fill='%231A1A1A' x='0' y='0' width='1440' height='300'%3E%3C/rect%3E%3Cg id='Footer-Social-Icons' transform='translate(146.000000, 112.000000)' fill='%23BDBDBD'%3E%3Cg id='Group' transform='translate(94.000000, 0.000000)'%3E%3Cpath d='M24,16.604 C24,17.899 23.84,19.194 23.84,19.194 C23.84,19.194 23.684,20.296 23.204,20.782 C22.596,21.419 21.914,21.422 21.601,21.459 C19.362,21.621 16,21.626 16,21.626 C16,21.626 11.84,21.588 10.56,21.466 C10.204,21.399 9.404,21.419 8.796,20.782 C8.316,20.296 8.16,19.194 8.16,19.194 C8.16,19.194 8,17.899 8,16.604 L8,15.39 C8,14.095 8.16,12.801 8.16,12.801 C8.16,12.801 8.316,11.698 8.796,11.212 C9.404,10.575 10.086,10.572 10.399,10.535 C12.638,10.373 15.997,10.373 15.997,10.373 L16.003,10.373 C16.003,10.373 19.362,10.373 21.601,10.535 C21.914,10.572 22.596,10.575 23.204,11.212 C23.684,11.698 23.84,12.801 23.84,12.801 C23.84,12.801 24,14.095 24,15.39 L24,16.604 Z M16,7.10542736e-15 C7.163,7.10542736e-15 0,7.163 0,16 C0,24.836 7.163,32 16,32 C24.837,32 32,24.836 32,16 C32,7.163 24.837,7.10542736e-15 16,7.10542736e-15 L16,7.10542736e-15 Z' id='Fill-207'%3E%3C/path%3E%3Cpolygon id='Fill-208' points='14.3482 18.075 18.6712 15.835 14.3472 13.579'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-social-linkedin{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EFill 209%3C/title%3E%3Cg id='Welcome' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop-HD-Copy' transform='translate(-287.000000, -6203.000000)'%3E%3Cg id='Footer-Copy' transform='translate(0.000000, 6091.000000)'%3E%3Crect id='Rectangle' fill='%231A1A1A' x='0' y='0' width='1440' height='300'%3E%3C/rect%3E%3Cg id='Footer-Social-Icons' transform='translate(146.000000, 112.000000)' fill='%23BDBDBD'%3E%3Cpath d='M165,23.985 L161.685,23.985 L161.685,18.797 C161.685,17.56 161.663,15.969 159.962,15.969 C158.237,15.969 157.974,17.317 157.974,18.709 L157.974,23.985 L154.662,23.985 L154.662,13.317 L157.84,13.317 L157.84,14.776 L157.886,14.776 C158.328,13.937 159.41,13.052 161.023,13.052 C164.38,13.052 165,15.261 165,18.134 L165,23.985 Z M150.924,11.86 C149.859,11.86 149,10.998 149,9.937 C149,8.876 149.859,8.014 150.924,8.014 C151.984,8.014 152.845,8.876 152.845,9.937 C152.845,10.998 151.984,11.86 150.924,11.86 L150.924,11.86 Z M152.582,23.985 L149.263,23.985 L149.263,13.317 L152.582,13.317 L152.582,23.985 Z M157,5.32907052e-15 C148.163,5.32907052e-15 141,7.163 141,16 C141,24.836 148.163,32 157,32 C165.837,32 173,24.836 173,16 C173,7.163 165.837,5.32907052e-15 157,5.32907052e-15 L157,5.32907052e-15 Z' id='Fill-209'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.icon-rss-feed{background-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='20px' height='21px' viewBox='0 0 20 21' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EFill 272%3C/title%3E%3Cg id='Welcome' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop-HD-Copy' transform='translate(-656.000000, -6155.000000)'%3E%3Cg id='Footer-Copy' transform='translate(0.000000, 6091.000000)'%3E%3Crect id='Rectangle' fill='%231A1A1A' x='0' y='0' width='1440' height='300'%3E%3C/rect%3E%3Cg id='Group-5' transform='translate(656.000000, 64.000000)' fill='%23BDBDBD'%3E%3Cpath d='M13.46125,16 C13.46125,10.8678125 9.665625,6.692625 5,6.692625 L5,5 C10.51375,5 15,9.934875 15,16 L13.46125,16 Z M10.3683463,16 C10.3683463,13.0399659 7.96031445,10.6321621 5,10.6321621 L5,9 C8.86001137,9 12,12.1403542 12,16 L10.3683463,16 Z M6.49967832,16 C5.6716706,16 5,15.3284734 5,14.5 C5,13.6715266 5.6716706,13 6.49967832,13 C7.3283294,13 8,13.6715266 8,14.5 C8,15.3284734 7.3283294,16 6.49967832,16 L6.49967832,16 Z M10,0 C4.476875,0 0,4.70071875 0,10.5 C0,16.2992812 4.476875,21 10,21 C15.5225,21 20,16.2992812 20,10.5 C20,4.70071875 15.5225,0 10,0 L10,0 Z' id='Fill-272'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}#shadow{zoom:1;-webkit-opacity:.85;-moz-opacity:.85;opacity:.85;filter:alpha(opacity=85);background:#121212;left:0;top:0;width:100%;height:100%;z-index:1000}#shadow.search-shadow{top:70px}.overlay{width:500px;border:1px solid #DADADA;background:#FFF;top:80px;left:50%;margin-left:-250px;padding:24px;-webkit-box-shadow:3px 3px 3px #777;-moz-box-shadow:3px 3px 3px #777;box-shadow:3px 3px 3px #777;z-index:1100}@media screen and (max-width:768px){.overlay{width:100%;margin-left:0;top:0;left:0;height:100%}}.overlay .overlay-close{position:absolute;top:14px;right:14px;cursor:pointer}.overlay .overlay-level-2 .menu-header-container{padding:0 0 10px;margin:0 0 18px;border-bottom:1px solid #E4E4E4}#login-screen,#signup-screen{margin-left:-190px;height:auto}.overlay .overlay-level-2 .menu-header-container .overlay-label{color:#555;font-size:20px;font-weight:700;margin-right:8px;margin-top:0;margin-bottom:0;display:block}#derivative-holdings-1,.subsection-header-2 .full-title-part,.transaction-listing.sortable th .arrows.hide,.transaction-listing.sortable th.ascending .down,.transaction-listing.sortable th.descending .up,.transaction-listing.sortable th[data-sortable=false] .arrows{display:none}.overlay .overlay-level-2 .menu-header-container p{font-size:14px;position:relative;top:6px}.overlay .overlay-level-3 .instruction{font-size:14px;font-weight:700;margin-bottom:10px;line-height:1.4em}.overlay .messages .message{background-color:#FCF6F2;border:1px solid #DADADA;padding:8px 8px 0;margin-bottom:10px}.overlay .messages .message p{font-size:14px;margin-top:0;line-height:1.5em}.overlay .messages .message p a{font-weight:700}.overlay .submit-row{margin-top:12px}.overlay .validated-form{margin-bottom:0}.overlay .validated-form .checkboxes-row,.overlay .validated-form .input-container .validated-input input{width:300px}.overlay .validated-form .button-container{margin-bottom:24px}.overlay .validated-form .input-container.privacy-policy-row{margin-bottom:0}#apply-coupon-screen{width:320px;margin-left:-160px}#login-screen{width:380px}#login-screen .social-login-section #google-signin-button,#login-screen .validated-form .checkboxes-row{width:100%}#login-screen .validated-form .input-container .validated-input input{width:100%;margin-right:0}#signup-screen{width:380px}#signup-screen .social-login-section #google-signin-button,#signup-screen .validated-form .checkboxes-row{width:100%}#signup-screen .validated-form .input-container .validated-input input{width:100%;margin-right:0}.transaction-listing{width:100%;border-collapse:collapse;empty-cells:show;white-space:normal}.transaction-listing .explanation{width:35%}.transaction-listing .prev-rank{color:#AAA;margin-bottom:1px;margin-top:-4px;font-size:14px}.transaction-listing .date-col{width:15%}.transaction-listing .remaning-holdings-col{width:17%}.transaction-listing .company-col{width:15%}.transaction-listing .relationship-col{width:14%}.transaction-listing .inline-icon{vertical-align:initial}.transaction-listing th{color:#FFF;text-align:right;font-size:14px;border:1px solid #DADADA;font-weight:400;padding:8px;line-height:1.5em;height:auto!important;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNkODI2MDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I3MjAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=) #d82600;background-image:-webkit-linear-gradient(top,#d82600 0,#b72000 100%);background-image:-moz-linear-gradient(top,#d82600 0,#b72000 100%);background-image:-o-linear-gradient(top,#d82600 0,#b72000 100%);background-image:linear-gradient(to bottom,#d82600 0,#b72000 100%)}.transaction-listing th.left-aligned,.transaction-listing tr td.left-aligned{text-align:left!important}.transaction-listing thead tr{height:40px}.transaction-listing tr{text-align:left;color:#232323;margin-bottom:3px;vertical-align:top}.transaction-listing tr.odd{background-color:#FAFCFA}@media (min-width:1026px){.transaction-listing tr:hover{background-color:#FFFDCF}}.transaction-listing tr td{height:54px;line-height:28px;font-size:15px;border:1px solid #DADADA;font-weight:400;padding:12px 8px;position:relative;text-align:right}@media (min-width:992px) and (max-width:1260px){.transaction-listing tr td{font-size:14px}}.transaction-listing tr td .inline-icon{position:relative;top:1px}.transaction-listing tr td .icon-history{top:3px}.transaction-listing tr td .icon-star2{top:4px}.transaction-listing tr td .icon-unchanged{top:-3px;right:2px}.transaction-listing tr td .icon-removed{top:2px;right:1px}.transaction-listing tr td .name span{padding-left:0}.transaction-listing tr td .name .label-yellow{padding:3px 5px;margin-left:5px;background-color:#FED04E;font-size:12px;font-weight:700;color:#1A1A1A}.transaction-listing tr td .name .label-green{padding:3px 5px;margin-left:5px;background-color:#228B22;font-size:12px;font-weight:700;color:#FFF}.transaction-listing tr td .name .label-red{padding:3px 5px;margin-left:5px;background-color:#d82600;font-size:12px;font-weight:700;color:#FFF}.transaction-listing tr td a{border-bottom:solid 1px #c4d0dc;color:#144574;font-weight:600}.transaction-listing tr td a:hover{text-decoration:none;border-bottom:solid 1px #144574}.transaction-listing tr td.history-col{text-align:center}.transaction-listing tr td.history-col a{text-decoration:none;border:none}.transaction-listing .activity-col{width:13%;text-align:right;padding-right:4px}.transaction-listing .name p{margin-bottom:5px;margin-top:6px;font-size:14px}.transaction-listing.sortable th.ascending .up,.transaction-listing.sortable th.descending .down{margin-top:-3px}.transaction-listing .list-rank{width:30px!important}.transaction-listing.sortable .down,.transaction-listing.sortable .up{right:4px;top:50%;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent}.transaction-listing.sortable th{cursor:pointer;position:relative;padding-right:16px;vertical-align:middle}.transaction-listing.sortable th[data-sortable=false]{cursor:default}.transaction-listing.sortable th.ascending .field-name,.transaction-listing.sortable th.descending .field-name{border-bottom:solid 1px rgba(210,210,210,.7)}.transaction-listing.sortable .up{position:absolute;margin-top:-6px;border-bottom:4px solid #F9F9F9}.transaction-listing.sortable .down{position:absolute;margin-top:0;border-top:4px solid #F9F9F9}#fund-rankings-table.transaction-listing thead tr{height:40px}#fund-rankings-table.transaction-listing tr.even,#fund-rankings-table.transaction-listing tr.odd,.company-page #stock-holdings-table tr td{height:84px}@media only screen and (max-width:767px){#fund-filings-13dg .pinned,#fund-holdings .pinned,#fund-rankings .pinned,#small-fund-holdings .pinned,.holding-history-page .pinned{width:50px!important}#fund-filings-13dg .scrollable,#fund-holdings .scrollable,#fund-rankings .scrollable,#small-fund-holdings .scrollable,.holding-history-page .scrollable{margin-left:50px!important}}.activity-col .down-ico,.activity-col .up-ico{margin-left:3px;float:right;margin-top:2px}.listing-end{z-index:100;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMTUlIiBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwLjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);background-image:-webkit-linear-gradient(bottom,#FFF 15%,rgba(255,255,255,.1) 100%);background-image:-moz-linear-gradient(bottom,#FFF 15%,rgba(255,255,255,.1) 100%);background-image:-o-linear-gradient(bottom,#FFF 15%,rgba(255,255,255,.1) 100%);background-image:linear-gradient(to top,#FFF 15%,rgba(255,255,255,.1) 100%);height:54px;width:100%}#fund-manager-label-container{position:absolute}#fund-manager-label-container img{display:block;margin:0 0 0 20px}#fund-manager-label{background-color:#000;color:#FFF;height:35px;padding:10px 15px}.content{margin-right:auto;margin-left:auto;min-height:1000px;margin-top:20px}.content .middle-subcol-0,.content .middle-subcol-1,.content .middle-subcol-1.full-page,.content .middle-subcol-2,.middle-premium-content-col,.middle-premium-content-wide-col,.middle-subcol-1,.middle-subcol-2{min-height:1px;padding-left:10px;padding-right:10px;position:relative}@media (min-width:768px){.content{width:740px}}@media (min-width:992px){.content{width:960px}}@media (min-width:1260px){.content{width:1260px}}@media (min-width:480px){.content .middle-subcol-1,.content .middle-subcol-2{float:left;width:100%}}@media (min-width:992px){.content .middle-subcol-0{float:left;width:100%}.content .middle-subcol-1{float:left;width:66.66666667%}.content .middle-subcol-1.full-page{float:left;width:100%}.content .middle-subcol-2{float:left;width:33.33333333%}}.middle-col{margin-left:-10px;margin-right:-10px}@media (min-width:480px){.middle-subcol-1{float:left;width:66.66666667%}.middle-subcol-2{float:left;width:33.33333333%}}@media (min-width:768px){.middle-premium-content-col{float:left;width:66.66666667%;margin-left:16.66666667%}.middle-premium-content-wide-col{float:left;width:100%}}@media (max-width:768px){.content{padding-left:15px;padding-right:15px}}.extended-middle-subcol-1,.extended-middle-subcol-1.keep-large,.full-width,.middle-subcol-login,.narrow-middle-subcol-2,.narrow-middle-subcol-2.keep-large{min-height:1px;padding-left:10px}@media (min-width:1025px){.content .middle-subcol-1{padding-right:0}}.full-width{position:relative;padding-right:10px}.section-header{display:flex;justify-content:space-between;width:100%;padding:10px 0;border-bottom:solid 1px #DADADA;margin-bottom:10px;position:relative}.section-header.right-aligned{justify-content:flex-end}.section-header .spanh1,.section-header h1,.section-header h3{font-size:16px;color:#cb3a1b;font-weight:600;text-transform:capitalize}.article-page .post,.article-page .single-post-pagination-controls .multipage-container,.article-page .user-message p,.body-with-simple-header .thank-you-content h1,.body-with-simple-header .thank-you-content h2,.headlines .post .entry,.related-news .post-content .entry,.section-header .advance-link a{font-family:proxima-nova,proxima-nova-fallback,Arial,sans-serif}.section-header .spanh1.with-uppercase{text-transform:uppercase}.section-header .page-title{font-size:24px;font-weight:600}.section-header h2{font-size:14px;color:#6A6A6A}.section-header .advance-link{padding-right:8px}.section-header .advance-link a{font-size:14px;color:#144574;font-weight:600}.section-header .advance-link a:hover{text-decoration:underline}.section-header .advance-link:hover{color:#cb3a1b}.section-header .advance-link span{font-size:12px;color:#6A6A6A}.section-header .right{font-size:16px;line-height:1.1em}.section-header .smaller-link{font-size:15px;line-height:1.4em}.section-header.tab-view{margin-bottom:-1px;border-bottom:0}.section,.subsection{margin-bottom:15px}.section-header.tab-view .spanh1{padding:10px;border:1px solid #DADADA;border-bottom:1px solid #FFF;background:#FFF}.section.box{padding:10px;border:1px solid #DADADA}.subsection.sec-13-dg-filing{padding:10px;border:1px solid #ddd;background-color:#fafcfa}.section-nav,.subsection-flex-header,.subsection-header,.subsection-header-2{border-bottom:solid 1px #DADADA;width:100%}.subsection .summary-disclaimer{margin-bottom:10px}.subsection p{line-height:22px;margin-bottom:8px;font-size:15px}.subsection-header{padding:8px 0;color:#1A1A1A;margin-bottom:8px;font-size:14px}.subsection-header h1,.subsection-header span{font-weight:600;font-size:14px}.subsection-header .input-label{color:#1A1A1A;font-weight:700;margin-right:6px}.subsection-header a{text-align:right;text-decoration:none;font-size:14px;font-weight:400}.subsection-header a:hover{text-decoration:underline}.subsection-header-2{color:#cb3a1b;margin-bottom:8px;padding-bottom:8px;padding-top:5px;font-size:16px;font-weight:600}.subsection-header-2 .browse-alphabetic{top:5px}.subsection-header-2 .call-for-login span.seperator{margin-left:5px;top:1px}@media (min-width:480px){.full-width{float:left;width:100%}.subsection-header-2 .full-title-part{display:inline}}.subsection-flex-header{display:flex;justify-content:space-between;align-items:center;font-size:16px;color:#cb3a1b;margin-bottom:8px;padding-bottom:10px}@media (max-width:768px){.subsection-flex-header{display:block}.subsection-flex-header h2{margin-bottom:12px}.narrow-middle-subcol-2{text-align:center}}.subsection-flex-header h2{font-size:16px}.subsection-flex-header h2 .label-yellow{padding:3px 5px;background-color:#FED04E;font-weight:700;color:#1A1A1A}.subsection-flex-header h2 .label-green{padding:3px 5px;background-color:#228B22;font-weight:700;color:#FFF}.subsection-flex-header h2 .label-red{padding:3px 5px;background-color:#d82600;font-weight:700;color:#FFF}.subsection-flex-header label{margin-bottom:0}.section-nav{overflow:hidden;background-color:#FFF;position:relative;margin-bottom:10px;margin-top:-10px}.section-nav.md-below{padding-left:0;padding-right:0}@media (max-width:480px){.section-nav.md-below{padding-right:0}}.section-nav ul{display:flex;justify-content:flex-start;margin-left:0;margin-bottom:0}.section-nav ul li{font-weight:700;font-size:15px;margin-right:24px}.section-nav ul span{color:#555}.section-nav ul a,.section-nav ul span{padding:8px 0;display:inline-block}.section-nav ul li.selected a,.section-nav ul li.selected span{height:auto;color:#000;font-weight:700;border-bottom:solid 2px #000}.middle-subcol-2 .section-header{padding:10px 0 5px}.middle-subcol-2 .section-header.tab-view{padding:10px 0 0}.extended-middle-subcol-1,.extended-middle-subcol-1.keep-large,.middle-subcol-login,.narrow-middle-subcol-2,.narrow-middle-subcol-2.keep-large{padding-right:10px;position:relative}.related-news{padding-top:10px}.related-news .small-headline-post{border-bottom:solid 1px #DADADA;padding-bottom:10px}.related-news .small-headline-post h2{font-size:21px;line-height:34px;margin-bottom:8px}.related-news .thumbnail{flex-basis:70px;flex-grow:0;flex-shrink:0}.related-news .post-content .entry{font-size:16px;line-height:1.5em;font-weight:500}.related-news .post-content .entry a{font-weight:600}.article-links .article-link{margin-bottom:12px}.article-links .article-link a{line-height:20px;font-size:15px}.article-links .article-link a:hover{text-decoration:none;color:#cb3a1b;border-bottom:solid 1px #cb3a1b}.article-links .article-link h4 a{color:#555}.article-links .article-link h4{margin-bottom:6px}.article-links .article-link p{font-size:15px}.article-links .article-link.sponsor-link a{font-size:16px;font-weight:700;font-family:proxima-nova-condensed,"Proxima Nova Condensed Fallback",Arial,sans-serif}.article-links .article-link.sponsor-link a:hover{text-decoration:none;color:#cb3a1b;border:none}@media (min-width:768px){.extended-middle-subcol-1{float:left;width:75%}}@media (min-width:992px){.extended-middle-subcol-1{float:left;width:83.33333333%}}.narrow-middle-subcol-2{padding-top:15px}@media (min-width:768px){.narrow-middle-subcol-2{float:left;width:25%}}@media (min-width:992px){.narrow-middle-subcol-2{float:left;width:16.66666667%}}@media (min-width:768px){.extended-middle-subcol-1.keep-large{float:left;width:100%}}@media (min-width:992px){.extended-middle-subcol-1.keep-large{float:left;width:83.33333333%}}@media (min-width:768px){.narrow-middle-subcol-2.keep-large{float:left;width:100%}}@media (min-width:992px){.narrow-middle-subcol-2.keep-large{float:left;width:16.66666667%}}.middle-subcol-login{max-width:480px;margin:0 auto;float:none!important}@media (min-width:768px){.middle-subcol-login{float:left;width:50%}}.social-login-section{margin-bottom:0}.social-login-section .login-seperator{padding-top:15px;font-size:18px;padding-bottom:13px;text-align:center;margin-bottom:0}.social-login-section .login-seperator hr{margin:0;position:relative;top:14px;color:#555}.social-login-section .login-seperator span{padding:0 10px;position:relative;color:#6a6a6a;background-color:#FFF}.social-login-section .google-signin-button{display:inline-block;background:#fff;color:#444;width:100%;border-radius:5px;border:thin solid #888;box-shadow:1px 1px 1px grey;white-space:nowrap;text-align:center}@media (max-width:992px){.social-login-section .google-signin-button{width:100%;margin-right:0;max-width:none}}.social-login-section .google-signin-button:hover{cursor:pointer}.social-login-section .google-signin-button:active{position:relative;top:1px}.social-login-section .google-signin-button span.label{font-family:serif;font-weight:400}.social-login-section .google-signin-button span.icon{background:url(https://cdn1.insidermonkey.com/img/g-normal.png) 5px 50% no-repeat;display:inline-block;vertical-align:middle;width:42px;height:42px;position:relative;left:-5px}.social-login-section .google-signin-button span.buttonText{display:inline-block;vertical-align:middle;font-size:16px;font-weight:700;position:relative;left:-5px}.ad-horizontal-top-wrapper{width:100%;background:#FFF;text-align:center;z-index:100;padding-top:20px}@media (min-width:1024px){.ad-horizontal-top-wrapper{padding-top:68px}}.ad-horizontal-top{margin:0 auto 15px;max-width:100vw;text-align:center;overflow:hidden;min-height:110px;display:flex;justify-content:center}@media (max-width:1024px){.post-single .ad-horizontal-top{min-height:250px}}.apartment-ad{margin:20px auto;text-align:center}.apartment-ad iframe{margin:0 auto}.apartment-ad.narrow-sidebar-ad{z-index:100;display:flex;justify-content:center}.blog-right-col .section{margin-bottom:20px}.position-ad{margin-top:6px}.investor-letters{background-color:#FCF6F2;padding:0 8px 8px;font-size:14px;margin-top:20px;border:1px solid #DADADA}.investor-letters p{margin-top:10px}#NmWgList{padding-top:10px!important;padding-right:10px!important}#NmWgList li{margin-bottom:12px!important;font-size:14px!important;font-weight:600!important;margin-left:10px!important;padding:0!important}#NmWgList li a{color:#555!important;font-size:14px!important;line-height:22px!important;padding-bottom:3px!important;border-bottom:solid 1px #DADADA!important;font-weight:700!important}#NmWgList li a:hover{color:#cb3a1b!important}@media (max-width:480px){body .pw-layout-horizontal .button-type-looknative,body .pw-layout-horizontal .ra1-pw-originalbuttons{margin-right:3px!important}body .pw-button{margin-bottom:5px!important}}.imonkey-ad-widget{display:flex;justify-content:center;margin:15px 0;text-align:center;z-index:1000}.imonkey-ad-widget>.icADSlot{background:#F9F9F9;display:block;padding:15px 0}@media (min-width:1260px){.imonkey-ad-widget>.icADSlot{padding:25px 0}}#buttons-ad.imonkey-ad-widget>span{background:#FFF;padding:0}@media (min-width:768px){.ad-horizontal-top{min-height:250px;width:970px}.blog-content-container .imonkey-ad-widget>span{background:#FFF}#imonkey-home #IC_d_300x250_1{min-height:300px}}.content-pack .jwplayer{margin:0 auto}.bxc.bx-base .bx-row-submit .bx-button{visibility:inherit}.google-auto-placed.ap_container{margin-bottom:25px}.tradingstrip-container{width:300px;height:60px;position:absolute;right:0;top:0}@media (max-width:767px){.tradingstrip-container{position:static}}#ic_refreshed .mini-thumbnail{background:url(https://d2gr5kl7dt2z3t.cloudfront.net/blog/wp-content/uploads/2020/11/03073557/lo-lo-CeVj8lPBJSc-unsplash-160x160.jpg);background-size:contain}.related-news div[id*=investingchannel_div]{padding-bottom:15px!important;margin-bottom:0!important;border-bottom:0!important}.single-content>div[id*=investingchannel_div]{margin-bottom:20px!important}#ic-leaderboard div[id*=investingchannel_div],#sidebar-ad-1>div{text-align:center!important}.company-page .middle-subcol-1>div[id*=investingchannel_div]{margin-bottom:15px!important}.hedge-fund>.section>#IC_D_3x7_2{margin-bottom:15px}#sidebar-ad-2{display:none}@media (min-width:1024px){#sidebar-ad-2{display:block}}.archive-banner-ad,.related-news-banner-ad{display:block;margin:20px auto}.cnx-main-container-flex{margin:0 auto}.headlines{background-color:#FFF;vertical-align:top}.headlines.home-section{margin-top:10px}.headlines .small-headline-post{display:flex;margin-bottom:20px}.headlines .small-headline-post h1,.headlines .small-headline-post h2{font-weight:600;font-size:18px;line-height:28px}.headlines .small-headline-post .postmetadata{font-size:12px}.headlines .small-headline-post .mini-thumbnail{width:72px;height:70px}.headlines .big-headline-post{position:relative;min-height:1px;padding-left:10px;padding-right:10px;border-bottom:0}@media (min-width:480px){.headlines .big-headline-post{float:left;width:100%}}@media (min-width:600px){.headlines .big-headline-post{position:relative;min-height:1px;padding-left:10px;padding-right:10px}}@media (min-width:600px) and (min-width:480px){.headlines .big-headline-post{float:left;width:50%}}.headlines .big-headline-post h1,.headlines .big-headline-post h2{font-size:24px;line-height:36px;font-weight:600;margin-bottom:0}.headlines .big-headline-post .thumbnail{margin-bottom:15px;text-align:center;border:0;padding:0}.headlines .big-headline-post .thumbnail img{margin-left:0;width:400px;height:400px}.headlines .big-headline-post .thumbnail.small-thumbnail img{width:120px;height:103px}@media (min-width:992px){.headlines .big-headline-post .thumbnail{text-align:left}}.headlines .keep-reading{margin:8px 0 10px}.headlines .keep-reading a{font-size:16px;font-weight:600}.headlines .keep-reading a:hover{border-bottom:solid 1px #144574;text-decoration:none}.headlines .other-posts{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media (min-width:480px){.headlines .other-posts{float:left;width:100%}}@media (min-width:600px){.headlines .other-posts{position:relative;min-height:1px;padding-left:10px;padding-right:10px}}@media (min-width:600px) and (min-width:480px){.headlines .other-posts{float:left;width:50%}}.headlines .other-posts .small-headline-post{border-bottom:0}.headlines .last-child{padding-bottom:0;border-bottom:none}.headlines .post-title a{color:#555;border-bottom:solid 1px #DADADA}.headlines .post-title a:hover{color:#cb3a1b;border-bottom:solid 1px #cb3a1b;text-decoration:none}.headlines .post{color:#1A1A1A;margin-bottom:15px}.headlines .post .entry{font-size:15px;line-height:25px;color:#555}.article-page .single-post-title .categories,.article-page .single-post-title h1,.list-posts-widget .list-post .title{font-family:proxima-nova-condensed,"Proxima Nova Condensed Fallback",Arial,sans-serif}.headlines .post .postmetadata{font-size:12px;margin-top:5px;color:#6A6A6A;font-weight:600;text-decoration:none;letter-spacing:1.3px;line-height:1.5em}.headlines .post .postmetadata a{color:#144574;font-size:12px;font-weight:600}.headlines .post .postmetadata a:hover{border-bottom:solid 1px #144574;text-decoration:none}.headlines .post .mini-thumbnail{margin-right:15px;border:1px solid #DADADA;-webkit-box-shadow:0 8px 6px -6px #000;-moz-box-shadow:0 8px 6px -6px #000;box-shadow:0 8px 6px -6px #000;padding:0}.headlines .big-headline-post2,.headlines .other-posts2,.hedge-funds-home .education-center-section .big-headline-post2,.hedge-funds-home .education-center-section .other-posts2,.insider-trading-home .education-center-section .big-headline-post2,.insider-trading-home .education-center-section .other-posts2{min-height:1px;padding-left:10px;padding-right:10px;position:relative}.headlines .post .thumbnail img{border-style:none;font-size:0}.post-title{font-size:18px;line-height:30px}.post-title a{text-decoration:none;border-bottom:dotted 1px #999}.post-title a:hover{text-decoration:none;color:#cb3a1b;border-bottom:solid 1px #cb3a1b}@media (min-width:768px){.headlines .big-headline-post2,.hedge-funds-home .education-center-section .big-headline-post2,.insider-trading-home .education-center-section .big-headline-post2{float:left;width:66.66666667%}.headlines .other-posts2,.hedge-funds-home .education-center-section .other-posts2,.insider-trading-home .education-center-section .other-posts2{float:left;width:33.33333333%}}.list-posts-widget .list-post{display:flex;justify-content:space-between;height:160px;background-color:#FBFBFB;margin-bottom:12px;color:#232323;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.2);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.2);box-shadow:0 1px 3px 0 rgba(0,0,0,.2)}.list-posts-widget .list-post:hover{background-color:#FCF6F2}.list-posts-widget .list-post .title{width:50%;padding:15px 10px 10px 0;line-height:1.4em}.list-posts-widget .list-post .title p{font-weight:400}.list-posts-widget .list-post .thumbnail{width:120px;height:160px;background-size:cover;background-repeat:no-repeat;background-color:#FAFCFA;text-align:right;padding:0;border:0;margin-right:-15px}.list-posts-widget .list-post .thumbnail img{display:block;max-width:100%;font-size:0;float:right}.list-posts-widget .article-links p{font-size:17px;line-height:1.6em}.related-articles-widget{counter-reset:article-counter}.related-articles-widget a{counter-increment:article-counter;margin-bottom:18px;display:block;font-size:15px;font-weight:600;color:#333;line-height:26px;padding-left:40px;position:relative}.related-articles-widget a:after{content:counter(article-counter);display:block;position:absolute;left:0;top:1px;color:#333;background:#DCDCDC;border-radius:40px;z-index:-1;line-height:23px;width:27px;height:27px;text-align:center;font-weight:900;font-size:13px}#site-navigation{position:fixed;top:0;z-index:1000;width:100%}@media (max-width:1024px){#site-navigation{height:70px;z-index:99999999}}#site-navigation .mobile-search-active{top:70px;width:100vw;max-height:100vh}#site-navigation .level .flex-container{display:flex;justify-content:space-between}#site-navigation .level-1{height:70px;background-color:#191919;padding:0 10px;position:relative;z-index:1000}#site-navigation .level-2{height:40px;background-color:#ECECEC;padding:0 10px}#site-navigation .level-1 .desktop-menu .wrap{display:flex}@media (max-width:1024px){#site-navigation .level-1 .desktop-menu{display:none!important}}#site-navigation .level-1 .desktop-menu .logo-container{margin-right:0;margin-top:17px}#site-navigation .level-1 .desktop-menu .logo-container a{padding:0}#site-navigation .level-1 .desktop-menu .logo-container .icon{display:block}#site-navigation .level-1 .desktop-menu .search-container{margin-top:19px;margin-left:27px;display:none}@media (min-width:1024px){#site-navigation .level-1 .desktop-menu .search-container{display:block}#site-navigation .level-1 .desktop-menu .search-container .search{width:400px}}#site-navigation .level-1 .desktop-menu .search-container .search{display:flex;justify-content:space-between;background:#F9F9F9;height:32px}@media (min-width:1260px){#site-navigation .level-1 .desktop-menu .search-container .search{width:480px}}#site-navigation .level-1 .desktop-menu .search-container .search.focused-search{background:#FCF6F2}#site-navigation .level-1 .desktop-menu .search-container .search.focused-search .search-input{outline:0}#site-navigation .level-1 .desktop-menu .search-container .search .search-input{color:#1A1A1A;background:0 0;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;border:0;font-size:16px;height:32px;padding-left:8px;line-height:32px;display:none}@media (min-width:1024px){#site-navigation .level-1 .desktop-menu .search-container .search .search-input{display:block;width:370px}}@media (min-width:1260px){#site-navigation .level-1 .desktop-menu .search-container .search .search-input{display:block;width:450px}}#site-navigation .level-1 .desktop-menu .search-container .search .submit-container{border-left:solid 1px #AAA;padding:8px 12px;height:32px;margin:0;background:#ececec}#site-navigation .level-1 .desktop-menu .search-container .search .submit-container input{display:block;border:0;height:16px}#site-navigation .level-1 .desktop-menu .user-action-container{margin-top:19px;justify-self:flex-end;display:none;position:relative}#site-navigation .level-1 .desktop-menu .user-action-container .icon{display:inline-block;height:15px;width:15px;background-size:contain;position:relative;left:7px;top:2px}@media (min-width:1024px){#site-navigation .level-1 .desktop-menu .user-action-container{display:flex}}@media (min-width:1260px){#site-navigation .level-1 .desktop-menu .user-action-container{margin-right:15px}}#site-navigation .level-1 .desktop-menu .user-action-container .navigation-btn{display:block;margin-left:20px;width:110px;height:36px;padding-top:5px;border:2px solid #D2D2D2;border-radius:25px;font-weight:500;font-size:16px;color:#D2D2D2;text-align:center}#site-navigation .level-1 .desktop-menu .user-action-container .navigation-btn:hover{text-decoration:none;background-color:#333}#site-navigation .level-1 .desktop-menu .user-action-container .navigation-btn.btn-premium{background-color:#FED04E;color:#1A1A1A;border:2px solid #CCC}#site-navigation .level-1 .desktop-menu .user-action-container .navigation-btn.btn-premium:hover{background-color:#fec31b}#site-navigation .level-1 .desktop-menu .user-action-container .navigation-btn.my-account-btn{width:140px}#site-navigation .level-1 .desktop-menu .user-action-container .navigation-btn.my-account-btn .icon{width:16px;height:16px}#site-navigation .level-1 .desktop-menu .user-action-container #IC_d_88x31_1{position:absolute;height:31px;right:-102px;top:2px;width:88px}#site-navigation .level-1 .mobile-menu{display:none}@media (max-width:1024px){#site-navigation .level-1 .mobile-menu{display:flex}}#site-navigation .level-1 .mobile-menu .button-container{display:flex}#site-navigation .level-1 .mobile-menu .menu-button{position:relative;left:-28px;background:#191919;border:0;margin:0;cursor:pointer;display:flex}#site-navigation .level-1 .mobile-menu .menu-button svg{transition:transform .5s cubic-bezier(.4,0,.2,1)}#site-navigation .level-1 .mobile-menu .menu-button.active svg{transform:rotate(90deg)}#site-navigation .level-1 .mobile-menu .menu-button.active path:nth-child(1){transform:translateX(9px) translateY(1px) rotate(45deg)}#site-navigation .level-1 .mobile-menu .menu-button.active path:nth-child(3),#site-navigation .level-1 .mobile-menu .menu-button.active path:nth-child(5){transform:translateX(9px) translateY(1px) rotate(-45deg)}#site-navigation .level-1 .mobile-menu .menu-button.active path:nth-child(2),#site-navigation .level-1 .mobile-menu .menu-button.active path:nth-child(4){stroke-dasharray:225 299;stroke-dashoffset:-72px}#site-navigation .level-1 .mobile-menu .menu-button path:nth-child(2),#site-navigation .level-1 .mobile-menu .menu-button path:nth-child(4){stroke-dasharray:29 299}#site-navigation .level-1 .mobile-menu .menu-button.active path:nth-child(6){transform:translateX(9px) translateY(1px) rotate(45deg)}#site-navigation .level-1 .mobile-menu .menu-button path{transition:transform .5s cubic-bezier(.4,0,.2,1),stroke-dasharray .5s cubic-bezier(.4,0,.2,1),stroke-dashoffset .5s cubic-bezier(.4,0,.2,1)}#site-navigation .level-1 .mobile-menu .menu-button path:nth-child(1){transform-origin:36% 40%}#site-navigation .level-1 .mobile-menu .menu-button path:nth-child(3){transform-origin:35% 63%}#site-navigation .level-1 .mobile-menu .menu-button path:nth-child(5){transform-origin:61% 52%}#site-navigation .level-1 .mobile-menu .menu-button path:nth-child(6){transform-origin:62% 52%}#site-navigation .level-1 .mobile-menu .navigation-btn{display:block;height:36px;padding:5px 14px;border:1px solid #BBB;border-radius:16px;font-weight:500;font-size:16px;color:#D2D2D2;text-align:center;align-self:center;margin-right:12px}@media (max-width:400px){#site-navigation .level-1 .mobile-menu .navigation-btn .hidden-xtra{display:none}}#site-navigation .level-1 .mobile-menu .navigation-btn.btn-premium{background-color:#FED04E;color:#1A1A1A;border:1px solid #BBB}#site-navigation .level-1 .mobile-menu .navigation-btn.btn-premium:hover{background-color:#fec31b}#site-navigation .level-1 .mobile-menu .logo-container{position:relative;left:-14px;margin-right:0;margin-top:18px}#site-navigation .level-1 .mobile-menu .logo-container a{padding:0}#site-navigation .level-1 .mobile-menu .logo-container .icon{display:block}@media (max-width:424px){#site-navigation .level-1 .mobile-menu .logo-container{left:-24px}}#site-navigation .level-1 .mobile-menu .search-button{background:#191919;border:0;outline:0;width:40px;margin-right:-10px;display:flex;justify-content:space-around}#site-navigation .level-1 .mobile-menu .search-button span{display:block;width:24px;height:24px;position:relative;top:23px;background-size:contain}#site-navigation .search-level{position:relative;z-index:1000;height:70px;padding:0 10px;background-color:#ECECEC;display:none}#site-navigation .search-level .search{display:flex;justify-content:space-between;background:#F9F9F9;height:70px;width:100%;position:relative}#site-navigation .search-level .search.focused-search{background:#FCF6F2}#site-navigation .search-level .search.focused-search .search-input{outline:0}#site-navigation .search-level .search .search-input{display:block;color:#1A1A1A;background-color:#ECECEC;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;border:0;font-size:20px;height:70px;padding-left:8px;line-height:70px;width:100%;outline:0}#site-navigation .search-level .search .close-mobile-search-button{border:0;height:30px;width:30px;background-size:contain;background-color:#ECECEC;position:absolute;right:0;top:20px}#site-navigation.mobile-search-active .search-level{display:block}#site-navigation.mobile-search-active .level-1{display:none}#site-navigation .level-2{position:relative;z-index:900;-webkit-transition:-webkit-transform .25s ease-out;-moz-transition:-moz-transform .25s ease-out;-o-transition:-o-transform .25s ease-out;transition:-webkit-transform .25s ease-out,-moz-transform .25s ease-out,-o-transform .25s ease-out,transform .25s ease-out}#site-navigation .level-2.nav-hidden{-webkit-transform:translateY(-40px);-moz-transform:translateY(-40px);-o-transform:translateY(-40px);-ms-transform:translateY(-40px);transform:translateY(-40px)}#site-navigation .level-2.mobile-active{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}#site-navigation .level-2 ul{display:flex;margin:0}#site-navigation .level-2 .dropdown{margin-right:32px;position:relative}#site-navigation .level-2 .dropdown .caret{border:solid #000;border-width:0 2px 2px 0;display:inline-block;padding:3px;transform:rotate(45deg);-webkit-transform:rotate(45deg);position:relative;top:-2px;left:2px}#site-navigation .level-2 .dropdown .dropdown-toggle{color:#1A1A1A;font-size:16px;line-height:40px;height:40px;font-weight:600;display:inline-block}#site-navigation .level-2 .dropdown .dropdown-menu{position:absolute;top:38px;left:0;z-index:1000;display:none;min-width:200px;padding:0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 8px 16px rgba(0,0,0,.25);-moz-box-shadow:0 8px 16px rgba(0,0,0,.25);box-shadow:0 8px 16px rgba(0,0,0,.25);background-clip:padding-box;background-color:#F0F0F0;overflow:hidden}.quick-search .section,.simple-pagination ul{margin-bottom:0}#site-navigation .level-2 .dropdown .dropdown-menu>li>a{padding:6px 16px;color:#1A1A1A;font-size:17px;font-weight:600;display:block}#site-navigation .level-2 .dropdown .dropdown-menu>li>a:focus,#site-navigation .level-2 .dropdown .dropdown-menu>li>a:hover{color:#1A1A1A;text-decoration:underline}#site-navigation .level-2 .dropdown .dropdown-menu>.active>a,#site-navigation .level-2 .dropdown .dropdown-menu>.active>a:focus,#site-navigation .level-2 .dropdown .dropdown-menu>.active>a:hover{background:#303030;color:#FFF}@media (min-width:1024px){#site-navigation .level-2 .dropdown.active .dropdown-toggle,#site-navigation .level-2 .dropdown:hover .dropdown-toggle{text-decoration:none;border-bottom:solid 4px #1A1A1A}#site-navigation .level-2 .dropdown:hover .dropdown-menu{display:block}}@media (min-width:1024px) and (min-width:1024px){#site-navigation .level-2 .dropdown:hover .dropdown-menu{animation:growOut .3s ease-in-out forwards;transform-origin:top center}}#site-navigation .level-2 .logout-link{margin-left:auto}@media (max-width:1024px){#site-navigation .level-2 .dropdown .dropdown-menu>.active>a,#site-navigation .level-2 .dropdown .dropdown-menu>.active>a:focus,#site-navigation .level-2 .dropdown .dropdown-menu>.active>a:hover{background:#ECECEC;color:#b72000}#site-navigation .level-2{padding:4px 0 70px;-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-o-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%);height:100vh;overflow-y:scroll;box-shadow:rgba(50,50,93,.25) 0 2px 5px -1px,rgba(0,0,0,.3) 0 1px 3px -1px}#site-navigation .level-2 ul{display:block}#site-navigation .level-2 .dropdown{border-bottom:solid 1px #555;padding:16px 10px;margin-right:0}#site-navigation .level-2 .dropdown .dropdown-toggle{font-size:20px;position:relative;display:block}#site-navigation .level-2 .dropdown .dropdown-toggle .caret{position:absolute;top:14px;right:-5px;left:auto;border-width:0 3px 3px 0}#site-navigation .level-2 .dropdown .dropdown-menu{display:block;animation:unset;width:100%;position:static;border:0;background-color:#ECECEC;box-shadow:none;height:auto;max-height:0;padding:0;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}#site-navigation .level-2 .dropdown.open .dropdown-menu{display:block;max-height:100vh}#site-navigation .level-2 .dropdown.active .dropdown-toggle{color:#b72000}}#site-navigation .level-2 .icon{display:inline-block;height:18px;width:18px;background-size:contain;position:relative;left:10px;top:2px}#site-navigation .level-2 .promotion-level{width:100%;height:48px;background-color:#FCF6F2;border-bottom:solid 2px #DADADA;transform:translateY(-88px);transition:transform .5s ease-in-out}#site-navigation .level-2 .promotion-level .short-text{display:none}#site-navigation .level-2 .promotion-level.shown{transform:translateY(0)}#site-navigation .level-2 .promotion-level .flex-container{height:100%;display:flex;justify-content:space-between}#site-navigation .level-2 .promotion-level .flex-container p{line-height:48px;font-size:18px;margin:0;padding:0}#site-navigation .level-2 .promotion-level .flex-container button{position:relative;right:20px;line-height:46px;font-size:18px;margin:0;padding:0;text-transform:uppercase;border:0;background-color:#FCF6F2;border-bottom:solid 2px #DADADA}@media (max-width:1280px){#site-navigation .level-2 .promotion-level .long-text{display:none}#site-navigation .level-2 .promotion-level .short-text{display:block}}@media (max-width:1024px){#site-navigation .level-2 .promotion-level{display:none}}.quick-search{position:fixed;z-index:9999;display:none}.quick-search .results-container{background:#FFF;border:1px solid #6A6A6A}.quick-search .section-name{padding:6px;background:#484848;color:#FFF;font-weight:400;font-size:15px}.quick-search .section-name a{float:right;padding-left:5px;color:#FAFCFA;font-size:14px;padding-top:1px}.quick-search .section-name span{font-size:13px}.quick-search .result{padding:10px;font-size:17px;border-bottom:1px solid #AAA;font-weight:600}.quick-search .result.highlight{background:#DADADA}.quick-search .see-all-link{display:block;padding:6px 8px;background:#DADADA;text-align:center}.quick-search .see-all-link span{font-weight:600}@media (max-width:1024px){.quick-search{overflow-y:scroll;padding-bottom:70px}}@keyframes growOut{0%{transform:scale(0)}80%{transform:scale(1.05)}100%{transform:scale(1)}}.wrapper-sticky{z-index:1}.call-for-login .seperator{color:#6A6A6A;margin-right:5px}.simple-pagination{margin-right:5px}@media (min-width:480px){.simple-pagination{margin-top:1px}}.simple-pagination ul li{font-size:15px;font-weight:400;float:left;display:block;margin-left:10px;color:#000}.tabletop-pagination ul li:first-child,.tabletop-pagination-stack ul li:first-child{margin-left:0}.simple-pagination ul li a{text-decoration:none;border-bottom:0 solid #E7F0CE}.simple-pagination ul li a:hover{text-decoration:none;border-bottom:solid 1px #144574}.tabletop-pagination{overflow:hidden;margin-bottom:5px}.sort-holdings+.tabletop-pagination{margin-top:10px}.tabletop-pagination-stack{margin-bottom:10px;overflow:hidden}.right .right-col-ads{padding-top:5px}@media (max-width:960px){.blog-right-col.article-sidebar{float:none;clear:both}}.sidebar-columns{max-width:300px;margin-left:auto;margin-right:auto}@media (min-width:1280px){.sidebar-columns{position:relative;margin-left:80px;left:20px}}@media (min-width:1025px){.sidebar-columns{position:relative;left:20px}}.sidebar-columns .twitter-follow-container{margin-top:20px}.sidebar-column{width:100%;padding:0;margin:-15px auto 0}.sidebar-column .custom-chart-widget{max-width:480px}.dummy-sidebar-content{height:0}@media (min-width:992px){.dummy-sidebar-content{height:1000px}}.resource-center-square{width:300px;width:100%}.resource-center-square img{padding-top:8px}.resource-center-square p{margin-right:10px}.resource-center .section{margin-bottom:10px;padding:10px;background-color:#FCF6F2;border:1px solid #DADADA}.resource-center .section-header{margin-bottom:10px}.resource-center h3.center-title{border-bottom:solid 1px #555;color:#cb3a1b;margin:0 5px;height:45px;padding-left:10px}.resource-center li a{color:#555;font-size:15px;line-height:24px;padding-bottom:3px;border-bottom:solid 1px #DADADA}.resource-center li a:hover{color:#cb3a1b;text-decoration:none}.resource-center .sponsor-logo{margin-left:10px;height:60px}.resource-center ul li{margin-bottom:12px;font-size:14px;font-weight:600;list-style-type:disc;margin-left:20px}.resource-center p{margin-top:10px;font-size:14px}.resource-center img{height:40px;display:block}.premium-resource-center ul{border-bottom:none}.sidebar-fund{margin-top:0}.sidebar-fund:hover{background-color:#FCF6F2}.sidebar-fund a{padding:10px 0;display:block}.sidebar-fund a:hover{text-decoration:none}.sidebar-fund .manager-thumb-crop{width:70px;height:70px;overflow:hidden;border:1px solid #DADADA;-webkit-box-shadow:0 8px 6px -6px #000;-moz-box-shadow:0 8px 6px -6px #000;box-shadow:0 8px 6px -6px #000}.sidebar-fund .manager-thumb-img{width:70px;height:98px;margin-top:-10px}.sidebar-fund .fund-info{margin-right:90px}.sidebar-fund .fund-info p{margin-top:5px;font-size:15px;line-height:20px;font-weight:600;color:#6A6A6A;margin-bottom:0}.sidebar-fund .fund-info .manager-name{margin:0;color:#555;border-bottom:solid 1px #DADADA;font-size:15px;font-weight:700}.sidebar-fund .fund-info .manager-name:hover{text-decoration:none}.footer-container{min-width:0;padding:40px 0 120px;background-color:#1A1A1A}.footer{min-width:0;margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px;max-width:1260px;width:100%;background-color:#1A1A1A}@media (min-width:768px){.footer{width:740px}}@media (min-width:992px){.footer{width:960px}}.footer .wrap{display:flex;justify-content:space-between}@media (min-width:1260px){.footer{width:1260px;padding-right:25px}}@media (max-width:480px){.footer{padding-right:20px;padding-left:20px}}.footer .level-0{margin-bottom:80px}.footer .level-0 .footer-signup-title{color:#DADADA;font-size:24px;font-weight:600;text-align:center}.footer .level-0 .footer-daily-newsletter{margin:25px auto 0;display:flex;justify-content:space-around}.footer .level-0 .footer-daily-newsletter form{display:block;margin:0 auto}.footer .level-0 .footer-daily-newsletter .input-container{display:block;position:relative;width:480px;margin:0 auto}.footer .level-0 .footer-daily-newsletter input[type=email]{height:46px;font-size:18px;border-radius:0;border:0;padding-left:20px}.footer .level-0 .footer-daily-newsletter input[type=submit]{display:block;font-size:18px;padding:0 30px;height:46px;line-height:46px;position:absolute;top:0;right:0;margin-right:0;border-radius:0;border:0}.footer .level-0 .footer-daily-newsletter .get-email-message{color:#F0F0F0;margin-top:10px}.footer .level-1{display:block}.footer .level-1 .logo-container{position:relative;opacity:.75;height:36px}.footer .level-1 .logo-container a{padding:0}.footer .level-1 .logo-container .icon{display:block}.footer .level-1 .social-links-container{display:flex;justify-content:space-between;height:32px;margin-top:20px}.footer .level-1 .social-links-container .icon{width:32px;height:32px;display:block;background-size:contain;margin-right:15px}.footer .level-2{display:block}.footer .level-2 .navigation-links-container{display:flex;justify-content:flex-end;height:36px}.footer .level-2 .navigation-links-container a{color:#BDBDBD;font-weight:600;font-size:16px;margin-left:25px;display:inline-block;line-height:36px}.footer .level-2 .navigation-links-container .icon{width:20px;height:21px;display:inline-block;background-size:contain;margin-right:10px;position:relative;top:5px}.footer .level-2 .legal-links-container{display:flex;justify-content:flex-end;height:32px;margin-top:20px}.footer .level-2 .legal-links-container a,.footer .level-2 .legal-links-container span{color:#BDBDBD;font-weight:300;font-size:16px;margin-left:25px;display:inline-block;line-height:32px}@media (max-width:992px){.footer .wrap{display:block}.footer .level-1{display:flex;justify-content:space-between}.footer .level-1 .social-links-container{justify-content:flex-start;margin-top:0}.footer .level-1 .social-links-container a{margin-right:0}.footer .level-2 .legal-links-container,.footer .level-2 .navigation-links-container{display:flex;justify-content:flex-start}.footer .level-0 h3{font-size:20px;line-height:1.15em}.footer .level-0 .footer-daily-newsletter .input-container{width:400px}.footer .level-1 .social-links-container a:last-child .icon{margin-right:0}.footer .level-2{margin-top:20px;display:flex;justify-content:space-between}.footer .level-2 .navigation-links-container{flex-direction:column;margin-top:0;height:auto}.footer .level-2 .navigation-links-container a{margin-left:0;margin-right:0}.footer .level-2 .legal-links-container{flex-direction:column;margin-top:0;text-align:right;height:auto}.footer .level-2 .legal-links-container a,.footer .level-2 .legal-links-container span{margin-left:0;margin-right:0;line-height:36px}}.left,.right{display:block}.error,.success{line-height:1.4em;font-weight:700}@media (max-width:480px){.footer .level-0 .footer-daily-newsletter .input-container{width:300px}.footer .level-2,.footer .level-2 .navigation-links-container,.footer .level-2 .navigation-links-container a{display:block}.footer .level-2 .legal-links-container{margin-top:20px;display:block;text-align:left}.footer .level-2 .legal-links-container a,.footer .level-2 .legal-links-container span{display:block}}.hw-accelerated{-webkit-backface-visibility:hidden;-webkit-perspective:1000}.half{width:50%}.left{float:left}.right{float:right}.invisible{display:none}.loading{zoom:1;-webkit-opacity:.4;-moz-opacity:.4;opacity:.4;filter:alpha(opacity=40)}.not-found{font-size:14px;margin-top:15px}.error{color:#d82600}.success{color:#228B22}.left-aligned{text-align:left}.line-button a{width:100%;padding:15px;background-color:#FFF;border:1px solid #6A6A6A;-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;color:#555;display:block;margin:10px 0;text-align:center;text-transform:uppercase;font-size:16px}.signup-success-section,body .toggled-off{display:none}.line-button a:hover{color:#FFF;background-color:#6A6A6A;border:1px solid #6A6A6A;text-decoration:none}.line-button.half{width:50%;float:left}.line-button.left a{text-align:left;border-right:0}.line-button.right a{text-align:right;border-left:0}*{list-style-type:none;margin:0;padding:0}body,html{min-height:100vh;position:relative}body{padding-top:110px;padding-bottom:444px}@media (max-width:1024px){body{padding-top:70px}}@media (max-width:992px){body{padding-bottom:664px}}@media (max-width:480px){body{padding-bottom:896px}}html.logged-in-user body{padding-bottom:248px}@media (max-width:992px){html.logged-in-user body{padding-bottom:468px}}@media (max-width:480px){html.logged-in-user body{padding-bottom:632px}}em{font-weight:700}a{-webkit-transition:background-color .15s ease-out;-moz-transition:background-color .15s ease-out;-o-transition:background-color .15s ease-out;transition:background-color .15s ease-out}a:focus{outline:0;text-decoration:none}a:active{text-decoration:none}a img{border:none}h2{font-size:22px}button{-ms-touch-action:manipulation;touch-action:manipulation}.footer-container{position:absolute;bottom:0;width:100%}.custom-chart-widget .chart-container{position:relative;width:280px;height:280px;margin-bottom:90px}.custom-chart-widget .grid-line{position:absolute;width:100%;height:1px;background-color:#979797}.custom-chart-widget .grid-line span{position:absolute;left:0;bottom:4px;font-size:12px;color:#191919}.custom-chart-widget .level-0{bottom:0;height:3px}.custom-chart-widget .level-100{bottom:90px}.custom-chart-widget .level-200{bottom:180px}.custom-chart-widget .bar-container{display:flex;justify-content:space-evenly;align-items:flex-end;width:100%;height:100%;z-index:100;position:relative;padding-bottom:3px}.custom-chart-widget .chart-bar{position:relative}.custom-chart-widget .chart-bar.strategy{height:247px;width:80px;background-color:#85CB33}.custom-chart-widget .bar-container:hover .chart-bar.strategy{background-color:#78b72e;-webkit-transition:background-color .3s ease-out;-moz-transition:background-color .3s ease-out;-o-transition:background-color .3s ease-out;transition:background-color .3s ease-out}.custom-chart-widget .chart-bar.benchmark{height:49px;width:80px;background-color:#D8D8D8}.custom-chart-widget .chart-bar .chart-bar-label.performance{position:absolute;top:-26px;left:0;right:0;text-align:center;font-weight:700;font-size:16px;line-height:16px;color:#191919}.custom-chart-widget .strategy .chart-bar-label.performance{line-height:18px;color:#191919}.custom-chart-widget .chart-bar .chart-bar-label.name{position:absolute;bottom:-12px;transform:translateY(100%);right:0;text-align:center;font-weight:700;font-size:15px;width:120px;left:-18px;color:#191919}.custom-chart-widget .chart-cta{border-radius:25px;font-size:16px;text-align:center;line-height:42px;text-transform:uppercase;width:210px;height:42px;font-weight:700;margin:10px auto;display:block;background-color:#FED04E;color:#1A1A1A;border:1px solid #DADADA}.body-with-simple-header .logo-only-header span,.inline-icon{display:inline-block}.custom-chart-widget .chart-cta:hover{text-decoration:none;background-color:#fec31b}.body-with-simple-header{padding-top:0}.body-with-simple-header .logo-only-header{height:80px;width:100%;background:#1A1A1A;text-align:center;padding-top:20px}.body-with-simple-header .logo-only-header .icon-logo{background-image:url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20width%3D%22249px%22%20height%3D%2299px%22%20viewBox%3D%220%200%20249%2099%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%3E%20%20%20%20%20%20%20%20%3Ctitle%3ELogo%3C%2Ftitle%3E%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Background-%2B-Logo%22%20sketch%3Atype%3D%22MSLayerGroup%22%20transform%3D%22translate%28-26.000000%2C%20-51.000000%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Logo%22%20transform%3D%22translate%2826.000000%2C%2051.000000%29%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M44.22%2C50.38%20L22.02%2C75.52%20L0%2C50.26%20L0%2C94%20L12.72%2C94%20L12.72%2C82.48%20L21.96%2C95.14%20L31.5%2C82.36%20L31.5%2C94%20L44.22%2C94%20L44.22%2C50.38%20Z%20M83.46%2C57.94%20C79.2%2C53.62%2074.04%2C51.46%2067.98%2C51.46%20C61.92%2C51.46%2056.76%2C53.62%2052.44%2C57.94%20C48.18%2C62.2%2046.02%2C67.36%2046.02%2C73.42%20C46.02%2C79.48%2048.18%2C84.64%2052.44%2C88.96%20C56.76%2C93.22%2061.92%2C95.38%2067.98%2C95.38%20C74.04%2C95.38%2079.2%2C93.22%2083.46%2C88.96%20C87.78%2C84.64%2089.94%2C79.48%2089.94%2C73.42%20C89.94%2C67.36%2087.78%2C62.2%2083.46%2C57.94%20Z%20M132.48%2C52.9%20L119.7%2C52.9%20L119.7%2C72.64%20L91.14%2C50.08%20L91.14%2C94%20L103.92%2C94%20L103.92%2C76.36%20L132.48%2C98.98%20L132.48%2C52.9%20Z%20M159.4%2C73.18%20L172%2C60.58%20L163%2C51.58%20L148.06%2C66.52%20L148.06%2C52.9%20L135.34%2C52.9%20L135.34%2C94%20L148.06%2C94%20L148.06%2C79.9%20L163%2C94.84%20L172%2C85.84%20L159.4%2C73.18%20Z%20M186.92%2C79.9%20L204.26%2C79.9%20L204.26%2C67.12%20L186.92%2C67.12%20L186.92%2C65.74%20L204.26%2C65.74%20L204.26%2C52.96%20L174.08%2C52.96%20L174.08%2C94%20L204.26%2C94%20L204.26%2C81.28%20L186.92%2C81.28%20L186.92%2C79.9%20Z%20M233.56%2C52.9%20L227.26%2C63.82%20L220.96%2C52.9%20L206.26%2C52.9%20L220.9%2C78.34%20L220.9%2C94%20L233.62%2C94%20L233.62%2C78.34%20L248.26%2C52.9%20L233.56%2C52.9%20Z%22%20id%3D%22MONKEY%22%20fill%3D%22%23CB3A1B%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M12.72%2C2.9%20L0%2C2.9%20L0%2C44%20L12.72%2C44%20L12.72%2C2.9%20Z%20M56.86%2C2.9%20L44.08%2C2.9%20L44.08%2C22.64%20L15.52%2C0.08%20L15.52%2C44%20L28.3%2C44%20L28.3%2C26.36%20L56.86%2C48.98%20L56.86%2C2.9%20Z%20M88.94%2C27.74%20C88.94%2C22.88%2087.2%2C18.74%2083.72%2C15.26%20C83.36%2C14.84%2082.94%2C14.48%2082.46%2C14.12%20L82.46%2C2.9%20L71.24%2C2.9%20C65.72%2C2.9%2061.28%2C7.34%2061.28%2C12.86%20C61.28%2C15.5%2063.2%2C20.48%2069.56%2C21.56%20C75.86%2C22.7%2076.1%2C26.06%2076.1%2C27.74%20C76.1%2C29.06%2075.62%2C30.2%2074.72%2C31.16%20C73.76%2C32.12%2072.62%2C32.6%2071.24%2C32.6%20C69.92%2C32.6%2068.78%2C32.12%2067.82%2C31.16%20L58.76%2C40.22%20C62.24%2C43.7%2066.38%2C45.44%2071.24%2C45.44%20C76.16%2C45.44%2080.3%2C43.7%2083.78%2C40.22%20C85.88%2C38.06%2087.38%2C35.66%2088.16%2C32.96%20C88.7%2C31.28%2088.94%2C29.54%2088.94%2C27.74%20L88.94%2C27.74%20Z%20M103.86%2C2.9%20L91.14%2C2.9%20L91.14%2C44%20L103.86%2C44%20L103.86%2C2.9%20Z%20M143.92%2C23.48%20C143.92%2C17.84%20141.88%2C13.04%20137.86%2C9.02%20C133.84%2C5%20129.04%2C2.96%20123.4%2C2.96%20L106.66%2C2.96%20L106.66%2C44%20L123.4%2C44%20C129.04%2C44%20133.84%2C42.02%20137.86%2C38%20C141.88%2C33.98%20143.92%2C29.12%20143.92%2C23.48%20L143.92%2C23.48%20Z%20M159.56%2C29.9%20L176.9%2C29.9%20L176.9%2C17.12%20L159.56%2C17.12%20L159.56%2C15.74%20L176.9%2C15.74%20L176.9%2C2.96%20L146.72%2C2.96%20L146.72%2C44%20L176.9%2C44%20L176.9%2C31.28%20L159.56%2C31.28%20L159.56%2C29.9%20Z%20M211.74%2C45.62%20L220.5%2C31.04%20C219.06%2C31.7%20215.22%2C32.84%20212.46%2C32.84%20C214.02%2C31.22%20215.28%2C29.42%20216.18%2C27.32%20C217.08%2C25.16%20217.56%2C22.94%20217.56%2C20.54%20C217.56%2C15.62%20215.82%2C11.48%20212.4%2C8.06%20C208.92%2C4.64%20204.78%2C2.9%20199.92%2C2.9%20L179.7%2C2.78%20L179.7%2C44%20L192.42%2C44%20L192.42%2C38.12%20L192.54%2C38.12%20C194.28%2C39.74%20196.08%2C41.06%20198.12%2C42.2%20C200.1%2C43.28%20202.2%2C44.12%20204.36%2C44.6%20C205.14%2C44.84%20205.98%2C45.08%20206.76%2C45.2%20C207.6%2C45.32%20208.44%2C45.44%20209.28%2C45.44%20C209.7%2C45.5%20210.06%2C45.56%20210.48%2C45.56%20C210.9%2C45.56%20211.32%2C45.62%20211.74%2C45.62%20L211.74%2C45.62%20Z%22%20id%3D%22INSIDER%22%20fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-1%22%20fill%3D%22%23191919%22%20cx%3D%22207%22%20cy%3D%2221%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-2%22%20fill%3D%22%23191919%22%20cx%3D%22135%22%20cy%3D%2221%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22Oval-3%22%20fill%3D%22%23191919%22%20cx%3D%2281%22%20cy%3D%2273%22%20r%3D%224%22%3E%3C%2Fcircle%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E);background-repeat:no-repeat}.body-with-simple-header .logo-only-header .logo{background-repeat:no-repeat;width:100px;height:39.5px;background-size:cover}.body-with-simple-header .thank-you-content{margin-top:16px;min-height:auto!important}.body-with-simple-header .thank-you-content h1,.body-with-simple-header .thank-you-content h2{color:#444;text-align:center;margin-top:20px;font-weight:700;line-height:1.425em}.body-with-simple-header .thank-you-content h1{font-size:32px}.body-with-simple-header .thank-you-content h2{font-size:20px;margin-top:10px;margin-bottom:20px}@media (max-width:768px){.body-with-simple-header .thank-you-content h1{font-size:24px}.body-with-simple-header .thank-you-content h2{font-size:16px;margin-top:16px;margin-bottom:20px}}.body-with-simple-header .thank-you-content #submit-button{display:block;margin:10px auto;font-size:18px;color:#F9F9F9;font-weight:600}.body-with-simple-header .simple-footer{margin-top:60px;margin-bottom:70px}.body-with-simple-header .simple-footer p{font-size:13px;color:#666;text-align:center}.body-with-simple-header .simple-footer p a{font-weight:600}.error-body{background-color:#1A1A1A;padding:15px}.error-body .content{padding:20px;border:2px solid #F9F9F9;background-color:#1A1A1A;color:#F9F9F9;font-weight:600;font-size:18px;min-height:0!important;text-align:center}.error-body .content h1{font-size:32px;text-transform:uppercase;font-weight:600;margin:0 auto 25px;text-align:center}.error-body .logo-container{position:relative;min-height:1px;padding-left:10px;padding-right:10px;margin-bottom:20px}@media (min-width:768px){.error-body .logo-container{float:left;width:33.33333333%}}@media (min-width:992px){.error-body .logo-container{float:left;width:25%}}.error-body .message-container{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.error-body #error-logo{max-width:100%}.error-body .message{margin-bottom:15px;line-height:22px}.error-body .message a{color:#F9F9F9;border-bottom:solid 1px #F9F9F9}.error-body .message a:hover{text-decoration:none}.error-body .signature{margin:35px auto 5px;text-align:center;font-size:14px}.error-body.optout .title{margin-bottom:15px}.error-body.optout #error-logo{margin-top:-10px}@media (min-width:768px){.error-body .message-container{float:left;width:66.66666667%}.error-body .content{text-align:left;padding:40px}.error-body .content h1{font-size:42px}.error-body .logo-container{margin-bottom:0}}@media (min-width:992px){.error-body .message-container{float:left;width:75%}.error-body .content{margin-top:200px}}.inline-icon{vertical-align:text-bottom;margin-left:4px}.icon-logo{width:90px;height:36px;background-size:cover}.icon-logo-light{width:100px;height:39.5px;background-size:cover}.icon-search-gray-icon,.icon-search-white-icon{width:16px;height:16px;border:0;outline:0;border-image-width:0;background-color:transparent;cursor:pointer}.icon-graph-down,.icon-graph-up{height:26px;background-size:cover}.icon-graph-up{width:27px}.icon-graph-down{width:30px}.icon-down,.icon-up{width:11px;height:13px;background-size:cover}.icon-star2{width:19px;height:18px;background-size:cover}.icon-checkmark,.icon-unchanged{width:15px;background-size:cover}.icon-unchanged{height:2px}.icon-checkmark{height:13px}.icon-removed{width:14px;height:14px;background-size:cover}.icon-close{width:16px;height:16px;background-size:cover}.icon-pdf{width:30px;height:41px;position:relative;top:-2px}.icon-email,.icon-email-red{width:20px;height:13px}.icon-history{width:18px;height:18px;background-size:cover}.signup-success-page .light-logo{margin-top:20px}.signup-success-page .instruction{font-size:16px;margin-bottom:15px}#response-body h1{font-weight:700;margin-bottom:20px;margin-top:20px}.signup-success-section p{font-size:16px}.login-form-container .validated-form .input-container,.signup-form-container .validated-form .input-container{width:100%;margin-right:0}.login-form-container .validated-form .input-container input[type=email],.login-form-container .validated-form .input-container input[type=password],.login-form-container .validated-form .input-container input[type=text],.login-form-container .validated-form .input-container.checkboxes-row,.signup-form-container .validated-form .input-container input[type=email],.signup-form-container .validated-form .input-container input[type=password],.signup-form-container .validated-form .input-container input[type=text],.signup-form-container .validated-form .input-container.checkboxes-row{width:100%;margin-right:0;max-width:none}.blog-page .aligncenter,.blog-page img.centered{display:block;margin-left:auto;margin-right:auto;clear:both}.middle-subcol-login .user-status,.signup-form-section .user-status{margin-top:0}.blog-page{margin-top:20px}.blog-page .main-col{margin-top:30px}.blog-page .sidebar-columns{padding-top:20px}.blog-page .blog-content-container .post{margin-bottom:15px;padding-bottom:15px}.blog-page .blog-content-container.headlines .post .entry{font-size:16px;line-height:1.5em}.blog-page .blog-content-container .content-with-wrap{white-space:pre-wrap}.blog-page .alignleft{float:left}.blog-page .alignright{float:right}.blog-page .narrowcolumn .postmetadata{font-size:small;margin-top:0;margin-bottom:5px}.blog-page .more-link{text-align:left}.blog-page .navigation{margin-bottom:50px}.blog-page p img{padding:0;max-width:100%;clear:both;height:auto}.blog-page a img{border:none}.blog-page img.alignright{padding:4px;margin:0 0 2px 7px;display:inline;clear:both}.blog-page img.alignleft{padding:4px;margin:0 7px 2px 0;display:inline;clear:both}.blog-page .toggled-content{border-bottom:solid 1px #DDD}.blog-page .toggled-content .toggle-trigger{margin:0;font-size:18px;padding-left:20px;padding-right:20px;background-color:#F5F5F5;height:50px;line-height:50px}.blog-page .promotion-post .single-content p,.premium-content-login-v2-container .premium-content-login .premium-content-login-header h3{font-size:20px}.blog-page .toggled-content .toggle-trigger .arrow-icon{width:24px;height:24px;display:inline-block;margin-right:12px}.blog-page .toggled-content .toggle-trigger a{color:#333;text-decoration:none;display:block}.blog-page .toggled-content .toggle-trigger:hover{background-color:#E5E5E5;cursor:pointer}.blog-page .toggled-content .toggle-trigger a:hover{color:#333;border-bottom:none;text-decoration:none}.blog-page .toggled-content .toggle-trigger.active .arrow-icon{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.blog-page .toggled-content .toggle-container{overflow:hidden;padding:20px;display:none}.blog-page .promotion-post ul li{background-image:url(https://d13a9k2cw5p3go.cloudfront.net/img/landing/checkmark-green.svg);background-repeat:no-repeat;background-position:0 6px;background-size:18px 14px;padding-left:24px}.blog-page .featured-section{padding:20px 32px 0;background-color:#FCF6F2;border:1px solid #DADADA;margin-bottom:40px;margin-top:20px}h2.section-header{font-size:1.1em;color:#6A6A6A;margin-top:0;margin-bottom:-10px}address{font-size:15px}.blog-posts .headlines .small-headline-post h2{font-size:21px;line-height:34px;margin-bottom:8px}.posts-pagination-buttons{margin-top:0;margin-bottom:20px}.posts-pagination-buttons a{text-decoration:none;font-size:16px}.posts-pagination-buttons a:hover{text-decoration:none}.blog-right-col .custom-sidebar-widget .links,.blog-right-col .custom-sidebar-widget .popular-articles{margin-top:10px}.blog-right-col .blogroll .links a{margin-bottom:12px;display:block;font-size:15px;line-height:22px;font-weight:400}.article-page .user-message{margin-bottom:20px;margin-top:20px;border:2px solid #d82600;padding:20px;background-color:#FCF6F2}.article-page .user-message p{font-size:18px;line-height:24px;font-weight:600;margin:0;text-align:left}.article-page .health-warning-message .medical-box-icon{width:40px;height:40px;display:block}.article-page .health-warning-message .more{display:none}.article-page .single-post-title.premium-content-title,.article-page .single-post-title.promotion-post-title{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media (min-width:768px){.article-page .single-post-title.premium-content-title,.article-page .single-post-title.promotion-post-title{float:left;width:66.66666667%;margin-left:16.66666667%}}.article-page .single-post-title.premium-content-title h1,.article-page .single-post-title.promotion-post-title h1{font-size:36px}.article-page .single-post-title .categories{margin:10px 0 -6px;display:flex}.article-page .single-post-title .categories a,.article-page .single-post-title .categories span{color:#d82600;margin-right:5px;display:block;height:20px;line-height:20px;font-weight:600;font-size:14px}.article-page .single-post-title .categories a{text-transform:uppercase}.article-page .single-post-title h1{font-size:48px;line-height:1.125em;font-weight:600;margin-top:10px;padding-bottom:10px;margin-bottom:10px;color:#232323;border-bottom:solid 1px #DADADA}.article-page .single-post-title h1 a{color:#232323;text-decoration:none}.article-page .single-post-title h1 a:hover{text-decoration:none;color:#cb3a1b}@media (max-width:1025px){.article-page .single-post-title h1{font-size:36px;line-height:1.125em}}@media (max-width:768px){.article-page .single-post-title h1{font-size:32px;line-height:1.125em}}.article-page .single-post-title .sub-title{font-size:13px}.article-page .single-post-title .sub-title .by-line{margin-bottom:4px;line-height:1.4em}.article-page .single-post-title .sub-title h6{font-weight:600;color:#6A6A6A;font-size:13px}.article-page .single-post-title .sub-title h6 .author-name{text-transform:uppercase}.article-page .single-post-title .sub-title address{display:inline-block;margin-right:15px;margin-top:3px}.article-page .author-photo-container{float:none;width:auto;display:flex;justify-content:space-between;margin-bottom:20px;margin-top:-10px}.article-page .author-photo-container p{text-align:left;font-size:15px;line-height:15px}.article-page .author-photo-container p.name{font-weight:700;margin-bottom:6px;font-size:17px;line-height:17px}.article-page .author-photo-container p.title{line-height:19px;font-style:italic}.article-page .author-photo-container img{width:60px;height:60px;display:block;margin-right:10px}@media (min-width:480px){.article-page .author-photo-container{display:block;float:right;width:140px;margin-left:20px;margin-bottom:12x}.article-page .author-photo-container img{margin:0 auto;display:block;width:90px;height:90px}.article-page .author-photo-container p{text-align:center;font-size:15px;line-height:15px}.article-page .author-photo-container p.name{font-weight:700;margin-bottom:8px;font-size:16px;line-height:16px}.article-page .author-photo-container p.title{line-height:19px;font-style:italic}}.article-page .promotion-post .single-content{overflow:inherit}.article-page .post{margin-top:15px;margin-right:0;padding-bottom:15px;margin-bottom:10px;color:#1A1A1A;font-size:18px;line-height:1.525em}.article-page .post:first-child,.article-page .post:first-child h2{margin-top:0}.article-page .post .comments-link{display:block;margin-top:-90px}.article-page .post .comments-link.redirect{margin-top:30px}.article-page .post ol li,.article-page .post ul li{margin-bottom:14px}.article-page .single-content h1,.article-page .single-content h2,.article-page .single-content h3,.article-page .single-content h4,.article-page .single-content h5,.article-page .single-content h6{margin-bottom:18px;font-family:proxima-nova-condensed,"Proxima Nova Condensed Fallback",Arial,sans-serif;font-weight:600;line-height:1.4em}.article-page .single-content h1{font-size:32px}.article-page .single-content h2{font-size:28px}.article-page .single-content h3{font-size:24px;margin-bottom:10px}.article-page .single-content p{font-size:18px;line-height:1.6em;margin-bottom:25px}.article-page .single-content a{text-decoration:none;font-weight:600}.article-page .single-content a:hover{text-decoration:none;color:#cb3a1b;border-bottom:solid 1px #cb3a1b}.article-page .single-content img{max-width:100%;height:auto}.article-page .single-content b,.article-page .single-content strong{font-weight:600}.article-page .single-content em{font-weight:600;font-style:italic}.article-page .single-content .wp-caption{max-width:100%;position:relative;margin-bottom:20px}.article-page .single-content .wp-caption-text{position:absolute;font-size:11px;color:#F9F9F9;bottom:0;right:0;margin-bottom:0;padding:2px 6px;text-align:right;background-color:rgba(0,0,0,.5)}.article-page .single-content .wp-caption-text a,.article-page .single-content .wp-caption-text a:hover{color:#F9F9F9}.article-page .single-content blockquote{background:#F3F6F6;border-left:8px solid #666;padding:25px 20px;quotes:"\201C" "\201D" "\2018" "\2019";margin-bottom:25px;clear:both}.article-page .single-content blockquote:before{color:#DADADA;font-size:4em;line-height:.1em;margin-right:.25em;vertical-align:-.4em}.article-page .single-content blockquote p{font-size:18px}.article-page .single-content blockquote p:last-child{margin-bottom:0}.article-page .single-content .sec-13dg-filing{padding:10px!important;border:1px solid #ddd!important;background-color:#fafcfa!important;clear:both!important;font-size:16px!important}.article-page .single-content .sec-13dg-data-table{clear:both!important}.article-page .single-content .sec-13dg-data-table table,.article-page .single-content .sec-13dg-data-table td,.article-page .single-content .sec-13dg-data-table th{border:1px solid #000!important}.article-page .single-content .sec-13dg-data-table p{font-size:10px}.article-page{padding-bottom:140px}.article-page #mobile-ad{margin-bottom:40px}.article-page .incontent-ad{margin-bottom:10px;text-align:center}@media (max-width:992px){.article-page .incontent-ad{margin-bottom:20px}}.article-page .mobile-atf-ad{float:none;margin:auto auto 20px;padding:5px 0;text-align:center;min-height:250px}.article-page .top-left-ad{clear:both;margin-right:2%;min-width:300px;min-height:250px;margin-bottom:20px}.article-page .top-left-ad iframe{margin:auto}@media (max-width:768px){.article-page .single-content{max-width:100%;overflow:hidden}.article-page .top-left-ad{float:none;margin:20px auto}.article-page .incontent-ad{float:none;margin:auto;padding:5px 0;display:flex;justify-content:center}}.article-page .post .incontent-video-ad{display:flex;justify-content:center;margin:20px auto;clear:both}.article-page .post .incontent-video-ad iframe{margin:auto}.article-page .coverImage{margin:0 auto 20px;text-align:center}.article-page #ic_refreshed{float:none!important;margin:0 auto}.article-page .ds_more{display:none}.article-page .getty{display:block!important}.article-page #fb-comments{margin-top:30px;margin-bottom:60px}.article-page iframe{display:block;margin:20px auto;max-width:100%}.article-page iframe.twitter-follow-button-rendered{margin-left:0}body.ad-blocked .incontent-ad,body.ad-blocked .top-left-ad{background:#F1F1F1;border:1px solid #CCC}.article-page #advertorial-container{opacity:0}.article-page #advertorial-container.inview{opacity:1;-webkit-transition:opacity .75s ease-in;-moz-transition:opacity .75s ease-in;-o-transition:opacity .75s ease-in;transition:opacity .75s ease-in}.article-page .single-post-pagination-controls .multipage-container a,.shortcode .article-get-email.input-container input[type=submit]{-webkit-transition-timing-function:cubic-bezier(0,0,1,1),ease;-moz-transition-timing-function:cubic-bezier(0,0,1,1),ease;-o-transition-timing-function:cubic-bezier(0,0,1,1),ease}.article-page #advertorial-container .advertorial-content-container{margin-top:15px}.article-page #advertorial-container .advertorial-content-container>.post{position:relative}.article-page #advertorial-container .advertorial-content-container .disclaimer{position:absolute;bottom:40px;right:0}.article-page #advertorial-container .advertorial-content-container .disclaimer a,.article-page #advertorial-container .advertorial-content-container .disclaimer p{color:#AAA;margin:0;padding:0;font-weight:400;font-size:14px}.article-sidebar .mini-footer{clear:both;border-top:solid 1px #DDD;text-align:center;padding:15px 0;margin-bottom:0;margin-top:10px;font-size:12px;display:none}.article-sidebar .mini-footer ul{padding-bottom:10px}.article-sidebar .mini-footer li{display:inline;padding:0 5px}.article-sidebar .mini-footer li a{color:#6A6A6A;font-weight:500}@media (max-width:993px){.article-sidebar #IC_d_300x250_1{display:none}}@media (min-width:1025px){.article-sidebar .sidebar-columns{position:relative}.article-sidebar .sidebar-columns #IC_d_300x250_1{display:block;margin-top:10px;margin-left:-5px;position:static}.article-sidebar .sidebar-columns .sidebar-column.last{position:static;margin-top:100vh}.article-sidebar .sidebar-columns.premium-sidebar .sidebar-column.last{position:static;margin-top:0}.article-sidebar .mini-footer{display:block}}.article-page .single-post-pagination-controls{display:flex;justify-content:space-between;margin-top:0;margin-bottom:0}@media (max-width:480px){.article-page .single-post-pagination-controls{justify-content:space-around}.article-page .single-post-pagination-controls .multipage-container{display:flex;margin-top:20px;margin-bottom:20px}}.article-page .single-post-pagination-controls .multipage-container{font-size:15px;color:#555;display:flex;justify-content:flex-end;height:32px}.article-page .single-post-pagination-controls .multipage-container div{display:block;height:32px;line-height:32px}.article-page .single-post-pagination-controls .multipage-container a{font-weight:500;padding-left:8px;padding-right:8px;display:block;height:32px;line-height:32px;background-color:#cb3a1b;color:#FFF;transition-timing-function:cubic-bezier(0,0,1,1),ease;font-family:proxima-nova-condensed,"Proxima Nova Condensed Fallback",Arial,sans-serif;text-transform:uppercase}.article-page .single-post-pagination-controls .multipage-container .see-all a{color:#555;background-color:#FFF;border:none;font-weight:600}.article-page .single-post-pagination-controls .multipage-container .pagination-link a{zoom:1;-webkit-opacity:.85;-moz-opacity:.85;opacity:.85;filter:alpha(opacity=85)}.article-page .single-post-pagination-controls .multipage-container .pagination-link a:hover{zoom:1;-webkit-opacity:1;-moz-opacity:1;opacity:1;filter:alpha(opacity=100);text-decoration:none}.article-page .single-post-pagination-controls .multipage-container .see-all a:hover{text-decoration:underline}.article-page .single-post-pagination-controls .multipage-container .pagination-current{font-weight:600;margin-right:5px;margin-left:5px}@media (min-width:480px){.article-page .single-post-pagination-controls{margin-top:15px;margin-bottom:15px}.article-page .single-post-pagination-controls .multipage-container{width:50%}}.article-page .metadata{line-height:24px;word-wrap:break-word;overflow:hidden}.article-page .metadata a{font-size:14px;padding:4px 3px;font-weight:400}.article-page .metadata a:hover{text-decoration:none;background-color:#cb3a1b;color:#FFF}.article-page .metadata .metadata-label{font-weight:400;color:#555;font-size:14px}.article-page .metadata.tags{margin-top:20px;padding-top:0}.article-page .metadata.tags a{background:#F9F9F9;color:#232323;font-size:13px;-webkit-border-radius:8px;-webkit-background-clip:padding-box;-moz-border-radius:8px;-moz-background-clip:padding;border-radius:8px;background-clip:padding-box;padding:3px 7px;white-space:nowrap;margin-top:5px;display:inline-block;margin-right:10px;text-transform:capitalize}.article-page .metadata.tags a:hover{background-color:#E3E3E3}.article-page .metadata.tags .show-less-tags,.article-page .metadata.tags .show-more-tags{background:#DADADA;color:#232323;cursor:pointer}.article-page .metadata.tags .show-less-tags:hover,.article-page .metadata.tags .show-more-tags:hover{color:#000}.article-page .metadata.tags .show-less-tags.amp,.article-page .metadata.tags .show-more-tags.amp{display:inline-block}.article-page .metadata.tags .expandable,.article-page .metadata.tags .show-less-tags{display:none}.article-page .metadata.tags .show-more-tags,.article-page .metadata.tags.expanded .expandable,.article-page .metadata.tags.expanded .show-less-tags{display:inline-block}.article-page .metadata.tags.expanded .show-more-tags{display:none}body.premium-walled{position:fixed;overflow:hidden;height:100%;width:100%}.premium-content-wall{position:fixed;top:0;right:0;left:0;height:100%;width:100%;pointer-events:none;background:linear-gradient(transparent,#000)}.fly-in{animation:fly-from-bottom ease-in-out .75s forwards}@keyframes fly-from-bottom{from{transform:translateY(100vh)}to{transform:translateY(0)}}.premium-content-login-v2-container{background:#FFF;position:fixed;bottom:0;left:0;right:0;z-index:100000;padding:60px;border-top:solid 3px #CCC;min-height:50vh;transform:translateY(100vh)}.premium-content-login-v2-container .premium-content-fade-bg{height:100px;z-index:100;position:relative;top:-100px;margin:0 auto;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);background-image:-webkit-linear-gradient(bottom,#FFF 10%,rgba(255,255,255,0) 100%);background-image:-moz-linear-gradient(bottom,#FFF 10%,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(bottom,#FFF 10%,rgba(255,255,255,0) 100%);background-image:linear-gradient(to top,#FFF 10%,rgba(255,255,255,0) 100%)}.premium-content-login-v2-container .premium-content-login{position:relative;width:100%;max-width:480px;margin:0 auto}.premium-content-login-v2-container .premium-content-login .premium-content-login-header{text-align:center}.premium-content-login-v2-container .premium-content-login .premium-content-login-header p{position:relative;font-size:14px;margin-bottom:12px}.premium-content-login-v2-container .premium-content-login .input-container{margin-bottom:10px;width:100%}.premium-content-login-v2-container .premium-content-login .input-container input{font-size:18px;display:block;margin:0 auto;width:80%;padding:6px 8px;height:48px;line-height:48px}.premium-content-login-v2-container .premium-content-login .input-container input[type=submit]{font-size:20px;padding:0;color:#F9F9F9;background:#c32200;border:1px solid #AAA}.premium-content-login-v2-container .premium-content-login .input-container input[type=submit]:hover{background-color:#d82600;color:#FFF;border:1px solid #6A6A6A}.offer-container .offer-content .social-login-section .login-seperator span,.premium-content-login-v2-container .premium-content-login .social-login .login-seperator span{background-color:#FFF}.premium-content-login-v2-container .premium-content-login .email-privacy-policy-warning{text-align:center;width:80%;margin:12px auto;line-height:1em}.premium-content-login-v2-container .premium-content-login .email-privacy-policy-warning small{font-size:70%;opacity:.85}@media (max-width:480px){.premium-content-login-v2-container .premium-content-login .input-container input{width:100%}}.premium-content-login-v2-container .premium-content-login .social-login{width:80%;margin:0 auto}@media (max-width:480px){.premium-content-login-v2-container .premium-content-login .social-login{width:100%}}.premium-content-login-v2-container .premium-content-login .social-login .login-seperator{margin-top:-10px}.premium-content-login-v2-container .premium-content-login .social-login a:hover{text-decoration:none;color:#444;border:thin solid #888}.premium-content-login-v2-container .premium-content-login .social-login a:active{position:relative;top:1px}.premium-content-login-v2-container .premium-content-login .social-login .google-signin-button{margin-top:10px;margin-bottom:10px}.ds-widget{display:flex;width:50%}@media (max-width:767px){.ds-widget{display:none!important}}.ds-widget .sp-share-button{display:block;height:32px;line-height:32px;margin-right:5px;width:auto;text-align:left;padding-left:12px;padding-right:13px;color:#FFF;font-weight:400;font-size:15px}.ds-widget .sp-share-button.sp-fb-button{background-color:#3B5998}.ds-widget .sp-share-button.sp-fb-button:hover{background-color:#23448B}.ds-widget .sp-share-button.sp-tw-button{background-color:#00ACED}.ds-widget .sp-share-button.sp-tw-button:hover{background-color:#0898CE}.ds-widget .sp-share-button.sp-em-button{background-color:#AAA}.ds-widget .sp-share-button.sp-em-button:hover{background-color:#999}.ds-widget .sp-share-button:hover{text-decoration:none}.ds-widget .sp-share-button .single-post-share-icon{display:inline-block;height:13px;width:12px;background-size:cover;position:relative;top:2px}.ds-widget .sp-share-button .single-post-share-icon.icon-email{width:16px;background-size:16px;top:3px}.related-posts{font-size:14px;margin-bottom:15px;margin-top:15px;clear:both}.related-posts .post-row{margin-left:-15px;margin-right:-15px;margin-bottom:16px}@media (min-width:768px){.related-posts .post-row{margin-left:0;margin-right:0;display:flex;justify-content:space-between}}.related-posts .thumb{display:block;line-height:1.3em;font-weight:400;width:100vw}@media (min-width:768px) and (max-width:991px){.related-posts .thumb{width:320px}}@media (min-width:992px) and (max-width:1259px){.related-posts .thumb{width:300px}}@media (min-width:1260px){.related-posts .thumb{width:400px}}.related-posts .thumb:hover{border:none}.related-posts .thumb picture .placeholder-img,.related-posts .thumb picture img{width:100vw;height:56vw}@media (min-width:768px) and (max-width:1259px){.related-posts .thumb picture .placeholder-img,.related-posts .thumb picture img{width:320px;height:180px}}@media (min-width:992px) and (max-width:1259px){.related-posts .thumb picture .placeholder-img,.related-posts .thumb picture img{width:300px;height:168px}}@media (min-width:1260px){.related-posts .thumb picture .placeholder-img,.related-posts .thumb picture img{width:400px;height:225px}}.related-posts .thumb .title{margin-top:6px;font-weight:600;display:block;color:#555}.discount-highlight .discount-original,.offer-container .offer-content .text-content .free-text{font-weight:700}@media (max-width:767px){.related-posts .thumb .title{font-size:18px;line-height:1.3em;margin:10px 15px 30px}}@media (min-width:768px){.related-posts .thumb .title{font-size:16px;line-height:1.3em}}@media (max-width:480px){.related-posts .thumb{margin-bottom:24px}}@media (min-width:992px){.related-posts .thumb:hover picture{zoom:1;-webkit-opacity:.5;-moz-opacity:.5;opacity:.5;filter:alpha(opacity=50)}}.offer-container .offer-content{display:flex}.offer-container .offer-content .text-content{display:flex;justify-content:center;align-items:center;flex-direction:column}.offer-container .offer-content .text-content .title{text-align:center;font-size:32px;margin-bottom:16px}.offer-container .offer-content .text-content p{font-size:24px;text-align:center;margin-bottom:16px}.offer-container .offer-content .text-content .price-text{text-decoration:line-through}.offer-container .offer-content .text-content .input-container{margin-bottom:10px;width:100%}.offer-container .offer-content .text-content .input-container input{font-size:18px;display:block;margin:0 auto;width:80%;padding:6px 8px;height:48px;line-height:48px}.offer-container .offer-content .text-content .input-container input[type=submit]{font-size:20px;padding:0;color:#F9F9F9;background:#c32200;border:1px solid #AAA}.offer-container .offer-content .text-content .input-container input[type=submit]:hover{background-color:#d82600;color:#FFF;border:1px solid #6A6A6A}.offer-container .offer-content .social-login-section a:hover,.shortcode .company-follow-email .social-login-section a:hover,.shortcode .daily-newsletter .social-login-section a:hover,.shortcode .hedge-fund-follow-email .social-login-section a:hover{text-decoration:none;color:#444;border:thin solid #888}.offer-container .offer-content .text-content .email-privacy-policy-warning{margin-top:8px}.offer-container .offer-content .text-content .email-privacy-policy-warning small{font-size:70%;opacity:.85}@media (max-width:480px){.offer-container .offer-content .text-content .title{font-size:24px;margin-bottom:16px}.offer-container .offer-content .text-content p{font-size:20px}.offer-container .offer-content .text-content .input-container input{width:100%}}.offer-container .offer-content .social-login-section{width:80%;margin:0 auto}.input-container.privacy-policy-row,.offer-container .offer-content .social-login-section .login-seperator{margin-top:-10px}.offer-container .offer-content .social-login-section a:active{position:relative;top:1px}.offer-container .offer-content .social-login-section .google-signin-button span.buttonText{position:relative;font-size:18px;top:1px}@media (min-width:992px) and (max-width:1260px){.offer-container .offer-content .social-login-section .google-signin-button span.icon{left:0}.offer-container .offer-content .social-login-section .google-signin-button span.buttonText{left:-10px}}.offer-container #buffett-image{height:300px}@media (max-width:600px){.offer-container #buffett-image{height:200px;margin:0 auto;display:block}}@media (max-width:480px){.offer-container .offer-content .social-login-section{width:100%}.offer-container #buffett-image{display:none}}.special-offers-container .special-offers-content .text-content .title{font-size:22px;font-weight:600}.special-offers-container .special-offers-content .text-content .message{width:80%}.special-offers-container .special-offers-content .text-content p{font-size:18px;text-align:left;margin:16px auto}@media (max-width:480px){.special-offers-container .special-offers-content .text-content .message{width:100%}}.shortcode .article-get-email.input-container{margin:15px auto 0;border:1px solid #DADADA;border-right:0;background-color:#fcf6f2;position:relative;width:400px}@media (max-width:580px){.shortcode .article-get-email.input-container{width:310px}}.shortcode .article-get-email.input-container input:focus{outline:0}.shortcode .article-get-email.input-container input[type=email],.shortcode .article-get-email.input-container input[type=text]{font-size:16px;height:36px;line-height:36px;width:100%;background-color:#fcf6f2;border:0;padding:2px 10px}.shortcode .article-get-email.input-container input[type=submit]{height:38px;line-height:38px;background:#c32200;font-weight:400;color:#FFF;border:1px solid transparent;padding:0 10px;position:absolute;right:0;left:auto;top:-1px;zoom:1;-webkit-opacity:.85;-moz-opacity:.85;opacity:.85;filter:alpha(opacity=85);transition-timing-function:cubic-bezier(0,0,1,1),ease}.shortcode .article-get-email.input-container input[type=submit]:hover{border:1px solid transparent;-webkit-box-shadow:0 0 0 #000;-moz-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000;background:#d82600;color:#FFF;zoom:1;-webkit-opacity:1;-moz-opacity:1;opacity:1;filter:alpha(opacity=100)}.shortcode .get-email-message{color:#cb3a1b;font-size:16px;margin-top:10px;clear:both;padding:0 10px}.article-page .single-content .blog-cta-container{text-align:center}.article-page .single-content .blog-cta-button{background-color:#FED04E;color:#1A1A1A;font-weight:600;max-width:300px;display:block;margin:0 auto;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;border:1px solid #999;cursor:pointer;outline:0;padding:0 36px;font-size:24px;line-height:54px;text-align:center;font-family:proxima-nova-condensed,"Proxima Nova Condensed Fallback",sans-serif}.article-page .single-content .blog-cta-button:hover{text-decoration:none;border:1px solid #999;color:#1A1A1A;background-color:#fec31b}.social-proof-container{padding:60px 32px 0;background-color:#FCF6F2}.social-proof-container .social-proof-text p{font-size:22px;line-height:1.75em;margin-bottom:20px}.social-proof-container .brands{padding:0 130px;clear:both;margin:0 auto;position:relative;left:-40px}.social-proof-container .brands .logo-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:40px;width:100%}.social-proof-container .brands .logo-row:last-child{justify-content:center}.social-proof-container .brands img{transform:scale(.85);position:relative}.social-proof-container .brands-mobile .logo-container{margin-bottom:20px;padding-bottom:10px;margin-top:20px}.social-proof-container .wsj-logo{width:330px;height:28px}.social-proof-container img.marketwatch-logo{width:235px;height:34px;transform:scale(1)}.social-proof-container .motley-fool-logo{width:263px;height:72px;right:-12px;top:-16px}.social-proof-container .sa-logo{width:300px;height:60px}.social-proof-container .yf-logo{width:236px;height:88px}.social-proof-container .street-logo{width:254px;height:86px}.social-proof-container .nasdaq-logo{width:300px;height:64px;right:-30px}@media (max-width:1259px){.social-proof-container .brands{padding:0 40px}.social-proof-container .brands img{transform:scale(.7)}.social-proof-container .brands .marketwatch-logo{transform:scale(.85)}.social-proof-container .brands-mobile img{transform:scale(.72);display:block;margin:0 auto 20px;position:static}}.discount-highlight{text-align:center;font-size:24px}.discount-highlight .strikethrough{position:relative}.discount-highlight .strikethrough .del{text-decoration:none;position:relative;font-size:24px;color:rgba(8,8,8,.8)}.discount-highlight .strikethrough .del:after,.discount-highlight .strikethrough .del:before{content:" ";width:54px;border-top:2px solid rgba(255,0,0,.65);position:absolute;bottom:16px;left:-5px;display:block}.discount-highlight .strikethrough .del:before{transform:rotate(22.5deg)}.discount-highlight .strikethrough .del:after{transform:rotate(-22.5deg)}.discount-highlight .strikethrough .ins{font-size:60px;font-weight:500;text-decoration:none;padding:1em 1em 1em .5em}.shortcode .company-follow-email,.shortcode .daily-newsletter,.shortcode .hedge-fund-follow-email{border-bottom:1px solid #DADADA;border-top:1px solid #DADADA;background-color:#FAFCFA;position:relative;font-size:15px;padding:20px 0;overflow:hidden;margin-bottom:20px;clear:both;text-align:center}.shortcode .company-follow-email h3,.shortcode .daily-newsletter h3,.shortcode .hedge-fund-follow-email h3{line-height:1.4em;font-size:20px}.shortcode .company-follow-email .offer-info,.shortcode .daily-newsletter .offer-info,.shortcode .hedge-fund-follow-email .offer-info{margin-top:0;text-align:center;margin-bottom:2px}.shortcode .company-follow-email .notification-button,.shortcode .daily-newsletter .notification-button,.shortcode .hedge-fund-follow-email .notification-button{position:relative;display:block;margin:0 auto 5px;top:-4px;height:44px;line-height:44px;padding:0;font-size:18px;width:240px}.shortcode .company-follow-email .notification-button.unfollow,.shortcode .daily-newsletter .notification-button.unfollow,.shortcode .hedge-fund-follow-email .notification-button.unfollow{padding:0}.shortcode .company-follow-email p,.shortcode .daily-newsletter p,.shortcode .hedge-fund-follow-email p{margin-top:10px;margin-bottom:10px;font-size:16px;line-height:1.5em}.shortcode .company-follow-email p.successful-message,.shortcode .daily-newsletter p.successful-message,.shortcode .hedge-fund-follow-email p.successful-message{font-size:17px;padding-left:10px;padding-right:10px}@media (max-width:768px){.shortcode .company-follow-email p.successful-message,.shortcode .daily-newsletter p.successful-message,.shortcode .hedge-fund-follow-email p.successful-message{line-height:1.4em}}.shortcode .company-follow-email .social-login-section,.shortcode .daily-newsletter .social-login-section,.shortcode .hedge-fund-follow-email .social-login-section{max-width:400px;margin:0 auto}.shortcode .company-follow-email .social-login-section .login-seperator span,.shortcode .daily-newsletter .social-login-section .login-seperator span,.shortcode .hedge-fund-follow-email .social-login-section .login-seperator span{background-color:#FAFCFA}.shortcode .company-follow-email .social-login-section a:active,.shortcode .daily-newsletter .social-login-section a:active,.shortcode .hedge-fund-follow-email .social-login-section a:active{position:relative;top:1px}.shortcode .email-privacy-policy-warning{margin-top:-20px;margin-bottom:20px;text-align:center;line-height:1.25em}.shortcode .email-privacy-policy-warning small{font-size:70%;opacity:.85}.shortcode [submit-error]{color:#cb3a1b;font-size:16px;margin:5px auto 0;padding:0 20px;text-align:center;font-weight:600}.article-page .single-content .shortcode h3{line-height:1.4em;font-size:18px}::-webkit-input-placeholder{color:#A0A0A0}:-moz-placeholder{color:#A0A0A0}::-moz-placeholder{color:#A0A0A0}:-ms-input-placeholder{color:#A0A0A0}.warning{color:#d82600}label{cursor:default!important}.input-container{width:220px;margin-bottom:32px}.input-container *,.input-container :after,.input-container :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-container input[type=email],.input-container input[type=password],.input-container input[type=text],.input-container select,.input-container textarea{width:100%;background:#fffaf0;border:1px solid #CCC;color:#1A1A1A;line-height:42px;padding:8px 0 8px 7px;font-size:16px;height:42px}.input-container textarea{height:100px;line-height:20px}.input-container input[type=email],.input-container input[type=image],.input-container input[type=password],.input-container input[type=text],.input-container select,.input-container textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-border-radius:0;-webkit-background-clip:padding-box;-moz-border-radius:0;-moz-background-clip:padding;border-radius:0;background-clip:padding-box}.input-container input[type=password]:focus,.input-container input[type=text]:focus,.input-container textare:focus{outline:0!important;background-color:#f9f9f9}.input-container label{display:block;font-size:13px;color:#191919;line-height:14px;text-transform:uppercase;font-weight:600;margin-bottom:4px}.input-container.button-container{width:100%;margin-top:10px}.input-container .button{-webkit-border-radius:25px;-webkit-background-clip:padding-box;-moz-border-radius:25px;-moz-background-clip:padding;border-radius:25px;background-clip:padding-box;font-size:16px;padding:12px 45px;border:1px solid #AAA;margin-right:15px;cursor:pointer;outline:0}.input-container .button:active{position:relative;top:2px}.input-container .button.action-button{color:#F9F9F9;background:#c32200}.input-container .button.cancel-button{color:#6A6A6A;background:#D8D8D8}.input-container .button:disabled{zoom:1;-webkit-opacity:.7;-moz-opacity:.7;opacity:.7;filter:alpha(opacity=70)}.input-container .validated-input{display:flex;justify-content:space-between}.input-container .validated-input .instruction{padding-right:10px;color:#6A6A6A}.input-container.checkboxes-row{display:flex;justify-content:space-between}input{-webkit-border-radius:0;-webkit-background-clip:padding-box;-moz-border-radius:0;-moz-background-clip:padding;border-radius:0;background-clip:padding-box}select{position:relative}input[type=button],input[type=submit]{border-style:none;outline:0!important}input[type=button].disabled,input[type=button]:disabled,input[type=submit].disabled,input[type=submit]:disabled{zoom:1;-webkit-opacity:.8;-moz-opacity:.8;opacity:.8;filter:alpha(opacity=80)}input[type=button].disabled:hover,input[type=button]:disabled:hover,input[type=submit].disabled:hover,input[type=submit]:disabled:hover{background:#cb3a1b;color:#FFF;border-color:transparent;cursor:default}.contact-form .submit-row{margin-top:-15px}.contact-form .warning.form-top{margin-bottom:20px}.validated-form{margin:15px 0 95px}.validated-form .input-container{width:100%}.validated-form .input-container input[type=email],.validated-form .input-container input[type=password],.validated-form .input-container input[type=text]{width:300px;margin-right:10px;height:42px}@media (max-width:992px){.validated-form .input-container input[type=email],.validated-form .input-container input[type=password],.validated-form .input-container input[type=text]{width:90%;max-width:300px;margin-right:0}}.validated-form .input-container.checkboxes-row{width:300px}@media (max-width:992px){.validated-form .input-container.checkboxes-row{width:90%;max-width:300px;margin-right:0}}.validated-form .input-container .validated-input{display:flex;justify-content:flex-start;width:100%}.validated-form .input-container .validated-input .instruction-container{display:flex;align-items:center;vertical-align:middle;height:42px}.validated-form .input-container .validated-input .instruction-container p{margin:0}.validated-form .input-container .validated-input .instruction-container .invisible{display:none}@media (max-width:992px){.validated-form .input-container .validated-input{display:block}.validated-form .input-container .validated-input .instruction-container{display:block;height:auto}.validated-form .input-container .validated-input .instruction-container .instruction{display:none}.validated-form .input-container .validated-input .instruction-container .warning{display:block;margin-bottom:20px}.validated-form .input-container .validated-input .instruction-container .warning.invisible{display:none}}.notification-button.follow .icon-email-red,.notification-button.unfollow .icon-email{display:none}.notification-button{position:absolute;right:0;top:3px;padding:3px 16px;font-size:15px;font-weight:500;line-height:1.6em;zoom:1;-webkit-opacity:.2;-moz-opacity:.2;opacity:.2;filter:alpha(opacity=20)}.notification-button.follow,.notification-button.unfollow{zoom:1;-webkit-opacity:1;-moz-opacity:1;opacity:1;filter:alpha(opacity=100)}.notification-button.follow{background-color:#cb3a1b;color:#FFF}.notification-button.follow:hover{color:#FFF!important;border:none!important}.notification-button.unfollow{background:#F9F9F9;color:#6A6A6A;border:1px solid #AAA;padding:2px 14px}.notification-button.unfollow:hover{border:1px solid #AAA!important}.notification-button.loading{zoom:1;-webkit-opacity:.5;-moz-opacity:.5;opacity:.5;filter:alpha(opacity=50)}.notification-button.disabled{zoom:1;-webkit-opacity:.8;-moz-opacity:.8;opacity:.8;filter:alpha(opacity=80)}.notification-button .icon-email,.notification-button .icon-email-red{width:20px;height:13px;display:inline-block;position:relative;right:2px;top:1px}@media (max-width:768px){.section-nav .notification-button{padding:9px 16px;margin-bottom:10px;display:block;position:static;width:100%}}@media (max-width:992px){#icpopup1{display:none!important}}#icpopup1 #overlay{z-index:3500!important}#icpopup1 #pop-up-iframe .slogan{font-family:proxima-nova,Helvetica,Arial,sans-serif!important;text-align:center!important;padding-top:8px!important}#icpopup1 #pop-up-iframe #close{font-size:16px;font-family:proxima-nova,Helvetica,Arial,sans-serif!important;font-weight:400!important}#icpopup1 #pop-up-iframe h3,#icpopup1 #pop-up-iframe p{font-weight:600!important;font-family:proxima-nova,Helvetica,Arial,sans-serif!important}#icpopup1 #pop-up-iframe h3{margin-top:30px!important}#icpopup1 #pop-up-iframe .form input:focus{outline:0!important}#icpopup1 #pop-up-iframe .form .button{font-family:proxima-nova,Helvetica,Arial,sans-serif!important;font-weight:500!important}#icpopup1 #pop-up-iframe .thank-you-message h3{font-family:proxima-nova,Helvetica,Arial,sans-serif!important}#icpopup1 #pop-up-iframe hr{display:none!important}#icpopup1 #pop-up-iframe .center-label{font-family:proxima-nova,Helvetica,Arial,sans-serif!important} </style> <script> /*! loadCSS. [c]2017 Filament Group, Inc. MIT License */ /* This file is meant as a standalone workflow for - testing support for link[rel=preload] - enabling async CSS loading in browsers that do not support rel=preload - applying rel preload css once loaded, whether supported or not. */ (function( w ){ "use strict"; // rel=preload support test if( !w.loadCSS ){ w.loadCSS = function(){}; } // define on the loadCSS obj var rp = loadCSS.relpreload = {}; // rel=preload feature support test // runs once and returns a function for compat purposes rp.support = (function(){ var ret; try { ret = w.document.createElement( "link" ).relList.supports( "preload" ); } catch (e) { ret = false; } return function(){ return ret; }; })(); // if preload isn't supported, get an asynchronous load by using a non-matching media attribute // then change that media back to its intended value on load rp.bindMediaToggle = function( link ){ // remember existing media attr for ultimate state, or default to 'all' var finalMedia = link.media || "all"; function enableStylesheet(){ link.media = finalMedia; } // bind load handlers to enable media if( link.addEventListener ){ link.addEventListener( "load", enableStylesheet ); } else if( link.attachEvent ){ link.attachEvent( "onload", enableStylesheet ); } // Set rel and non-applicable media type to start an async request // note: timeout allows this to happen async to let rendering continue in IE setTimeout(function(){ link.rel = "stylesheet"; link.media = "only x"; }); // also enable media after 3 seconds, // which will catch very old browsers (android 2.x, old firefox) that don't support onload on link setTimeout( enableStylesheet, 3000 ); }; // loop through link elements in DOM rp.poly = function(){ // double check this to prevent external calls from running if( rp.support() ){ return; } var links = w.document.getElementsByTagName( "link" ); for( var i = 0; i < links.length; i++ ){ var link = links[ i ]; // qualify links to those with rel=preload and as=style attrs if( link.rel === "preload" && link.getAttribute( "as" ) === "style" && !link.getAttribute( "data-loadcss" ) ){ // prevent rerunning on link link.setAttribute( "data-loadcss", true ); // bind listeners to toggle media back rp.bindMediaToggle( link ); } } }; // if unsupported, run the polyfill if( !rp.support() ){ // run once at least rp.poly(); // rerun poly on an interval until onload var run = w.setInterval( rp.poly, 500 ); if( w.addEventListener ){ w.addEventListener( "load", function(){ rp.poly(); w.clearInterval( run ); } ); } else if( w.attachEvent ){ w.attachEvent( "onload", function(){ rp.poly(); w.clearInterval( run ); } ); } } // commonjs if( typeof exports !== "undefined" ){ exports.loadCSS = loadCSS; } else { w.loadCSS = loadCSS; } }( typeof global !== "undefined" ? global : this ) ); </script> <script> // if (typeof IMONKEY !== "undefined" && (!IMONKEY.inMobile || IMONKEY.IS_MOBILE_ADS_DISABLED !== true)) { if (typeof IMONKEY !== "undefined" && !IMONKEY.inMobile) { var script = document.createElement('script'); script.async = true; script.src = "https://cdn.p-n.io/pushly-sdk.min.js?domain_key=4FUgBjshmH9pfMjcCzb9JGI3NiWwKiBRsUWp"; document.head.appendChild(script); var PushlySDK = window.PushlySDK || []; function pushly() { PushlySDK.push(arguments) } pushly('load', { domainKey: '4FUgBjshmH9pfMjcCzb9JGI3NiWwKiBRsUWp', }); } </script> <link rel="preconnect" href="https://uat5-a.investingchannel.com"> <link rel="preconnect" href="https://use.typekit.net"> </head> <script>InvestingChannelQueue = window.InvestingChannelQueue || [];</script> <script> var ic_page; InvestingChannelQueue.push(function() { ic_page = InvestingChannel.UAT.Run("eb968bea-fe57-4955-8691-a14daaef3447",{ "page_url":"https://www.insidermonkey.com/", "page_category": IMONKEY.getICZone() }); }); </script> <script> </script> <script> if (typeof IMONKEY !== "undefined" && (!IMONKEY.inMobile || IMONKEY.IS_MOBILE_ADS_DISABLED !== true)) { var script = document.createElement('script'); script.async = true; script.defer = true; script.src = "https://u5.investingchannel.com/static/uat.js"; document.head.appendChild(script); } </script> <body class="archive-page"> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WKF8XR" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script type="text/javascript"> var IMONKEY = window.IMONKEY || {}; window.IMONKEY_ADS = window.IMONKEY_ADS || []; window.lazySizesConfig = window.lazySizesConfig || {}; // use .lazy instead of .lazyload window.lazySizesConfig.lazyClass = 'lazy'; // use data-original instead of data-src window.lazySizesConfig.srcAttr = 'data-original'; </script> <nav id="site-navigation"> <div class="level-1 level"> <div class="container"> <div class="flex-container desktop-menu"> <div class="wrap"> <div class="logo-container"> <a href="https://www.insidermonkey.com/" Title="Insider Monkey - Insider Trading, Hedge Fund Data, Investing, and Investment Newsletter"><span class="icon icon-logo"></span></a> </div> <div class="search-container"> <form class="search" role="search" action="https://www.insidermonkey.com/search/all" method="get"> <input class="search-box desktop-search-input search-input" type="text" placeholder="Search Hedge Funds, Stocks, Insiders" name="q" autocomplete="off"> <div class="submit-container"> <input class="icon-search-gray-icon" type="submit" value="" name="submit"> </div> </form> </div> </div> <div class="user-action-container"> <a href="https://www.insidermonkey.com/login/?rurl=https%3A%2F%2Fwww.insidermonkey.com%2Fblog%2Fauthor%2Frishab-pillai%2F" class="login-screen-show navigation-btn">Log In<span class="icon icon-login-w"></a> <a href="https://www.insidermonkey.com/signup" class="signup-screen-show navigation-btn">Sign Up<span class="icon icon-signup-w"></a> <a href="https://www.insidermonkey.com/premium/newsletters/all" class="navigation-btn btn-premium">Premium</a> <div class="ic-ad" class="visible-lg"> <div id="IC_d_88x31_1"></div> </div> </div> </div> <div class="flex-container mobile-menu"> <div class="button-container"> <button type="button" aria-label="Mobile Menu" class="menu-button"> <svg xmlns="http://www.w3.org/2000/svg" width="70" height="70" viewBox="0 0 200 200"> <g stroke-width="6.5" stroke-linecap="round"> <path d="M72 82.286h28.75" fill="#009100" fill-rule="evenodd" stroke="#fff" /> <path d="M100.75 103.714l72.482-.143c.043 39.398-32.284 71.434-72.16 71.434-39.878 0-72.204-32.036-72.204-71.554" fill="none" stroke="#fff" /> <path d="M72 125.143h28.75" fill="#009100" fill-rule="evenodd" stroke="#fff" /> <path d="M100.75 103.714l-71.908-.143c.026-39.638 32.352-71.674 72.23-71.674 39.876 0 72.203 32.036 72.203 71.554" fill="none" stroke="#fff" /> <path d="M100.75 82.286h28.75" fill="#009100" fill-rule="evenodd" stroke="#fff" /> <path d="M100.75 125.143h28.75" fill="#009100" fill-rule="evenodd" stroke="#fff" /> </g> </svg> </button> <div class="logo-container"> <a href="https://www.insidermonkey.com/" Title="Insider Monkey - Insider Trading, Hedge Fund Data, Investing, and Investment Newsletter"><span class="icon icon-logo"></span></a> </div> </div> <div class="button-container"> <a href="https://www.insidermonkey.com/blog/ai-fire-sale-insider-monkeys-1-ai-stock-pick-is-on-a-steep-discount/" class="promotion-button navigation-btn btn-premium" aria-label="Top AI Stock to Buy">#1 AI Stock <span class="hidden-xtra">to Buy</span></a> <button type="button" class="search-button" aria-label="Search"><span class="icon-search-white-icon"></span></button> </div> </div> </div> </div> <div class="search-level level"> <div class="container"> <div class="flex-container"> <form class="search" role="search" action="https://www.insidermonkey.com/search/all" method="get"> <input class="search-box mobile-search-input search-input" type="text" placeholder="Search Hedge Funds, Stocks, Insiders" name="q" autocomplete="off"> <button type="button" class="icon-search-close close-mobile-search-button"></button> </form> </div> </div> </div> <div class="level-2 level" style="padding: 0;"> <div class="container"> <ul> <li class="dropdown "> <a href="https://www.insidermonkey.com/blog/category/news/" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Markets <i class="caret"></i></a> <ul class="dropdown-menu" role="menu" data-menu="markets"> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/news/">News</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/tech-2">Tech</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/market-movers">Market Movers</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/futuresforex">Futures Forex</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/macroeconomic-predictions" rel="bookmark">Macroeconomic Predictions</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/economy" rel="bookmark">Economy</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/industries" rel="bookmark">Industries</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/category/options">Options</a></li> </ul> </li> <li class="dropdown "> <a href="https://www.insidermonkey.com/insider-trading/" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Insider Trading <i class="caret"></i></a> <ul class="dropdown-menu" role="menu"> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/">Main</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/education-center/">Education Center</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/screener/">Stock Screener</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/purchases/">Insider Purchases</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/sales/">Insider Sales</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/companies/">Browse Companies</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com//blog/category/transcripts">Transcripts</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/insider-trading/latest-13dg-filings/">Latest 13D &amp; 13G Filings</a></li> </ul> </li> <li class="dropdown "> <a href="https://www.insidermonkey.com/hedge-fund/" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Hedge Funds <i class="caret"></i></a> <ul class="dropdown-menu" role="menu"> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/hedge-fund/">Main</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/hedge-fund/education-center/why-track-hedge-funds/">Education Center</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/hedge-fund/browse/">Browse Hedge Funds</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com//blog/category/hedge-fund-investor-letters">Investor Letters</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/hedge-fund/best-performing-hedge-funds/">Best Performing</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/hedge-fund/worst-performing-hedge-funds/">Worst Performing</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/institutional-investor/browse/">Other Institutional Investors</a></li> </ul> </li> <li class="dropdown "> <a href="https://www.insidermonkey.com/blog//category/etf-trading" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Retirement <i class="caret"></i></a> <ul class="dropdown-menu" role="menu"> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/etf-trading">ETF Trading</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/commodities">Commodities</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/gold">Gold</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/dividend-stocks">Dividend Stocks</a></li> </ul> </li> <li class="dropdown "> <a href="https://www.insidermonkey.com/blog/" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Opinion <i class="caret"></i></a> <ul class="dropdown-menu" role="menu"> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog/">Main</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/hedge-fund-analysis">Hedge Fund Analysis</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/stock-analysis">Stock Analysis</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/we-disagree">We Disagree</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/blog//category/lists">Lists</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/authors/">Authors</a></li> </ul> </li> <li class="dropdown "> <a href="https://www.insidermonkey.com/premium/newsletters/all" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Premium <i class="caret"></i></a> <ul class="dropdown-menu" role="menu"> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/premium/newsletters/all">Newsletters</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/my-account/subscriptions">My Subscriptions</a></li> <li role="presentation" ><a role="menuitem" href="https://www.insidermonkey.com/my-account/premium-readership">Premium Readership</a></li> </ul> </li> <li class="dropdown hidden-md hidden-lg"><a href="https://www.insidermonkey.com/login/?rurl=https%3A%2F%2Fwww.insidermonkey.com%2Fblog%2Fauthor%2Frishab-pillai%2F" class="login-screen-show dropdown-toggle direct">Log In<span class="icon icon-login"></span></a></li> <li class="dropdown hidden-md hidden-lg"><a href="https://www.insidermonkey.com/signup" class="signup-screen-show dropdown-toggle direct">Sign Up<span class="icon icon-signup"></span></a></li> </ul> </div> <div class="promotion-level" > <div class="container"> <div class="flex-container"> <p class="long-text">Our #1 AI Stock Pick is on a <a href="https://www.insidermonkey.com/blog/ai-fire-sale-insider-monkeys-1-ai-stock-pick-is-on-a-steep-discount/" style="font-weight: bold;">steep discount</a> - 29$ instead of 99$! <a href="https://www.insidermonkey.com/blog/ai-fire-sale-insider-monkeys-1-ai-stock-pick-is-on-a-steep-discount/" style="font-weight: bold;">Click here</a> to access exclusive investment research and ad free browsing!</p> <p class="short-text">Our #1 AI Stock Pick is on a <a href="https://www.insidermonkey.com/blog/ai-fire-sale-insider-monkeys-1-ai-stock-pick-is-on-a-steep-discount/" style="font-weight: bold;">steep discount</a> - 29$ instead of 99$! <a href="https://www.insidermonkey.com/blog/ai-fire-sale-insider-monkeys-1-ai-stock-pick-is-on-a-steep-discount/" style="font-weight: bold;">Click here</a> to access exclusive research!</p> <button class="close-button">X</button> </div> </div> </div> </div> </nav> <div class="quick-search"> <div class="results-container"> <div class="section" data-section="company"> <div class="section-name">Companies <span data-n-results="0">0</span> <a href="https://www.insidermonkey.com/search/all/?m=2">See All</a></div> <div class="results"> </div> </div> <div class="section" data-section="fund"> <div class="section-name">Hedge Funds <span data-n-results="0">0</span> <a href="https://www.insidermonkey.com/search/all/?m=3">See All</a></div> <div class="results"></div> </div> <div class="section" data-section="insider"> <div class="section-name">Insiders <span data-n-results="0">0</span> <a href="https://www.insidermonkey.com/search/all/?m=1">See All</a></div> <div class="results"></div> </div> <div class="section" data-section="small-fund"> <div class="section-name">Institutional Investors <span data-n-results="0">0</span> <a href="https://www.insidermonkey.com/search/all/?m=5">See All</a></div> <div class="results"></div> </div> <a href="https://www.insidermonkey.com/search/" class="see-all-link" id="see-all-search-results">Click here to see all <span data-n-total-results="1"></span> results for <span data-query=""></span></a> <a href="javascript:void(0)" class="see-all-link" id="no-search-results" style="display: none">Sorry, no results has been found matching your query.</a> </div> </div> <div class="ad-horizontal-top-wrapper"> <div id="ad-horizontal-top" class="ad-horizontal-top ic-ad"> <div id="IC_d_728x90_1"></div> <div id="IC_m_300x250_1"></div> </div> </div> <div class="overlay" id="login-screen"></div> <div class="overlay" id="signup-screen"></div> <div class="overlay" id="forgot-pass-screen"></div> <div class="overlay" id="send-activate-screen"></div> <div class="overlay" id="apply-coupon-screen"></div> <div id="shadow"></div> <div id="g_id_onload" data-client_id="104770911893-0juidemf1d5055t3pek2hvrs08cejh90.apps.googleusercontent.com" data-login_uri="https://www.insidermonkey.com//services/login_google.php" ></div> <script> const viewportWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); if (viewportWidth > IMONKEY.GOOGLE_ONETAP_LOGIN_DESKTOP_BREAKPOINT) { const googleOneTapLoginContainer = document.getElementById('g_id_onload'); let currentUrl = window.location.href; // This gets the current page URL let dataLoginUri = googleOneTapLoginContainer.getAttribute('data-login_uri'); if (window.location.href.indexOf('?') == -1) { currentUrl = currentUrl + '?signup_source=onetap'; } else { currentUrl = currentUrl + '&signup_source=onetap'; } // base 64 encode the current url and append it to the login uri dataLoginUri = dataLoginUri + '?state=' + btoa(currentUrl); googleOneTapLoginContainer.setAttribute('data-login_uri', dataLoginUri); // inject the script "https://accounts.google.com/gsi/client" to the web page to be loaded asynchronously const script = document.createElement('script'); script.src = "https://accounts.google.com/gsi/client"; script.async = true; document.body.appendChild(script); } </script> <div class =" content blog-page"> <div class="middle-col"> <div class="middle-subcol-1" id="blog-middle-col"> <div class="blog-posts"> <div class="blog-content-container headlines related-news"> <div class="section-header"> <h1 class="page-title">Author Archive - Ricardo Pillai</h1> </div> <div class="post small-headline-post" id="post-1467420"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/pge-corporation-pcg-a-bull-case-theory-2-1467420/" rel="bookmark" title="Permanent Link to PG&#038;E Corporation (PCG): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/07170849/NI-insidermonkey-1696712926498.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/pge-corporation-pcg-a-bull-case-theory-2-1467420/" rel="bookmark" title="Permanent Link to PG&#038;E Corporation (PCG): A Bull Case Theory">PG&#038;E Corporation (PCG): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on PG&E Corporation (PCG) on Substack by Acid Investments. In this article, we will summarize the bulls’ thesis on PCG.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/pge-corporation-pcg-a-bull-case-theory-2-1467420/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467410"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/trip-com-group-limited-tcom-a-bull-case-theory-1467410/" rel="bookmark" title="Permanent Link to Trip.com Group Limited (TCOM): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2016/11/26222850/45644662_m.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/trip-com-group-limited-tcom-a-bull-case-theory-1467410/" rel="bookmark" title="Permanent Link to Trip.com Group Limited (TCOM): A Bull Case Theory">Trip.com Group Limited (TCOM): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Trip.com Group Limited (TCOM) on Substack by Acid Investments. In this article, we will summarize the bulls’ thesis on TCOM.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/trip-com-group-limited-tcom-a-bull-case-theory-1467410/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467401"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/riskified-ltd-rskd-a-bull-case-theory-1467401/" rel="bookmark" title="Permanent Link to Riskified Ltd. (RSKD): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2016/11/26203529/32529977_m.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/riskified-ltd-rskd-a-bull-case-theory-1467401/" rel="bookmark" title="Permanent Link to Riskified Ltd. (RSKD): A Bull Case Theory">Riskified Ltd. (RSKD): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Riskified Ltd. (RSKD) on Twitter by northeasternsvf. In this article, we will summarize the bulls’ thesis on RSKD. Riskified Ltd.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/riskified-ltd-rskd-a-bull-case-theory-1467401/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467397"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/ugi-corporation-ugi-a-bull-case-theory-2-1467397/" rel="bookmark" title="Permanent Link to UGI Corporation (UGI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/31211403/VNOM-insidermonkey-1698801240665.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/ugi-corporation-ugi-a-bull-case-theory-2-1467397/" rel="bookmark" title="Permanent Link to UGI Corporation (UGI): A Bull Case Theory">UGI Corporation (UGI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on UGI Corporation (UGI) on Substack by Investing 501. In this article, we will summarize the bulls’ thesis on UGI.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/ugi-corporation-ugi-a-bull-case-theory-2-1467397/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="ic-ad archive-banner-ad"> <div id="IC_d_3x1_1"></div> <div id="IC_m_3x1_1"></div> </div> <div class="post small-headline-post" id="post-1467387"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/serve-robotics-inc-serv-a-bull-case-theory-2-1467387/" rel="bookmark" title="Permanent Link to Serve Robotics Inc. (SERV): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2021/04/12052842/neonbrand-5afenxnLDjs-unsplash.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/serve-robotics-inc-serv-a-bull-case-theory-2-1467387/" rel="bookmark" title="Permanent Link to Serve Robotics Inc. (SERV): A Bull Case Theory">Serve Robotics Inc. (SERV): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Serve Robotics Inc. (SERV) on Value Investing Subreddit Page by msrichson. In this article, we will summarize the bulls’ thesis on SERV.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/serve-robotics-inc-serv-a-bull-case-theory-2-1467387/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467385"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/canadian-national-railway-company-cni-a-bull-case-theory-1467385/" rel="bookmark" title="Permanent Link to Canadian National Railway Company (CNI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/10095915/KIQ-insidermonkey-1702220353302.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/canadian-national-railway-company-cni-a-bull-case-theory-1467385/" rel="bookmark" title="Permanent Link to Canadian National Railway Company (CNI): A Bull Case Theory">Canadian National Railway Company (CNI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Canadian National Railway Company (CNI) on Substack by Kay Kay. In this article, we will summarize the bulls’ thesis on CNI.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/canadian-national-railway-company-cni-a-bull-case-theory-1467385/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467380"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/reynolds-consumer-products-inc-reyn-a-bull-case-theory-1467380/" rel="bookmark" title="Permanent Link to Reynolds Consumer Products Inc. (REYN): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/13102933/shutterstock_557035882.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/reynolds-consumer-products-inc-reyn-a-bull-case-theory-1467380/" rel="bookmark" title="Permanent Link to Reynolds Consumer Products Inc. (REYN): A Bull Case Theory">Reynolds Consumer Products Inc. (REYN): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Reynolds Consumer Products Inc. (REYN) on Value Investing Subreddit Page by Brendawg324.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/reynolds-consumer-products-inc-reyn-a-bull-case-theory-1467380/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467378"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/teladoc-health-inc-tdoc-a-bull-case-theory-3-1467378/" rel="bookmark" title="Permanent Link to Teladoc Health, Inc. (TDOC): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/13142816/LFMD-insidermonkey-1699903694348.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/teladoc-health-inc-tdoc-a-bull-case-theory-3-1467378/" rel="bookmark" title="Permanent Link to Teladoc Health, Inc. (TDOC): A Bull Case Theory">Teladoc Health, Inc. (TDOC): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Teladoc Health, Inc. (TDOC) on Substack by Market Musings. In this article, we will summarize the bulls’ thesis on TDOC.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/teladoc-health-inc-tdoc-a-bull-case-theory-3-1467378/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467374"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/pepsico-inc-pep-a-bull-case-theory-3-1467374/" rel="bookmark" title="Permanent Link to PepsiCo, Inc. (PEP): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2021/06/05081842/ja-san-miguel-xYSp0kkIUio-unsplash.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/pepsico-inc-pep-a-bull-case-theory-3-1467374/" rel="bookmark" title="Permanent Link to PepsiCo, Inc. (PEP): A Bull Case Theory">PepsiCo, Inc. (PEP): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on PepsiCo, Inc. (PEP) on Substack by Investing Lawyer. In this article, we will summarize the bulls’ thesis on PEP. PepsiCo, Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/pepsico-inc-pep-a-bull-case-theory-3-1467374/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467372"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/crowdstrike-holdings-inc-crwd-a-bull-case-theory-2-1467372/" rel="bookmark" title="Permanent Link to CrowdStrike Holdings, Inc. (CRWD): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/22063427/shutterstock_538421701.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/crowdstrike-holdings-inc-crwd-a-bull-case-theory-2-1467372/" rel="bookmark" title="Permanent Link to CrowdStrike Holdings, Inc. (CRWD): A Bull Case Theory">CrowdStrike Holdings, Inc. (CRWD): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on CrowdStrike Holdings, Inc. (CRWD) on Substack by Bulls On Parade. In this article, we will summarize the bulls’ thesis on CRWD.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/crowdstrike-holdings-inc-crwd-a-bull-case-theory-2-1467372/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467369"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/mccormick-company-incorporated-mkc-a-bull-case-theory-1467369/" rel="bookmark" title="Permanent Link to McCormick &#038; Company, Incorporated (MKC): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/01182019/MKC-insidermonkey-1696198817516.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/mccormick-company-incorporated-mkc-a-bull-case-theory-1467369/" rel="bookmark" title="Permanent Link to McCormick &#038; Company, Incorporated (MKC): A Bull Case Theory">McCormick &#038; Company, Incorporated (MKC): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on McCormick & Company, Incorporated (MKC) on Substack by Investing Lawyer. In this article, we will summarize the bulls’ thesis on MKC.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/mccormick-company-incorporated-mkc-a-bull-case-theory-1467369/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1467363"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/powerfleet-inc-aiot-a-bull-case-theory-1467363/" rel="bookmark" title="Permanent Link to PowerFleet, Inc. (AIOT): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/05212210/CVLG-insidermonkey-1699237327907.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/powerfleet-inc-aiot-a-bull-case-theory-1467363/" rel="bookmark" title="Permanent Link to PowerFleet, Inc. (AIOT): A Bull Case Theory">PowerFleet, Inc. (AIOT): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on PowerFleet, Inc. (AIOT) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on AIOT.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/powerfleet-inc-aiot-a-bull-case-theory-1467363/">Keep Reading →</a></p> <p class="postmetadata"><span>February 28</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466190"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/meta-platforms-inc-meta-a-bull-case-theory-3-1466190/" rel="bookmark" title="Permanent Link to Meta Platforms, Inc. (META): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/05/shutterstock_197767229.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/meta-platforms-inc-meta-a-bull-case-theory-3-1466190/" rel="bookmark" title="Permanent Link to Meta Platforms, Inc. (META): A Bull Case Theory">Meta Platforms, Inc. (META): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Meta Platforms, Inc. (META) on Substack by Sanjiv. In this article, we will summarize the bulls’ thesis on META. Meta Platforms, Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/meta-platforms-inc-meta-a-bull-case-theory-3-1466190/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466178"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/hims-hers-health-inc-hims-a-bull-case-theory-5-1466178/" rel="bookmark" title="Permanent Link to Hims &#038; Hers Health, Inc. (HIMS): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/17164525/HIMS-insidermonkey-1697575523344.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/hims-hers-health-inc-hims-a-bull-case-theory-5-1466178/" rel="bookmark" title="Permanent Link to Hims &#038; Hers Health, Inc. (HIMS): A Bull Case Theory">Hims &#038; Hers Health, Inc. (HIMS): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Hims & Hers Health, Inc. (HIMS) on Substack by Antonio Linares. In this article, we will summarize the bulls’ thesis on HIMS.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/hims-hers-health-inc-hims-a-bull-case-theory-5-1466178/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466195"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/global-e-online-ltd-glbe-a-bull-case-theory-1466195/" rel="bookmark" title="Permanent Link to Global-E Online Ltd. (GLBE): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/13154403/BZUN-insidermonkey-1699908240125.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/global-e-online-ltd-glbe-a-bull-case-theory-1466195/" rel="bookmark" title="Permanent Link to Global-E Online Ltd. (GLBE): A Bull Case Theory">Global-E Online Ltd. (GLBE): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Global-E Online Ltd. (GLBE) on Substack by Steve Wagner. In this article, we will summarize the bulls’ thesis on GLBE.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/global-e-online-ltd-glbe-a-bull-case-theory-1466195/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466201"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/tss-inc-tssi-a-bull-case-theory-1466201/" rel="bookmark" title="Permanent Link to TSS, Inc. (TSSI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2024/04/18100943/datacenter_1713445616KBGZEJkjZK-1.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/tss-inc-tssi-a-bull-case-theory-1466201/" rel="bookmark" title="Permanent Link to TSS, Inc. (TSSI): A Bull Case Theory">TSS, Inc. (TSSI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on TSS, Inc. (TSSI) on Substack by Brad Steveson. In this article, we will summarize the bulls’ thesis on TSSI. TSS, Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/tss-inc-tssi-a-bull-case-theory-1466201/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466208"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/koru-medical-systems-inc-krmd-a-bull-case-theory-1466208/" rel="bookmark" title="Permanent Link to KORU Medical Systems, Inc. (KRMD): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/02/14222822/shutterstock_533275129.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/koru-medical-systems-inc-krmd-a-bull-case-theory-1466208/" rel="bookmark" title="Permanent Link to KORU Medical Systems, Inc. (KRMD): A Bull Case Theory">KORU Medical Systems, Inc. (KRMD): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on KORU Medical Systems, Inc. (KRMD) on Substack by Shareholdersunite. In this article, we will summarize the bulls’ thesis on KRMD.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/koru-medical-systems-inc-krmd-a-bull-case-theory-1466208/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466213"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/cooper-standard-holdings-inc-cps-a-bull-case-theory-2-1466213/" rel="bookmark" title="Permanent Link to Cooper-Standard Holdings Inc. (CPS): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2016/11/26011423/53904422_m.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/cooper-standard-holdings-inc-cps-a-bull-case-theory-2-1466213/" rel="bookmark" title="Permanent Link to Cooper-Standard Holdings Inc. (CPS): A Bull Case Theory">Cooper-Standard Holdings Inc. (CPS): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Cooper-Standard Holdings Inc. (CPS) on Substack by Busy Investor Stock Reports.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/cooper-standard-holdings-inc-cps-a-bull-case-theory-2-1466213/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466220"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/owens-minor-inc-omi-a-bull-case-theory-1466220/" rel="bookmark" title="Permanent Link to Owens &#038; Minor, Inc. (OMI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/11/25093522/shutterstock_167475845.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/owens-minor-inc-omi-a-bull-case-theory-1466220/" rel="bookmark" title="Permanent Link to Owens &#038; Minor, Inc. (OMI): A Bull Case Theory">Owens &#038; Minor, Inc. (OMI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Owens & Minor, Inc. (OMI) on Substack by Busy Investor Stock Reports. In this article, we will summarize the bulls’ thesis on OMI.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/owens-minor-inc-omi-a-bull-case-theory-1466220/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466183"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/nio-inc-nio-a-bull-case-theory-1466183/" rel="bookmark" title="Permanent Link to NIO Inc. (NIO): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/26044914/REE-insidermonkey-1700992152264.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/nio-inc-nio-a-bull-case-theory-1466183/" rel="bookmark" title="Permanent Link to NIO Inc. (NIO): A Bull Case Theory">NIO Inc. (NIO): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on NIO Inc. (NIO) on wallstreetbets Subreddit Page by 1Darkhaos. In this article, we will summarize the bulls’ thesis on NIO. NIO Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/nio-inc-nio-a-bull-case-theory-1466183/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1466170"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/lemonade-inc-lmnd-a-bull-case-theory-4-1466170/" rel="bookmark" title="Permanent Link to Lemonade, Inc. (LMND): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/14145622/GLRE-insidermonkey-1699991779173.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/lemonade-inc-lmnd-a-bull-case-theory-4-1466170/" rel="bookmark" title="Permanent Link to Lemonade, Inc. (LMND): A Bull Case Theory">Lemonade, Inc. (LMND): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Lemonade, Inc. (LMND) on Substack by Steve Wagner. In this article, we will summarize the bulls’ thesis on LMND. Lemonade, Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/lemonade-inc-lmnd-a-bull-case-theory-4-1466170/">Keep Reading →</a></p> <p class="postmetadata"><span>February 27</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464821"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/jackson-financial-inc-jxn-a-bull-case-theory-2-1464821/" rel="bookmark" title="Permanent Link to Jackson Financial Inc. (JXN): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/17161141/CNO-insidermonkey-1697573499512.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/jackson-financial-inc-jxn-a-bull-case-theory-2-1464821/" rel="bookmark" title="Permanent Link to Jackson Financial Inc. (JXN): A Bull Case Theory">Jackson Financial Inc. (JXN): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Jackson Financial Inc. (JXN) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on JXN.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/jackson-financial-inc-jxn-a-bull-case-theory-2-1464821/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464799"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/transocean-ltd-rig-a-bull-case-theory-1464799/" rel="bookmark" title="Permanent Link to Transocean Ltd. (RIG): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/26001429/PHX-insidermonkey-1700975668310.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/transocean-ltd-rig-a-bull-case-theory-1464799/" rel="bookmark" title="Permanent Link to Transocean Ltd. (RIG): A Bull Case Theory">Transocean Ltd. (RIG): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Transocean Ltd. (RIG) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on RIG.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/transocean-ltd-rig-a-bull-case-theory-1464799/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464792"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/lucky-strike-entertainment-corporation-luck-a-bear-case-theory-1464792/" rel="bookmark" title="Permanent Link to Lucky Strike Entertainment Corporation (LUCK): A Bear Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/17223842/BOWL-insidermonkey-1697596720269.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/lucky-strike-entertainment-corporation-luck-a-bear-case-theory-1464792/" rel="bookmark" title="Permanent Link to Lucky Strike Entertainment Corporation (LUCK): A Bear Case Theory">Lucky Strike Entertainment Corporation (LUCK): A Bear Case Theory</a></h2> <div class="entry text">We came across a bearish thesis on Lucky Strike Entertainment Corporation (LUCK) on Substack by Dominick D'Angelo.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/lucky-strike-entertainment-corporation-luck-a-bear-case-theory-1464792/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464788"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/super-micro-computer-inc-smci-a-bull-case-theory-1464788/" rel="bookmark" title="Permanent Link to Super Micro Computer, Inc. (SMCI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/31190608/CMBM-insidermonkey-1698793566306.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/super-micro-computer-inc-smci-a-bull-case-theory-1464788/" rel="bookmark" title="Permanent Link to Super Micro Computer, Inc. (SMCI): A Bull Case Theory">Super Micro Computer, Inc. (SMCI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Super Micro Computer, Inc. (SMCI) on Value Investing Subreddit Page by MatthewFundedSecured.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/super-micro-computer-inc-smci-a-bull-case-theory-1464788/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464783"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/moderna-inc-mrna-a-bull-case-theory-2-1464783/" rel="bookmark" title="Permanent Link to Moderna, Inc. (MRNA): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/20220231/NVAX-insidermonkey-1697853749481.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/moderna-inc-mrna-a-bull-case-theory-2-1464783/" rel="bookmark" title="Permanent Link to Moderna, Inc. (MRNA): A Bull Case Theory">Moderna, Inc. (MRNA): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Moderna, Inc. (MRNA) on wallstreetbets Subreddit Page by YouAlwaysHaveAChoice.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/moderna-inc-mrna-a-bull-case-theory-2-1464783/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464768"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/energy-transfer-lp-et-a-bull-case-theory-1464768/" rel="bookmark" title="Permanent Link to Energy Transfer LP (ET): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/15172411/WES-insidermonkey-1700087048980.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/energy-transfer-lp-et-a-bull-case-theory-1464768/" rel="bookmark" title="Permanent Link to Energy Transfer LP (ET): A Bull Case Theory">Energy Transfer LP (ET): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Energy Transfer LP (ET) on wallstreetbets Subreddit Page by rawj5561. In this article, we will summarize the bulls’ thesis on ET.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/energy-transfer-lp-et-a-bull-case-theory-1464768/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464753"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/costar-group-inc-csgp-a-bull-case-theory-1464753/" rel="bookmark" title="Permanent Link to CoStar Group, Inc. (CSGP): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/02214954/VRTS-insidermonkey-1698976192155.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/costar-group-inc-csgp-a-bull-case-theory-1464753/" rel="bookmark" title="Permanent Link to CoStar Group, Inc. (CSGP): A Bull Case Theory">CoStar Group, Inc. (CSGP): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on CoStar Group, Inc. (CSGP) on Substack by Douglas Ott. In this article, we will summarize the bulls’ thesis on CSGP. CoStar Group, Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/costar-group-inc-csgp-a-bull-case-theory-1464753/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464718"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/primerica-inc-pri-a-bull-case-theory-1464718/" rel="bookmark" title="Permanent Link to Primerica, Inc. (PRI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/02215957/SPNS-insidermonkey-1698976795708.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/primerica-inc-pri-a-bull-case-theory-1464718/" rel="bookmark" title="Permanent Link to Primerica, Inc. (PRI): A Bull Case Theory">Primerica, Inc. (PRI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Primerica, Inc. (PRI) on Substack by Max Dividends. In this article, we will summarize the bulls’ thesis on PRI. Primerica, Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/primerica-inc-pri-a-bull-case-theory-1464718/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464712"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/viking-therapeutics-inc-vktx-a-bull-case-theory-1464712/" rel="bookmark" title="Permanent Link to Viking Therapeutics, Inc. (VKTX): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/08/shutterstock_131375909.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/viking-therapeutics-inc-vktx-a-bull-case-theory-1464712/" rel="bookmark" title="Permanent Link to Viking Therapeutics, Inc. (VKTX): A Bull Case Theory">Viking Therapeutics, Inc. (VKTX): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Viking Therapeutics, Inc. (VKTX) on Substack by Kontra Investments. In this article, we will summarize the bulls’ thesis on VKTX.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/viking-therapeutics-inc-vktx-a-bull-case-theory-1464712/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464701"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/the-estee-lauder-companies-inc-el-a-bull-case-theory-3-1464701/" rel="bookmark" title="Permanent Link to The Estée Lauder Companies Inc. (EL): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/07231759/PLBY-insidermonkey-1699417077474.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/the-estee-lauder-companies-inc-el-a-bull-case-theory-3-1464701/" rel="bookmark" title="Permanent Link to The Estée Lauder Companies Inc. (EL): A Bull Case Theory">The Estée Lauder Companies Inc. (EL): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on The Estée Lauder Companies Inc. (EL) on Substack by Alexandru Dragut. In this article, we will summarize the bulls’ thesis on EL.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/the-estee-lauder-companies-inc-el-a-bull-case-theory-3-1464701/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1464695"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/topbuild-corp-bld-a-bull-case-theory-1464695/" rel="bookmark" title="Permanent Link to TopBuild Corp. (BLD): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/04162445/shutterstock_203363170.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/topbuild-corp-bld-a-bull-case-theory-1464695/" rel="bookmark" title="Permanent Link to TopBuild Corp. (BLD): A Bull Case Theory">TopBuild Corp. (BLD): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on TopBuild Corp. (BLD) on Substack by Kairos Research. In this article, we will summarize the bulls’ thesis on BLD. TopBuild Corp.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/topbuild-corp-bld-a-bull-case-theory-1464695/">Keep Reading →</a></p> <p class="postmetadata"><span>February 26</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463571"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/mercadolibre-inc-meli-a-bull-case-theory-5-1463571/" rel="bookmark" title="Permanent Link to MercadoLibre, Inc. (MELI): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/09/19161003/BABA-insidermonkey-1695154200895.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/mercadolibre-inc-meli-a-bull-case-theory-5-1463571/" rel="bookmark" title="Permanent Link to MercadoLibre, Inc. (MELI): A Bull Case Theory">MercadoLibre, Inc. (MELI): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on MercadoLibre, Inc. (MELI) on Substack by The Wolf of Harcourt Street. In this article, we will summarize the bulls’ thesis on MELI.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/mercadolibre-inc-meli-a-bull-case-theory-5-1463571/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463555"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/avepoint-inc-avpt-a-bull-case-theory-1463555/" rel="bookmark" title="Permanent Link to AvePoint, Inc. (AVPT): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/21174306/EXFY-insidermonkey-1697924584268.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/avepoint-inc-avpt-a-bull-case-theory-1463555/" rel="bookmark" title="Permanent Link to AvePoint, Inc. (AVPT): A Bull Case Theory">AvePoint, Inc. (AVPT): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on AvePoint, Inc. (AVPT) on Substack by Shareholdersunite Essentials. In this article, we will summarize the bulls’ thesis on AVPT.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/avepoint-inc-avpt-a-bull-case-theory-1463555/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463551"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/texas-roadhouse-inc-txrh-a-bull-case-theory-1463551/" rel="bookmark" title="Permanent Link to Texas Roadhouse, Inc. (TXRH): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/04/10025620/shutterstock_116907649.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/texas-roadhouse-inc-txrh-a-bull-case-theory-1463551/" rel="bookmark" title="Permanent Link to Texas Roadhouse, Inc. (TXRH): A Bull Case Theory">Texas Roadhouse, Inc. (TXRH): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Texas Roadhouse, Inc. (TXRH) on Substack by Summit Stocks. In this article, we will summarize the bulls’ thesis on TXRH.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/texas-roadhouse-inc-txrh-a-bull-case-theory-1463551/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463547"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/comcast-corporation-cmcsa-a-bull-case-theory-2-1463547/" rel="bookmark" title="Permanent Link to Comcast Corporation (CMCSA): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/25232019/SHEN-insidermonkey-1700972417555.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/comcast-corporation-cmcsa-a-bull-case-theory-2-1463547/" rel="bookmark" title="Permanent Link to Comcast Corporation (CMCSA): A Bull Case Theory">Comcast Corporation (CMCSA): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Comcast Corporation (CMCSA) on Substack by Boyar Research. In this article, we will summarize the bulls’ thesis on CMCSA.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/comcast-corporation-cmcsa-a-bull-case-theory-2-1463547/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463542"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/iac-inc-iac-a-bull-case-theory-1463542/" rel="bookmark" title="Permanent Link to IAC Inc. (IAC): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/17173244/DV-insidermonkey-1697578361751.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/iac-inc-iac-a-bull-case-theory-1463542/" rel="bookmark" title="Permanent Link to IAC Inc. (IAC): A Bull Case Theory">IAC Inc. (IAC): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on IAC Inc. (IAC) on Substack by Boyar Research. In this article, we will summarize the bulls’ thesis on IAC. IAC Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/iac-inc-iac-a-bull-case-theory-1463542/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463533"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/gxo-logistics-inc-gxo-a-bull-case-theory-2-1463533/" rel="bookmark" title="Permanent Link to GXO Logistics, Inc. (GXO): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/09/25103930/UPS-insidermonkey-1695652767984.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/gxo-logistics-inc-gxo-a-bull-case-theory-2-1463533/" rel="bookmark" title="Permanent Link to GXO Logistics, Inc. (GXO): A Bull Case Theory">GXO Logistics, Inc. (GXO): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on GXO Logistics, Inc. (GXO) on Substack by Busy Investor Stock Reports. In this article, we will summarize the bulls’ thesis on GXO.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/gxo-logistics-inc-gxo-a-bull-case-theory-2-1463533/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463520"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/hudbay-minerals-inc-hbm-a-bull-case-theory-2-1463520/" rel="bookmark" title="Permanent Link to Hudbay Minerals Inc. (HBM): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/15223725/RGLD-insidermonkey-1697423843492.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/hudbay-minerals-inc-hbm-a-bull-case-theory-2-1463520/" rel="bookmark" title="Permanent Link to Hudbay Minerals Inc. (HBM): A Bull Case Theory">Hudbay Minerals Inc. (HBM): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Hudbay Minerals Inc. (HBM) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on HBM.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/hudbay-minerals-inc-hbm-a-bull-case-theory-2-1463520/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463513"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/peabody-energy-corporation-btu-a-bull-case-theory-3-1463513/" rel="bookmark" title="Permanent Link to Peabody Energy Corporation (BTU): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/28132934/ARLP-insidermonkey-1698514170885.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/peabody-energy-corporation-btu-a-bull-case-theory-3-1463513/" rel="bookmark" title="Permanent Link to Peabody Energy Corporation (BTU): A Bull Case Theory">Peabody Energy Corporation (BTU): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Peabody Energy Corporation (BTU) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on BTU.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/peabody-energy-corporation-btu-a-bull-case-theory-3-1463513/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463499"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/warner-bros-discovery-inc-wbd-a-bull-case-theory-3-1463499/" rel="bookmark" title="Permanent Link to Warner Bros. Discovery, Inc. (WBD): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/09/19165953/DIS-insidermonkey-1695157190212.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/warner-bros-discovery-inc-wbd-a-bull-case-theory-3-1463499/" rel="bookmark" title="Permanent Link to Warner Bros. Discovery, Inc. (WBD): A Bull Case Theory">Warner Bros. Discovery, Inc. (WBD): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Warner Bros. Discovery, Inc. (WBD) on Substack by Kostadin Ristovski, ACCA. In this article, we will summarize the bulls’ thesis on WBD.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/warner-bros-discovery-inc-wbd-a-bull-case-theory-3-1463499/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463488"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/materialise-nv-mtls-a-bull-case-theory-3-1463488/" rel="bookmark" title="Permanent Link to Materialise NV (MTLS): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/21163158/SSYS-insidermonkey-1697920316489.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/materialise-nv-mtls-a-bull-case-theory-3-1463488/" rel="bookmark" title="Permanent Link to Materialise NV (MTLS): A Bull Case Theory">Materialise NV (MTLS): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Materialise NV (MTLS) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on MTLS.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/materialise-nv-mtls-a-bull-case-theory-3-1463488/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463476"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/jakks-pacific-inc-jakk-a-bull-case-theory-2-1463476/" rel="bookmark" title="Permanent Link to JAKKS Pacific, Inc. (JAKK): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/01/20153655/50140177_ml.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/jakks-pacific-inc-jakk-a-bull-case-theory-2-1463476/" rel="bookmark" title="Permanent Link to JAKKS Pacific, Inc. (JAKK): A Bull Case Theory">JAKKS Pacific, Inc. (JAKK): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on JAKKS Pacific, Inc. (JAKK) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on JAKK.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/jakks-pacific-inc-jakk-a-bull-case-theory-2-1463476/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1463465"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/warrior-met-coal-inc-hcc-a-bull-case-theory-3-1463465/" rel="bookmark" title="Permanent Link to Warrior Met Coal, Inc. (HCC): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/07193220/BTU-insidermonkey-1696721538394.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/warrior-met-coal-inc-hcc-a-bull-case-theory-3-1463465/" rel="bookmark" title="Permanent Link to Warrior Met Coal, Inc. (HCC): A Bull Case Theory">Warrior Met Coal, Inc. (HCC): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Warrior Met Coal, Inc. (HCC) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on HCC.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/warrior-met-coal-inc-hcc-a-bull-case-theory-3-1463465/">Keep Reading →</a></p> <p class="postmetadata"><span>February 25</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1462053"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/draftkings-inc-dkng-a-bull-case-theory-1462053/" rel="bookmark" title="Permanent Link to DraftKings Inc. (DKNG): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/09055650/shutterstock_274550675.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/draftkings-inc-dkng-a-bull-case-theory-1462053/" rel="bookmark" title="Permanent Link to DraftKings Inc. (DKNG): A Bull Case Theory">DraftKings Inc. (DKNG): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on DraftKings Inc. (DKNG) on Substack by Daan Rijnberk. In this article, we will summarize the bulls’ thesis on DKNG. DraftKings Inc.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/draftkings-inc-dkng-a-bull-case-theory-1462053/">Keep Reading →</a></p> <p class="postmetadata"><span>February 24</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1462042"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/beazer-homes-usa-inc-bzh-a-bull-case-theory-1462042/" rel="bookmark" title="Permanent Link to Beazer Homes USA, Inc. (BZH): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/29074732/SMRT-insidermonkey-1698580050441.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/beazer-homes-usa-inc-bzh-a-bull-case-theory-1462042/" rel="bookmark" title="Permanent Link to Beazer Homes USA, Inc. (BZH): A Bull Case Theory">Beazer Homes USA, Inc. (BZH): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Beazer Homes USA, Inc. (BZH) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on BZH.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/beazer-homes-usa-inc-bzh-a-bull-case-theory-1462042/">Keep Reading →</a></p> <p class="postmetadata"><span>February 24</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1462040"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/transdigm-group-incorporated-tdg-a-bull-case-theory-1462040/" rel="bookmark" title="Permanent Link to TransDigm Group Incorporated (TDG): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/14213538/HXL-insidermonkey-1697333735273.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/transdigm-group-incorporated-tdg-a-bull-case-theory-1462040/" rel="bookmark" title="Permanent Link to TransDigm Group Incorporated (TDG): A Bull Case Theory">TransDigm Group Incorporated (TDG): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on TransDigm Group Incorporated (TDG) on Substack by Bulls On Parade. In this article, we will summarize the bulls’ thesis on TDG.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/transdigm-group-incorporated-tdg-a-bull-case-theory-1462040/">Keep Reading →</a></p> <p class="postmetadata"><span>February 24</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1462032"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/newell-brands-inc-nwl-a-bull-case-theory-1462032/" rel="bookmark" title="Permanent Link to Newell Brands Inc. (NWL): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/09/29142342/CHD-insidermonkey-1696011820136.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/newell-brands-inc-nwl-a-bull-case-theory-1462032/" rel="bookmark" title="Permanent Link to Newell Brands Inc. (NWL): A Bull Case Theory">Newell Brands Inc. (NWL): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Newell Brands Inc. (NWL) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on NWL.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/newell-brands-inc-nwl-a-bull-case-theory-1462032/">Keep Reading →</a></p> <p class="postmetadata"><span>February 24</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1462018"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/birkenstock-holding-plc-birk-a-bull-case-theory-1462018/" rel="bookmark" title="Permanent Link to Birkenstock Holding plc (BIRK): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/09/25102401/DECK-insidermonkey-1695651839353.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/birkenstock-holding-plc-birk-a-bull-case-theory-1462018/" rel="bookmark" title="Permanent Link to Birkenstock Holding plc (BIRK): A Bull Case Theory">Birkenstock Holding plc (BIRK): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Birkenstock Holding plc (BIRK) on Substack by Bulls On Parade. In this article, we will summarize the bulls’ thesis on BIRK.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/birkenstock-holding-plc-birk-a-bull-case-theory-1462018/">Keep Reading →</a></p> <p class="postmetadata"><span>February 24</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="post small-headline-post" id="post-1462014"> <div class="mini-thumbnail thumbnail"> <a href="https://www.insidermonkey.com/blog/coursera-inc-cour-a-bull-case-theory-3-1462014/" rel="bookmark" title="Permanent Link to Coursera, Inc. (COUR): A Bull Case Theory"><img loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/18230524/PRDO-insidermonkey-1697684722414.jpg?w=80&h=80&fit=crop&auto=format" alt=""/></a> </div> <div class="post-content clearfix"> <h2 class="post-title"><a href="https://www.insidermonkey.com/blog/coursera-inc-cour-a-bull-case-theory-3-1462014/" rel="bookmark" title="Permanent Link to Coursera, Inc. (COUR): A Bull Case Theory">Coursera, Inc. (COUR): A Bull Case Theory</a></h2> <div class="entry text">We came across a bullish thesis on Coursera, Inc. (COUR) on Substack by Unemployed Value Degen. In this article, we will summarize the bulls’ thesis on COUR.</div> <p class="keep-reading"><a href="https://www.insidermonkey.com/blog/coursera-inc-cour-a-bull-case-theory-3-1462014/">Keep Reading →</a></p> <p class="postmetadata"><span>February 24</span> - <a href="https://www.insidermonkey.com/blog/category/news/" rel="category tag">News</a>, <a href="https://www.insidermonkey.com/blog/category/stock-analysis/" rel="category tag">Stock Analysis</a></p> </div> </div> <div class="posts-pagination-buttons"> <div class="line-button "><a href="https://www.insidermonkey.com/blog/author/rishab-pillai/page/2/" >&laquo; Older Entries</a></div> <div class="line-button half right"></div> </div> </div> </div><!-- closes blog-posts --> </div><!-- closes blog-middle-col --> <div class="middle-subcol-2 blog-right-col right article-sidebar" id="blog-right-col"> <div class="sidebar-columns"> <div class="sidebar-column"> <div class="section imonkey-ad-widget ic-ad"> <div id="IC_d_300x250_1"></div> <div id="IC_m_300x250_2"></div> </div> <div class="resource-center resource-center-square premium-resource-center sidebar-widget" id="premium-resource-center"> <div class="section-header"> <span class="spanh1">Hedge Fund Resource Center</span> </div> <div class="section"> <ul> <li><a href="https://www.insidermonkey.com/hedge-fund/education-center/how-to-best-use-insider-monkey-to-increase-your-returns/2">How to Best Use Insider Monkey to Increase Your Returns</a></li> <li><a href="https://www.insidermonkey.com/hedge-fund/education-center/why-track-hedge-funds/0">Why Track Hedge Funds?</a></li> <li><a href="https://www.insidermonkey.com/premium/newsletters">Download a Free Edition!</a></li> <li><a href="https://www.insidermonkey.com/hedge-fund/education-center/why-you-should-dump-your-hedge-funds/4">Why You Should DUMP Your Hedge Funds</a></li> <li><a href="https://www.insidermonkey.com//blog/6-things-you-didnt-know-about-hedge-funds-334010/">6 Things You Didn't Know About Hedge Funds</a></li> </ul> </div> </div> <div class="section-header"> <span class="spanh1">Hot Topics</span> </div> <div class="section"> <div class="article-links"> <div class="article-link"> <h4><a href="http://www.insidermonkey.com/insider-trading/company/apple+inc/320193/">Apple (AAPL)</a></h4> <p><a href="http://www.insidermonkey.com/blog/tag/apple-inc-aapl/">Latest Stock News</a> - <a href="http://www.insidermonkey.com/insider-trading/company/apple+inc/320193/">Company Profile</a></p> </div> <div class="article-link"> <h4><a href="http://www.insidermonkey.com/hedge-fund/berkshire+hathaway/1/">Warren Buffett</a></h4> <p><a href="http://www.insidermonkey.com/blog/tag/warren-buffett/">News & Analysis</a> - <a href="http://www.insidermonkey.com/hedge-fund/berkshire+hathaway/1/">Portfolio & Stock Picks</a></p> </div> <div class="article-link"> <h4><a href="http://www.insidermonkey.com/blog/category/insider-trading/">Biggest Insider Purchases &amp; Sales</a></h4> <p><a href="http://www.insidermonkey.com/blog/category/insider-trading/">News & Analysis</a> - <a href="http://www.insidermonkey.com/insider-trading/screener/">Data Screener</a></p> </div> <div class="article-link"> <h4><a href="http://www.insidermonkey.com/insider-trading/company/google+inc/1288776/">Google (GOOG)</a></h4> <p><a href="http://www.insidermonkey.com/blog/tag/google-inc-goog/">Latest Stock News</a> - <a href="http://www.insidermonkey.com/insider-trading/company/google+inc/1288776/">Company Profile</a></p> </div> <div class="article-link"> <h4><a href="http://www.insidermonkey.com/insider-trading/company/microsoft+corp/789019/">Microsoft (MSFT)</a></h4> <p><a href="http://www.insidermonkey.com/blog/tag/microsoft-msft/">Latest Stock News</a> - <a href="http://www.insidermonkey.com/insider-trading/company/microsoft+corp/789019/">Company Profile</a></p> </div> </div> </div> <div class="section imonkey-ad-widget ic-ad"> <div id="IC_d_300x250_2"></div> </div> <div class="sidebar-widget"> <div class="section-header"> <span class="spanh1">Lists</span> </div> <div class="section list-posts-widget" id="list-posts-widget"> <div class="article-links"> <a href="https://www.insidermonkey.com/blog/10-worst-performing-currencies-of-2024-1461556" class="clearfix list-post"> <div class="title"> <p>10 Worst Performing Currencies of 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/01/17081953/41742985_m.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="10 Worst Performing Currencies of 2024"/> </a> <a href="https://www.insidermonkey.com/blog/15-states-with-the-best-weed-in-america-1445483" class="clearfix list-post"> <div class="title"> <p>15 States with the Best Weed in America</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/01230017/SNDL-insidermonkey-1701489615244.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 States with the Best Weed in America"/> </a> <a href="https://www.insidermonkey.com/blog/16-countries-with-the-largest-proven-oil-reserves-in-the-world-1402537" class="clearfix list-post"> <div class="title"> <p>16 Countries with the Largest Proven Oil Reserves in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/12125633/IEZ-insidermonkey-1702403791633.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="16 Countries with the Largest Proven Oil Reserves in the World"/> </a> <a href="https://www.insidermonkey.com/blog/16-highest-quality-chocolate-brands-in-the-us-1398239" class="clearfix list-post"> <div class="title"> <p>16 Highest Quality Chocolate Brands in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/05/22010959/chocolates-1737580_1280.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="16 Highest Quality Chocolate Brands in the US"/> </a> <a href="https://www.insidermonkey.com/blog/20-countries-with-the-strongest-armies-in-the-world-1396802" class="clearfix list-post"> <div class="title"> <p>20 Countries with the Strongest Armies in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/04/13184819/shutterstock_499539295.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Countries with the Strongest Armies in the World"/> </a> <a href="https://www.insidermonkey.com/blog/top-13-english-speaking-countries-in-asia-1404478" class="clearfix list-post"> <div class="title"> <p>Top 13 English Speaking Countries in Asia</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/02/28062339/singapore-1490561_1280.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="Top 13 English Speaking Countries in Asia"/> </a> <a href="https://www.insidermonkey.com/blog/20-states-with-highest-female-to-male-ratio-in-the-us-1407271" class="clearfix list-post"> <div class="title"> <p>20 States with Highest Female to Male Ratio in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/01/18071009/46389455_ml.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 States with Highest Female to Male Ratio in the US"/> </a> <a href="https://www.insidermonkey.com/blog/40-best-places-to-visit-in-europe-before-you-die-1308497" class="clearfix list-post"> <div class="title"> <p>40 Best Places to Visit in Europe Before You Die</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2021/05/27044133/iso-topon-NAruOBAvyN0-unsplash.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="40 Best Places to Visit in Europe Before You Die"/> </a> <a href="https://www.insidermonkey.com/blog/20-states-with-the-lowest-life-expectancy-in-the-us-1396552" class="clearfix list-post"> <div class="title"> <p>20 States with the Lowest Life Expectancy in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/23031000/LMND-insidermonkey-1698044998030.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 States with the Lowest Life Expectancy in the US"/> </a> <a href="https://www.insidermonkey.com/blog/25-cities-with-the-highest-homeless-population-in-the-world-1397282" class="clearfix list-post"> <div class="title"> <p>25 Cities with the Highest Homeless Population in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/06/02075036/ev-IWJH-l-vb4k-unsplash.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="25 Cities with the Highest Homeless Population in the World"/> </a> <a href="https://www.insidermonkey.com/blog/20-countries-with-the-best-english-accent-in-the-world-2-1398926" class="clearfix list-post"> <div class="title"> <p>20 Countries With The Best English Accent in The World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/18114302/shutterstock_548675242.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Countries With The Best English Accent in The World"/> </a> <a href="https://www.insidermonkey.com/blog/30-cities-with-the-highest-weed-consumption-in-the-us-1400161" class="clearfix list-post"> <div class="title"> <p>30 Cities with the Highest Weed Consumption in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/01065913/GNLN-insidermonkey-1701431951872.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="30 Cities with the Highest Weed Consumption in the US"/> </a> <a href="https://www.insidermonkey.com/blog/25-countries-with-the-highest-alcohol-consumption-per-capita-1397309" class="clearfix list-post"> <div class="title"> <p>25 Countries with the Highest Alcohol Consumption per Capita</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/06/24060207/alcohol-492871_1920-1.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="25 Countries with the Highest Alcohol Consumption per Capita"/> </a> <a href="https://www.insidermonkey.com/blog/10-best-gold-stocks-under-30-1395440" class="clearfix list-post"> <div class="title"> <p>10 Best Gold Stocks Under $30</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/31205551/SA-insidermonkey-1698800148852.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="10 Best Gold Stocks Under $30"/> </a> <a href="https://www.insidermonkey.com/blog/10-best-genomics-stocks-to-buy-right-now-1392600" class="clearfix list-post"> <div class="title"> <p>10 Best Genomics Stocks To Buy Right Now</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/16114213/XBIO-insidermonkey-1702744931392.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="10 Best Genomics Stocks To Buy Right Now"/> </a> <a href="https://www.insidermonkey.com/blog/20-countries-with-the-best-economy-in-the-world-in-2024-1321227" class="clearfix list-post"> <div class="title"> <p>20 Countries with the Best Economy in the World in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/08115407/imageforentry28-2ee-1.webp?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Countries with the Best Economy in the World in 2024"/> </a> <a href="https://www.insidermonkey.com/blog/30-cheapest-countries-in-the-world-in-2024-1321171" class="clearfix list-post"> <div class="title"> <p>30 Cheapest Countries in the World in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2021/01/04153133/african-child-2578559_1280.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="30 Cheapest Countries in the World in 2024"/> </a> <a href="https://www.insidermonkey.com/blog/15-healthiest-countries-in-europe-1335616" class="clearfix list-post"> <div class="title"> <p>15 Healthiest Countries in Europe</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2024/02/12063540/Health-Care-1200x800-1.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Healthiest Countries in Europe"/> </a> <a href="https://www.insidermonkey.com/blog/15-healthiest-countries-in-africa-1336793" class="clearfix list-post"> <div class="title"> <p>15 Healthiest Countries In Africa</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/07/20163730/medical-g32ef8a867_1280.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Healthiest Countries In Africa"/> </a> <a href="https://www.insidermonkey.com/blog/25-most-tropical-cities-in-the-us-1337231" class="clearfix list-post"> <div class="title"> <p>25 Most Tropical Cities in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/25080453/shutterstock_387017479.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="25 Most Tropical Cities in the US"/> </a> <a href="https://www.insidermonkey.com/blog/15-most-underrated-states-in-the-us-1291405" class="clearfix list-post"> <div class="title"> <p>15 Most Underrated States in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/05/shutterstock_243529684.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Most Underrated States in the US"/> </a> <a href="https://www.insidermonkey.com/blog/13-best-cheap-perfumes-for-women-that-smell-amazing-1332126" class="clearfix list-post"> <div class="title"> <p>13 Best Cheap Perfumes for Women That Smell Amazing</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/15010751/IPAR-insidermonkey-1697346469505.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="13 Best Cheap Perfumes for Women That Smell Amazing"/> </a> <a href="https://www.insidermonkey.com/blog/best-cheap-perfume-for-women-that-smells-amazing-1332132" class="clearfix list-post"> <div class="title"> <p>Best Cheap Perfume for Women That Smells Amazing</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2024/08/08193956/Gemini_Generated_Image_cojqcocojqcocojq.jpeg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="Best Cheap Perfume for Women That Smells Amazing"/> </a> <a href="https://www.insidermonkey.com/blog/20-most-industrialized-countries-in-asia-1331004" class="clearfix list-post"> <div class="title"> <p>20 Most Industrialized Countries in Asia</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/15104450/GTEC-insidermonkey-1702655088075.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Most Industrialized Countries in Asia"/> </a> <a href="https://www.insidermonkey.com/blog/the-most-successful-celebrity-beauty-company-in-the-world-1328433" class="clearfix list-post"> <div class="title"> <p>The Most Successful Celebrity Beauty Company in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/12/15133056/OG-insidermonkey-1702665054649.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="The Most Successful Celebrity Beauty Company in the World"/> </a> <a href="https://www.insidermonkey.com/blog/15-most-successful-celebrity-beauty-companies-in-the-world-1328429" class="clearfix list-post"> <div class="title"> <p>15 Most Successful Celebrity Beauty Companies in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/10/04151320/ELF-insidermonkey-1696446798047.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Most Successful Celebrity Beauty Companies in the World"/> </a> <a href="https://www.insidermonkey.com/blog/20-best-places-for-sex-tourism-in-the-world-1307971" class="clearfix list-post"> <div class="title"> <p>20 Best Places For Sex Tourism in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/05/shutterstock_201260873.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Best Places For Sex Tourism in the World"/> </a> <a href="https://www.insidermonkey.com/blog/top-20-u-s-cities-with-the-highest-murders-in-2024-1322769" class="clearfix list-post"> <div class="title"> <p>Top 20 U.S. Cities with the Highest Murders in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/03/23174500/shutterstock_561522913.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="Top 20 U.S. Cities with the Highest Murders in 2024"/> </a> <a href="https://www.insidermonkey.com/blog/26-most-dangerous-prisons-in-the-world-1311900" class="clearfix list-post"> <div class="title"> <p>26 Most Dangerous Prisons In The World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2016/02/10034318/shutterstock_285174524.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="26 Most Dangerous Prisons In The World"/> </a> <a href="https://www.insidermonkey.com/blog/30-cities-with-the-highest-murders-per-capita-in-2024-in-the-world-1311897" class="clearfix list-post"> <div class="title"> <p>30 Cities with The Highest Murders Per Capita in 2024 in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/02/14164922/shutterstock_381038152.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="30 Cities with The Highest Murders Per Capita in 2024 in the World"/> </a> <a href="https://www.insidermonkey.com/blog/top-10-affordable-cities-to-live-in-the-us-in-2024-1317355" class="clearfix list-post"> <div class="title"> <p>Top 10 Affordable Cities to Live in the US in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2014/04/Pittsburgh-Pennsylvania.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="Top 10 Affordable Cities to Live in the US in 2024"/> </a> <a href="https://www.insidermonkey.com/blog/20-budget-friendly-corporate-gifts-for-employees-1307366" class="clearfix list-post"> <div class="title"> <p>20 Budget-Friendly Corporate Gifts for Employees</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/04/27144812/shutterstock_327011009.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Budget-Friendly Corporate Gifts for Employees"/> </a> <a href="https://www.insidermonkey.com/blog/30-us-cities-with-highest-homicide-rates-in-2024-1293275" class="clearfix list-post"> <div class="title"> <p>30 US Cities With Highest Homicide Rates In 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2020/06/25122538/chicago-690364_640.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="30 US Cities With Highest Homicide Rates In 2024"/> </a> <a href="https://www.insidermonkey.com/blog/20-countries-with-darkest-skin-color-in-the-world-1309204" class="clearfix list-post"> <div class="title"> <p>20 Countries With Darkest Skin Color in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/02/02035440/african-585272_1920.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Countries With Darkest Skin Color in the World"/> </a> <a href="https://www.insidermonkey.com/blog/25-easiest-countries-to-get-laid-in-2024-1308785" class="clearfix list-post"> <div class="title"> <p>25 Easiest Countries to Get Laid in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/02/08133238/shutterstock_276923339.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="25 Easiest Countries to Get Laid in 2024"/> </a> <a href="https://www.insidermonkey.com/blog/25-european-cities-with-most-single-women-1307558" class="clearfix list-post"> <div class="title"> <p>25 European Cities with Most Single Women</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/04/22102120/shutterstock_270264506.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="25 European Cities with Most Single Women"/> </a> <a href="https://www.insidermonkey.com/blog/15-dangerous-jobs-that-pay-75000-or-more-1307933" class="clearfix list-post"> <div class="title"> <p>15 Dangerous Jobs That Pay $75,000 or More</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2023/11/04231840/MSB-insidermonkey-1699154318746.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Dangerous Jobs That Pay $75,000 or More"/> </a> <a href="https://www.insidermonkey.com/blog/20-gayest-cities-in-europe-1305342" class="clearfix list-post"> <div class="title"> <p>20 Gayest Cities in Europe</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/01/30201031/shutterstock_458363761.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Gayest Cities in Europe"/> </a> <a href="https://www.insidermonkey.com/blog/30-most-hated-cities-in-the-us-1308346" class="clearfix list-post"> <div class="title"> <p>30 Most Hated Cities in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/08/capitol-820611_1280.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="30 Most Hated Cities in the US"/> </a> <a href="https://www.insidermonkey.com/blog/20-african-countries-with-highest-divorce-rate-1308123" class="clearfix list-post"> <div class="title"> <p>20 African Countries with Highest Divorce Rate</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2015/11/16035159/shutterstock_257952206.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 African Countries with Highest Divorce Rate"/> </a> <a href="https://www.insidermonkey.com/blog/how-to-convert-ira-to-gold-a-5-step-gold-ira-transfer-guide-1307841" class="clearfix list-post"> <div class="title"> <p>How to Convert IRA to Gold: A 5-Step Gold IRA Transfer Guide</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2021/05/17081831/Gold-bar-jingming-pan-iYsrkq5qq0Q-unsplash.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="How to Convert IRA to Gold: A 5-Step Gold IRA Transfer Guide"/> </a> <a href="https://www.insidermonkey.com/blog/15-countries-that-watch-the-most-porn-in-2024-1299676" class="clearfix list-post"> <div class="title"> <p>15 Countries that Watch the Most Porn in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/01/13022133/52305476_m.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Countries that Watch the Most Porn in 2024"/> </a> <a href="https://www.insidermonkey.com/blog/20-gayest-cities-in-florida-1305878" class="clearfix list-post"> <div class="title"> <p>20 Gayest Cities in Florida</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2018/01/08051352/gay-pride-2446416_1920.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 Gayest Cities in Florida"/> </a> <a href="https://www.insidermonkey.com/blog/15-interactive-newsletter-ideas-that-will-drive-your-click-through-rates-1302370" class="clearfix list-post"> <div class="title"> <p>15 Interactive Newsletter Ideas That Will Drive Your Click-through Rates</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2024/05/13070128/andrew-neel-cckf4TsHAuw-unsplash.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Interactive Newsletter Ideas That Will Drive Your Click-through Rates"/> </a> <a href="https://www.insidermonkey.com/blog/the-best-state-for-education-in-the-us-1303386" class="clearfix list-post"> <div class="title"> <p>The Best State for Education in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/06/18075407/college-students-1808275_1280.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="The Best State for Education in the US"/> </a> <a href="https://www.insidermonkey.com/blog/20-states-with-the-highest-rates-of-binge-drinking-in-the-us-1302923" class="clearfix list-post"> <div class="title"> <p>20 States with the Highest Rates of Binge Drinking in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2018/01/28162829/alcohol-428392_1920.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 States with the Highest Rates of Binge Drinking in the US"/> </a> <a href="https://www.insidermonkey.com/blog/20-high-paying-entry-level-jobs-in-the-us-1302902" class="clearfix list-post"> <div class="title"> <p>20 High-Paying Entry-Level Jobs in the US</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/02/13163417/shutterstock_575200360.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="20 High-Paying Entry-Level Jobs in the US"/> </a> <a href="https://www.insidermonkey.com/blog/15-best-places-in-kansas-for-a-couple-to-live-on-only-social-security-1301889" class="clearfix list-post"> <div class="title"> <p>15 Best Places in Kansas for a Couple to Live on Only Social Security</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/09/09082701/kansas-city-1380036_1920.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Best Places in Kansas for a Couple to Live on Only Social Security"/> </a> <a href="https://www.insidermonkey.com/blog/25-countries-with-the-most-public-holidays-in-the-world-1302369" class="clearfix list-post"> <div class="title"> <p>25 Countries with the Most Public Holidays in the World</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/04/27144812/shutterstock_327011009.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="25 Countries with the Most Public Holidays in the World"/> </a> <a href="https://www.insidermonkey.com/blog/15-best-whiskeys-for-beginners-in-2024-1302969" class="clearfix list-post"> <div class="title"> <p>15 Best Whiskeys for Beginners in 2024</p> </div> <img class="thumbnail" loading="lazy" src="https://imonkey-blog.imgix.net/blog/wp-content/uploads/2017/01/27131459/shutterstock_184945160.jpg?auto=format&expires=1772323200&w=120&h=160&fit=crop" alt="15 Best Whiskeys for Beginners in 2024"/> </a> </div> </div> </div> </div> </div></div> </div><!-- closes middle-col--> </div><!-- closes blog-page--> <div class="footer-container"> <footer class="footer"> <div class="level-0"> <section> <p class="footer-signup-title">Get our editor’s daily picks straight in your inbox!</p> <div class="footer-daily-newsletter" data-submit-url="https://www.insidermonkey.com//services/signup.php"> <form> <div class="input-container"> <input type="email" placeholder="Enter Your Email"> <input type="submit" class="button action-button" value="Sign Up!"> </div> <p class="get-email-message"></p> </form> </div> </section> </div> <div class="wrap"> <div class="level-1"> <div class="logo-container"> <a href="https://www.insidermonkey.com/" Title="Insider Monkey - Insider Trading, Hedge Fund Data, Investing, and Investment Newsletter"><span class="icon icon-logo"></span></a> </div> <div class="social-links-container"> <a href="https://www.facebook.com/insidermonkey" target="_blank" aria-label="Facebook"><span class="icon-social-facebook icon"></span></a> <a href="https://twitter.com/insidermonkey" target="_blank" aria-label="Twitter"><span class="icon-social-twitter icon"></span></a> <a href="https://www.youtube.com/channel/UC1Aq_WCC24HS2-rc6Z1NmKw" target="_blank" aria-label="Youtube"><span class="icon-social-youtube icon"></span></a> <a href="https://www.linkedin.com/company/insider-monkey/" target="_blank" aria-label="Linkedin"><span class="icon-social-linkedin icon"></span></a> </div> </div> <div class="level-2"> <div class="navigation-links-container"> <a href="https://www.insidermonkey.com/blog/google-news-feed/" rel="bookmark" target="_blank"><span class="icon-rss-feed icon"></span>RSS Feed</a> <a href="https://www.insidermonkey.com/hedge-fund/" rel="bookmark">Hedge Funds</a> <a href="https://www.insidermonkey.com/insider-trading/" rel="bookmark">Insider Trading</a> <a href="https://www.insidermonkey.com/about-us/">About Us</a> <a href="https://www.insidermonkey.com/authors/">Authors</a> <a href="https://www.insidermonkey.com/contact-us/">Contact Us</a> <a href="https://www.insidermonkey.com/sitemap" rel="bookmark">Sitemap</a> </div> <div class="legal-links-container"> <a href="https://www.insidermonkey.com/privacy-policy/" rel="nofollow">Privacy Policy</a> <a href="https://www.insidermonkey.com/terms-of-use/" rel="nofollow">Terms of Use</a> <a href="https://www.insidermonkey.com/do-not-sell-my-information/" rel="nofollow">CCPA - Do Not Sell My Information.</a> <span>©2024 Koala Guide LLC.</span> </div> </div> </div> </footer> </div> <div id="footer-scripts"> <script type="text/javascript"> function startIMONKEY() { if (!IMONKEY.inMobile || !IMONKEY.IS_MOBILE_ADS_DISABLED) { // commented out due to uat transition // pushInvestingChannelOOPTag(); } IMONKEY.Pages.Search.initQuickSearch({ "appUrl" : "https://www.insidermonkey.com/", "appHttpsUrl" : "https://www.insidermonkey.com/" }); IMONKEY.Pages.init({ "appUrl" : "https://www.insidermonkey.com/", "appHttpsUrl" : "https://www.insidermonkey.com/", "overlayFetchUrl": "https://www.insidermonkey.com/services/fetch_overlay.php", "processingAjaxImgUrl": "https://imonkey-main.imgix.net/img/ajax-loading.gif", "isAdFree": "YES", "companyTickers": [], "isGooglePolicyViolation": "" }); IMONKEY.Notifications.init({ "notificationAjaxUrl": "https://www.insidermonkey.com/services/notification.php" }); IMONKEY.Pages.Blog.init({ fetchNextPostUrl: 'https://www.insidermonkey.com//services/fetch_next_post.php' }); }; </script> <script defer src="//d13a9k2cw5p3go.cloudfront.net/imonkey-blog-c6a89d714e.min.js" type="text/javascript"></script> <script> // Check whether ads are blocked, if not add can-load class to remove gray background in ad containers (async function setIsAdBlocked() { var isAdBlocked = await IMONKEY.checkForAdBlocker(); var bodyEl = document.querySelector("body"); if (isAdBlocked) { bodyEl.classList.add("ad-blocked"); } })(); </script> </div> <div id="IC_d_OOP_1"></div></body> </html> <!-- cached 5c1764abea3d3356f442916b7341e58c-notLogged 1-->

Pages: 1 2 3 4 5 6 7 8 9 10