
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_90f21a4d0a2d7477694d2878.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1837d2f87207e99705c3c836.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3994e111cdef8af0cdcbd048.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7789de911d0839d73129a36f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_55d9b6e4033775f8c0c9d397.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_57d786359612cdb5bf767b0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_622a1f95abf13ae873aad8a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-26.999999px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.962403px;}
.ls2{letter-spacing:38.882811px;}
.ls1f{letter-spacing:64.511716px;}
.ls7{letter-spacing:67.499997px;}
.ls13{letter-spacing:71.999997px;}
.ls10{letter-spacing:76.499997px;}
.ls19{letter-spacing:80.999997px;}
.ls3{letter-spacing:85.499996px;}
.ls17{letter-spacing:98.999996px;}
.ls16{letter-spacing:103.499996px;}
.ls1a{letter-spacing:121.499995px;}
.ls1b{letter-spacing:130.499995px;}
.ls21{letter-spacing:148.499994px;}
.ls26{letter-spacing:152.999994px;}
.ls22{letter-spacing:157.499993px;}
.ls1d{letter-spacing:166.499993px;}
.lsa{letter-spacing:170.999993px;}
.lse{letter-spacing:175.499993px;}
.ls25{letter-spacing:179.999992px;}
.lsf{letter-spacing:184.499992px;}
.ls1{letter-spacing:188.999992px;}
.ls14{letter-spacing:193.499992px;}
.ls11{letter-spacing:197.999992px;}
.ls12{letter-spacing:202.499992px;}
.lsb{letter-spacing:211.499991px;}
.ls20{letter-spacing:215.999991px;}
.ls8{letter-spacing:220.499991px;}
.ls2a{letter-spacing:229.499990px;}
.ls1c{letter-spacing:238.499990px;}
.ls18{letter-spacing:242.999990px;}
.ls28{letter-spacing:256.499989px;}
.ls15{letter-spacing:260.999989px;}
.ls4{letter-spacing:265.499989px;}
.ls5{letter-spacing:296.999988px;}
.lsc{letter-spacing:310.499987px;}
.ls9{letter-spacing:319.499987px;}
.ls23{letter-spacing:323.999987px;}
.ls1e{letter-spacing:328.499986px;}
.ls27{letter-spacing:350.999985px;}
.ls6{letter-spacing:391.499984px;}
.lsd{letter-spacing:395.999984px;}
.ls29{letter-spacing:440.999982px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._3e{margin-left:-2678.303916px;}
._143{margin-left:-2676.598982px;}
._126{margin-left:-2673.164302px;}
._fa{margin-left:-2663.995427px;}
._11b{margin-left:-2659.493624px;}
._fc{margin-left:-2651.163859px;}
._e3{margin-left:-2650.040577px;}
._d3{margin-left:-2646.456683px;}
._c2{margin-left:-2645.276338px;}
._b3{margin-left:-2641.633121px;}
._103{margin-left:-2640.605131px;}
._61{margin-left:-2637.452920px;}
._142{margin-left:-2636.361381px;}
._11d{margin-left:-2633.322174px;}
._ba{margin-left:-2631.759034px;}
._8c{margin-left:-2628.086732px;}
._13c{margin-left:-2623.671107px;}
._11c{margin-left:-2618.790936px;}
._1a3{margin-left:-2615.479696px;}
._b9{margin-left:-2614.417070px;}
._36{margin-left:-2610.135949px;}
._127{margin-left:-2609.079001px;}
._de{margin-left:-2605.527914px;}
._11a{margin-left:-2601.892142px;}
._ac{margin-left:-2600.587063px;}
._11e{margin-left:-2597.421300px;}
._e4{margin-left:-2596.178921px;}
._c8{margin-left:-2592.421767px;}
._bf{margin-left:-2587.891099px;}
._13b{margin-left:-2586.671537px;}
._c3{margin-left:-2583.365710px;}
._1b5{margin-left:-2582.115288px;}
._1c0{margin-left:-2579.277668px;}
._a1{margin-left:-2578.181202px;}
._b2{margin-left:-2574.168830px;}
._c0{margin-left:-2573.011521px;}
._9a{margin-left:-2569.765036px;}
._152{margin-left:-2568.511052px;}
._fb{margin-left:-2564.514483px;}
._119{margin-left:-2561.098458px;}
._ce{margin-left:-2559.586418px;}
._145{margin-left:-2556.727363px;}
._81{margin-left:-2555.533032px;}
._b5{margin-left:-2551.402741px;}
._b0{margin-left:-2547.107422px;}
._1b4{margin-left:-2546.036465px;}
._1b6{margin-left:-2543.052710px;}
._109{margin-left:-2541.953071px;}
._14d{margin-left:-2538.223312px;}
._bd{margin-left:-2537.044756px;}
._12e{margin-left:-2533.541255px;}
._100{margin-left:-2529.911159px;}
._96{margin-left:-2528.784490px;}
._1a6{margin-left:-2525.085041px;}
._d0{margin-left:-2523.615848px;}
._6e{margin-left:-2519.995326px;}
._97{margin-left:-2515.970279px;}
._cf{margin-left:-2514.764418px;}
._a3{margin-left:-2511.104813px;}
._87{margin-left:-2507.024818px;}
._139{margin-left:-2506.005429px;}
._a9{margin-left:-2502.064497px;}
._c7{margin-left:-2501.025123px;}
._183{margin-left:-2498.445119px;}
._4c{margin-left:-2497.072414px;}
._af{margin-left:-2493.511464px;}
._c6{margin-left:-2492.417303px;}
._bc{margin-left:-2489.127571px;}
._82{margin-left:-2487.791073px;}
._ca{margin-left:-2484.710938px;}
._cc{margin-left:-2483.679931px;}
._90{margin-left:-2480.333003px;}
._111{margin-left:-2479.125065px;}
._10f{margin-left:-2475.978016px;}
._9e{margin-left:-2474.505689px;}
._a7{margin-left:-2470.558098px;}
._88{margin-left:-2465.945456px;}
._89{margin-left:-2462.442948px;}
._14a{margin-left:-2460.992072px;}
._e1{margin-left:-2457.534669px;}
._14e{margin-left:-2456.047260px;}
._a4{margin-left:-2453.419590px;}
._be{margin-left:-2452.073457px;}
._14c{margin-left:-2448.924709px;}
._56{margin-left:-2447.512499px;}
._93{margin-left:-2443.958977px;}
._b4{margin-left:-2439.059001px;}
._ff{margin-left:-2434.760281px;}
._10b{margin-left:-2430.873684px;}
._dc{margin-left:-2429.482577px;}
._d4{margin-left:-2425.040587px;}
._110{margin-left:-2421.558753px;}
._6b{margin-left:-2420.556551px;}
._12f{margin-left:-2417.384503px;}
._129{margin-left:-2416.004287px;}
._46{margin-left:-2412.014061px;}
._10a{margin-left:-2407.638349px;}
._fe{margin-left:-2403.340164px;}
._141{margin-left:-2402.127192px;}
._e2{margin-left:-2398.817394px;}
._191{margin-left:-2397.746011px;}
._102{margin-left:-2394.311751px;}
._8f{margin-left:-2393.099995px;}
._133{margin-left:-2389.519206px;}
._68{margin-left:-2385.230698px;}
._1e6{margin-left:-2384.170404px;}
._f9{margin-left:-2380.611896px;}
._59{margin-left:-2379.580694px;}
._29{margin-left:-2376.488661px;}
._18f{margin-left:-2375.075029px;}
._cd{margin-left:-2371.022314px;}
._7f{margin-left:-2367.666751px;}
._10d{margin-left:-2366.308650px;}
._18e{margin-left:-2363.115952px;}
._66{margin-left:-2362.081101px;}
._d8{margin-left:-2358.167838px;}
._9c{margin-left:-2354.003395px;}
._f7{margin-left:-2352.935273px;}
._11f{margin-left:-2349.295885px;}
._108{margin-left:-2344.649587px;}
._e5{margin-left:-2343.541995px;}
._163{margin-left:-2339.989732px;}
._161{margin-left:-2336.416842px;}
._160{margin-left:-2335.039458px;}
._137{margin-left:-2331.223298px;}
._148{margin-left:-2326.497048px;}
._e0{margin-left:-2322.535255px;}
._153{margin-left:-2321.232668px;}
._71{margin-left:-2317.037731px;}
._1b3{margin-left:-2313.716076px;}
._136{margin-left:-2312.017818px;}
._116{margin-left:-2308.249812px;}
._12a{margin-left:-2304.276016px;}
._106{margin-left:-2303.052089px;}
._15b{margin-left:-2300.261402px;}
._125{margin-left:-2299.000981px;}
._117{margin-left:-2295.052397px;}
._1be{margin-left:-2291.454826px;}
._f1{margin-left:-2290.437839px;}
._da{margin-left:-2286.192131px;}
._123{margin-left:-2281.952382px;}
._1a4{margin-left:-2280.650226px;}
._d2{margin-left:-2277.539138px;}
._1e1{margin-left:-2276.506577px;}
._150{margin-left:-2272.802175px;}
._165{margin-left:-2271.513258px;}
._a6{margin-left:-2268.103184px;}
._8b{margin-left:-2264.048825px;}
._118{margin-left:-2262.920415px;}
._d7{margin-left:-2259.378671px;}
._147{margin-left:-2254.332026px;}
._8d{margin-left:-2250.098300px;}
._d6{margin-left:-2246.273346px;}
._a0{margin-left:-2244.593821px;}
._1ea{margin-left:-2240.206464px;}
._138{margin-left:-2237.086180px;}
._f6{margin-left:-2231.963949px;}
._122{margin-left:-2227.242429px;}
._d9{margin-left:-2223.383227px;}
._15e{margin-left:-2222.132757px;}
._1d7{margin-left:-2219.413398px;}
._1e4{margin-left:-2217.669754px;}
._d5{margin-left:-2214.125337px;}
._1c3{margin-left:-2209.632896px;}
._15c{margin-left:-2205.632154px;}
._14b{margin-left:-2204.504878px;}
._135{margin-left:-2199.974851px;}
._14f{margin-left:-2196.969083px;}
._131{margin-left:-2192.101864px;}
._107{margin-left:-2182.177663px;}
._fd{margin-left:-2177.524498px;}
._13f{margin-left:-2174.437838px;}
._1c{margin-left:-2169.145329px;}
._f2{margin-left:-2165.419670px;}
._162{margin-left:-2164.267414px;}
._1d9{margin-left:-2160.456941px;}
._f4{margin-left:-2155.738930px;}
._78{margin-left:-2150.566418px;}
._b7{margin-left:-2146.874509px;}
._166{margin-left:-2141.748132px;}
._f8{margin-left:-2137.292419px;}
._140{margin-left:-2132.397144px;}
._ae{margin-left:-2124.741942px;}
._164{margin-left:-2123.190753px;}
._f5{margin-left:-2119.516355px;}
._124{margin-left:-2111.145882px;}
._75{margin-left:-2109.547269px;}
._ab{margin-left:-2106.202386px;}
._167{margin-left:-2101.983679px;}
._1bd{margin-left:-2100.884105px;}
._f3{margin-left:-2092.081148px;}
._151{margin-left:-2087.646096px;}
._10e{margin-left:-2084.051124px;}
._15d{margin-left:-2082.817945px;}
._73{margin-left:-2074.774336px;}
._193{margin-left:-2069.058612px;}
._128{margin-left:-2061.207432px;}
._77{margin-left:-2056.259538px;}
._130{margin-left:-2052.210853px;}
._1f2{margin-left:-2047.307215px;}
._1f1{margin-left:-2033.691419px;}
._1f7{margin-left:-2024.540599px;}
._15f{margin-left:-2019.601725px;}
._1f3{margin-left:-2007.550781px;}
._1f6{margin-left:-2006.157637px;}
._7a{margin-left:-1988.354411px;}
._1c2{margin-left:-1971.120687px;}
._1e3{margin-left:-1947.540862px;}
._7c{margin-left:-1930.284984px;}
._1a8{margin-left:-1886.040279px;}
._1d4{margin-left:-1854.456954px;}
._7e{margin-left:-1836.604993px;}
._1b1{margin-left:-1692.704775px;}
._1af{margin-left:-1661.340840px;}
._1ab{margin-left:-1642.006035px;}
._1b0{margin-left:-1629.481325px;}
._1ac{margin-left:-1579.417178px;}
._17b{margin-left:-1551.964067px;}
._ee{margin-left:-1547.942099px;}
._1aa{margin-left:-1543.008583px;}
._181{margin-left:-1534.831784px;}
._e8{margin-left:-1533.806999px;}
._1ae{margin-left:-1530.679780px;}
._15a{margin-left:-1529.506038px;}
._186{margin-left:-1526.407492px;}
._185{margin-left:-1520.751560px;}
._17f{margin-left:-1516.865658px;}
._eb{margin-left:-1507.288757px;}
._e6{margin-left:-1499.411715px;}
._189{margin-left:-1498.319601px;}
._179{margin-left:-1493.506039px;}
._e9{margin-left:-1481.318473px;}
._1ad{margin-left:-1475.199924px;}
._188{margin-left:-1471.367536px;}
._169{margin-left:-1467.527285px;}
._168{margin-left:-1462.495369px;}
._187{margin-left:-1458.220002px;}
._176{margin-left:-1457.203929px;}
._ea{margin-left:-1454.197381px;}
._18a{margin-left:-1453.184679px;}
._180{margin-left:-1444.372096px;}
._ec{margin-left:-1439.520513px;}
._17c{margin-left:-1435.617296px;}
._159{margin-left:-1422.608109px;}
._158{margin-left:-1417.262998px;}
._16e{margin-left:-1412.185650px;}
._16f{margin-left:-1409.226349px;}
._1a9{margin-left:-1403.960231px;}
._172{margin-left:-1400.075129px;}
._17d{margin-left:-1390.349971px;}
._18b{margin-left:-1381.253280px;}
._1ba{margin-left:-1377.363965px;}
._16b{margin-left:-1372.675152px;}
._17a{margin-left:-1364.163913px;}
._177{margin-left:-1362.701613px;}
._f0{margin-left:-1359.138285px;}
._ef{margin-left:-1350.330650px;}
._19c{margin-left:-1345.410488px;}
._1b9{margin-left:-1341.887912px;}
._171{margin-left:-1340.240667px;}
._175{margin-left:-1336.988705px;}
._170{margin-left:-1327.720590px;}
._ed{margin-left:-1319.482035px;}
._19f{margin-left:-1313.963650px;}
._1b7{margin-left:-1300.565132px;}
._17e{margin-left:-1296.880000px;}
._e7{margin-left:-1291.600859px;}
._1a0{margin-left:-1277.516911px;}
._174{margin-left:-1268.118186px;}
._18c{margin-left:-1264.460796px;}
._1a2{margin-left:-1250.504337px;}
._173{margin-left:-1238.146114px;}
._16a{margin-left:-1227.792856px;}
._178{margin-left:-1224.454700px;}
._16c{margin-left:-1220.413444px;}
._1bc{margin-left:-1205.976125px;}
._19d{margin-left:-1179.069694px;}
._16d{margin-left:-1174.533969px;}
._1bb{margin-left:-1125.396363px;}
._19b{margin-left:-1111.971143px;}
._156{margin-left:-1101.520153px;}
._1a1{margin-left:-1098.016539px;}
._19e{margin-left:-1061.482552px;}
._157{margin-left:-1021.393345px;}
._1b8{margin-left:-881.796432px;}
._198{margin-left:-836.823041px;}
._199{margin-left:-810.543895px;}
._19a{margin-left:-777.761115px;}
._195{margin-left:-692.329714px;}
._197{margin-left:-670.006642px;}
._196{margin-left:-660.832003px;}
._112{margin-left:-134.999994px;}
._115{margin-left:-102.601866px;}
._182{margin-left:-85.498853px;}
._a{margin-left:-71.999997px;}
._ad{margin-left:-67.283348px;}
._1b{margin-left:-58.499998px;}
._0{margin-left:-54.328577px;}
._101{margin-left:-53.120521px;}
._1{margin-left:-49.499998px;}
._19{margin-left:-47.992498px;}
._f{margin-left:-45.228507px;}
._114{margin-left:-36.105469px;}
._16{margin-left:-34.492498px;}
._b{margin-left:-23.062499px;}
._e{margin-left:-21.955078px;}
._6{margin-left:-17.999999px;}
._12{margin-left:-15.954694px;}
._27{margin-left:-11.953124px;}
._d1{margin-left:-10.751527px;}
._c{margin-left:-9.413085px;}
._5{margin-left:-7.980468px;}
._d{margin-left:-6.503906px;}
._14{margin-left:-5.379478px;}
._2{margin-left:-4.042968px;}
._3{margin-left:-2.496094px;}
._8{margin-left:-1.019531px;}
._4{width:1.476562px;}
._7{width:2.566406px;}
._72{width:3.567224px;}
._11{width:4.570312px;}
._4b{width:8.351889px;}
._10{width:9.993165px;}
._26{width:12.515625px;}
._9{width:13.605469px;}
._18{width:14.822363px;}
._28{width:16.982051px;}
._63{width:21.556499px;}
._1a{width:22.921874px;}
._8e{width:26.218088px;}
._c1{width:27.451386px;}
._32{width:31.499999px;}
._2d{width:35.999998px;}
._55{width:40.499998px;}
._30{width:44.999998px;}
._1f{width:49.499998px;}
._5b{width:53.999998px;}
._3a{width:58.499998px;}
._2b{width:62.999997px;}
._2c{width:67.499997px;}
._1e{width:71.999997px;}
._4d{width:76.499997px;}
._48{width:80.999997px;}
._21{width:85.499996px;}
._4f{width:89.999996px;}
._5a{width:94.499996px;}
._43{width:98.999996px;}
._3f{width:103.499996px;}
._9d{width:107.269581px;}
._5d{width:108.386719px;}
._47{width:112.499995px;}
._50{width:116.999995px;}
._5c{width:121.499995px;}
._41{width:125.999995px;}
._58{width:130.499995px;}
._39{width:134.999994px;}
._5e{width:139.499994px;}
._13{width:140.584432px;}
._23{width:143.999994px;}
._45{width:148.499994px;}
._98{width:152.613270px;}
._7b{width:153.730408px;}
._74{width:157.499993px;}
._3c{width:161.999993px;}
._53{width:166.499993px;}
._37{width:170.999993px;}
._38{width:175.499993px;}
._25{width:179.999992px;}
._51{width:184.499992px;}
._22{width:188.999992px;}
._31{width:193.499992px;}
._2a{width:197.999992px;}
._17{width:199.507492px;}
._6c{width:202.499992px;}
._49{width:206.999991px;}
._6a{width:211.499991px;}
._84{width:215.269577px;}
._64{width:216.390577px;}
._2f{width:220.499991px;}
._91{width:224.999991px;}
._67{width:229.499990px;}
._54{width:233.999990px;}
._2e{width:238.499990px;}
._1d{width:242.999990px;}
._65{width:247.499990px;}
._35{width:251.999990px;}
._33{width:256.499989px;}
._34{width:260.999989px;}
._57{width:265.499989px;}
._6d{width:269.999989px;}
._42{width:274.499989px;}
._3b{width:278.999988px;}
._12d{width:282.764869px;}
._7d{width:283.886712px;}
._5f{width:287.999988px;}
._cb{width:292.142725px;}
._9b{width:293.230402px;}
._79{width:296.613264px;}
._b6{width:297.699295px;}
._60{width:301.499987px;}
._83{width:305.999987px;}
._52{width:310.499987px;}
._92{width:314.999987px;}
._24{width:319.499987px;}
._44{width:323.999986px;}
._69{width:328.499986px;}
._70{width:332.999986px;}
._10c{width:336.533591px;}
._94{width:337.886709px;}
._4a{width:341.999986px;}
._3d{width:346.499986px;}
._80{width:350.999985px;}
._85{width:355.499985px;}
._144{width:359.403457px;}
._a5{width:360.531309px;}
._db{width:364.170648px;}
._8a{width:365.230399px;}
._4e{width:368.999985px;}
._20{width:373.499984px;}
._a8{width:377.999984px;}
._9f{width:381.726537px;}
._12b{width:382.805824px;}
._121{width:386.495901px;}
._c9{width:387.957418px;}
._a2{width:391.427738px;}
._132{width:395.688938px;}
._dd{width:396.984930px;}
._192{width:400.151822px;}
._c5{width:401.348308px;}
._6f{width:404.999983px;}
._104{width:409.857245px;}
._c4{width:413.999983px;}
._df{width:418.499983px;}
._120{width:422.692461px;}
._105{width:423.793291px;}
._b8{width:427.360465px;}
._15{width:429.133212px;}
._62{width:431.999982px;}
._13e{width:437.352291px;}
._bb{width:440.653332px;}
._1bf{width:441.890623px;}
._113{width:445.155236px;}
._1a5{width:446.307035px;}
._86{width:449.999981px;}
._aa{width:454.499981px;}
._149{width:458.958547px;}
._13d{width:463.499981px;}
._95{width:467.999981px;}
._40{width:472.499980px;}
._76{width:476.999980px;}
._134{width:481.672573px;}
._13a{width:486.749021px;}
._99{width:490.499980px;}
._12c{width:495.080146px;}
._146{width:499.636439px;}
._1ed{width:513.244599px;}
._1f8{width:517.421774px;}
._194{width:521.355269px;}
._1c7{width:522.619801px;}
._184{width:526.865102px;}
._1c5{width:530.086487px;}
._1c4{width:531.951482px;}
._1a7{width:540.430471px;}
._1df{width:549.211486px;}
._b1{width:553.499977px;}
._1c1{width:557.918356px;}
._1b2{width:563.212359px;}
._1cb{width:566.336007px;}
._1ce{width:580.499976px;}
._18d{width:593.970873px;}
._1ca{width:602.999975px;}
._1dd{width:607.388004px;}
._155{width:612.926471px;}
._190{width:621.888347px;}
._1c8{width:634.928475px;}
._1e5{width:647.164126px;}
._1ec{width:648.263092px;}
._1e8{width:653.099925px;}
._1d3{width:683.086480px;}
._1d2{width:684.668511px;}
._1ee{width:693.808560px;}
._1dc{width:702.106011px;}
._154{width:723.536114px;}
._1db{width:747.703631px;}
._1d6{width:764.999968px;}
._1ef{width:787.631191px;}
._1cc{width:791.995212px;}
._1e7{width:796.889190px;}
._1cd{width:832.499965px;}
._1c9{width:854.999964px;}
._1cf{width:859.008348px;}
._1c6{width:863.485097px;}
._1eb{width:873.211735px;}
._1e0{width:882.101450px;}
._1d1{width:935.999961px;}
._1f5{width:953.999960px;}
._1d5{width:1016.999958px;}
._1f0{width:1025.999957px;}
._1de{width:1034.999957px;}
._1e2{width:1097.571452px;}
._1e9{width:1129.499953px;}
._1d0{width:1191.623902px;}
._1f4{width:1205.611903px;}
._1d8{width:2024.086424px;}
._1da{width:2105.999912px;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(74,134,232);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:43.200000px;}
.fs4{font-size:62.999997px;}
.fs0{font-size:65.969996px;}
.fs1{font-size:71.999997px;}
.fs2{font-size:89.999996px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.125049px;}
.y3c{bottom:59.624998px;}
.y58{bottom:114.749995px;}
.ya4{bottom:116.999995px;}
.ye9{bottom:120.374995px;}
.y3b{bottom:121.499995px;}
.y15{bottom:127.124995px;}
.ycd{bottom:132.749994px;}
.y9c{bottom:134.999994px;}
.y57{bottom:139.499994px;}
.yc0{bottom:141.749994px;}
.ye8{bottom:145.124994px;}
.y3a{bottom:146.249994px;}
.y14{bottom:151.874994px;}
.yd3{bottom:154.124994px;}
.ycc{bottom:157.499993px;}
.y8c{bottom:159.749993px;}
.ya3{bottom:163.124993px;}
.y76{bottom:166.499993px;}
.ye7{bottom:169.874993px;}
.y39{bottom:170.999993px;}
.y13{bottom:176.624993px;}
.yad{bottom:178.874993px;}
.ybb{bottom:181.124992px;}
.ycb{bottom:182.249992px;}
.y8b{bottom:184.499992px;}
.y56{bottom:185.624992px;}
.ya2{bottom:187.874992px;}
.y75{bottom:191.249992px;}
.ye6{bottom:194.624992px;}
.y38{bottom:195.749992px;}
.y12{bottom:201.374992px;}
.yac{bottom:203.624992px;}
.yba{bottom:205.874991px;}
.yca{bottom:206.999991px;}
.y8a{bottom:209.249991px;}
.y55{bottom:210.374991px;}
.ya1{bottom:212.624991px;}
.y74{bottom:215.999991px;}
.ye5{bottom:219.374991px;}
.y37{bottom:220.499991px;}
.y11{bottom:226.124991px;}
.yab{bottom:228.374990px;}
.yb9{bottom:230.624990px;}
.yc9{bottom:231.749990px;}
.y89{bottom:233.999990px;}
.y54{bottom:235.124990px;}
.ya0{bottom:237.374990px;}
.y73{bottom:240.749990px;}
.ye4{bottom:244.124990px;}
.y36{bottom:245.249990px;}
.y10{bottom:250.874990px;}
.yaa{bottom:253.124989px;}
.yb8{bottom:255.374989px;}
.yc8{bottom:256.499989px;}
.y88{bottom:258.749989px;}
.y53{bottom:259.874989px;}
.y9f{bottom:262.124989px;}
.ye3{bottom:268.874989px;}
.y35{bottom:269.999989px;}
.yf{bottom:275.624989px;}
.ya9{bottom:277.874988px;}
.y9b{bottom:280.124988px;}
.yc7{bottom:281.249988px;}
.y87{bottom:283.499988px;}
.y52{bottom:284.624988px;}
.y72{bottom:286.874988px;}
.ye2{bottom:293.624988px;}
.y34{bottom:294.749988px;}
.ye{bottom:300.374987px;}
.ya8{bottom:302.624987px;}
.y9a{bottom:304.874987px;}
.yc6{bottom:305.999987px;}
.y86{bottom:308.249987px;}
.y51{bottom:309.374987px;}
.y71{bottom:311.624987px;}
.ye1{bottom:318.374987px;}
.y33{bottom:319.499987px;}
.yd{bottom:325.124986px;}
.ya7{bottom:327.374986px;}
.y99{bottom:329.624986px;}
.yc5{bottom:330.749986px;}
.y85{bottom:332.999986px;}
.y70{bottom:336.374986px;}
.ye0{bottom:343.124986px;}
.y32{bottom:344.249986px;}
.yc{bottom:349.874985px;}
.ya6{bottom:352.124985px;}
.y98{bottom:354.374985px;}
.y50{bottom:355.499985px;}
.y84{bottom:357.749985px;}
.y6f{bottom:361.124985px;}
.ydf{bottom:367.874985px;}
.y31{bottom:368.999985px;}
.yb{bottom:376.874984px;}
.y97{bottom:379.124984px;}
.y4f{bottom:380.249984px;}
.y83{bottom:382.499984px;}
.y6e{bottom:385.874984px;}
.yde{bottom:392.624984px;}
.y30{bottom:393.749984px;}
.yb7{bottom:400.499983px;}
.ya5{bottom:401.624983px;}
.y96{bottom:403.874983px;}
.y4e{bottom:404.999983px;}
.y82{bottom:407.249983px;}
.ya{bottom:408.374983px;}
.ydd{bottom:417.374983px;}
.y2f{bottom:418.499983px;}
.y3d{bottom:425.249982px;}
.yd2{bottom:426.374982px;}
.yd5{bottom:428.624982px;}
.y4d{bottom:429.749982px;}
.y6d{bottom:431.999982px;}
.y9{bottom:439.874982px;}
.ydc{bottom:442.124982px;}
.y2e{bottom:443.249982px;}
.y95{bottom:449.999981px;}
.yd4{bottom:453.374981px;}
.y4c{bottom:454.499981px;}
.y6c{bottom:456.749981px;}
.ydb{bottom:466.874981px;}
.y2d{bottom:467.999981px;}
.y8{bottom:469.124980px;}
.y94{bottom:474.749980px;}
.ybf{bottom:478.124980px;}
.y4b{bottom:479.249980px;}
.y6b{bottom:481.499980px;}
.yda{bottom:491.624980px;}
.y2c{bottom:492.749979px;}
.y7{bottom:493.874979px;}
.y93{bottom:499.499979px;}
.yd1{bottom:500.624979px;}
.ybe{bottom:502.874979px;}
.y4a{bottom:503.999979px;}
.y6a{bottom:506.249979px;}
.yd9{bottom:516.374978px;}
.y2b{bottom:517.499978px;}
.y6{bottom:518.624978px;}
.yb6{bottom:520.874978px;}
.y92{bottom:524.249978px;}
.yd0{bottom:525.374978px;}
.ybd{bottom:527.624978px;}
.y49{bottom:528.749978px;}
.y69{bottom:530.999978px;}
.yd8{bottom:541.124977px;}
.y2a{bottom:542.249977px;}
.y5{bottom:543.374977px;}
.yb5{bottom:545.624977px;}
.y91{bottom:548.999977px;}
.ycf{bottom:550.124977px;}
.ybc{bottom:552.374977px;}
.y48{bottom:553.499977px;}
.y68{bottom:555.749977px;}
.yd7{bottom:565.874976px;}
.y29{bottom:566.999976px;}
.y4{bottom:568.124976px;}
.yb4{bottom:570.374976px;}
.y90{bottom:573.749976px;}
.yce{bottom:574.874976px;}
.y81{bottom:577.124976px;}
.yc4{bottom:578.249976px;}
.y67{bottom:580.499976px;}
.yd6{bottom:590.624975px;}
.y28{bottom:591.749975px;}
.yb3{bottom:595.124975px;}
.y8f{bottom:598.499975px;}
.y47{bottom:599.624975px;}
.y9e{bottom:601.874975px;}
.y66{bottom:605.249975px;}
.y27{bottom:616.499974px;}
.yb2{bottom:619.874974px;}
.y80{bottom:623.249974px;}
.y46{bottom:624.374974px;}
.y9d{bottom:626.624974px;}
.y26{bottom:641.249973px;}
.yb1{bottom:644.624973px;}
.y7f{bottom:647.999973px;}
.y45{bottom:649.124973px;}
.y65{bottom:651.374973px;}
.y25{bottom:665.999972px;}
.yb0{bottom:669.374972px;}
.y7e{bottom:672.749972px;}
.y44{bottom:673.874972px;}
.y64{bottom:676.124972px;}
.y24{bottom:690.749971px;}
.yaf{bottom:694.124971px;}
.y7d{bottom:697.499971px;}
.y43{bottom:698.624971px;}
.y63{bottom:700.874971px;}
.y23{bottom:715.499970px;}
.yae{bottom:718.874970px;}
.y8e{bottom:722.249970px;}
.y42{bottom:723.374970px;}
.y62{bottom:725.624970px;}
.y22{bottom:740.249969px;}
.y7c{bottom:743.624969px;}
.y8d{bottom:746.999969px;}
.y41{bottom:748.124969px;}
.y21{bottom:764.999968px;}
.y7b{bottom:768.374968px;}
.y61{bottom:771.749968px;}
.y40{bottom:772.874968px;}
.y20{bottom:789.749967px;}
.y7a{bottom:793.124967px;}
.y60{bottom:796.499967px;}
.y3f{bottom:797.624967px;}
.y1f{bottom:814.499966px;}
.y79{bottom:817.874966px;}
.y5f{bottom:821.249966px;}
.y3e{bottom:822.374966px;}
.y1e{bottom:839.249965px;}
.y78{bottom:842.624965px;}
.y5e{bottom:845.999965px;}
.y1d{bottom:863.999964px;}
.y77{bottom:867.374964px;}
.yc1{bottom:870.749964px;}
.y1c{bottom:888.749963px;}
.y5d{bottom:892.124963px;}
.yc3{bottom:895.499963px;}
.y1b{bottom:913.499962px;}
.y5c{bottom:916.874962px;}
.yc2{bottom:920.249962px;}
.y1a{bottom:938.249961px;}
.y5b{bottom:941.624961px;}
.y19{bottom:962.999960px;}
.y5a{bottom:966.374960px;}
.y18{bottom:987.749959px;}
.y59{bottom:991.124959px;}
.y17{bottom:1012.499958px;}
.y16{bottom:1037.249957px;}
.yea{bottom:1043.999956px;}
.y3{bottom:1061.999956px;}
.y2{bottom:1117.124953px;}
.h8{height:37.905469px;}
.h2{height:47.415935px;}
.h6{height:57.884806px;}
.h3{height:63.175779px;}
.h5{height:63.351560px;}
.h7{height:63.949216px;}
.h4{height:79.936520px;}
.h1{height:1186.874951px;}
.h0{height:1188.000000px;}
.w1{width:917.999962px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:127.546870px;}
.x2{left:135.421869px;}
.x1{left:136.546869px;}
.x17{left:137.671869px;}
.x36{left:154.546869px;}
.x26{left:159.046868px;}
.xc{left:181.546867px;}
.x7{left:183.796867px;}
.x2a{left:187.171867px;}
.x1c{left:188.296867px;}
.x12{left:189.421867px;}
.x29{left:190.546867px;}
.x11{left:191.671867px;}
.x14{left:208.546866px;}
.x1f{left:209.671866px;}
.x13{left:218.671866px;}
.x24{left:231.046865px;}
.x20{left:233.296865px;}
.xd{left:235.546865px;}
.x21{left:241.171865px;}
.x2c{left:242.296865px;}
.x15{left:243.421865px;}
.x2d{left:244.546865px;}
.x2b{left:245.671865px;}
.x2e{left:262.546864px;}
.x5{left:280.546863px;}
.x8{left:287.296863px;}
.x32{left:289.546863px;}
.x35{left:321.046862px;}
.x4{left:330.046861px;}
.x1a{left:340.171861px;}
.x10{left:344.671861px;}
.x19{left:349.171860px;}
.x18{left:367.171860px;}
.x34{left:378.421859px;}
.xf{left:381.796859px;}
.xa{left:387.421859px;}
.x27{left:397.546858px;}
.x31{left:405.421858px;}
.x33{left:406.546858px;}
.x23{left:407.671858px;}
.x16{left:409.921858px;}
.x25{left:412.171858px;}
.x28{left:413.296858px;}
.x1d{left:417.796858px;}
.x2f{left:421.171857px;}
.x30{left:469.546855px;}
.x1b{left:471.796855px;}
.x6{left:494.296854px;}
.xb{left:498.796854px;}
.x38{left:516.796853px;}
.x39{left:521.296853px;}
.x37{left:632.671849px;}
.x3{left:745.171844px;}
.x1e{left:777.796843px;}
.x22{left:778.921843px;}
.xe{left:786.796842px;}
@media print{
.v1{vertical-align:-23.999999pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.855469pt;}
.ls2{letter-spacing:34.562498pt;}
.ls1f{letter-spacing:57.343747pt;}
.ls7{letter-spacing:59.999997pt;}
.ls13{letter-spacing:63.999997pt;}
.ls10{letter-spacing:67.999997pt;}
.ls19{letter-spacing:71.999997pt;}
.ls3{letter-spacing:75.999997pt;}
.ls17{letter-spacing:87.999996pt;}
.ls16{letter-spacing:91.999996pt;}
.ls1a{letter-spacing:107.999996pt;}
.ls1b{letter-spacing:115.999995pt;}
.ls21{letter-spacing:131.999994pt;}
.ls26{letter-spacing:135.999994pt;}
.ls22{letter-spacing:139.999994pt;}
.ls1d{letter-spacing:147.999994pt;}
.lsa{letter-spacing:151.999994pt;}
.lse{letter-spacing:155.999994pt;}
.ls25{letter-spacing:159.999993pt;}
.lsf{letter-spacing:163.999993pt;}
.ls1{letter-spacing:167.999993pt;}
.ls14{letter-spacing:171.999993pt;}
.ls11{letter-spacing:175.999993pt;}
.ls12{letter-spacing:179.999993pt;}
.lsb{letter-spacing:187.999992pt;}
.ls20{letter-spacing:191.999992pt;}
.ls8{letter-spacing:195.999992pt;}
.ls2a{letter-spacing:203.999992pt;}
.ls1c{letter-spacing:211.999991pt;}
.ls18{letter-spacing:215.999991pt;}
.ls28{letter-spacing:227.999990pt;}
.ls15{letter-spacing:231.999990pt;}
.ls4{letter-spacing:235.999990pt;}
.ls5{letter-spacing:263.999989pt;}
.lsc{letter-spacing:275.999989pt;}
.ls9{letter-spacing:283.999988pt;}
.ls23{letter-spacing:287.999988pt;}
.ls1e{letter-spacing:291.999988pt;}
.ls27{letter-spacing:311.999987pt;}
.ls6{letter-spacing:347.999986pt;}
.lsd{letter-spacing:351.999985pt;}
.ls29{letter-spacing:391.999984pt;}
.ws1{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._3e{margin-left:-2380.714592pt;}
._143{margin-left:-2379.199095pt;}
._126{margin-left:-2376.146046pt;}
._fa{margin-left:-2367.995935pt;}
._11b{margin-left:-2363.994332pt;}
._fc{margin-left:-2356.590097pt;}
._e3{margin-left:-2355.591624pt;}
._d3{margin-left:-2352.405941pt;}
._c2{margin-left:-2351.356745pt;}
._b3{margin-left:-2348.118329pt;}
._103{margin-left:-2347.204561pt;}
._61{margin-left:-2344.402595pt;}
._142{margin-left:-2343.432339pt;}
._11d{margin-left:-2340.730821pt;}
._ba{margin-left:-2339.341364pt;}
._8c{margin-left:-2336.077095pt;}
._13c{margin-left:-2332.152095pt;}
._11c{margin-left:-2327.814166pt;}
._1a3{margin-left:-2324.870841pt;}
._b9{margin-left:-2323.926284pt;}
._36{margin-left:-2320.120844pt;}
._127{margin-left:-2319.181335pt;}
._de{margin-left:-2316.024813pt;}
._11a{margin-left:-2312.793015pt;}
._ac{margin-left:-2311.632945pt;}
._11e{margin-left:-2308.818934pt;}
._e4{margin-left:-2307.714596pt;}
._c8{margin-left:-2304.374904pt;}
._bf{margin-left:-2300.347643pt;}
._13b{margin-left:-2299.263588pt;}
._c3{margin-left:-2296.325075pt;}
._1b5{margin-left:-2295.213590pt;}
._1c0{margin-left:-2292.691260pt;}
._a1{margin-left:-2291.716624pt;}
._b2{margin-left:-2288.150071pt;}
._c0{margin-left:-2287.121352pt;}
._9a{margin-left:-2284.235588pt;}
._152{margin-left:-2283.120935pt;}
._fb{margin-left:-2279.568429pt;}
._119{margin-left:-2276.531963pt;}
._ce{margin-left:-2275.187927pt;}
._145{margin-left:-2272.646545pt;}
._81{margin-left:-2271.584918pt;}
._b5{margin-left:-2267.913547pt;}
._b0{margin-left:-2264.095486pt;}
._1b4{margin-left:-2263.143525pt;}
._1b6{margin-left:-2260.491298pt;}
._109{margin-left:-2259.513841pt;}
._14d{margin-left:-2256.198500pt;}
._bd{margin-left:-2255.150894pt;}
._12e{margin-left:-2252.036671pt;}
._100{margin-left:-2248.809919pt;}
._96{margin-left:-2247.808435pt;}
._1a6{margin-left:-2244.520036pt;}
._d0{margin-left:-2243.214087pt;}
._6e{margin-left:-2239.995845pt;}
._97{margin-left:-2236.418025pt;}
._cf{margin-left:-2235.346149pt;}
._a3{margin-left:-2232.093167pt;}
._87{margin-left:-2228.466505pt;}
._139{margin-left:-2227.560381pt;}
._a9{margin-left:-2224.057331pt;}
._c7{margin-left:-2223.133443pt;}
._183{margin-left:-2220.840106pt;}
._4c{margin-left:-2219.619924pt;}
._af{margin-left:-2216.454635pt;}
._c6{margin-left:-2215.482048pt;}
._bc{margin-left:-2212.557840pt;}
._82{margin-left:-2211.369843pt;}
._ca{margin-left:-2208.631945pt;}
._cc{margin-left:-2207.715495pt;}
._90{margin-left:-2204.740447pt;}
._111{margin-left:-2203.666724pt;}
._10f{margin-left:-2200.869348pt;}
._9e{margin-left:-2199.560613pt;}
._a7{margin-left:-2196.051643pt;}
._88{margin-left:-2191.951516pt;}
._89{margin-left:-2188.838176pt;}
._14a{margin-left:-2187.548509pt;}
._e1{margin-left:-2184.475262pt;}
._14e{margin-left:-2183.153120pt;}
._a4{margin-left:-2180.817413pt;}
._be{margin-left:-2179.620851pt;}
._14c{margin-left:-2176.821964pt;}
._56{margin-left:-2175.566666pt;}
._93{margin-left:-2172.407980pt;}
._b4{margin-left:-2168.052445pt;}
._ff{margin-left:-2164.231361pt;}
._10b{margin-left:-2160.776608pt;}
._dc{margin-left:-2159.540068pt;}
._d4{margin-left:-2155.591633pt;}
._110{margin-left:-2152.496670pt;}
._6b{margin-left:-2151.605823pt;}
._12f{margin-left:-2148.786225pt;}
._129{margin-left:-2147.559366pt;}
._46{margin-left:-2144.012499pt;}
._10a{margin-left:-2140.122977pt;}
._fe{margin-left:-2136.302368pt;}
._141{margin-left:-2135.224170pt;}
._e2{margin-left:-2132.282128pt;}
._191{margin-left:-2131.329787pt;}
._102{margin-left:-2128.277112pt;}
._8f{margin-left:-2127.199995pt;}
._133{margin-left:-2124.017072pt;}
._68{margin-left:-2120.205065pt;}
._1e6{margin-left:-2119.262581pt;}
._f9{margin-left:-2116.099463pt;}
._59{margin-left:-2115.182839pt;}
._29{margin-left:-2112.434365pt;}
._18f{margin-left:-2111.177804pt;}
._cd{margin-left:-2107.575390pt;}
._7f{margin-left:-2104.592668pt;}
._10d{margin-left:-2103.385467pt;}
._18e{margin-left:-2100.547513pt;}
._66{margin-left:-2099.627646pt;}
._d8{margin-left:-2096.149189pt;}
._9c{margin-left:-2092.447462pt;}
._f7{margin-left:-2091.498020pt;}
._11f{margin-left:-2088.263009pt;}
._108{margin-left:-2084.132966pt;}
._e5{margin-left:-2083.148440pt;}
._163{margin-left:-2079.990873pt;}
._161{margin-left:-2076.814971pt;}
._160{margin-left:-2075.590629pt;}
._137{margin-left:-2072.198487pt;}
._148{margin-left:-2067.997376pt;}
._e0{margin-left:-2064.475782pt;}
._153{margin-left:-2063.317927pt;}
._71{margin-left:-2059.589095pt;}
._1b3{margin-left:-2056.636512pt;}
._136{margin-left:-2055.126950pt;}
._116{margin-left:-2051.777611pt;}
._12a{margin-left:-2048.245347pt;}
._106{margin-left:-2047.157413pt;}
._15b{margin-left:-2044.676802pt;}
._125{margin-left:-2043.556428pt;}
._117{margin-left:-2040.046575pt;}
._1be{margin-left:-2036.848734pt;}
._f1{margin-left:-2035.944746pt;}
._da{margin-left:-2032.170783pt;}
._123{margin-left:-2028.402118pt;}
._1a4{margin-left:-2027.244646pt;}
._d2{margin-left:-2024.479234pt;}
._1e1{margin-left:-2023.561402pt;}
._150{margin-left:-2020.268600pt;}
._165{margin-left:-2019.122896pt;}
._a6{margin-left:-2016.091719pt;}
._8b{margin-left:-2012.487844pt;}
._118{margin-left:-2011.484814pt;}
._d7{margin-left:-2008.336596pt;}
._147{margin-left:-2003.850690pt;}
._8d{margin-left:-2000.087378pt;}
._d6{margin-left:-1996.687419pt;}
._a0{margin-left:-1995.194508pt;}
._1ea{margin-left:-1991.294634pt;}
._138{margin-left:-1988.521049pt;}
._f6{margin-left:-1983.967955pt;}
._122{margin-left:-1979.771048pt;}
._d9{margin-left:-1976.340647pt;}
._15e{margin-left:-1975.229118pt;}
._1d7{margin-left:-1972.811910pt;}
._1e4{margin-left:-1971.262004pt;}
._d5{margin-left:-1968.111411pt;}
._1c3{margin-left:-1964.118130pt;}
._15c{margin-left:-1960.561914pt;}
._14b{margin-left:-1959.559892pt;}
._135{margin-left:-1955.533201pt;}
._14f{margin-left:-1952.861407pt;}
._131{margin-left:-1948.534991pt;}
._107{margin-left:-1939.713478pt;}
._fd{margin-left:-1935.577332pt;}
._13f{margin-left:-1932.833634pt;}
._1c{margin-left:-1928.129181pt;}
._f2{margin-left:-1924.817485pt;}
._162{margin-left:-1923.793257pt;}
._1d9{margin-left:-1920.406170pt;}
._f4{margin-left:-1916.212382pt;}
._78{margin-left:-1911.614594pt;}
._b7{margin-left:-1908.332897pt;}
._166{margin-left:-1903.776117pt;}
._f8{margin-left:-1899.815484pt;}
._140{margin-left:-1895.464128pt;}
._ae{margin-left:-1888.659504pt;}
._164{margin-left:-1887.280669pt;}
._f5{margin-left:-1884.014538pt;}
._124{margin-left:-1876.574118pt;}
._75{margin-left:-1875.153128pt;}
._ab{margin-left:-1872.179898pt;}
._167{margin-left:-1868.429937pt;}
._1bd{margin-left:-1867.452538pt;}
._f3{margin-left:-1859.627687pt;}
._151{margin-left:-1855.685418pt;}
._10e{margin-left:-1852.489888pt;}
._15d{margin-left:-1851.393729pt;}
._73{margin-left:-1844.243854pt;}
._193{margin-left:-1839.163211pt;}
._128{margin-left:-1832.184384pt;}
._77{margin-left:-1827.786256pt;}
._130{margin-left:-1824.187425pt;}
._1f2{margin-left:-1819.828636pt;}
._1f1{margin-left:-1807.725706pt;}
._1f7{margin-left:-1799.591643pt;}
._15f{margin-left:-1795.201534pt;}
._1f3{margin-left:-1784.489583pt;}
._1f6{margin-left:-1783.251233pt;}
._7a{margin-left:-1767.426143pt;}
._1c2{margin-left:-1752.107277pt;}
._1e3{margin-left:-1731.147433pt;}
._7c{margin-left:-1715.808874pt;}
._1a8{margin-left:-1676.480248pt;}
._1d4{margin-left:-1648.406181pt;}
._7e{margin-left:-1632.537771pt;}
._1b1{margin-left:-1504.626467pt;}
._1af{margin-left:-1476.747413pt;}
._1ab{margin-left:-1459.560920pt;}
._1b0{margin-left:-1448.427844pt;}
._1ac{margin-left:-1403.926380pt;}
._17b{margin-left:-1379.523615pt;}
._ee{margin-left:-1375.948533pt;}
._1aa{margin-left:-1371.563185pt;}
._181{margin-left:-1364.294919pt;}
._e8{margin-left:-1363.383999pt;}
._1ae{margin-left:-1360.604248pt;}
._15a{margin-left:-1359.560923pt;}
._186{margin-left:-1356.806659pt;}
._185{margin-left:-1351.779164pt;}
._17f{margin-left:-1348.325029pt;}
._eb{margin-left:-1339.812228pt;}
._e6{margin-left:-1332.810413pt;}
._189{margin-left:-1331.839645pt;}
._179{margin-left:-1327.560924pt;}
._e9{margin-left:-1316.727532pt;}
._1ad{margin-left:-1311.288822pt;}
._188{margin-left:-1307.882254pt;}
._169{margin-left:-1304.468697pt;}
._168{margin-left:-1299.995883pt;}
._187{margin-left:-1296.195557pt;}
._176{margin-left:-1295.292381pt;}
._ea{margin-left:-1292.619894pt;}
._18a{margin-left:-1291.719715pt;}
._180{margin-left:-1283.886307pt;}
._ec{margin-left:-1279.573789pt;}
._17c{margin-left:-1276.104263pt;}
._159{margin-left:-1264.540541pt;}
._158{margin-left:-1259.789331pt;}
._16e{margin-left:-1255.276133pt;}
._16f{margin-left:-1252.645644pt;}
._1a9{margin-left:-1247.964650pt;}
._172{margin-left:-1244.511225pt;}
._17d{margin-left:-1235.866641pt;}
._18b{margin-left:-1227.780693pt;}
._1ba{margin-left:-1224.323524pt;}
._16b{margin-left:-1220.155691pt;}
._17a{margin-left:-1212.590145pt;}
._177{margin-left:-1211.290322pt;}
._f0{margin-left:-1208.122920pt;}
._ef{margin-left:-1200.293911pt;}
._19c{margin-left:-1195.920433pt;}
._1b9{margin-left:-1192.789255pt;}
._171{margin-left:-1191.325037pt;}
._175{margin-left:-1188.434405pt;}
._170{margin-left:-1180.196080pt;}
._ed{margin-left:-1172.872920pt;}
._19f{margin-left:-1167.967689pt;}
._1b7{margin-left:-1156.057895pt;}
._17e{margin-left:-1152.782222pt;}
._e7{margin-left:-1148.089653pt;}
._1a0{margin-left:-1135.570588pt;}
._174{margin-left:-1127.216165pt;}
._18c{margin-left:-1123.965152pt;}
._1a2{margin-left:-1111.559411pt;}
._173{margin-left:-1100.574323pt;}
._16a{margin-left:-1091.371427pt;}
._178{margin-left:-1088.404178pt;}
._16c{margin-left:-1084.811950pt;}
._1bc{margin-left:-1071.978777pt;}
._19d{margin-left:-1048.061950pt;}
._16d{margin-left:-1044.030195pt;}
._1bb{margin-left:-1000.352323pt;}
._19b{margin-left:-988.418794pt;}
._156{margin-left:-979.129025pt;}
._1a1{margin-left:-976.014701pt;}
._19e{margin-left:-943.540046pt;}
._157{margin-left:-907.905196pt;}
._1b8{margin-left:-783.819051pt;}
._198{margin-left:-743.842703pt;}
._199{margin-left:-720.483462pt;}
._19a{margin-left:-691.343213pt;}
._195{margin-left:-615.404190pt;}
._197{margin-left:-595.561459pt;}
._196{margin-left:-587.406224pt;}
._112{margin-left:-119.999995pt;}
._115{margin-left:-91.201658pt;}
._182{margin-left:-75.998981pt;}
._a{margin-left:-63.999997pt;}
._ad{margin-left:-59.807420pt;}
._1b{margin-left:-51.999998pt;}
._0{margin-left:-48.292068pt;}
._101{margin-left:-47.218241pt;}
._1{margin-left:-43.999998pt;}
._19{margin-left:-42.659998pt;}
._f{margin-left:-40.203118pt;}
._114{margin-left:-32.093750pt;}
._16{margin-left:-30.659999pt;}
._b{margin-left:-20.499999pt;}
._e{margin-left:-19.515624pt;}
._6{margin-left:-15.999999pt;}
._12{margin-left:-14.181950pt;}
._27{margin-left:-10.624999pt;}
._d1{margin-left:-9.556913pt;}
._c{margin-left:-8.367187pt;}
._5{margin-left:-7.093749pt;}
._d{margin-left:-5.781250pt;}
._14{margin-left:-4.781758pt;}
._2{margin-left:-3.593750pt;}
._3{margin-left:-2.218750pt;}
._8{margin-left:-0.906250pt;}
._4{width:1.312500pt;}
._7{width:2.281250pt;}
._72{width:3.170865pt;}
._11{width:4.062500pt;}
._4b{width:7.423901pt;}
._10{width:8.882814pt;}
._26{width:11.125000pt;}
._9{width:12.093750pt;}
._18{width:13.175434pt;}
._28{width:15.095157pt;}
._63{width:19.161332pt;}
._1a{width:20.374999pt;}
._8e{width:23.304967pt;}
._c1{width:24.401232pt;}
._32{width:27.999999pt;}
._2d{width:31.999999pt;}
._55{width:35.999998pt;}
._30{width:39.999998pt;}
._1f{width:43.999998pt;}
._5b{width:47.999998pt;}
._3a{width:51.999998pt;}
._2b{width:55.999998pt;}
._2c{width:59.999997pt;}
._1e{width:63.999997pt;}
._4d{width:67.999997pt;}
._48{width:71.999997pt;}
._21{width:75.999997pt;}
._4f{width:79.999997pt;}
._5a{width:83.999997pt;}
._43{width:87.999996pt;}
._3f{width:91.999996pt;}
._9d{width:95.350739pt;}
._5d{width:96.343750pt;}
._47{width:99.999996pt;}
._50{width:103.999996pt;}
._5c{width:107.999996pt;}
._41{width:111.999995pt;}
._58{width:115.999995pt;}
._39{width:119.999995pt;}
._5e{width:123.999995pt;}
._13{width:124.963940pt;}
._23{width:127.999995pt;}
._45{width:131.999994pt;}
._98{width:135.656240pt;}
._7b{width:136.649251pt;}
._74{width:139.999994pt;}
._3c{width:143.999994pt;}
._53{width:147.999994pt;}
._37{width:151.999994pt;}
._38{width:155.999994pt;}
._25{width:159.999993pt;}
._51{width:163.999993pt;}
._22{width:167.999993pt;}
._31{width:171.999993pt;}
._2a{width:175.999993pt;}
._17{width:177.339993pt;}
._6c{width:179.999993pt;}
._49{width:183.999992pt;}
._6a{width:187.999992pt;}
._84{width:191.350735pt;}
._64{width:192.347180pt;}
._2f{width:195.999992pt;}
._91{width:199.999992pt;}
._67{width:203.999992pt;}
._54{width:207.999991pt;}
._2e{width:211.999991pt;}
._1d{width:215.999991pt;}
._65{width:219.999991pt;}
._35{width:223.999991pt;}
._33{width:227.999990pt;}
._34{width:231.999990pt;}
._57{width:235.999990pt;}
._6d{width:239.999990pt;}
._42{width:243.999990pt;}
._3b{width:247.999990pt;}
._12d{width:251.346550pt;}
._7d{width:252.343744pt;}
._5f{width:255.999989pt;}
._cb{width:259.682423pt;}
._9b{width:260.649246pt;}
._79{width:263.656235pt;}
._b6{width:264.621596pt;}
._60{width:267.999989pt;}
._83{width:271.999989pt;}
._52{width:275.999988pt;}
._92{width:279.999988pt;}
._24{width:283.999988pt;}
._44{width:287.999988pt;}
._69{width:291.999988pt;}
._70{width:295.999988pt;}
._10c{width:299.140970pt;}
._94{width:300.343742pt;}
._4a{width:303.999987pt;}
._3d{width:307.999987pt;}
._80{width:311.999987pt;}
._85{width:315.999987pt;}
._144{width:319.469739pt;}
._a5{width:320.472275pt;}
._db{width:323.707243pt;}
._8a{width:324.649243pt;}
._4e{width:327.999986pt;}
._20{width:331.999986pt;}
._a8{width:335.999986pt;}
._9f{width:339.312477pt;}
._12b{width:340.271843pt;}
._121{width:343.551912pt;}
._c9{width:344.851038pt;}
._a2{width:347.935767pt;}
._132{width:351.723501pt;}
._dd{width:352.875493pt;}
._192{width:355.690508pt;}
._c5{width:356.754052pt;}
._6f{width:359.999985pt;}
._104{width:364.317551pt;}
._c4{width:367.999985pt;}
._df{width:371.999985pt;}
._120{width:375.726632pt;}
._105{width:376.705147pt;}
._b8{width:379.875969pt;}
._15{width:381.451744pt;}
._62{width:383.999984pt;}
._13e{width:388.757592pt;}
._bb{width:391.691850pt;}
._1bf{width:392.791665pt;}
._113{width:395.693543pt;}
._1a5{width:396.717364pt;}
._86{width:399.999983pt;}
._aa{width:403.999983pt;}
._149{width:407.963153pt;}
._13d{width:411.999983pt;}
._95{width:415.999983pt;}
._40{width:419.999983pt;}
._76{width:423.999982pt;}
._134{width:428.153399pt;}
._13a{width:432.665797pt;}
._99{width:435.999982pt;}
._12c{width:440.071241pt;}
._146{width:444.121279pt;}
._1ed{width:456.217421pt;}
._1f8{width:459.930466pt;}
._194{width:463.426906pt;}
._1c7{width:464.550934pt;}
._184{width:468.324535pt;}
._1c5{width:471.187988pt;}
._1c4{width:472.845762pt;}
._1a7{width:480.382641pt;}
._1df{width:488.187987pt;}
._b1{width:491.999980pt;}
._1c1{width:495.927428pt;}
._1b2{width:500.633208pt;}
._1cb{width:503.409784pt;}
._1ce{width:515.999978pt;}
._18d{width:527.974109pt;}
._1ca{width:535.999978pt;}
._1dd{width:539.900448pt;}
._155{width:544.823530pt;}
._190{width:552.789642pt;}
._1c8{width:564.380867pt;}
._1e5{width:575.257001pt;}
._1ec{width:576.233860pt;}
._1e8{width:580.533267pt;}
._1d3{width:607.187982pt;}
._1d2{width:608.594232pt;}
._1ee{width:616.718720pt;}
._1dc{width:624.094232pt;}
._154{width:643.143213pt;}
._1db{width:664.625449pt;}
._1d6{width:679.999972pt;}
._1ef{width:700.116614pt;}
._1cc{width:703.995744pt;}
._1e7{width:708.345947pt;}
._1cd{width:739.999969pt;}
._1c9{width:759.999968pt;}
._1cf{width:763.562976pt;}
._1c6{width:767.542308pt;}
._1eb{width:776.188209pt;}
._1e0{width:784.090177pt;}
._1d1{width:831.999965pt;}
._1f5{width:847.999965pt;}
._1d5{width:903.999962pt;}
._1f0{width:911.999962pt;}
._1de{width:919.999962pt;}
._1e2{width:975.619069pt;}
._1e9{width:1003.999958pt;}
._1d0{width:1059.221246pt;}
._1f4{width:1071.655025pt;}
._1d8{width:1799.187933pt;}
._1da{width:1871.999922pt;}
.fs3{font-size:38.400000pt;}
.fs4{font-size:55.999998pt;}
.fs0{font-size:58.639997pt;}
.fs1{font-size:63.999997pt;}
.fs2{font-size:79.999997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.000044pt;}
.y3c{bottom:52.999998pt;}
.y58{bottom:101.999996pt;}
.ya4{bottom:103.999996pt;}
.ye9{bottom:106.999996pt;}
.y3b{bottom:107.999996pt;}
.y15{bottom:112.999995pt;}
.ycd{bottom:117.999995pt;}
.y9c{bottom:119.999995pt;}
.y57{bottom:123.999995pt;}
.yc0{bottom:125.999995pt;}
.ye8{bottom:128.999995pt;}
.y3a{bottom:129.999995pt;}
.y14{bottom:134.999994pt;}
.yd3{bottom:136.999994pt;}
.ycc{bottom:139.999994pt;}
.y8c{bottom:141.999994pt;}
.ya3{bottom:144.999994pt;}
.y76{bottom:147.999994pt;}
.ye7{bottom:150.999994pt;}
.y39{bottom:151.999994pt;}
.y13{bottom:156.999993pt;}
.yad{bottom:158.999993pt;}
.ybb{bottom:160.999993pt;}
.ycb{bottom:161.999993pt;}
.y8b{bottom:163.999993pt;}
.y56{bottom:164.999993pt;}
.ya2{bottom:166.999993pt;}
.y75{bottom:169.999993pt;}
.ye6{bottom:172.999993pt;}
.y38{bottom:173.999993pt;}
.y12{bottom:178.999993pt;}
.yac{bottom:180.999992pt;}
.yba{bottom:182.999992pt;}
.yca{bottom:183.999992pt;}
.y8a{bottom:185.999992pt;}
.y55{bottom:186.999992pt;}
.ya1{bottom:188.999992pt;}
.y74{bottom:191.999992pt;}
.ye5{bottom:194.999992pt;}
.y37{bottom:195.999992pt;}
.y11{bottom:200.999992pt;}
.yab{bottom:202.999992pt;}
.yb9{bottom:204.999991pt;}
.yc9{bottom:205.999991pt;}
.y89{bottom:207.999991pt;}
.y54{bottom:208.999991pt;}
.ya0{bottom:210.999991pt;}
.y73{bottom:213.999991pt;}
.ye4{bottom:216.999991pt;}
.y36{bottom:217.999991pt;}
.y10{bottom:222.999991pt;}
.yaa{bottom:224.999991pt;}
.yb8{bottom:226.999991pt;}
.yc8{bottom:227.999990pt;}
.y88{bottom:229.999990pt;}
.y53{bottom:230.999990pt;}
.y9f{bottom:232.999990pt;}
.ye3{bottom:238.999990pt;}
.y35{bottom:239.999990pt;}
.yf{bottom:244.999990pt;}
.ya9{bottom:246.999990pt;}
.y9b{bottom:248.999990pt;}
.yc7{bottom:249.999990pt;}
.y87{bottom:251.999989pt;}
.y52{bottom:252.999989pt;}
.y72{bottom:254.999989pt;}
.ye2{bottom:260.999989pt;}
.y34{bottom:261.999989pt;}
.ye{bottom:266.999989pt;}
.ya8{bottom:268.999989pt;}
.y9a{bottom:270.999989pt;}
.yc6{bottom:271.999989pt;}
.y86{bottom:273.999989pt;}
.y51{bottom:274.999989pt;}
.y71{bottom:276.999988pt;}
.ye1{bottom:282.999988pt;}
.y33{bottom:283.999988pt;}
.yd{bottom:288.999988pt;}
.ya7{bottom:290.999988pt;}
.y99{bottom:292.999988pt;}
.yc5{bottom:293.999988pt;}
.y85{bottom:295.999988pt;}
.y70{bottom:298.999988pt;}
.ye0{bottom:304.999987pt;}
.y32{bottom:305.999987pt;}
.yc{bottom:310.999987pt;}
.ya6{bottom:312.999987pt;}
.y98{bottom:314.999987pt;}
.y50{bottom:315.999987pt;}
.y84{bottom:317.999987pt;}
.y6f{bottom:320.999987pt;}
.ydf{bottom:326.999986pt;}
.y31{bottom:327.999986pt;}
.yb{bottom:334.999986pt;}
.y97{bottom:336.999986pt;}
.y4f{bottom:337.999986pt;}
.y83{bottom:339.999986pt;}
.y6e{bottom:342.999986pt;}
.yde{bottom:348.999985pt;}
.y30{bottom:349.999985pt;}
.yb7{bottom:355.999985pt;}
.ya5{bottom:356.999985pt;}
.y96{bottom:358.999985pt;}
.y4e{bottom:359.999985pt;}
.y82{bottom:361.999985pt;}
.ya{bottom:362.999985pt;}
.ydd{bottom:370.999985pt;}
.y2f{bottom:371.999985pt;}
.y3d{bottom:377.999984pt;}
.yd2{bottom:378.999984pt;}
.yd5{bottom:380.999984pt;}
.y4d{bottom:381.999984pt;}
.y6d{bottom:383.999984pt;}
.y9{bottom:390.999984pt;}
.ydc{bottom:392.999984pt;}
.y2e{bottom:393.999984pt;}
.y95{bottom:399.999983pt;}
.yd4{bottom:402.999983pt;}
.y4c{bottom:403.999983pt;}
.y6c{bottom:405.999983pt;}
.ydb{bottom:414.999983pt;}
.y2d{bottom:415.999983pt;}
.y8{bottom:416.999983pt;}
.y94{bottom:421.999982pt;}
.ybf{bottom:424.999982pt;}
.y4b{bottom:425.999982pt;}
.y6b{bottom:427.999982pt;}
.yda{bottom:436.999982pt;}
.y2c{bottom:437.999982pt;}
.y7{bottom:438.999982pt;}
.y93{bottom:443.999981pt;}
.yd1{bottom:444.999981pt;}
.ybe{bottom:446.999981pt;}
.y4a{bottom:447.999981pt;}
.y6a{bottom:449.999981pt;}
.yd9{bottom:458.999981pt;}
.y2b{bottom:459.999981pt;}
.y6{bottom:460.999981pt;}
.yb6{bottom:462.999981pt;}
.y92{bottom:465.999981pt;}
.yd0{bottom:466.999981pt;}
.ybd{bottom:468.999980pt;}
.y49{bottom:469.999980pt;}
.y69{bottom:471.999980pt;}
.yd8{bottom:480.999980pt;}
.y2a{bottom:481.999980pt;}
.y5{bottom:482.999980pt;}
.yb5{bottom:484.999980pt;}
.y91{bottom:487.999980pt;}
.ycf{bottom:488.999980pt;}
.ybc{bottom:490.999980pt;}
.y48{bottom:491.999979pt;}
.y68{bottom:493.999979pt;}
.yd7{bottom:502.999979pt;}
.y29{bottom:503.999979pt;}
.y4{bottom:504.999979pt;}
.yb4{bottom:506.999979pt;}
.y90{bottom:509.999979pt;}
.yce{bottom:510.999979pt;}
.y81{bottom:512.999979pt;}
.yc4{bottom:513.999979pt;}
.y67{bottom:515.999978pt;}
.yd6{bottom:524.999978pt;}
.y28{bottom:525.999978pt;}
.yb3{bottom:528.999978pt;}
.y8f{bottom:531.999978pt;}
.y47{bottom:532.999978pt;}
.y9e{bottom:534.999978pt;}
.y66{bottom:537.999978pt;}
.y27{bottom:547.999977pt;}
.yb2{bottom:550.999977pt;}
.y80{bottom:553.999977pt;}
.y46{bottom:554.999977pt;}
.y9d{bottom:556.999977pt;}
.y26{bottom:569.999976pt;}
.yb1{bottom:572.999976pt;}
.y7f{bottom:575.999976pt;}
.y45{bottom:576.999976pt;}
.y65{bottom:578.999976pt;}
.y25{bottom:591.999975pt;}
.yb0{bottom:594.999975pt;}
.y7e{bottom:597.999975pt;}
.y44{bottom:598.999975pt;}
.y64{bottom:600.999975pt;}
.y24{bottom:613.999974pt;}
.yaf{bottom:616.999974pt;}
.y7d{bottom:619.999974pt;}
.y43{bottom:620.999974pt;}
.y63{bottom:622.999974pt;}
.y23{bottom:635.999974pt;}
.yae{bottom:638.999973pt;}
.y8e{bottom:641.999973pt;}
.y42{bottom:642.999973pt;}
.y62{bottom:644.999973pt;}
.y22{bottom:657.999973pt;}
.y7c{bottom:660.999972pt;}
.y8d{bottom:663.999972pt;}
.y41{bottom:664.999972pt;}
.y21{bottom:679.999972pt;}
.y7b{bottom:682.999972pt;}
.y61{bottom:685.999971pt;}
.y40{bottom:686.999971pt;}
.y20{bottom:701.999971pt;}
.y7a{bottom:704.999971pt;}
.y60{bottom:707.999971pt;}
.y3f{bottom:708.999970pt;}
.y1f{bottom:723.999970pt;}
.y79{bottom:726.999970pt;}
.y5f{bottom:729.999970pt;}
.y3e{bottom:730.999970pt;}
.y1e{bottom:745.999969pt;}
.y78{bottom:748.999969pt;}
.y5e{bottom:751.999969pt;}
.y1d{bottom:767.999968pt;}
.y77{bottom:770.999968pt;}
.yc1{bottom:773.999968pt;}
.y1c{bottom:789.999967pt;}
.y5d{bottom:792.999967pt;}
.yc3{bottom:795.999967pt;}
.y1b{bottom:811.999966pt;}
.y5c{bottom:814.999966pt;}
.yc2{bottom:817.999966pt;}
.y1a{bottom:833.999965pt;}
.y5b{bottom:836.999965pt;}
.y19{bottom:855.999964pt;}
.y5a{bottom:858.999964pt;}
.y18{bottom:877.999963pt;}
.y59{bottom:880.999963pt;}
.y17{bottom:899.999963pt;}
.y16{bottom:921.999962pt;}
.yea{bottom:927.999961pt;}
.y3{bottom:943.999961pt;}
.y2{bottom:992.999959pt;}
.h8{height:33.693750pt;}
.h2{height:42.147498pt;}
.h6{height:51.453161pt;}
.h3{height:56.156248pt;}
.h5{height:56.312498pt;}
.h7{height:56.843748pt;}
.h4{height:71.054685pt;}
.h1{height:1054.999956pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999966pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:113.374995pt;}
.x2{left:120.374995pt;}
.x1{left:121.374995pt;}
.x17{left:122.374995pt;}
.x36{left:137.374994pt;}
.x26{left:141.374994pt;}
.xc{left:161.374993pt;}
.x7{left:163.374993pt;}
.x2a{left:166.374993pt;}
.x1c{left:167.374993pt;}
.x12{left:168.374993pt;}
.x29{left:169.374993pt;}
.x11{left:170.374993pt;}
.x14{left:185.374992pt;}
.x1f{left:186.374992pt;}
.x13{left:194.374992pt;}
.x24{left:205.374991pt;}
.x20{left:207.374991pt;}
.xd{left:209.374991pt;}
.x21{left:214.374991pt;}
.x2c{left:215.374991pt;}
.x15{left:216.374991pt;}
.x2d{left:217.374991pt;}
.x2b{left:218.374991pt;}
.x2e{left:233.374990pt;}
.x5{left:249.374990pt;}
.x8{left:255.374989pt;}
.x32{left:257.374989pt;}
.x35{left:285.374988pt;}
.x4{left:293.374988pt;}
.x1a{left:302.374987pt;}
.x10{left:306.374987pt;}
.x19{left:310.374987pt;}
.x18{left:326.374986pt;}
.x34{left:336.374986pt;}
.xf{left:339.374986pt;}
.xa{left:344.374986pt;}
.x27{left:353.374985pt;}
.x31{left:360.374985pt;}
.x33{left:361.374985pt;}
.x23{left:362.374985pt;}
.x16{left:364.374985pt;}
.x25{left:366.374985pt;}
.x28{left:367.374985pt;}
.x1d{left:371.374985pt;}
.x2f{left:374.374984pt;}
.x30{left:417.374983pt;}
.x1b{left:419.374983pt;}
.x6{left:439.374982pt;}
.xb{left:443.374982pt;}
.x38{left:459.374981pt;}
.x39{left:463.374981pt;}
.x37{left:562.374977pt;}
.x3{left:662.374972pt;}
.x1e{left:691.374971pt;}
.x22{left:692.374971pt;}
.xe{left:699.374971pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  