
    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_693595d56e8fa5149b0b46a6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_b99ba429cfa4008de0c20eed.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_5bb28eb7617070ffd07ab2da.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_eb78c01796db5d87ade8a5d1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.852539;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_ecdfa5599cfbaf4eac71c6b3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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_eef730d71c2074fe84da55ca.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_099c654deb2f66376a572069.woff')format("woff");}.ff7{font-family:ff7;line-height:0.757812;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:ff8;src:url('chunks/assets/font_f188de02a518d67c7cded2ad.woff')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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:ff9;src:url('chunks/assets/font_ab66d403ef5447993dda3525.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0f37575e762ddb5abe303aa5.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a057ba54464d0211f6d71e4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_099c654deb2f66376a572069.woff')format("woff");}.ffc{font-family:ffc;line-height:0.757812;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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsc{letter-spacing:-0.395568px;}
.ls5{letter-spacing:-0.385920px;}
.lsb{letter-spacing:-0.328032px;}
.ls8{letter-spacing:-0.250848px;}
.ls6{letter-spacing:-0.231552px;}
.lsa{letter-spacing:-0.173664px;}
.ls7{letter-spacing:-0.154368px;}
.ls9{letter-spacing:-0.144720px;}
.ls12{letter-spacing:-0.119232px;}
.lsf{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000576px;}
.ls3{letter-spacing:0.014400px;}
.lse{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240048px;}
.ls1{letter-spacing:0.240480px;}
.lsd{letter-spacing:0.242352px;}
.ls10{letter-spacing:33.984000px;}
.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;}
}
.ws4{word-spacing:-24.120000px;}
.ws3{word-spacing:-23.975280px;}
.ws1{word-spacing:-23.965632px;}
.ws2{word-spacing:-23.869152px;}
.ws0{word-spacing:-23.734080px;}
.wsa{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws9{word-spacing:-12.122352px;}
.ws5{word-spacing:-0.289872px;}
.ws6{word-spacing:-0.285120px;}
.wsc{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
.wsd{word-spacing:0.052992px;}
._49{margin-left:-3185.449200px;}
._39{margin-left:-3167.247024px;}
._3b{margin-left:-3166.128720px;}
._ca{margin-left:-3163.680432px;}
._bf{margin-left:-3159.475632px;}
._8b{margin-left:-3157.776432px;}
._8a{margin-left:-3155.760432px;}
._ba{margin-left:-3153.600432px;}
._c1{margin-left:-3151.872432px;}
._6a{margin-left:-3149.725968px;}
._43{margin-left:-3148.222032px;}
._9c{margin-left:-3143.808432px;}
._9f{margin-left:-3139.776432px;}
._88{margin-left:-3135.744432px;}
._d{margin-left:-3130.944480px;}
._77{margin-left:-3127.752432px;}
._19{margin-left:-3123.590832px;}
._c8{margin-left:-3121.632432px;}
._b5{margin-left:-3119.400432px;}
._93{margin-left:-3115.656432px;}
._2d{margin-left:-3112.582032px;}
._8f{margin-left:-3105.576432px;}
._9e{margin-left:-3103.848432px;}
._98{margin-left:-3101.616432px;}
._59{margin-left:-3099.456432px;}
._85{margin-left:-3097.800432px;}
._a5{margin-left:-3095.568432px;}
._4{margin-left:-3094.436016px;}
._c6{margin-left:-3091.464432px;}
._d1{margin-left:-3089.736432px;}
._80{margin-left:-3085.704432px;}
._ad{margin-left:-3083.760432px;}
._a3{margin-left:-3071.376432px;}
._7b{margin-left:-3069.576432px;}
._cc{margin-left:-3067.488432px;}
._7f{margin-left:-3063.816432px;}
._a1{margin-left:-3061.728432px;}
._7{margin-left:-3060.637488px;}
._97{margin-left:-3051.720432px;}
._78{margin-left:-3041.856432px;}
._b4{margin-left:-3033.576432px;}
._7a{margin-left:-3031.704432px;}
._c5{margin-left:-3021.696432px;}
._92{margin-left:-3017.880432px;}
._95{margin-left:-3013.920432px;}
._c4{margin-left:-3011.976432px;}
._4f{margin-left:-2998.008432px;}
._ab{margin-left:-2989.584432px;}
._a9{margin-left:-2987.856432px;}
._7d{margin-left:-2985.696432px;}
._a4{margin-left:-2973.960432px;}
._89{margin-left:-2964.024432px;}
._82{margin-left:-2961.720432px;}
._cf{margin-left:-2957.616432px;}
._c9{margin-left:-2953.584432px;}
._86{margin-left:-2949.696432px;}
._b7{margin-left:-2943.432432px;}
._b0{margin-left:-2941.776432px;}
._45{margin-left:-2934.000432px;}
._cd{margin-left:-2925.576432px;}
._9a{margin-left:-2919.744432px;}
._2{margin-left:-2917.415232px;}
._8c{margin-left:-2911.536432px;}
._a6{margin-left:-2909.736432px;}
._ac{margin-left:-2901.960432px;}
._34{margin-left:-2899.512432px;}
._91{margin-left:-2897.640432px;}
._ae{margin-left:-2881.728432px;}
._6{margin-left:-2860.495776px;}
._1b{margin-left:-2764.152432px;}
._a8{margin-left:-2743.704432px;}
._83{margin-left:-2714.040432px;}
._a2{margin-left:-2712.096432px;}
._df{margin-left:-2679.484176px;}
._cb{margin-left:-2667.816432px;}
._44{margin-left:-2659.320432px;}
._bd{margin-left:-2655.648432px;}
._dd{margin-left:-2632.277232px;}
._5c{margin-left:-2629.872432px;}
._11{margin-left:-2627.808480px;}
._15{margin-left:-2621.592432px;}
._e{margin-left:-2601.504432px;}
._6d{margin-left:-2553.624432px;}
._4e{margin-left:-2545.632432px;}
._c0{margin-left:-2508.048432px;}
._d0{margin-left:-2501.784432px;}
._a0{margin-left:-2497.968432px;}
._b3{margin-left:-2485.656432px;}
._52{margin-left:-2471.544432px;}
._56{margin-left:-2419.632432px;}
._c2{margin-left:-2401.848432px;}
._40{margin-left:-2351.808432px;}
._81{margin-left:-2334.024432px;}
._6e{margin-left:-2329.776432px;}
._75{margin-left:-2327.616432px;}
._b1{margin-left:-2318.040432px;}
._9b{margin-left:-2315.880432px;}
._33{margin-left:-2301.984432px;}
._8d{margin-left:-2289.888432px;}
._65{margin-left:-2287.656432px;}
._54{margin-left:-2275.920432px;}
._90{margin-left:-2265.912432px;}
._e2{margin-left:-2251.728432px;}
._7c{margin-left:-2246.040432px;}
._6c{margin-left:-2244.024432px;}
._db{margin-left:-2201.717232px;}
._2a{margin-left:-2179.656432px;}
._de{margin-left:-2134.469232px;}
._e5{margin-left:-2121.768432px;}
._d8{margin-left:-2091.888432px;}
._58{margin-left:-2089.440432px;}
._17{margin-left:-2078.107632px;}
._5{margin-left:-2069.065872px;}
._5e{margin-left:-2053.944432px;}
._bc{margin-left:-2029.824432px;}
._5b{margin-left:-2023.574832px;}
._9d{margin-left:-2002.032432px;}
._55{margin-left:-1975.752432px;}
._4a{margin-left:-1959.840432px;}
._ce{margin-left:-1949.976432px;}
._71{margin-left:-1931.832432px;}
._5a{margin-left:-1915.632432px;}
._32{margin-left:-1911.816432px;}
._68{margin-left:-1910.088432px;}
._b8{margin-left:-1900.152432px;}
._48{margin-left:-1897.920432px;}
._31{margin-left:-1877.760432px;}
._b9{margin-left:-1876.176432px;}
._87{margin-left:-1841.976432px;}
._74{margin-left:-1837.584432px;}
._3a{margin-left:-1783.800432px;}
._3f{margin-left:-1769.544432px;}
._bb{margin-left:-1664.136432px;}
._b6{margin-left:-1660.032432px;}
._63{margin-left:-1644.048432px;}
._c7{margin-left:-1633.968432px;}
._99{margin-left:-1617.984432px;}
._4d{margin-left:-1543.824432px;}
._12{margin-left:-1525.752432px;}
._2f{margin-left:-1487.808432px;}
._50{margin-left:-1484.029008px;}
._4b{margin-left:-1439.856432px;}
._13{margin-left:-1433.760480px;}
._8e{margin-left:-1416.024432px;}
._e4{margin-left:-1399.896432px;}
._c3{margin-left:-1396.008432px;}
._b2{margin-left:-1391.976432px;}
._38{margin-left:-1359.720432px;}
._94{margin-left:-1356.048432px;}
._a7{margin-left:-1343.952432px;}
._af{margin-left:-1334.016432px;}
._8{margin-left:-1308.096432px;}
._96{margin-left:-1304.064432px;}
._be{margin-left:-1289.952432px;}
._42{margin-left:-1281.888432px;}
._5f{margin-left:-1265.688432px;}
._64{margin-left:-1259.928432px;}
._70{margin-left:-1243.800432px;}
._84{margin-left:-1234.008432px;}
._3d{margin-left:-1226.016432px;}
._3e{margin-left:-1211.976432px;}
._67{margin-left:-1201.896432px;}
._aa{margin-left:-1193.976432px;}
._d7{margin-left:-1141.848432px;}
._60{margin-left:-1139.832432px;}
._7e{margin-left:-1125.936432px;}
._d4{margin-left:-1098.000432px;}
._6f{margin-left:-1069.920432px;}
._d5{margin-left:-1040.112432px;}
._da{margin-left:-991.944432px;}
._62{margin-left:-969.912432px;}
._dc{margin-left:-948.133008px;}
._e0{margin-left:-908.064432px;}
._18{margin-left:-894.077280px;}
._e1{margin-left:-817.848432px;}
._47{margin-left:-799.776432px;}
._16{margin-left:-797.904432px;}
._72{margin-left:-794.088432px;}
._79{margin-left:-770.040432px;}
._53{margin-left:-761.976432px;}
._b{margin-left:-743.904432px;}
._76{margin-left:-739.909008px;}
._6b{margin-left:-671.976432px;}
._69{margin-left:-639.864432px;}
._26{margin-left:-590.040432px;}
._73{margin-left:-578.088432px;}
._51{margin-left:-525.960432px;}
._e3{margin-left:-494.035632px;}
._10{margin-left:-479.952432px;}
._1a{margin-left:-473.918832px;}
._20{margin-left:-465.912432px;}
._5d{margin-left:-450.000432px;}
._24{margin-left:-448.056432px;}
._25{margin-left:-414.000432px;}
._d2{margin-left:-396.000432px;}
._d9{margin-left:-234.000432px;}
._1c{margin-left:-198.000432px;}
._9{margin-left:-162.000432px;}
._1f{margin-left:-5.392800px;}
._1e{margin-left:-4.188384px;}
._1d{margin-left:-2.906784px;}
._1{margin-left:-1.031616px;}
._3{width:1.061280px;}
._21{width:2.671200px;}
._27{width:3.696048px;}
._29{width:5.159952px;}
._2e{width:7.026912px;}
._f{width:8.143200px;}
._c{width:9.612000px;}
._2b{width:10.698768px;}
._41{width:11.788992px;}
._30{width:13.127904px;}
._2c{width:14.450400px;}
._22{width:16.243200px;}
._3c{width:19.202400px;}
._46{width:20.440800px;}
._a{width:21.609792px;}
._37{width:23.493600px;}
._4c{width:24.674688px;}
._14{width:25.781040px;}
._61{width:26.935200px;}
._36{width:28.080000px;}
._35{width:29.211264px;}
._23{width:30.318336px;}
._28{width:31.528800px;}
._66{width:33.492384px;}
._57{width:34.866288px;}
._d6{width:67.816800px;}
._d3{width:846.000000px;}
._0{width:1435.200048px;}
.fc4{color:rgb(209,52,56);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:4.080000px;}
.y13c{bottom:16.380000px;}
.y13a{bottom:16.740000px;}
.y140{bottom:16.800000px;}
.y138{bottom:17.100000px;}
.y13e{bottom:17.160000px;}
.y136{bottom:17.460000px;}
.y29{bottom:39.000000px;}
.y4d{bottom:41.400000px;}
.y2a{bottom:42.480000px;}
.y2b{bottom:51.000000px;}
.y28{bottom:57.000000px;}
.y6b{bottom:94.320000px;}
.ya6{bottom:96.480000px;}
.y4b{bottom:96.840000px;}
.yfd{bottom:104.040000px;}
.ydc{bottom:107.280000px;}
.y26{bottom:108.720000px;}
.yb3{bottom:113.400000px;}
.yfc{bottom:124.920000px;}
.y6a{bottom:125.280000px;}
.y4a{bottom:128.160000px;}
.yc1{bottom:132.480000px;}
.y7f{bottom:137.520000px;}
.ya5{bottom:139.320000px;}
.y92{bottom:144.360000px;}
.yfb{bottom:145.800000px;}
.y25{bottom:147.600000px;}
.y11b{bottom:147.960000px;}
.y69{bottom:156.240000px;}
.y49{bottom:159.120000px;}
.yc0{bottom:163.440000px;}
.ydb{bottom:166.680000px;}
.y7e{bottom:168.480000px;}
.y11a{bottom:169.200000px;}
.ya4{bottom:170.640000px;}
.y91{bottom:175.320000px;}
.yfa{bottom:183.960000px;}
.y24{bottom:186.480000px;}
.y68{bottom:187.560000px;}
.y119{bottom:189.720000px;}
.y48{bottom:190.080000px;}
.ybf{bottom:194.400000px;}
.y7d{bottom:199.440000px;}
.ya3{bottom:201.600000px;}
.yf9{bottom:205.200000px;}
.y90{bottom:206.640000px;}
.yda{bottom:208.440000px;}
.y118{bottom:210.600000px;}
.y67{bottom:218.520000px;}
.y47{bottom:221.040000px;}
.y23{bottom:225.000000px;}
.ybe{bottom:225.720000px;}
.yd9{bottom:228.960000px;}
.y7c{bottom:230.400000px;}
.ya2{bottom:232.560000px;}
.y8f{bottom:237.600000px;}
.yf8{bottom:243.360000px;}
.y117{bottom:248.760000px;}
.y66{bottom:249.480000px;}
.y46{bottom:252.360000px;}
.ybd{bottom:256.680000px;}
.y7b{bottom:261.720000px;}
.ya1{bottom:263.520000px;}
.y22{bottom:263.880000px;}
.yf7{bottom:264.600000px;}
.yd8{bottom:267.480000px;}
.y8e{bottom:268.560000px;}
.y116{bottom:270.000000px;}
.y65{bottom:280.440000px;}
.y45{bottom:283.320000px;}
.yf6{bottom:285.120000px;}
.ybc{bottom:287.640000px;}
.yd7{bottom:288.360000px;}
.y115{bottom:290.520000px;}
.y7a{bottom:292.680000px;}
.ya0{bottom:294.840000px;}
.y8d{bottom:299.520000px;}
.y21{bottom:302.760000px;}
.y64{bottom:311.760000px;}
.y44{bottom:314.280000px;}
.y79{bottom:323.640000px;}
.yd6{bottom:326.880000px;}
.y114{bottom:329.040000px;}
.y8c{bottom:330.840000px;}
.y9f{bottom:337.680000px;}
.y20{bottom:341.640000px;}
.y63{bottom:342.720000px;}
.yf5{bottom:344.520000px;}
.y43{bottom:345.240000px;}
.yd5{bottom:347.760000px;}
.y113{bottom:349.920000px;}
.y78{bottom:354.600000px;}
.y8b{bottom:361.800000px;}
.y1f{bottom:362.520000px;}
.yf4{bottom:365.400000px;}
.y9e{bottom:368.640000px;}
.y112{bottom:370.800000px;}
.y62{bottom:373.680000px;}
.y42{bottom:376.560000px;}
.y77{bottom:385.560000px;}
.yf3{bottom:385.920000px;}
.yd4{bottom:386.280000px;}
.y9d{bottom:399.960000px;}
.y61{bottom:404.640000px;}
.y1e{bottom:407.160000px;}
.y41{bottom:407.520000px;}
.y111{bottom:408.960000px;}
.y76{bottom:416.880000px;}
.yf2{bottom:424.440000px;}
.yd3{bottom:428.040000px;}
.yb2{bottom:428.760000px;}
.y110{bottom:430.200000px;}
.y1d{bottom:430.920000px;}
.y60{bottom:435.960000px;}
.y9c{bottom:442.800000px;}
.yf1{bottom:445.320000px;}
.y94{bottom:447.840000px;}
.y40{bottom:450.360000px;}
.y10f{bottom:450.720000px;}
.y1c{bottom:451.440000px;}
.y75{bottom:459.720000px;}
.yd2{bottom:466.200000px;}
.y8a{bottom:466.920000px;}
.y134{bottom:473.400000px;}
.y5f{bottom:478.800000px;}
.y3f{bottom:481.680000px;}
.y9b{bottom:486.000000px;}
.yd1{bottom:487.440000px;}
.y10e{bottom:489.240000px;}
.y1b{bottom:489.960000px;}
.yb1{bottom:491.040000px;}
.ybb{bottom:497.880000px;}
.y74{bottom:502.920000px;}
.yf0{bottom:504.360000px;}
.yd0{bottom:507.960000px;}
.y5e{bottom:509.760000px;}
.y10d{bottom:510.120000px;}
.y1a{bottom:511.200000px;}
.y133{bottom:512.280000px;}
.y3e{bottom:512.640000px;}
.y9a{bottom:516.960000px;}
.yb0{bottom:522.000000px;}
.yef{bottom:525.600000px;}
.yba{bottom:528.840000px;}
.y10c{bottom:531.000000px;}
.y73{bottom:533.880000px;}
.y19{bottom:537.840000px;}
.y5d{bottom:541.080000px;}
.y3d{bottom:543.600000px;}
.yee{bottom:546.120000px;}
.ycf{bottom:546.480000px;}
.y132{bottom:550.800000px;}
.yaf{bottom:552.960000px;}
.y99{bottom:560.160000px;}
.y18{bottom:562.680000px;}
.y72{bottom:564.840000px;}
.yce{bottom:567.360000px;}
.y10b{bottom:569.160000px;}
.y5c{bottom:572.040000px;}
.y3c{bottom:574.560000px;}
.y17{bottom:581.760000px;}
.yae{bottom:583.920000px;}
.yed{bottom:584.640000px;}
.ycd{bottom:588.240000px;}
.y10a{bottom:590.400000px;}
.yb9{bottom:591.120000px;}
.y71{bottom:596.160000px;}
.y89{bottom:603.000000px;}
.yec{bottom:605.520000px;}
.y3b{bottom:605.880000px;}
.y124{bottom:608.040000px;}
.y16{bottom:609.120000px;}
.y5b{bottom:615.240000px;}
.y131{bottom:619.560000px;}
.yb8{bottom:622.080000px;}
.y150{bottom:622.800000px;}
.ycc{bottom:626.400000px;}
.yb4{bottom:627.120000px;}
.y15{bottom:627.840000px;}
.y109{bottom:628.560000px;}
.y88{bottom:633.960000px;}
.y3a{bottom:636.840000px;}
.y70{bottom:639.000000px;}
.y130{bottom:643.320000px;}
.yad{bottom:646.200000px;}
.y123{bottom:646.560000px;}
.ycb{bottom:647.640000px;}
.y108{bottom:649.440000px;}
.y14{bottom:654.840000px;}
.y5a{bottom:658.080000px;}
.yeb{bottom:664.560000px;}
.yb7{bottom:665.280000px;}
.y12f{bottom:667.080000px;}
.y122{bottom:667.440000px;}
.y39{bottom:667.800000px;}
.y6f{bottom:669.960000px;}
.y87{bottom:677.160000px;}
.y13{bottom:679.680000px;}
.y14f{bottom:685.080000px;}
.yea{bottom:685.440000px;}
.yca{bottom:685.800000px;}
.y107{bottom:687.960000px;}
.y121{bottom:688.320000px;}
.yac{bottom:689.040000px;}
.yb6{bottom:696.240000px;}
.y12{bottom:698.760000px;}
.y12e{bottom:699.840000px;}
.y59{bottom:701.280000px;}
.y11{bottom:704.880000px;}
.y38{bottom:706.320000px;}
.yc9{bottom:707.040000px;}
.y86{bottom:708.120000px;}
.y106{bottom:708.840000px;}
.yab{bottom:720.360000px;}
.y12d{bottom:720.720000px;}
.y10{bottom:723.960000px;}
.y14e{bottom:724.320000px;}
.y120{bottom:726.480000px;}
.yb5{bottom:727.200000px;}
.yc8{bottom:727.560000px;}
.y142{bottom:730.440000px;}
.y58{bottom:732.240000px;}
.y85{bottom:739.080000px;}
.ye9{bottom:744.480000px;}
.y14d{bottom:744.840000px;}
.y105{bottom:747.360000px;}
.y11f{bottom:747.720000px;}
.yf{bottom:750.960000px;}
.yaa{bottom:751.320000px;}
.y37{bottom:755.640000px;}
.y57{bottom:763.200000px;}
.y12c{bottom:763.560000px;}
.ye8{bottom:765.720000px;}
.yc7{bottom:766.080000px;}
.y104{bottom:768.240000px;}
.y141{bottom:769.320000px;}
.ye{bottom:769.680000px;}
.y84{bottom:770.400000px;}
.yd{bottom:775.800000px;}
.ya9{bottom:782.280000px;}
.y14c{bottom:783.360000px;}
.y11e{bottom:785.880000px;}
.y13f{bottom:786.000000px;}
.yc6{bottom:786.960000px;}
.y56{bottom:794.160000px;}
.yc{bottom:794.880000px;}
.y36{bottom:798.480000px;}
.y83{bottom:801.360000px;}
.y12b{bottom:802.440000px;}
.ye7{bottom:803.880000px;}
.y103{bottom:806.760000px;}
.y11d{bottom:807.120000px;}
.yc5{bottom:807.840000px;}
.ya8{bottom:813.240000px;}
.yb{bottom:822.240000px;}
.ye6{bottom:825.120000px;}
.y55{bottom:825.480000px;}
.y102{bottom:827.640000px;}
.y35{bottom:829.800000px;}
.y13d{bottom:831.000000px;}
.y82{bottom:832.320000px;}
.ya{bottom:840.960000px;}
.y14b{bottom:843.120000px;}
.y12a{bottom:843.840000px;}
.y98{bottom:844.560000px;}
.ye5{bottom:845.640000px;}
.yc4{bottom:853.560000px;}
.y54{bottom:856.440000px;}
.y34{bottom:860.760000px;}
.y81{bottom:863.280000px;}
.y14a{bottom:863.640000px;}
.y101{bottom:866.160000px;}
.y9{bottom:867.960000px;}
.y97{bottom:875.520000px;}
.y13b{bottom:877.500000px;}
.ye4{bottom:884.160000px;}
.y8{bottom:887.040000px;}
.y53{bottom:887.400000px;}
.y33{bottom:891.720000px;}
.yc3{bottom:899.280000px;}
.y149{bottom:902.160000px;}
.ye3{bottom:905.040000px;}
.y80{bottom:906.480000px;}
.y52{bottom:918.360000px;}
.y139{bottom:922.500000px;}
.y32{bottom:922.680000px;}
.y100{bottom:925.560000px;}
.y7{bottom:925.920000px;}
.yc2{bottom:930.600000px;}
.y93{bottom:937.440000px;}
.y148{bottom:941.040000px;}
.y6{bottom:946.440000px;}
.y129{bottom:946.800000px;}
.y6e{bottom:949.680000px;}
.y31{bottom:954.000000px;}
.y51{bottom:961.560000px;}
.y147{bottom:961.920000px;}
.ye2{bottom:964.080000px;}
.y5{bottom:967.320000px;}
.y137{bottom:967.500000px;}
.y96{bottom:968.760000px;}
.y6d{bottom:980.640000px;}
.y146{bottom:982.440000px;}
.y30{bottom:984.960000px;}
.ye1{bottom:985.320000px;}
.y128{bottom:988.200000px;}
.y50{bottom:992.520000px;}
.y145{bottom:1003.320000px;}
.ye0{bottom:1005.840000px;}
.y4{bottom:1006.920000px;}
.y127{bottom:1008.720000px;}
.y6c{bottom:1011.600000px;}
.y135{bottom:1012.500000px;}
.y2f{bottom:1015.920000px;}
.y4f{bottom:1023.480000px;}
.y144{bottom:1023.840000px;}
.yff{bottom:1026.720000px;}
.y126{bottom:1029.600000px;}
.y3{bottom:1034.640000px;}
.ya7{bottom:1042.560000px;}
.ydf{bottom:1044.360000px;}
.y143{bottom:1044.720000px;}
.y2e{bottom:1046.880000px;}
.yfe{bottom:1047.240000px;}
.y125{bottom:1050.120000px;}
.y4e{bottom:1054.800000px;}
.y2{bottom:1062.000000px;}
.y11c{bottom:1064.880000px;}
.yde{bottom:1065.240000px;}
.y2d{bottom:1085.760000px;}
.ydd{bottom:1086.120000px;}
.y27{bottom:1104.283500px;}
.y95{bottom:1109.670000px;}
.y4c{bottom:1115.250000px;}
.y1{bottom:1140.840000px;}
.h9{height:28.500000px;}
.h5{height:32.113125px;}
.h6{height:32.182734px;}
.ha{height:40.310156px;}
.hb{height:46.500000px;}
.h1{height:48.796875px;}
.h4{height:50.132813px;}
.h8{height:53.050781px;}
.h3{height:56.662734px;}
.h2{height:65.387813px;}
.h7{height:72.000000px;}
.h0{height:1188.000000px;}
.w2{width:178.500000px;}
.w4{width:204.000000px;}
.w3{width:285.000000px;}
.w1{width:852.996000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.400144px;}
.xd{left:42.526500px;}
.xa{left:47.329500px;}
.x2{left:51.120000px;}
.x7{left:57.517500px;}
.x3{left:64.254000px;}
.x1{left:96.120108px;}
.xb{left:132.120108px;}
.x8{left:138.645252px;}
.x6{left:150.120108px;}
.x5{left:159.000000px;}
.xc{left:168.120108px;}
.x9{left:177.120108px;}
.xf{left:213.000000px;}
.xe{left:218.035044px;}
.x11{left:498.000000px;}
.x4{left:651.000000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsc{letter-spacing:-0.351616pt;}
.ls5{letter-spacing:-0.343040pt;}
.lsb{letter-spacing:-0.291584pt;}
.ls8{letter-spacing:-0.222976pt;}
.ls6{letter-spacing:-0.205824pt;}
.lsa{letter-spacing:-0.154368pt;}
.ls7{letter-spacing:-0.137216pt;}
.ls9{letter-spacing:-0.128640pt;}
.ls12{letter-spacing:-0.105984pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000512pt;}
.ls3{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213376pt;}
.ls1{letter-spacing:0.213760pt;}
.lsd{letter-spacing:0.215424pt;}
.ls10{letter-spacing:30.208000pt;}
.ws4{word-spacing:-21.440000pt;}
.ws3{word-spacing:-21.311360pt;}
.ws1{word-spacing:-21.302784pt;}
.ws2{word-spacing:-21.217024pt;}
.ws0{word-spacing:-21.096960pt;}
.wsa{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws9{word-spacing:-10.775424pt;}
.ws5{word-spacing:-0.257664pt;}
.ws6{word-spacing:-0.253440pt;}
.wsc{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
.wsd{word-spacing:0.047104pt;}
._49{margin-left:-2831.510400pt;}
._39{margin-left:-2815.330688pt;}
._3b{margin-left:-2814.336640pt;}
._ca{margin-left:-2812.160384pt;}
._bf{margin-left:-2808.422784pt;}
._8b{margin-left:-2806.912384pt;}
._8a{margin-left:-2805.120384pt;}
._ba{margin-left:-2803.200384pt;}
._c1{margin-left:-2801.664384pt;}
._6a{margin-left:-2799.756416pt;}
._43{margin-left:-2798.419584pt;}
._9c{margin-left:-2794.496384pt;}
._9f{margin-left:-2790.912384pt;}
._88{margin-left:-2787.328384pt;}
._d{margin-left:-2783.061760pt;}
._77{margin-left:-2780.224384pt;}
._19{margin-left:-2776.525184pt;}
._c8{margin-left:-2774.784384pt;}
._b5{margin-left:-2772.800384pt;}
._93{margin-left:-2769.472384pt;}
._2d{margin-left:-2766.739584pt;}
._8f{margin-left:-2760.512384pt;}
._9e{margin-left:-2758.976384pt;}
._98{margin-left:-2756.992384pt;}
._59{margin-left:-2755.072384pt;}
._85{margin-left:-2753.600384pt;}
._a5{margin-left:-2751.616384pt;}
._4{margin-left:-2750.609792pt;}
._c6{margin-left:-2747.968384pt;}
._d1{margin-left:-2746.432384pt;}
._80{margin-left:-2742.848384pt;}
._ad{margin-left:-2741.120384pt;}
._a3{margin-left:-2730.112384pt;}
._7b{margin-left:-2728.512384pt;}
._cc{margin-left:-2726.656384pt;}
._7f{margin-left:-2723.392384pt;}
._a1{margin-left:-2721.536384pt;}
._7{margin-left:-2720.566656pt;}
._97{margin-left:-2712.640384pt;}
._78{margin-left:-2703.872384pt;}
._b4{margin-left:-2696.512384pt;}
._7a{margin-left:-2694.848384pt;}
._c5{margin-left:-2685.952384pt;}
._92{margin-left:-2682.560384pt;}
._95{margin-left:-2679.040384pt;}
._c4{margin-left:-2677.312384pt;}
._4f{margin-left:-2664.896384pt;}
._ab{margin-left:-2657.408384pt;}
._a9{margin-left:-2655.872384pt;}
._7d{margin-left:-2653.952384pt;}
._a4{margin-left:-2643.520384pt;}
._89{margin-left:-2634.688384pt;}
._82{margin-left:-2632.640384pt;}
._cf{margin-left:-2628.992384pt;}
._c9{margin-left:-2625.408384pt;}
._86{margin-left:-2621.952384pt;}
._b7{margin-left:-2616.384384pt;}
._b0{margin-left:-2614.912384pt;}
._45{margin-left:-2608.000384pt;}
._cd{margin-left:-2600.512384pt;}
._9a{margin-left:-2595.328384pt;}
._2{margin-left:-2593.257984pt;}
._8c{margin-left:-2588.032384pt;}
._a6{margin-left:-2586.432384pt;}
._ac{margin-left:-2579.520384pt;}
._34{margin-left:-2577.344384pt;}
._91{margin-left:-2575.680384pt;}
._ae{margin-left:-2561.536384pt;}
._6{margin-left:-2542.662912pt;}
._1b{margin-left:-2457.024384pt;}
._a8{margin-left:-2438.848384pt;}
._83{margin-left:-2412.480384pt;}
._a2{margin-left:-2410.752384pt;}
._df{margin-left:-2381.763712pt;}
._cb{margin-left:-2371.392384pt;}
._44{margin-left:-2363.840384pt;}
._bd{margin-left:-2360.576384pt;}
._dd{margin-left:-2339.801984pt;}
._5c{margin-left:-2337.664384pt;}
._11{margin-left:-2335.829760pt;}
._15{margin-left:-2330.304384pt;}
._e{margin-left:-2312.448384pt;}
._6d{margin-left:-2269.888384pt;}
._4e{margin-left:-2262.784384pt;}
._c0{margin-left:-2229.376384pt;}
._d0{margin-left:-2223.808384pt;}
._a0{margin-left:-2220.416384pt;}
._b3{margin-left:-2209.472384pt;}
._52{margin-left:-2196.928384pt;}
._56{margin-left:-2150.784384pt;}
._c2{margin-left:-2134.976384pt;}
._40{margin-left:-2090.496384pt;}
._81{margin-left:-2074.688384pt;}
._6e{margin-left:-2070.912384pt;}
._75{margin-left:-2068.992384pt;}
._b1{margin-left:-2060.480384pt;}
._9b{margin-left:-2058.560384pt;}
._33{margin-left:-2046.208384pt;}
._8d{margin-left:-2035.456384pt;}
._65{margin-left:-2033.472384pt;}
._54{margin-left:-2023.040384pt;}
._90{margin-left:-2014.144384pt;}
._e2{margin-left:-2001.536384pt;}
._7c{margin-left:-1996.480384pt;}
._6c{margin-left:-1994.688384pt;}
._db{margin-left:-1957.081984pt;}
._2a{margin-left:-1937.472384pt;}
._de{margin-left:-1897.305984pt;}
._e5{margin-left:-1886.016384pt;}
._d8{margin-left:-1859.456384pt;}
._58{margin-left:-1857.280384pt;}
._17{margin-left:-1847.206784pt;}
._5{margin-left:-1839.169664pt;}
._5e{margin-left:-1825.728384pt;}
._bc{margin-left:-1804.288384pt;}
._5b{margin-left:-1798.733184pt;}
._9d{margin-left:-1779.584384pt;}
._55{margin-left:-1756.224384pt;}
._4a{margin-left:-1742.080384pt;}
._ce{margin-left:-1733.312384pt;}
._71{margin-left:-1717.184384pt;}
._5a{margin-left:-1702.784384pt;}
._32{margin-left:-1699.392384pt;}
._68{margin-left:-1697.856384pt;}
._b8{margin-left:-1689.024384pt;}
._48{margin-left:-1687.040384pt;}
._31{margin-left:-1669.120384pt;}
._b9{margin-left:-1667.712384pt;}
._87{margin-left:-1637.312384pt;}
._74{margin-left:-1633.408384pt;}
._3a{margin-left:-1585.600384pt;}
._3f{margin-left:-1572.928384pt;}
._bb{margin-left:-1479.232384pt;}
._b6{margin-left:-1475.584384pt;}
._63{margin-left:-1461.376384pt;}
._c7{margin-left:-1452.416384pt;}
._99{margin-left:-1438.208384pt;}
._4d{margin-left:-1372.288384pt;}
._12{margin-left:-1356.224384pt;}
._2f{margin-left:-1322.496384pt;}
._50{margin-left:-1319.136896pt;}
._4b{margin-left:-1279.872384pt;}
._13{margin-left:-1274.453760pt;}
._8e{margin-left:-1258.688384pt;}
._e4{margin-left:-1244.352384pt;}
._c3{margin-left:-1240.896384pt;}
._b2{margin-left:-1237.312384pt;}
._38{margin-left:-1208.640384pt;}
._94{margin-left:-1205.376384pt;}
._a7{margin-left:-1194.624384pt;}
._af{margin-left:-1185.792384pt;}
._8{margin-left:-1162.752384pt;}
._96{margin-left:-1159.168384pt;}
._be{margin-left:-1146.624384pt;}
._42{margin-left:-1139.456384pt;}
._5f{margin-left:-1125.056384pt;}
._64{margin-left:-1119.936384pt;}
._70{margin-left:-1105.600384pt;}
._84{margin-left:-1096.896384pt;}
._3d{margin-left:-1089.792384pt;}
._3e{margin-left:-1077.312384pt;}
._67{margin-left:-1068.352384pt;}
._aa{margin-left:-1061.312384pt;}
._d7{margin-left:-1014.976384pt;}
._60{margin-left:-1013.184384pt;}
._7e{margin-left:-1000.832384pt;}
._d4{margin-left:-976.000384pt;}
._6f{margin-left:-951.040384pt;}
._d5{margin-left:-924.544384pt;}
._da{margin-left:-881.728384pt;}
._62{margin-left:-862.144384pt;}
._dc{margin-left:-842.784896pt;}
._e0{margin-left:-807.168384pt;}
._18{margin-left:-794.735360pt;}
._e1{margin-left:-726.976384pt;}
._47{margin-left:-710.912384pt;}
._16{margin-left:-709.248384pt;}
._72{margin-left:-705.856384pt;}
._79{margin-left:-684.480384pt;}
._53{margin-left:-677.312384pt;}
._b{margin-left:-661.248384pt;}
._76{margin-left:-657.696896pt;}
._6b{margin-left:-597.312384pt;}
._69{margin-left:-568.768384pt;}
._26{margin-left:-524.480384pt;}
._73{margin-left:-513.856384pt;}
._51{margin-left:-467.520384pt;}
._e3{margin-left:-439.142784pt;}
._10{margin-left:-426.624384pt;}
._1a{margin-left:-421.261184pt;}
._20{margin-left:-414.144384pt;}
._5d{margin-left:-400.000384pt;}
._24{margin-left:-398.272384pt;}
._25{margin-left:-368.000384pt;}
._d2{margin-left:-352.000384pt;}
._d9{margin-left:-208.000384pt;}
._1c{margin-left:-176.000384pt;}
._9{margin-left:-144.000384pt;}
._1f{margin-left:-4.793600pt;}
._1e{margin-left:-3.723008pt;}
._1d{margin-left:-2.583808pt;}
._1{margin-left:-0.916992pt;}
._3{width:0.943360pt;}
._21{width:2.374400pt;}
._27{width:3.285376pt;}
._29{width:4.586624pt;}
._2e{width:6.246144pt;}
._f{width:7.238400pt;}
._c{width:8.544000pt;}
._2b{width:9.510016pt;}
._41{width:10.479104pt;}
._30{width:11.669248pt;}
._2c{width:12.844800pt;}
._22{width:14.438400pt;}
._3c{width:17.068800pt;}
._46{width:18.169600pt;}
._a{width:19.208704pt;}
._37{width:20.883200pt;}
._4c{width:21.933056pt;}
._14{width:22.916480pt;}
._61{width:23.942400pt;}
._36{width:24.960000pt;}
._35{width:25.965568pt;}
._23{width:26.949632pt;}
._28{width:28.025600pt;}
._66{width:29.771008pt;}
._57{width:30.992256pt;}
._d6{width:60.281600pt;}
._d3{width:752.000000pt;}
._0{width:1275.733376pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.626667pt;}
.y13c{bottom:14.560000pt;}
.y13a{bottom:14.880000pt;}
.y140{bottom:14.933333pt;}
.y138{bottom:15.200000pt;}
.y13e{bottom:15.253333pt;}
.y136{bottom:15.520000pt;}
.y29{bottom:34.666667pt;}
.y4d{bottom:36.800000pt;}
.y2a{bottom:37.760000pt;}
.y2b{bottom:45.333333pt;}
.y28{bottom:50.666667pt;}
.y6b{bottom:83.840000pt;}
.ya6{bottom:85.760000pt;}
.y4b{bottom:86.080000pt;}
.yfd{bottom:92.480000pt;}
.ydc{bottom:95.360000pt;}
.y26{bottom:96.640000pt;}
.yb3{bottom:100.800000pt;}
.yfc{bottom:111.040000pt;}
.y6a{bottom:111.360000pt;}
.y4a{bottom:113.920000pt;}
.yc1{bottom:117.760000pt;}
.y7f{bottom:122.240000pt;}
.ya5{bottom:123.840000pt;}
.y92{bottom:128.320000pt;}
.yfb{bottom:129.600000pt;}
.y25{bottom:131.200000pt;}
.y11b{bottom:131.520000pt;}
.y69{bottom:138.880000pt;}
.y49{bottom:141.440000pt;}
.yc0{bottom:145.280000pt;}
.ydb{bottom:148.160000pt;}
.y7e{bottom:149.760000pt;}
.y11a{bottom:150.400000pt;}
.ya4{bottom:151.680000pt;}
.y91{bottom:155.840000pt;}
.yfa{bottom:163.520000pt;}
.y24{bottom:165.760000pt;}
.y68{bottom:166.720000pt;}
.y119{bottom:168.640000pt;}
.y48{bottom:168.960000pt;}
.ybf{bottom:172.800000pt;}
.y7d{bottom:177.280000pt;}
.ya3{bottom:179.200000pt;}
.yf9{bottom:182.400000pt;}
.y90{bottom:183.680000pt;}
.yda{bottom:185.280000pt;}
.y118{bottom:187.200000pt;}
.y67{bottom:194.240000pt;}
.y47{bottom:196.480000pt;}
.y23{bottom:200.000000pt;}
.ybe{bottom:200.640000pt;}
.yd9{bottom:203.520000pt;}
.y7c{bottom:204.800000pt;}
.ya2{bottom:206.720000pt;}
.y8f{bottom:211.200000pt;}
.yf8{bottom:216.320000pt;}
.y117{bottom:221.120000pt;}
.y66{bottom:221.760000pt;}
.y46{bottom:224.320000pt;}
.ybd{bottom:228.160000pt;}
.y7b{bottom:232.640000pt;}
.ya1{bottom:234.240000pt;}
.y22{bottom:234.560000pt;}
.yf7{bottom:235.200000pt;}
.yd8{bottom:237.760000pt;}
.y8e{bottom:238.720000pt;}
.y116{bottom:240.000000pt;}
.y65{bottom:249.280000pt;}
.y45{bottom:251.840000pt;}
.yf6{bottom:253.440000pt;}
.ybc{bottom:255.680000pt;}
.yd7{bottom:256.320000pt;}
.y115{bottom:258.240000pt;}
.y7a{bottom:260.160000pt;}
.ya0{bottom:262.080000pt;}
.y8d{bottom:266.240000pt;}
.y21{bottom:269.120000pt;}
.y64{bottom:277.120000pt;}
.y44{bottom:279.360000pt;}
.y79{bottom:287.680000pt;}
.yd6{bottom:290.560000pt;}
.y114{bottom:292.480000pt;}
.y8c{bottom:294.080000pt;}
.y9f{bottom:300.160000pt;}
.y20{bottom:303.680000pt;}
.y63{bottom:304.640000pt;}
.yf5{bottom:306.240000pt;}
.y43{bottom:306.880000pt;}
.yd5{bottom:309.120000pt;}
.y113{bottom:311.040000pt;}
.y78{bottom:315.200000pt;}
.y8b{bottom:321.600000pt;}
.y1f{bottom:322.240000pt;}
.yf4{bottom:324.800000pt;}
.y9e{bottom:327.680000pt;}
.y112{bottom:329.600000pt;}
.y62{bottom:332.160000pt;}
.y42{bottom:334.720000pt;}
.y77{bottom:342.720000pt;}
.yf3{bottom:343.040000pt;}
.yd4{bottom:343.360000pt;}
.y9d{bottom:355.520000pt;}
.y61{bottom:359.680000pt;}
.y1e{bottom:361.920000pt;}
.y41{bottom:362.240000pt;}
.y111{bottom:363.520000pt;}
.y76{bottom:370.560000pt;}
.yf2{bottom:377.280000pt;}
.yd3{bottom:380.480000pt;}
.yb2{bottom:381.120000pt;}
.y110{bottom:382.400000pt;}
.y1d{bottom:383.040000pt;}
.y60{bottom:387.520000pt;}
.y9c{bottom:393.600000pt;}
.yf1{bottom:395.840000pt;}
.y94{bottom:398.080000pt;}
.y40{bottom:400.320000pt;}
.y10f{bottom:400.640000pt;}
.y1c{bottom:401.280000pt;}
.y75{bottom:408.640000pt;}
.yd2{bottom:414.400000pt;}
.y8a{bottom:415.040000pt;}
.y134{bottom:420.800000pt;}
.y5f{bottom:425.600000pt;}
.y3f{bottom:428.160000pt;}
.y9b{bottom:432.000000pt;}
.yd1{bottom:433.280000pt;}
.y10e{bottom:434.880000pt;}
.y1b{bottom:435.520000pt;}
.yb1{bottom:436.480000pt;}
.ybb{bottom:442.560000pt;}
.y74{bottom:447.040000pt;}
.yf0{bottom:448.320000pt;}
.yd0{bottom:451.520000pt;}
.y5e{bottom:453.120000pt;}
.y10d{bottom:453.440000pt;}
.y1a{bottom:454.400000pt;}
.y133{bottom:455.360000pt;}
.y3e{bottom:455.680000pt;}
.y9a{bottom:459.520000pt;}
.yb0{bottom:464.000000pt;}
.yef{bottom:467.200000pt;}
.yba{bottom:470.080000pt;}
.y10c{bottom:472.000000pt;}
.y73{bottom:474.560000pt;}
.y19{bottom:478.080000pt;}
.y5d{bottom:480.960000pt;}
.y3d{bottom:483.200000pt;}
.yee{bottom:485.440000pt;}
.ycf{bottom:485.760000pt;}
.y132{bottom:489.600000pt;}
.yaf{bottom:491.520000pt;}
.y99{bottom:497.920000pt;}
.y18{bottom:500.160000pt;}
.y72{bottom:502.080000pt;}
.yce{bottom:504.320000pt;}
.y10b{bottom:505.920000pt;}
.y5c{bottom:508.480000pt;}
.y3c{bottom:510.720000pt;}
.y17{bottom:517.120000pt;}
.yae{bottom:519.040000pt;}
.yed{bottom:519.680000pt;}
.ycd{bottom:522.880000pt;}
.y10a{bottom:524.800000pt;}
.yb9{bottom:525.440000pt;}
.y71{bottom:529.920000pt;}
.y89{bottom:536.000000pt;}
.yec{bottom:538.240000pt;}
.y3b{bottom:538.560000pt;}
.y124{bottom:540.480000pt;}
.y16{bottom:541.440000pt;}
.y5b{bottom:546.880000pt;}
.y131{bottom:550.720000pt;}
.yb8{bottom:552.960000pt;}
.y150{bottom:553.600000pt;}
.ycc{bottom:556.800000pt;}
.yb4{bottom:557.440000pt;}
.y15{bottom:558.080000pt;}
.y109{bottom:558.720000pt;}
.y88{bottom:563.520000pt;}
.y3a{bottom:566.080000pt;}
.y70{bottom:568.000000pt;}
.y130{bottom:571.840000pt;}
.yad{bottom:574.400000pt;}
.y123{bottom:574.720000pt;}
.ycb{bottom:575.680000pt;}
.y108{bottom:577.280000pt;}
.y14{bottom:582.080000pt;}
.y5a{bottom:584.960000pt;}
.yeb{bottom:590.720000pt;}
.yb7{bottom:591.360000pt;}
.y12f{bottom:592.960000pt;}
.y122{bottom:593.280000pt;}
.y39{bottom:593.600000pt;}
.y6f{bottom:595.520000pt;}
.y87{bottom:601.920000pt;}
.y13{bottom:604.160000pt;}
.y14f{bottom:608.960000pt;}
.yea{bottom:609.280000pt;}
.yca{bottom:609.600000pt;}
.y107{bottom:611.520000pt;}
.y121{bottom:611.840000pt;}
.yac{bottom:612.480000pt;}
.yb6{bottom:618.880000pt;}
.y12{bottom:621.120000pt;}
.y12e{bottom:622.080000pt;}
.y59{bottom:623.360000pt;}
.y11{bottom:626.560000pt;}
.y38{bottom:627.840000pt;}
.yc9{bottom:628.480000pt;}
.y86{bottom:629.440000pt;}
.y106{bottom:630.080000pt;}
.yab{bottom:640.320000pt;}
.y12d{bottom:640.640000pt;}
.y10{bottom:643.520000pt;}
.y14e{bottom:643.840000pt;}
.y120{bottom:645.760000pt;}
.yb5{bottom:646.400000pt;}
.yc8{bottom:646.720000pt;}
.y142{bottom:649.280000pt;}
.y58{bottom:650.880000pt;}
.y85{bottom:656.960000pt;}
.ye9{bottom:661.760000pt;}
.y14d{bottom:662.080000pt;}
.y105{bottom:664.320000pt;}
.y11f{bottom:664.640000pt;}
.yf{bottom:667.520000pt;}
.yaa{bottom:667.840000pt;}
.y37{bottom:671.680000pt;}
.y57{bottom:678.400000pt;}
.y12c{bottom:678.720000pt;}
.ye8{bottom:680.640000pt;}
.yc7{bottom:680.960000pt;}
.y104{bottom:682.880000pt;}
.y141{bottom:683.840000pt;}
.ye{bottom:684.160000pt;}
.y84{bottom:684.800000pt;}
.yd{bottom:689.600000pt;}
.ya9{bottom:695.360000pt;}
.y14c{bottom:696.320000pt;}
.y11e{bottom:698.560000pt;}
.y13f{bottom:698.666667pt;}
.yc6{bottom:699.520000pt;}
.y56{bottom:705.920000pt;}
.yc{bottom:706.560000pt;}
.y36{bottom:709.760000pt;}
.y83{bottom:712.320000pt;}
.y12b{bottom:713.280000pt;}
.ye7{bottom:714.560000pt;}
.y103{bottom:717.120000pt;}
.y11d{bottom:717.440000pt;}
.yc5{bottom:718.080000pt;}
.ya8{bottom:722.880000pt;}
.yb{bottom:730.880000pt;}
.ye6{bottom:733.440000pt;}
.y55{bottom:733.760000pt;}
.y102{bottom:735.680000pt;}
.y35{bottom:737.600000pt;}
.y13d{bottom:738.666667pt;}
.y82{bottom:739.840000pt;}
.ya{bottom:747.520000pt;}
.y14b{bottom:749.440000pt;}
.y12a{bottom:750.080000pt;}
.y98{bottom:750.720000pt;}
.ye5{bottom:751.680000pt;}
.yc4{bottom:758.720000pt;}
.y54{bottom:761.280000pt;}
.y34{bottom:765.120000pt;}
.y81{bottom:767.360000pt;}
.y14a{bottom:767.680000pt;}
.y101{bottom:769.920000pt;}
.y9{bottom:771.520000pt;}
.y97{bottom:778.240000pt;}
.y13b{bottom:780.000000pt;}
.ye4{bottom:785.920000pt;}
.y8{bottom:788.480000pt;}
.y53{bottom:788.800000pt;}
.y33{bottom:792.640000pt;}
.yc3{bottom:799.360000pt;}
.y149{bottom:801.920000pt;}
.ye3{bottom:804.480000pt;}
.y80{bottom:805.760000pt;}
.y52{bottom:816.320000pt;}
.y139{bottom:820.000000pt;}
.y32{bottom:820.160000pt;}
.y100{bottom:822.720000pt;}
.y7{bottom:823.040000pt;}
.yc2{bottom:827.200000pt;}
.y93{bottom:833.280000pt;}
.y148{bottom:836.480000pt;}
.y6{bottom:841.280000pt;}
.y129{bottom:841.600000pt;}
.y6e{bottom:844.160000pt;}
.y31{bottom:848.000000pt;}
.y51{bottom:854.720000pt;}
.y147{bottom:855.040000pt;}
.ye2{bottom:856.960000pt;}
.y5{bottom:859.840000pt;}
.y137{bottom:860.000000pt;}
.y96{bottom:861.120000pt;}
.y6d{bottom:871.680000pt;}
.y146{bottom:873.280000pt;}
.y30{bottom:875.520000pt;}
.ye1{bottom:875.840000pt;}
.y128{bottom:878.400000pt;}
.y50{bottom:882.240000pt;}
.y145{bottom:891.840000pt;}
.ye0{bottom:894.080000pt;}
.y4{bottom:895.040000pt;}
.y127{bottom:896.640000pt;}
.y6c{bottom:899.200000pt;}
.y135{bottom:900.000000pt;}
.y2f{bottom:903.040000pt;}
.y4f{bottom:909.760000pt;}
.y144{bottom:910.080000pt;}
.yff{bottom:912.640000pt;}
.y126{bottom:915.200000pt;}
.y3{bottom:919.680000pt;}
.ya7{bottom:926.720000pt;}
.ydf{bottom:928.320000pt;}
.y143{bottom:928.640000pt;}
.y2e{bottom:930.560000pt;}
.yfe{bottom:930.880000pt;}
.y125{bottom:933.440000pt;}
.y4e{bottom:937.600000pt;}
.y2{bottom:944.000000pt;}
.y11c{bottom:946.560000pt;}
.yde{bottom:946.880000pt;}
.y2d{bottom:965.120000pt;}
.ydd{bottom:965.440000pt;}
.y27{bottom:981.585333pt;}
.y95{bottom:986.373333pt;}
.y4c{bottom:991.333333pt;}
.y1{bottom:1014.080000pt;}
.h9{height:25.333333pt;}
.h5{height:28.545000pt;}
.h6{height:28.606875pt;}
.ha{height:35.831250pt;}
.hb{height:41.333333pt;}
.h1{height:43.375000pt;}
.h4{height:44.562500pt;}
.h8{height:47.156250pt;}
.h3{height:50.366875pt;}
.h2{height:58.122500pt;}
.h7{height:64.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:158.666667pt;}
.w4{width:181.333333pt;}
.w3{width:253.333333pt;}
.w1{width:758.218667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.466795pt;}
.xd{left:37.801333pt;}
.xa{left:42.070667pt;}
.x2{left:45.440000pt;}
.x7{left:51.126667pt;}
.x3{left:57.114667pt;}
.x1{left:85.440096pt;}
.xb{left:117.440096pt;}
.x8{left:123.240224pt;}
.x6{left:133.440096pt;}
.x5{left:141.333333pt;}
.xc{left:149.440096pt;}
.x9{left:157.440096pt;}
.xf{left:189.333333pt;}
.xe{left:193.808928pt;}
.x11{left:442.666667pt;}
.x4{left:578.666667pt;}
}




    .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; }
  