
    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_5df2533e6841863f65fb5dda.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f6d0d326175f555a4a8fcaf0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_44dfe863ef5a4ec5e0281e29.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_540f1db56786becec23b3a29.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_a55239f65f8e8992206d097e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_9fb4df8c9db1a3ca95cace0b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.102051;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_6dba444760604f86b8dadc52.woff')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_4f3e8d1756151d944469486e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fb8ac180af6f1c2c6408799c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_af28243134c7ce71797e2fa0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.909180;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_7bf07c04d665f16a674d2d14.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_27ac461d86d3b9702aeb199a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:ffd;src:url('chunks/assets/font_c5e9359675c7cfe58dbf9470.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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:ffe;src:url('chunks/assets/font_463c9cefe3c349547a6ec5dc.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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:fff;src:url('chunks/assets/font_9f557a7100378cbb76554370.woff')format("woff");}.fff{font-family:fff;line-height:1.106934;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;}
.m7{transform:matrix(0.000000,-0.138410,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.138410,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.138410,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.226622,0.000001,-0.075533,0.238317,0,0);-ms-transform:matrix(0.226622,0.000001,-0.075533,0.238317,0,0);-webkit-transform:matrix(0.226622,0.000001,-0.075533,0.238317,0,0);}
.m3{transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242290,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253898,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257804,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.257804,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257804,0.000001,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.451559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451559,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);}
.v7{vertical-align:-67.680000px;}
.v9{vertical-align:-61.920000px;}
.v5{vertical-align:-56.160000px;}
.v8{vertical-align:-50.400000px;}
.v1{vertical-align:-14.400000px;}
.v4{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.520000px;}
.v2{vertical-align:14.400000px;}
.v3{vertical-align:90.720000px;}
.ls2b{letter-spacing:-1.728000px;}
.ls30{letter-spacing:-1.626000px;}
.ls1e{letter-spacing:-1.506000px;}
.ls21{letter-spacing:-0.990000px;}
.ls2d{letter-spacing:-0.810000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.630000px;}
.ls33{letter-spacing:-0.602013px;}
.ls29{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.426000px;}
.ls6{letter-spacing:-0.423600px;}
.ls27{letter-spacing:-0.417600px;}
.ls3{letter-spacing:-0.382800px;}
.lsc{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.184200px;}
.ls28{letter-spacing:-0.164400px;}
.ls8{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.066000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.266511px;}
.ls25{letter-spacing:0.347962px;}
.ls4{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.530957px;}
.ls32{letter-spacing:0.602013px;}
.ls26{letter-spacing:0.696000px;}
.ls0{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.774000px;}
.ls9{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.984960px;}
.ls1a{letter-spacing:1.968480px;}
.ls13{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.498400px;}
.ls18{letter-spacing:3.408480px;}
.ls1c{letter-spacing:3.552480px;}
.ls14{letter-spacing:3.600000px;}
.ls23{letter-spacing:3.938400px;}
.ls1d{letter-spacing:4.492800px;}
.lsf{letter-spacing:5.162400px;}
.ls12{letter-spacing:5.184000px;}
.lsb{letter-spacing:6.480000px;}
.ls16{letter-spacing:13.488480px;}
.ls15{letter-spacing:16.012800px;}
.ls2a{letter-spacing:16.560000px;}
.lse{letter-spacing:21.024000px;}
.ls17{letter-spacing:22.546080px;}
.ls1b{letter-spacing:22.788000px;}
.ls19{letter-spacing:23.986080px;}
.lsd{letter-spacing:25.344000px;}
.ls5{letter-spacing:149.916000px;}
.ls11{letter-spacing:222.722400px;}
.ls10{letter-spacing:319.202400px;}
.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;}
}
.wsb{word-spacing:-18.504000px;}
.ws28{word-spacing:-18.388080px;}
.ws7{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.352000px;}
.ws29{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.272000px;}
.ws9{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.666240px;}
.ws1f{word-spacing:-15.212160px;}
.ws20{word-spacing:-15.027960px;}
.ws1b{word-spacing:-14.805840px;}
.ws21{word-spacing:-14.582160px;}
.ws1a{word-spacing:-14.552640px;}
.ws1c{word-spacing:-14.506440px;}
.ws22{word-spacing:-13.586160px;}
.ws4{word-spacing:-13.244880px;}
.wsc{word-spacing:-12.038400px;}
.ws1{word-spacing:-11.983920px;}
.ws12{word-spacing:-11.972400px;}
.ws13{word-spacing:-11.612400px;}
.wsa{word-spacing:-11.088000px;}
.ws15{word-spacing:-11.048400px;}
.ws1d{word-spacing:-10.771227px;}
.ws0{word-spacing:-10.739520px;}
.wsf{word-spacing:-10.532400px;}
.wse{word-spacing:-8.553600px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:4.934880px;}
.ws17{word-spacing:5.975541px;}
.ws10{word-spacing:6.599520px;}
.wsd{word-spacing:13.325760px;}
.ws11{word-spacing:13.445760px;}
.ws14{word-spacing:13.505760px;}
.ws24{word-spacing:45.972745px;}
.ws25{word-spacing:73.554012px;}
.ws23{word-spacing:91.503027px;}
.ws27{word-spacing:312.968426px;}
.ws26{word-spacing:333.142649px;}
.ws18{word-spacing:691.760297px;}
._1c{margin-left:-9.767040px;}
._2b{margin-left:-7.885440px;}
._16{margin-left:-6.768000px;}
._15{margin-left:-5.112000px;}
._5{margin-left:-3.746880px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._11{width:4.517760px;}
._13{width:5.659680px;}
._12{width:7.185600px;}
._e{width:8.334720px;}
._b{width:9.921600px;}
._9{width:11.304000px;}
._a{width:13.144320px;}
._c{width:14.330880px;}
._d{width:16.295040px;}
._42{width:18.650880px;}
._8{width:19.932960px;}
._14{width:20.934720px;}
._6{width:22.104000px;}
._7{width:23.236320px;}
._17{width:24.576960px;}
._18{width:25.863360px;}
._19{width:27.044640px;}
._2a{width:28.664640px;}
._1a{width:29.808000px;}
._1b{width:30.950400px;}
._20{width:32.178440px;}
._f{width:33.480000px;}
._10{width:34.542720px;}
._25{width:51.520355px;}
._21{width:69.025185px;}
._41{width:80.553600px;}
._22{width:86.983092px;}
._31{width:89.620062px;}
._23{width:98.024796px;}
._2f{width:102.485683px;}
._2d{width:106.357918px;}
._2e{width:114.974102px;}
._3e{width:194.332617px;}
._35{width:214.453971px;}
._3b{width:233.389541px;}
._3d{width:236.545250px;}
._1e{width:239.038389px;}
._1f{width:241.743179px;}
._3c{width:251.207541px;}
._37{width:252.552264px;}
._40{width:256.690826px;}
._1d{width:258.966251px;}
._2c{width:266.889543px;}
._39{width:268.301662px;}
._34{width:271.510335px;}
._33{width:286.548137px;}
._3a{width:293.132552px;}
._32{width:308.491058px;}
._38{width:310.226674px;}
._36{width:311.554736px;}
._3f{width:313.435347px;}
._30{width:366.893055px;}
._29{width:547.289050px;}
._26{width:579.809999px;}
._28{width:644.432394px;}
._27{width:669.950844px;}
._24{width:1136.380527px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs8{font-size:30.240000px;}
.fse{font-size:38.745422px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:42.632020px;}
.fs10{font-size:46.540380px;}
.fs4{font-size:47.520000px;}
.fs6{font-size:50.400000px;}
.fs12{font-size:53.095674px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs13{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fsd{font-size:66.627808px;}
.fsf{font-size:69.983299px;}
.fs9{font-size:70.571081px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:73.040005px;}
.fsc{font-size:78.845838px;}
.fs5{font-size:83.520000px;}
.fs11{font-size:96.480000px;}
.y19b{bottom:-9.360000px;}
.y1b5{bottom:-9.000000px;}
.y1bd{bottom:-6.480000px;}
.y199{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.yec{bottom:0.103581px;}
.yeb{bottom:0.103584px;}
.yea{bottom:0.103588px;}
.ye9{bottom:0.103592px;}
.ye8{bottom:0.103596px;}
.ye7{bottom:0.103600px;}
.ye6{bottom:0.103604px;}
.ye5{bottom:0.103607px;}
.ye4{bottom:0.103611px;}
.ye3{bottom:0.103615px;}
.ye2{bottom:0.103619px;}
.ye1{bottom:0.103623px;}
.ye0{bottom:0.103627px;}
.ydf{bottom:0.103630px;}
.yde{bottom:0.103634px;}
.ydd{bottom:0.103638px;}
.ydc{bottom:0.103642px;}
.ydb{bottom:0.103646px;}
.yda{bottom:0.103650px;}
.yd9{bottom:0.103653px;}
.y18c{bottom:2.880000px;}
.y1c0{bottom:2.910000px;}
.y9{bottom:3.240000px;}
.y82{bottom:3.243498px;}
.y2f{bottom:3.600000px;}
.yf5{bottom:3.960000px;}
.yab{bottom:4.320000px;}
.yb3{bottom:4.350000px;}
.y88{bottom:4.720991px;}
.y84{bottom:4.806715px;}
.ya9{bottom:4.941017px;}
.y137{bottom:6.840000px;}
.y14b{bottom:6.870000px;}
.y148{bottom:7.245000px;}
.y85{bottom:9.394970px;}
.ya{bottom:17.316000px;}
.y8{bottom:17.676000px;}
.y1f6{bottom:18.161913px;}
.y13e{bottom:21.240000px;}
.y144{bottom:24.525000px;}
.y1fa{bottom:25.560000px;}
.y1fe{bottom:25.920000px;}
.y202{bottom:25.950000px;}
.ya8{bottom:26.538308px;}
.yb{bottom:30.600000px;}
.y14a{bottom:30.630000px;}
.y145{bottom:30.960000px;}
.y147{bottom:31.005000px;}
.y7{bottom:32.436000px;}
.y1f5{bottom:34.108040px;}
.y13d{bottom:45.045000px;}
.ya7{bottom:48.173630px;}
.y1fd{bottom:48.240000px;}
.y201{bottom:48.270000px;}
.y1f9{bottom:48.285000px;}
.y139{bottom:54.360000px;}
.y141{bottom:54.390000px;}
.y6{bottom:57.240000px;}
.y1f4{bottom:66.000292px;}
.ya6{bottom:69.771521px;}
.y1f3{bottom:81.987362px;}
.yd1{bottom:86.902354px;}
.ya5{bottom:91.406843px;}
.y2e{bottom:91.476000px;}
.y1f2{bottom:97.933488px;}
.ya4{bottom:113.004729px;}
.y1f1{bottom:113.879615px;}
.yd2{bottom:116.974320px;}
.y5{bottom:118.836000px;}
.y1f0{bottom:129.825742px;}
.ya3{bottom:134.602619px;}
.y1cc{bottom:146.556000px;}
.yd3{bottom:147.039488px;}
.y169{bottom:148.716000px;}
.y1c6{bottom:151.590000px;}
.ya2{bottom:156.239443px;}
.y62{bottom:156.270000px;}
.ycf{bottom:159.150000px;}
.y104{bottom:159.510000px;}
.y44{bottom:160.950000px;}
.y1ef{bottom:161.758939px;}
.ya0{bottom:162.750000px;}
.y187{bottom:164.190000px;}
.y168{bottom:172.830000px;}
.y124{bottom:173.190000px;}
.y143{bottom:173.550000px;}
.y1cb{bottom:174.990000px;}
.yd4{bottom:177.070657px;}
.y1c5{bottom:182.550000px;}
.y61{bottom:187.590000px;}
.y7f{bottom:188.310000px;}
.yce{bottom:190.110000px;}
.y103{bottom:190.470000px;}
.y2c{bottom:191.910000px;}
.y186{bottom:192.630000px;}
.y1ee{bottom:193.656104px;}
.y167{bottom:196.590000px;}
.y9f{bottom:201.675000px;}
.y1ca{bottom:203.835000px;}
.y123{bottom:204.195000px;}
.yd5{bottom:207.135825px;}
.y1ed{bottom:209.590764px;}
.y7a{bottom:212.115000px;}
.y1c4{bottom:213.555000px;}
.y142{bottom:214.995000px;}
.y60{bottom:218.595000px;}
.y166{bottom:220.395000px;}
.y126{bottom:220.755000px;}
.ycd{bottom:221.115000px;}
.y102{bottom:221.835000px;}
.y2b{bottom:222.915000px;}
.y43{bottom:223.275000px;}
.y7e{bottom:224.715000px;}
.y7c{bottom:226.155000px;}
.y7d{bottom:230.835000px;}
.y7b{bottom:232.275000px;}
.y122{bottom:235.155000px;}
.yd6{bottom:237.200992px;}
.y9e{bottom:240.555000px;}
.y165{bottom:244.155000px;}
.y1c3{bottom:244.515000px;}
.y5f{bottom:249.555000px;}
.y185{bottom:249.915000px;}
.ycc{bottom:252.435000px;}
.y101{bottom:252.795000px;}
.y2a{bottom:254.235000px;}
.y79{bottom:255.315000px;}
.y1ec{bottom:257.476647px;}
.y1c9{bottom:260.715000px;}
.y125{bottom:265.755000px;}
.y121{bottom:266.115000px;}
.yd7{bottom:267.243494px;}
.y164{bottom:267.915000px;}
.y1c2{bottom:275.835000px;}
.y184{bottom:278.355000px;}
.y9d{bottom:279.075000px;}
.y5e{bottom:280.515000px;}
.ycb{bottom:283.395000px;}
.y100{bottom:283.755000px;}
.y29{bottom:285.195000px;}
.y78{bottom:286.275000px;}
.y140{bottom:286.635000px;}
.y1c8{bottom:289.155000px;}
.y1eb{bottom:289.362349px;}
.y163{bottom:291.675000px;}
.y120{bottom:297.075000px;}
.yd8{bottom:297.195336px;}
.y1ea{bottom:305.346143px;}
.y1c1{bottom:305.715000px;}
.y183{bottom:306.795000px;}
.y5d{bottom:311.835000px;}
.yca{bottom:314.355000px;}
.yff{bottom:314.715000px;}
.y162{bottom:315.435000px;}
.y28{bottom:316.155000px;}
.y77{bottom:317.595000px;}
.y9c{bottom:317.955000px;}
.yed{bottom:319.792350px;}
.y1bf{bottom:321.195000px;}
.y1e9{bottom:321.297183px;}
.y1c7{bottom:322.635000px;}
.y1cd{bottom:322.875000px;}
.y11f{bottom:328.425000px;}
.y182{bottom:335.265000px;}
.y1e8{bottom:337.248223px;}
.y1be{bottom:337.425000px;}
.y161{bottom:339.225000px;}
.y5c{bottom:342.825000px;}
.yc9{bottom:345.345000px;}
.yfe{bottom:346.065000px;}
.y27{bottom:347.145000px;}
.y42{bottom:347.505000px;}
.y76{bottom:348.585000px;}
.y9b{bottom:348.945000px;}
.y1e7{bottom:353.199263px;}
.y1bc{bottom:353.265000px;}
.y13f{bottom:358.305000px;}
.y11e{bottom:359.385000px;}
.y160{bottom:362.985000px;}
.y181{bottom:363.705000px;}
.y1e6{bottom:369.133926px;}
.y1bb{bottom:369.465000px;}
.y5b{bottom:373.785000px;}
.yc8{bottom:376.665000px;}
.yfd{bottom:377.025000px;}
.y26{bottom:378.465000px;}
.y75{bottom:379.545000px;}
.y9a{bottom:380.265000px;}
.y1e5{bottom:385.117720px;}
.y1ba{bottom:385.665000px;}
.y15f{bottom:387.105000px;}
.y11d{bottom:390.345000px;}
.y180{bottom:392.145000px;}
.y1e4{bottom:401.068760px;}
.y1b9{bottom:401.865000px;}
.y5a{bottom:404.745000px;}
.y13c{bottom:406.185000px;}
.yc7{bottom:407.625000px;}
.yfc{bottom:407.985000px;}
.y25{bottom:409.425000px;}
.y74{bottom:410.505000px;}
.y15e{bottom:410.865000px;}
.y99{bottom:411.225000px;}
.y1e3{bottom:417.019800px;}
.y1b8{bottom:418.065000px;}
.y17f{bottom:420.585000px;}
.y11c{bottom:421.305000px;}
.y1e2{bottom:432.970840px;}
.y1b7{bottom:434.265000px;}
.y15d{bottom:434.625000px;}
.y59{bottom:436.065000px;}
.yc6{bottom:438.585000px;}
.yfb{bottom:438.945000px;}
.y24{bottom:440.385000px;}
.y73{bottom:441.825000px;}
.y98{bottom:442.185000px;}
.y1e1{bottom:448.954634px;}
.y17e{bottom:449.025000px;}
.y1b6{bottom:450.510000px;}
.y11b{bottom:452.670000px;}
.y15c{bottom:458.430000px;}
.y1e0{bottom:464.889297px;}
.y1b4{bottom:466.710000px;}
.y58{bottom:467.070000px;}
.y13b{bottom:468.510000px;}
.yc5{bottom:469.590000px;}
.y23{bottom:471.390000px;}
.y41{bottom:471.750000px;}
.y72{bottom:472.830000px;}
.y1b3{bottom:476.430000px;}
.yfa{bottom:476.790000px;}
.y17d{bottom:477.510000px;}
.y97{bottom:480.030000px;}
.y1df{bottom:480.840338px;}
.y15b{bottom:482.190000px;}
.y1b2{bottom:482.910000px;}
.y11a{bottom:483.630000px;}
.y205{bottom:485.790000px;}
.yf9{bottom:491.550000px;}
.y1de{bottom:496.791378px;}
.y57{bottom:498.030000px;}
.y1b1{bottom:499.110000px;}
.yc4{bottom:500.910000px;}
.y22{bottom:502.710000px;}
.y71{bottom:503.790000px;}
.y15a{bottom:505.950000px;}
.y96{bottom:511.350000px;}
.ya1{bottom:511.573914px;}
.y1dd{bottom:512.742418px;}
.yf8{bottom:513.150000px;}
.y119{bottom:514.590000px;}
.y1b0{bottom:515.310000px;}
.y1dc{bottom:528.726213px;}
.y56{bottom:528.990000px;}
.y159{bottom:529.710000px;}
.y1af{bottom:531.510000px;}
.yc3{bottom:531.870000px;}
.y21{bottom:533.670000px;}
.yf7{bottom:534.390000px;}
.y70{bottom:534.750000px;}
.y13a{bottom:540.150000px;}
.y204{bottom:544.470000px;}
.y1db{bottom:544.660875px;}
.y118{bottom:545.550000px;}
.y1ae{bottom:547.710000px;}
.y158{bottom:553.470000px;}
.yf6{bottom:555.990000px;}
.y55{bottom:560.310000px;}
.y1da{bottom:560.611915px;}
.yc2{bottom:562.830000px;}
.y1ad{bottom:563.910000px;}
.y20{bottom:564.630000px;}
.y6f{bottom:566.070000px;}
.y1d9{bottom:576.562956px;}
.y117{bottom:576.900000px;}
.yf4{bottom:577.620000px;}
.y1ac{bottom:580.140000px;}
.y138{bottom:588.060000px;}
.y54{bottom:591.300000px;}
.y1d8{bottom:592.497621px;}
.yc1{bottom:593.820000px;}
.y1f{bottom:595.620000px;}
.y40{bottom:595.980000px;}
.y1ab{bottom:596.340000px;}
.y6e{bottom:597.060000px;}
.yf3{bottom:598.860000px;}
.y157{bottom:601.380000px;}
.y116{bottom:607.860000px;}
.y1d7{bottom:608.497789px;}
.y1aa{bottom:612.540000px;}
.y203{bottom:617.220000px;}
.y17c{bottom:619.740000px;}
.y53{bottom:622.260000px;}
.yc0{bottom:624.780000px;}
.y156{bottom:625.140000px;}
.y1e{bottom:626.940000px;}
.y6d{bottom:628.020000px;}
.y1a9{bottom:628.740000px;}
.yf2{bottom:634.500000px;}
.y115{bottom:638.820000px;}
.y1d6{bottom:640.383493px;}
.y1a8{bottom:644.940000px;}
.y17b{bottom:648.180000px;}
.y155{bottom:648.900000px;}
.y52{bottom:653.220000px;}
.ybf{bottom:656.100000px;}
.y1d{bottom:657.900000px;}
.y6c{bottom:658.980000px;}
.y136{bottom:659.700000px;}
.y1a7{bottom:661.140000px;}
.yf1{bottom:665.460000px;}
.y114{bottom:669.780000px;}
.y1d5{bottom:672.318325px;}
.y154{bottom:672.660000px;}
.y17a{bottom:676.620000px;}
.y1a6{bottom:677.340000px;}
.y1c{bottom:682.740000px;}
.y51{bottom:684.540000px;}
.ybe{bottom:687.060000px;}
.y3f{bottom:688.860000px;}
.y200{bottom:689.940000px;}
.y6b{bottom:690.300000px;}
.y1a5{bottom:693.540000px;}
.yf0{bottom:696.420000px;}
.y113{bottom:701.130000px;}
.y1d4{bottom:704.204033px;}
.y179{bottom:705.090000px;}
.y95{bottom:706.530000px;}
.y1b{bottom:709.410000px;}
.y1a4{bottom:709.770000px;}
.y135{bottom:714.450000px;}
.y50{bottom:715.530000px;}
.ybd{bottom:718.050000px;}
.y1d3{bottom:720.155073px;}
.y3e{bottom:720.210000px;}
.y6a{bottom:721.290000px;}
.y1a3{bottom:725.970000px;}
.y178{bottom:727.050000px;}
.y112{bottom:732.090000px;}
.yef{bottom:734.250000px;}
.y1d2{bottom:736.106114px;}
.y94{bottom:737.850000px;}
.y134{bottom:738.210000px;}
.y1a{bottom:740.370000px;}
.y1a2{bottom:742.170000px;}
.y153{bottom:743.970000px;}
.y4f{bottom:746.490000px;}
.y177{bottom:749.010000px;}
.y3d{bottom:751.170000px;}
.y1d1{bottom:752.089908px;}
.y69{bottom:752.250000px;}
.ybc{bottom:755.850000px;}
.y1a1{bottom:758.370000px;}
.yd0{bottom:759.449919px;}
.yee{bottom:759.450000px;}
.y133{bottom:761.970000px;}
.y111{bottom:763.050000px;}
.y1d0{bottom:768.040948px;}
.y152{bottom:768.090000px;}
.y93{bottom:768.810000px;}
.ybb{bottom:770.610000px;}
.y19{bottom:771.330000px;}
.y1a0{bottom:774.570000px;}
.y4e{bottom:777.450000px;}
.y3c{bottom:782.130000px;}
.y68{bottom:783.210000px;}
.y1cf{bottom:783.975611px;}
.y1ff{bottom:785.370000px;}
.y132{bottom:785.730000px;}
.y19f{bottom:790.770000px;}
.y151{bottom:791.850000px;}
.yba{bottom:792.930000px;}
.y110{bottom:794.010000px;}
.y18{bottom:794.730000px;}
.y92{bottom:799.770000px;}
.y1ce{bottom:799.926651px;}
.y19e{bottom:806.970000px;}
.y4d{bottom:808.410000px;}
.y131{bottom:809.490000px;}
.y3b{bottom:813.090000px;}
.y67{bottom:814.530000px;}
.yb9{bottom:815.250000px;}
.y150{bottom:815.610000px;}
.y17{bottom:816.690000px;}
.y19d{bottom:823.170000px;}
.y10f{bottom:825.330000px;}
.y91{bottom:830.775000px;}
.y19c{bottom:832.935000px;}
.y130{bottom:833.295000px;}
.yb8{bottom:837.615000px;}
.y16{bottom:838.335000px;}
.y14f{bottom:839.415000px;}
.y4c{bottom:839.775000px;}
.y176{bottom:840.855000px;}
.y3a{bottom:844.455000px;}
.y66{bottom:846.255000px;}
.y19a{bottom:855.615000px;}
.y10e{bottom:856.335000px;}
.y12f{bottom:857.415000px;}
.yb7{bottom:859.935000px;}
.y15{bottom:860.295000px;}
.y90{bottom:862.095000px;}
.y14e{bottom:863.175000px;}
.y175{bottom:864.615000px;}
.y198{bottom:865.335000px;}
.y4b{bottom:870.735000px;}
.y197{bottom:871.815000px;}
.y39{bottom:875.415000px;}
.y1fc{bottom:880.455000px;}
.y12e{bottom:881.175000px;}
.yb6{bottom:882.255000px;}
.y65{bottom:884.775000px;}
.y14d{bottom:886.935000px;}
.y10d{bottom:887.295000px;}
.y196{bottom:888.015000px;}
.y174{bottom:888.375000px;}
.y14{bottom:889.815000px;}
.y8f{bottom:893.055000px;}
.y4a{bottom:901.695000px;}
.y14c{bottom:903.855000px;}
.y195{bottom:904.215000px;}
.yb5{bottom:904.935000px;}
.y38{bottom:906.375000px;}
.y173{bottom:912.135000px;}
.y64{bottom:915.375000px;}
.y10c{bottom:918.255000px;}
.y194{bottom:920.415000px;}
.y13{bottom:920.775000px;}
.y8e{bottom:924.015000px;}
.yb4{bottom:927.255000px;}
.y12d{bottom:928.695000px;}
.y49{bottom:932.655000px;}
.y172{bottom:935.895000px;}
.y193{bottom:936.615000px;}
.y37{bottom:937.335000px;}
.y63{bottom:938.055000px;}
.y12{bottom:944.175000px;}
.yb2{bottom:949.575000px;}
.y149{bottom:951.735000px;}
.y12c{bottom:952.485000px;}
.y192{bottom:952.845000px;}
.y8d{bottom:955.005000px;}
.y171{bottom:959.685000px;}
.y48{bottom:964.005000px;}
.y11{bottom:966.525000px;}
.y36{bottom:968.685000px;}
.y191{bottom:969.045000px;}
.yb1{bottom:971.925000px;}
.y1fb{bottom:975.885000px;}
.y12b{bottom:976.245000px;}
.y170{bottom:983.445000px;}
.y190{bottom:985.245000px;}
.y8c{bottom:986.325000px;}
.y10b{bottom:987.045000px;}
.yb0{bottom:994.245000px;}
.y47{bottom:994.965000px;}
.y35{bottom:999.645000px;}
.y12a{bottom:1000.005000px;}
.y18f{bottom:1001.445000px;}
.y10a{bottom:1001.805000px;}
.y16f{bottom:1007.205000px;}
.y10{bottom:1009.365000px;}
.yaf{bottom:1016.565000px;}
.y8b{bottom:1017.285000px;}
.y18e{bottom:1017.645000px;}
.y129{bottom:1023.765000px;}
.y109{bottom:1024.485000px;}
.y46{bottom:1025.925000px;}
.y34{bottom:1030.605000px;}
.y16e{bottom:1031.325000px;}
.y18d{bottom:1033.845000px;}
.yae{bottom:1038.885000px;}
.yf{bottom:1045.365000px;}
.y108{bottom:1046.805000px;}
.y128{bottom:1047.885000px;}
.y8a{bottom:1048.245000px;}
.y1f8{bottom:1048.605000px;}
.y18b{bottom:1050.045000px;}
.y16d{bottom:1055.085000px;}
.y45{bottom:1056.885000px;}
.yad{bottom:1061.205000px;}
.y33{bottom:1061.565000px;}
.y107{bottom:1069.125000px;}
.y146{bottom:1071.285000px;}
.ye{bottom:1071.645000px;}
.y16c{bottom:1078.890000px;}
.y89{bottom:1079.250000px;}
.y18a{bottom:1080.330000px;}
.yac{bottom:1083.570000px;}
.y32{bottom:1088.250000px;}
.y106{bottom:1091.490000px;}
.y127{bottom:1095.450000px;}
.yd{bottom:1095.810000px;}
.y16b{bottom:1102.650000px;}
.yaa{bottom:1105.890000px;}
.y87{bottom:1106.474919px;}
.y189{bottom:1110.210000px;}
.y86{bottom:1111.290000px;}
.y105{bottom:1113.810000px;}
.yc{bottom:1116.330000px;}
.y31{bottom:1119.210000px;}
.y16a{bottom:1126.410000px;}
.y4{bottom:1137.210000px;}
.y83{bottom:1139.250000px;}
.y1f7{bottom:1144.050000px;}
.y188{bottom:1144.410000px;}
.y81{bottom:1145.324919px;}
.y80{bottom:1148.370000px;}
.y30{bottom:1150.170000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y2d{bottom:1195.170000px;}
.h36{height:3.240000px;}
.h37{height:3.600000px;}
.h38{height:6.120000px;}
.h35{height:6.480000px;}
.h32{height:16.200000px;}
.h34{height:16.236000px;}
.hd{height:16.596000px;}
.h19{height:17.249335px;}
.h14{height:19.424876px;}
.h25{height:20.520000px;}
.h26{height:20.556000px;}
.h24{height:20.880000px;}
.h1e{height:21.600000px;}
.h1f{height:21.636000px;}
.h3b{height:22.320000px;}
.h30{height:23.760000px;}
.h16{height:27.675575px;}
.h21{height:28.321239px;}
.h23{height:34.019018px;}
.h13{height:37.504688px;}
.h17{height:38.218940px;}
.h3a{height:38.810656px;}
.h2d{height:41.436000px;}
.h6{height:43.956000px;}
.h3f{height:45.000000px;}
.h42{height:45.036000px;}
.h7{height:47.264766px;}
.h2b{height:47.520000px;}
.h28{height:47.556000px;}
.h2e{height:47.880000px;}
.h2f{height:47.916000px;}
.h12{height:48.220313px;}
.hb{height:48.601406px;}
.h15{height:49.000037px;}
.h33{height:49.055625px;}
.h22{height:51.154785px;}
.h1b{height:53.717344px;}
.h8{height:54.426094px;}
.h1a{height:54.745499px;}
.h3e{height:56.801250px;}
.h3c{height:57.327188px;}
.h3{height:58.833281px;}
.h27{height:59.343750px;}
.h4{height:59.383125px;}
.h18{height:60.200941px;}
.hc{height:61.927031px;}
.h2a{height:61.956000px;}
.h2{height:63.949219px;}
.ha{height:64.546875px;}
.he{height:65.144531px;}
.h5{height:65.884219px;}
.h1d{height:66.269944px;}
.h3d{height:67.356000px;}
.h40{height:67.680000px;}
.h41{height:67.716000px;}
.h11{height:67.865625px;}
.h29{height:71.280000px;}
.h2c{height:71.316000px;}
.h9{height:74.181094px;}
.h31{height:85.691953px;}
.hf{height:89.296875px;}
.h1c{height:172.887973px;}
.h10{height:180.016875px;}
.h20{height:330.444941px;}
.h39{height:813.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:15.075302px;}
.w7{width:17.249714px;}
.w8{width:19.425003px;}
.w4{width:39.636000px;}
.w1c{width:72.756000px;}
.w1e{width:80.316000px;}
.w1b{width:87.876000px;}
.w1f{width:88.236000px;}
.we{width:92.556000px;}
.w17{width:92.592000px;}
.wd{width:92.916000px;}
.wb{width:105.516000px;}
.w22{width:114.912000px;}
.w11{width:133.992000px;}
.wc{width:137.952000px;}
.w16{width:138.276000px;}
.w15{width:138.312000px;}
.wf{width:153.435000px;}
.w1d{width:154.515000px;}
.w20{width:176.115000px;}
.w14{width:195.555000px;}
.w13{width:282.705000px;}
.w1a{width:323.070000px;}
.w6{width:332.790000px;}
.w5{width:347.910000px;}
.w21{width:474.075000px;}
.w12{width:478.980000px;}
.w19{width:483.690000px;}
.w23{width:594.930000px;}
.wa{width:607.725497px;}
.w3{width:641.055000px;}
.w10{width:673.558768px;}
.w18{width:693.285000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5f{left:1.080000px;}
.x27{left:2.832560px;}
.x31{left:5.040000px;}
.x47{left:7.560000px;}
.x10{left:8.640000px;}
.x7{left:10.485000px;}
.x2a{left:11.528007px;}
.x5b{left:14.400000px;}
.x64{left:17.280000px;}
.x60{left:21.960000px;}
.x5e{left:25.560000px;}
.x5c{left:28.080000px;}
.x61{left:29.160000px;}
.x5d{left:30.240000px;}
.x71{left:31.496383px;}
.x6a{left:35.280000px;}
.x55{left:36.360000px;}
.x67{left:37.836000px;}
.x58{left:39.960000px;}
.x69{left:42.840000px;}
.x53{left:43.920000px;}
.x70{left:46.365564px;}
.x66{left:48.279000px;}
.x6f{left:50.859581px;}
.x5a{left:52.239000px;}
.x4f{left:53.670000px;}
.x6c{left:56.251737px;}
.x63{left:57.279000px;}
.x4d{left:58.710000px;}
.x36{left:59.927621px;}
.x6e{left:61.643896px;}
.x65{left:63.039000px;}
.x74{left:66.137920px;}
.x62{left:67.719000px;}
.x2f{left:71.060572px;}
.x68{left:72.399000px;}
.x6d{left:75.575021px;}
.x56{left:77.079000px;}
.xf{left:83.915987px;}
.x37{left:91.450155px;}
.x4e{left:99.045000px;}
.x4c{left:104.085000px;}
.x17{left:105.155987px;}
.x1{left:106.235987px;}
.x50{left:108.035987px;}
.x73{left:110.665629px;}
.x30{left:112.356000px;}
.x35{left:116.715000px;}
.x6b{left:118.304790px;}
.x1b{left:123.515987px;}
.x16{left:132.191987px;}
.x14{left:133.271987px;}
.x5{left:144.429000px;}
.xa{left:145.871987px;}
.xb{left:153.794987px;}
.x26{left:155.354990px;}
.x15{left:159.194987px;}
.x13{left:160.274987px;}
.x28{left:172.514987px;}
.x38{left:186.472171px;}
.x72{left:189.390795px;}
.x45{left:201.756496px;}
.xe{left:213.194987px;}
.x32{left:218.235000px;}
.x75{left:222.585000px;}
.x2{left:241.664987px;}
.x1c{left:244.184987px;}
.x1d{left:249.944987px;}
.x49{left:251.385000px;}
.x76{left:253.875000px;}
.x57{left:263.265000px;}
.x18{left:267.224987px;}
.x39{left:281.451202px;}
.xd{left:296.744987px;}
.x12{left:303.630000px;}
.x3a{left:313.157958px;}
.x59{left:343.590000px;}
.x3b{left:344.885184px;}
.x19{left:355.829987px;}
.x1e{left:377.429987px;}
.x1f{left:383.189987px;}
.x4a{left:390.030000px;}
.x51{left:403.019987px;}
.x3c{left:408.196350px;}
.x52{left:431.820000px;}
.x29{left:435.779959px;}
.x3d{left:439.903106px;}
.x9{left:446.579987px;}
.x4{left:447.659987px;}
.x33{left:449.820000px;}
.x11{left:454.140000px;}
.x2b{left:455.219987px;}
.x1a{left:467.459987px;}
.x3e{left:471.425639px;}
.x20{left:482.579987px;}
.x2c{left:486.929959px;}
.x21{left:488.369987px;}
.x2d{left:502.049987px;}
.x3f{left:503.152865px;}
.x54{left:519.690000px;}
.x48{left:525.090000px;}
.x40{left:534.880090px;}
.x34{left:542.730000px;}
.x8{left:545.249987px;}
.x41{left:566.464031px;}
.x22{left:575.534987px;}
.x23{left:581.294987px;}
.x42{left:598.170787px;}
.x43{left:629.898012px;}
.x44{left:661.420546px;}
.x24{left:665.204987px;}
.x4b{left:669.165000px;}
.x25{left:670.964987px;}
.x3{left:696.524987px;}
.x2e{left:714.524987px;}
.x6{left:747.285000px;}
.x46{left:780.089987px;}
.xc{left:786.929987px;}
@media print{
.v7{vertical-align:-60.160000pt;}
.v9{vertical-align:-55.040000pt;}
.v5{vertical-align:-49.920000pt;}
.v8{vertical-align:-44.800000pt;}
.v1{vertical-align:-12.800000pt;}
.v4{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.240000pt;}
.v2{vertical-align:12.800000pt;}
.v3{vertical-align:80.640000pt;}
.ls2b{letter-spacing:-1.536000pt;}
.ls30{letter-spacing:-1.445333pt;}
.ls1e{letter-spacing:-1.338667pt;}
.ls21{letter-spacing:-0.880000pt;}
.ls2d{letter-spacing:-0.720000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.560000pt;}
.ls33{letter-spacing:-0.535122pt;}
.ls29{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.378667pt;}
.ls6{letter-spacing:-0.376533pt;}
.ls27{letter-spacing:-0.371200pt;}
.ls3{letter-spacing:-0.340267pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.163733pt;}
.ls28{letter-spacing:-0.146133pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.236899pt;}
.ls25{letter-spacing:0.309299pt;}
.ls4{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.471962pt;}
.ls32{letter-spacing:0.535122pt;}
.ls26{letter-spacing:0.618667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.688000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.875520pt;}
.ls1a{letter-spacing:1.749760pt;}
.ls13{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.220800pt;}
.ls18{letter-spacing:3.029760pt;}
.ls1c{letter-spacing:3.157760pt;}
.ls14{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.500800pt;}
.ls1d{letter-spacing:3.993600pt;}
.lsf{letter-spacing:4.588800pt;}
.ls12{letter-spacing:4.608000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls16{letter-spacing:11.989760pt;}
.ls15{letter-spacing:14.233600pt;}
.ls2a{letter-spacing:14.720000pt;}
.lse{letter-spacing:18.688000pt;}
.ls17{letter-spacing:20.040960pt;}
.ls1b{letter-spacing:20.256000pt;}
.ls19{letter-spacing:21.320960pt;}
.lsd{letter-spacing:22.528000pt;}
.ls5{letter-spacing:133.258667pt;}
.ls11{letter-spacing:197.975467pt;}
.ls10{letter-spacing:283.735467pt;}
.wsb{word-spacing:-16.448000pt;}
.ws28{word-spacing:-16.344960pt;}
.ws7{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.424000pt;}
.ws29{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.925547pt;}
.ws1f{word-spacing:-13.521920pt;}
.ws20{word-spacing:-13.358187pt;}
.ws1b{word-spacing:-13.160747pt;}
.ws21{word-spacing:-12.961920pt;}
.ws1a{word-spacing:-12.935680pt;}
.ws1c{word-spacing:-12.894613pt;}
.ws22{word-spacing:-12.076587pt;}
.ws4{word-spacing:-11.773227pt;}
.wsc{word-spacing:-10.700800pt;}
.ws1{word-spacing:-10.652373pt;}
.ws12{word-spacing:-10.642133pt;}
.ws13{word-spacing:-10.322133pt;}
.wsa{word-spacing:-9.856000pt;}
.ws15{word-spacing:-9.820800pt;}
.ws1d{word-spacing:-9.574424pt;}
.ws0{word-spacing:-9.546240pt;}
.wsf{word-spacing:-9.362133pt;}
.wse{word-spacing:-7.603200pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:4.386560pt;}
.ws17{word-spacing:5.311592pt;}
.ws10{word-spacing:5.866240pt;}
.wsd{word-spacing:11.845120pt;}
.ws11{word-spacing:11.951787pt;}
.ws14{word-spacing:12.005120pt;}
.ws24{word-spacing:40.864662pt;}
.ws25{word-spacing:65.381344pt;}
.ws23{word-spacing:81.336024pt;}
.ws27{word-spacing:278.194157pt;}
.ws26{word-spacing:296.126799pt;}
.ws18{word-spacing:614.898042pt;}
._1c{margin-left:-8.681813pt;}
._2b{margin-left:-7.009280pt;}
._16{margin-left:-6.016000pt;}
._15{margin-left:-4.544000pt;}
._5{margin-left:-3.330560pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._11{width:4.015787pt;}
._13{width:5.030827pt;}
._12{width:6.387200pt;}
._e{width:7.408640pt;}
._b{width:8.819200pt;}
._9{width:10.048000pt;}
._a{width:11.683840pt;}
._c{width:12.738560pt;}
._d{width:14.484480pt;}
._42{width:16.578560pt;}
._8{width:17.718187pt;}
._14{width:18.608640pt;}
._6{width:19.648000pt;}
._7{width:20.654507pt;}
._17{width:21.846187pt;}
._18{width:22.989653pt;}
._19{width:24.039680pt;}
._2a{width:25.479680pt;}
._1a{width:26.496000pt;}
._1b{width:27.511467pt;}
._20{width:28.603057pt;}
._f{width:29.760000pt;}
._10{width:30.704640pt;}
._25{width:45.795872pt;}
._21{width:61.355720pt;}
._41{width:71.603200pt;}
._22{width:77.318304pt;}
._31{width:79.662277pt;}
._23{width:87.133152pt;}
._2f{width:91.098385pt;}
._2d{width:94.540371pt;}
._2e{width:102.199202pt;}
._3e{width:172.740104pt;}
._35{width:190.625752pt;}
._3b{width:207.457370pt;}
._3d{width:210.262444pt;}
._1e{width:212.478568pt;}
._1f{width:214.882826pt;}
._3c{width:223.295592pt;}
._37{width:224.490901pt;}
._40{width:228.169624pt;}
._1d{width:230.192223pt;}
._2c{width:237.235149pt;}
._39{width:238.490366pt;}
._34{width:241.342520pt;}
._33{width:254.709455pt;}
._3a{width:260.562269pt;}
._32{width:274.214273pt;}
._38{width:275.757043pt;}
._36{width:276.937543pt;}
._3f{width:278.609197pt;}
._30{width:326.127160pt;}
._29{width:486.479155pt;}
._26{width:515.386666pt;}
._28{width:572.828794pt;}
._27{width:595.511861pt;}
._24{width:1010.116024pt;}
.fs8{font-size:26.880000pt;}
.fse{font-size:34.440375pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:37.895129pt;}
.fs10{font-size:41.369227pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:44.800000pt;}
.fs12{font-size:47.196155pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs13{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fsd{font-size:59.224718pt;}
.fsf{font-size:62.207377pt;}
.fs9{font-size:62.729850pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.924449pt;}
.fsc{font-size:70.085189pt;}
.fs5{font-size:74.240000pt;}
.fs11{font-size:85.760000pt;}
.y19b{bottom:-8.320000pt;}
.y1b5{bottom:-8.000000pt;}
.y1bd{bottom:-5.760000pt;}
.y199{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:0.092072pt;}
.yeb{bottom:0.092075pt;}
.yea{bottom:0.092079pt;}
.ye9{bottom:0.092082pt;}
.ye8{bottom:0.092085pt;}
.ye7{bottom:0.092089pt;}
.ye6{bottom:0.092092pt;}
.ye5{bottom:0.092096pt;}
.ye4{bottom:0.092099pt;}
.ye3{bottom:0.092102pt;}
.ye2{bottom:0.092106pt;}
.ye1{bottom:0.092109pt;}
.ye0{bottom:0.092113pt;}
.ydf{bottom:0.092116pt;}
.yde{bottom:0.092119pt;}
.ydd{bottom:0.092123pt;}
.ydc{bottom:0.092126pt;}
.ydb{bottom:0.092130pt;}
.yda{bottom:0.092133pt;}
.yd9{bottom:0.092136pt;}
.y18c{bottom:2.560000pt;}
.y1c0{bottom:2.586667pt;}
.y9{bottom:2.880000pt;}
.y82{bottom:2.883110pt;}
.y2f{bottom:3.200000pt;}
.yf5{bottom:3.520000pt;}
.yab{bottom:3.840000pt;}
.yb3{bottom:3.866667pt;}
.y88{bottom:4.196436pt;}
.y84{bottom:4.272635pt;}
.ya9{bottom:4.392015pt;}
.y137{bottom:6.080000pt;}
.y14b{bottom:6.106667pt;}
.y148{bottom:6.440000pt;}
.y85{bottom:8.351084pt;}
.ya{bottom:15.392000pt;}
.y8{bottom:15.712000pt;}
.y1f6{bottom:16.143923pt;}
.y13e{bottom:18.880000pt;}
.y144{bottom:21.800000pt;}
.y1fa{bottom:22.720000pt;}
.y1fe{bottom:23.040000pt;}
.y202{bottom:23.066667pt;}
.ya8{bottom:23.589607pt;}
.yb{bottom:27.200000pt;}
.y14a{bottom:27.226667pt;}
.y145{bottom:27.520000pt;}
.y147{bottom:27.560000pt;}
.y7{bottom:28.832000pt;}
.y1f5{bottom:30.318258pt;}
.y13d{bottom:40.040000pt;}
.ya7{bottom:42.821005pt;}
.y1fd{bottom:42.880000pt;}
.y201{bottom:42.906667pt;}
.y1f9{bottom:42.920000pt;}
.y139{bottom:48.320000pt;}
.y141{bottom:48.346667pt;}
.y6{bottom:50.880000pt;}
.y1f4{bottom:58.666926pt;}
.ya6{bottom:62.019129pt;}
.y1f3{bottom:72.877655pt;}
.yd1{bottom:77.246537pt;}
.ya5{bottom:81.250527pt;}
.y2e{bottom:81.312000pt;}
.y1f2{bottom:87.051990pt;}
.ya4{bottom:100.448648pt;}
.y1f1{bottom:101.226325pt;}
.yd2{bottom:103.977174pt;}
.y5{bottom:105.632000pt;}
.y1f0{bottom:115.400660pt;}
.ya3{bottom:119.646773pt;}
.y1cc{bottom:130.272000pt;}
.yd3{bottom:130.701767pt;}
.y169{bottom:132.192000pt;}
.y1c6{bottom:134.746667pt;}
.ya2{bottom:138.879505pt;}
.y62{bottom:138.906667pt;}
.ycf{bottom:141.466667pt;}
.y104{bottom:141.786667pt;}
.y44{bottom:143.066667pt;}
.y1ef{bottom:143.785724pt;}
.ya0{bottom:144.666667pt;}
.y187{bottom:145.946667pt;}
.y168{bottom:153.626667pt;}
.y124{bottom:153.946667pt;}
.y143{bottom:154.266667pt;}
.y1cb{bottom:155.546667pt;}
.yd4{bottom:157.396140pt;}
.y1c5{bottom:162.266667pt;}
.y61{bottom:166.746667pt;}
.y7f{bottom:167.386667pt;}
.yce{bottom:168.986667pt;}
.y103{bottom:169.306667pt;}
.y2c{bottom:170.586667pt;}
.y186{bottom:171.226667pt;}
.y1ee{bottom:172.138759pt;}
.y167{bottom:174.746667pt;}
.y9f{bottom:179.266667pt;}
.y1ca{bottom:181.186667pt;}
.y123{bottom:181.506667pt;}
.yd5{bottom:184.120733pt;}
.y1ed{bottom:186.302902pt;}
.y7a{bottom:188.546667pt;}
.y1c4{bottom:189.826667pt;}
.y142{bottom:191.106667pt;}
.y60{bottom:194.306667pt;}
.y166{bottom:195.906667pt;}
.y126{bottom:196.226667pt;}
.ycd{bottom:196.546667pt;}
.y102{bottom:197.186667pt;}
.y2b{bottom:198.146667pt;}
.y43{bottom:198.466667pt;}
.y7e{bottom:199.746667pt;}
.y7c{bottom:201.026667pt;}
.y7d{bottom:205.186667pt;}
.y7b{bottom:206.466667pt;}
.y122{bottom:209.026667pt;}
.yd6{bottom:210.845326pt;}
.y9e{bottom:213.826667pt;}
.y165{bottom:217.026667pt;}
.y1c3{bottom:217.346667pt;}
.y5f{bottom:221.826667pt;}
.y185{bottom:222.146667pt;}
.ycc{bottom:224.386667pt;}
.y101{bottom:224.706667pt;}
.y2a{bottom:225.986667pt;}
.y79{bottom:226.946667pt;}
.y1ec{bottom:228.868130pt;}
.y1c9{bottom:231.746667pt;}
.y125{bottom:236.226667pt;}
.y121{bottom:236.546667pt;}
.yd7{bottom:237.549772pt;}
.y164{bottom:238.146667pt;}
.y1c2{bottom:245.186667pt;}
.y184{bottom:247.426667pt;}
.y9d{bottom:248.066667pt;}
.y5e{bottom:249.346667pt;}
.ycb{bottom:251.906667pt;}
.y100{bottom:252.226667pt;}
.y29{bottom:253.506667pt;}
.y78{bottom:254.466667pt;}
.y140{bottom:254.786667pt;}
.y1c8{bottom:257.026667pt;}
.y1eb{bottom:257.210977pt;}
.y163{bottom:259.266667pt;}
.y120{bottom:264.066667pt;}
.yd8{bottom:264.173632pt;}
.y1ea{bottom:271.418794pt;}
.y1c1{bottom:271.746667pt;}
.y183{bottom:272.706667pt;}
.y5d{bottom:277.186667pt;}
.yca{bottom:279.426667pt;}
.yff{bottom:279.746667pt;}
.y162{bottom:280.386667pt;}
.y28{bottom:281.026667pt;}
.y77{bottom:282.306667pt;}
.y9c{bottom:282.626667pt;}
.yed{bottom:284.259867pt;}
.y1bf{bottom:285.506667pt;}
.y1e9{bottom:285.597496pt;}
.y1c7{bottom:286.786667pt;}
.y1cd{bottom:287.000000pt;}
.y11f{bottom:291.933333pt;}
.y182{bottom:298.013333pt;}
.y1e8{bottom:299.776198pt;}
.y1be{bottom:299.933333pt;}
.y161{bottom:301.533333pt;}
.y5c{bottom:304.733333pt;}
.yc9{bottom:306.973333pt;}
.yfe{bottom:307.613333pt;}
.y27{bottom:308.573333pt;}
.y42{bottom:308.893333pt;}
.y76{bottom:309.853333pt;}
.y9b{bottom:310.173333pt;}
.y1e7{bottom:313.954900pt;}
.y1bc{bottom:314.013333pt;}
.y13f{bottom:318.493333pt;}
.y11e{bottom:319.453333pt;}
.y160{bottom:322.653333pt;}
.y181{bottom:323.293333pt;}
.y1e6{bottom:328.119046pt;}
.y1bb{bottom:328.413333pt;}
.y5b{bottom:332.253333pt;}
.yc8{bottom:334.813333pt;}
.yfd{bottom:335.133333pt;}
.y26{bottom:336.413333pt;}
.y75{bottom:337.373333pt;}
.y9a{bottom:338.013333pt;}
.y1e5{bottom:342.326862pt;}
.y1ba{bottom:342.813333pt;}
.y15f{bottom:344.093333pt;}
.y11d{bottom:346.973333pt;}
.y180{bottom:348.573333pt;}
.y1e4{bottom:356.505564pt;}
.y1b9{bottom:357.213333pt;}
.y5a{bottom:359.773333pt;}
.y13c{bottom:361.053333pt;}
.yc7{bottom:362.333333pt;}
.yfc{bottom:362.653333pt;}
.y25{bottom:363.933333pt;}
.y74{bottom:364.893333pt;}
.y15e{bottom:365.213333pt;}
.y99{bottom:365.533333pt;}
.y1e3{bottom:370.684267pt;}
.y1b8{bottom:371.613333pt;}
.y17f{bottom:373.853333pt;}
.y11c{bottom:374.493333pt;}
.y1e2{bottom:384.862969pt;}
.y1b7{bottom:386.013333pt;}
.y15d{bottom:386.333333pt;}
.y59{bottom:387.613333pt;}
.yc6{bottom:389.853333pt;}
.yfb{bottom:390.173333pt;}
.y24{bottom:391.453333pt;}
.y73{bottom:392.733333pt;}
.y98{bottom:393.053333pt;}
.y1e1{bottom:399.070786pt;}
.y17e{bottom:399.133333pt;}
.y1b6{bottom:400.453333pt;}
.y11b{bottom:402.373333pt;}
.y15c{bottom:407.493333pt;}
.y1e0{bottom:413.234931pt;}
.y1b4{bottom:414.853333pt;}
.y58{bottom:415.173333pt;}
.y13b{bottom:416.453333pt;}
.yc5{bottom:417.413333pt;}
.y23{bottom:419.013333pt;}
.y41{bottom:419.333333pt;}
.y72{bottom:420.293333pt;}
.y1b3{bottom:423.493333pt;}
.yfa{bottom:423.813333pt;}
.y17d{bottom:424.453333pt;}
.y97{bottom:426.693333pt;}
.y1df{bottom:427.413634pt;}
.y15b{bottom:428.613333pt;}
.y1b2{bottom:429.253333pt;}
.y11a{bottom:429.893333pt;}
.y205{bottom:431.813333pt;}
.yf9{bottom:436.933333pt;}
.y1de{bottom:441.592336pt;}
.y57{bottom:442.693333pt;}
.y1b1{bottom:443.653333pt;}
.yc4{bottom:445.253333pt;}
.y22{bottom:446.853333pt;}
.y71{bottom:447.813333pt;}
.y15a{bottom:449.733333pt;}
.y96{bottom:454.533333pt;}
.ya1{bottom:454.732368pt;}
.y1dd{bottom:455.771038pt;}
.yf8{bottom:456.133333pt;}
.y119{bottom:457.413333pt;}
.y1b0{bottom:458.053333pt;}
.y1dc{bottom:469.978856pt;}
.y56{bottom:470.213333pt;}
.y159{bottom:470.853333pt;}
.y1af{bottom:472.453333pt;}
.yc3{bottom:472.773333pt;}
.y21{bottom:474.373333pt;}
.yf7{bottom:475.013333pt;}
.y70{bottom:475.333333pt;}
.y13a{bottom:480.133333pt;}
.y204{bottom:483.973333pt;}
.y1db{bottom:484.143000pt;}
.y118{bottom:484.933333pt;}
.y1ae{bottom:486.853333pt;}
.y158{bottom:491.973333pt;}
.yf6{bottom:494.213333pt;}
.y55{bottom:498.053333pt;}
.y1da{bottom:498.321703pt;}
.yc2{bottom:500.293333pt;}
.y1ad{bottom:501.253333pt;}
.y20{bottom:501.893333pt;}
.y6f{bottom:503.173333pt;}
.y1d9{bottom:512.500405pt;}
.y117{bottom:512.800000pt;}
.yf4{bottom:513.440000pt;}
.y1ac{bottom:515.680000pt;}
.y138{bottom:522.720000pt;}
.y54{bottom:525.600000pt;}
.y1d8{bottom:526.664552pt;}
.yc1{bottom:527.840000pt;}
.y1f{bottom:529.440000pt;}
.y40{bottom:529.760000pt;}
.y1ab{bottom:530.080000pt;}
.y6e{bottom:530.720000pt;}
.yf3{bottom:532.320000pt;}
.y157{bottom:534.560000pt;}
.y116{bottom:540.320000pt;}
.y1d7{bottom:540.886923pt;}
.y1aa{bottom:544.480000pt;}
.y203{bottom:548.640000pt;}
.y17c{bottom:550.880000pt;}
.y53{bottom:553.120000pt;}
.yc0{bottom:555.360000pt;}
.y156{bottom:555.680000pt;}
.y1e{bottom:557.280000pt;}
.y6d{bottom:558.240000pt;}
.y1a9{bottom:558.880000pt;}
.yf2{bottom:564.000000pt;}
.y115{bottom:567.840000pt;}
.y1d6{bottom:569.229772pt;}
.y1a8{bottom:573.280000pt;}
.y17b{bottom:576.160000pt;}
.y155{bottom:576.800000pt;}
.y52{bottom:580.640000pt;}
.ybf{bottom:583.200000pt;}
.y1d{bottom:584.800000pt;}
.y6c{bottom:585.760000pt;}
.y136{bottom:586.400000pt;}
.y1a7{bottom:587.680000pt;}
.yf1{bottom:591.520000pt;}
.y114{bottom:595.360000pt;}
.y1d5{bottom:597.616289pt;}
.y154{bottom:597.920000pt;}
.y17a{bottom:601.440000pt;}
.y1a6{bottom:602.080000pt;}
.y1c{bottom:606.880000pt;}
.y51{bottom:608.480000pt;}
.ybe{bottom:610.720000pt;}
.y3f{bottom:612.320000pt;}
.y200{bottom:613.280000pt;}
.y6b{bottom:613.600000pt;}
.y1a5{bottom:616.480000pt;}
.yf0{bottom:619.040000pt;}
.y113{bottom:623.226667pt;}
.y1d4{bottom:625.959141pt;}
.y179{bottom:626.746667pt;}
.y95{bottom:628.026667pt;}
.y1b{bottom:630.586667pt;}
.y1a4{bottom:630.906667pt;}
.y135{bottom:635.066667pt;}
.y50{bottom:636.026667pt;}
.ybd{bottom:638.266667pt;}
.y1d3{bottom:640.137843pt;}
.y3e{bottom:640.186667pt;}
.y6a{bottom:641.146667pt;}
.y1a3{bottom:645.306667pt;}
.y178{bottom:646.266667pt;}
.y112{bottom:650.746667pt;}
.yef{bottom:652.666667pt;}
.y1d2{bottom:654.316546pt;}
.y94{bottom:655.866667pt;}
.y134{bottom:656.186667pt;}
.y1a{bottom:658.106667pt;}
.y1a2{bottom:659.706667pt;}
.y153{bottom:661.306667pt;}
.y4f{bottom:663.546667pt;}
.y177{bottom:665.786667pt;}
.y3d{bottom:667.706667pt;}
.y1d1{bottom:668.524362pt;}
.y69{bottom:668.666667pt;}
.ybc{bottom:671.866667pt;}
.y1a1{bottom:674.106667pt;}
.yd0{bottom:675.066594pt;}
.yee{bottom:675.066667pt;}
.y133{bottom:677.306667pt;}
.y111{bottom:678.266667pt;}
.y1d0{bottom:682.703065pt;}
.y152{bottom:682.746667pt;}
.y93{bottom:683.386667pt;}
.ybb{bottom:684.986667pt;}
.y19{bottom:685.626667pt;}
.y1a0{bottom:688.506667pt;}
.y4e{bottom:691.066667pt;}
.y3c{bottom:695.226667pt;}
.y68{bottom:696.186667pt;}
.y1cf{bottom:696.867210pt;}
.y1ff{bottom:698.106667pt;}
.y132{bottom:698.426667pt;}
.y19f{bottom:702.906667pt;}
.y151{bottom:703.866667pt;}
.yba{bottom:704.826667pt;}
.y110{bottom:705.786667pt;}
.y18{bottom:706.426667pt;}
.y92{bottom:710.906667pt;}
.y1ce{bottom:711.045912pt;}
.y19e{bottom:717.306667pt;}
.y4d{bottom:718.586667pt;}
.y131{bottom:719.546667pt;}
.y3b{bottom:722.746667pt;}
.y67{bottom:724.026667pt;}
.yb9{bottom:724.666667pt;}
.y150{bottom:724.986667pt;}
.y17{bottom:725.946667pt;}
.y19d{bottom:731.706667pt;}
.y10f{bottom:733.626667pt;}
.y91{bottom:738.466667pt;}
.y19c{bottom:740.386667pt;}
.y130{bottom:740.706667pt;}
.yb8{bottom:744.546667pt;}
.y16{bottom:745.186667pt;}
.y14f{bottom:746.146667pt;}
.y4c{bottom:746.466667pt;}
.y176{bottom:747.426667pt;}
.y3a{bottom:750.626667pt;}
.y66{bottom:752.226667pt;}
.y19a{bottom:760.546667pt;}
.y10e{bottom:761.186667pt;}
.y12f{bottom:762.146667pt;}
.yb7{bottom:764.386667pt;}
.y15{bottom:764.706667pt;}
.y90{bottom:766.306667pt;}
.y14e{bottom:767.266667pt;}
.y175{bottom:768.546667pt;}
.y198{bottom:769.186667pt;}
.y4b{bottom:773.986667pt;}
.y197{bottom:774.946667pt;}
.y39{bottom:778.146667pt;}
.y1fc{bottom:782.626667pt;}
.y12e{bottom:783.266667pt;}
.yb6{bottom:784.226667pt;}
.y65{bottom:786.466667pt;}
.y14d{bottom:788.386667pt;}
.y10d{bottom:788.706667pt;}
.y196{bottom:789.346667pt;}
.y174{bottom:789.666667pt;}
.y14{bottom:790.946667pt;}
.y8f{bottom:793.826667pt;}
.y4a{bottom:801.506667pt;}
.y14c{bottom:803.426667pt;}
.y195{bottom:803.746667pt;}
.yb5{bottom:804.386667pt;}
.y38{bottom:805.666667pt;}
.y173{bottom:810.786667pt;}
.y64{bottom:813.666667pt;}
.y10c{bottom:816.226667pt;}
.y194{bottom:818.146667pt;}
.y13{bottom:818.466667pt;}
.y8e{bottom:821.346667pt;}
.yb4{bottom:824.226667pt;}
.y12d{bottom:825.506667pt;}
.y49{bottom:829.026667pt;}
.y172{bottom:831.906667pt;}
.y193{bottom:832.546667pt;}
.y37{bottom:833.186667pt;}
.y63{bottom:833.826667pt;}
.y12{bottom:839.266667pt;}
.yb2{bottom:844.066667pt;}
.y149{bottom:845.986667pt;}
.y12c{bottom:846.653333pt;}
.y192{bottom:846.973333pt;}
.y8d{bottom:848.893333pt;}
.y171{bottom:853.053333pt;}
.y48{bottom:856.893333pt;}
.y11{bottom:859.133333pt;}
.y36{bottom:861.053333pt;}
.y191{bottom:861.373333pt;}
.yb1{bottom:863.933333pt;}
.y1fb{bottom:867.453333pt;}
.y12b{bottom:867.773333pt;}
.y170{bottom:874.173333pt;}
.y190{bottom:875.773333pt;}
.y8c{bottom:876.733333pt;}
.y10b{bottom:877.373333pt;}
.yb0{bottom:883.773333pt;}
.y47{bottom:884.413333pt;}
.y35{bottom:888.573333pt;}
.y12a{bottom:888.893333pt;}
.y18f{bottom:890.173333pt;}
.y10a{bottom:890.493333pt;}
.y16f{bottom:895.293333pt;}
.y10{bottom:897.213333pt;}
.yaf{bottom:903.613333pt;}
.y8b{bottom:904.253333pt;}
.y18e{bottom:904.573333pt;}
.y129{bottom:910.013333pt;}
.y109{bottom:910.653333pt;}
.y46{bottom:911.933333pt;}
.y34{bottom:916.093333pt;}
.y16e{bottom:916.733333pt;}
.y18d{bottom:918.973333pt;}
.yae{bottom:923.453333pt;}
.yf{bottom:929.213333pt;}
.y108{bottom:930.493333pt;}
.y128{bottom:931.453333pt;}
.y8a{bottom:931.773333pt;}
.y1f8{bottom:932.093333pt;}
.y18b{bottom:933.373333pt;}
.y16d{bottom:937.853333pt;}
.y45{bottom:939.453333pt;}
.yad{bottom:943.293333pt;}
.y33{bottom:943.613333pt;}
.y107{bottom:950.333333pt;}
.y146{bottom:952.253333pt;}
.ye{bottom:952.573333pt;}
.y16c{bottom:959.013333pt;}
.y89{bottom:959.333333pt;}
.y18a{bottom:960.293333pt;}
.yac{bottom:963.173333pt;}
.y32{bottom:967.333333pt;}
.y106{bottom:970.213333pt;}
.y127{bottom:973.733333pt;}
.yd{bottom:974.053333pt;}
.y16b{bottom:980.133333pt;}
.yaa{bottom:983.013333pt;}
.y87{bottom:983.533261pt;}
.y189{bottom:986.853333pt;}
.y86{bottom:987.813333pt;}
.y105{bottom:990.053333pt;}
.yc{bottom:992.293333pt;}
.y31{bottom:994.853333pt;}
.y16a{bottom:1001.253333pt;}
.y4{bottom:1010.853333pt;}
.y83{bottom:1012.666667pt;}
.y1f7{bottom:1016.933333pt;}
.y188{bottom:1017.253333pt;}
.y81{bottom:1018.066594pt;}
.y80{bottom:1020.773333pt;}
.y30{bottom:1022.373333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y2d{bottom:1062.373333pt;}
.h36{height:2.880000pt;}
.h37{height:3.200000pt;}
.h38{height:5.440000pt;}
.h35{height:5.760000pt;}
.h32{height:14.400000pt;}
.h34{height:14.432000pt;}
.hd{height:14.752000pt;}
.h19{height:15.332742pt;}
.h14{height:17.266556pt;}
.h25{height:18.240000pt;}
.h26{height:18.272000pt;}
.h24{height:18.560000pt;}
.h1e{height:19.200000pt;}
.h1f{height:19.232000pt;}
.h3b{height:19.840000pt;}
.h30{height:21.120000pt;}
.h16{height:24.600511pt;}
.h21{height:25.174434pt;}
.h23{height:30.239127pt;}
.h13{height:33.337500pt;}
.h17{height:33.972391pt;}
.h3a{height:34.498361pt;}
.h2d{height:36.832000pt;}
.h6{height:39.072000pt;}
.h3f{height:40.000000pt;}
.h42{height:40.032000pt;}
.h7{height:42.013125pt;}
.h2b{height:42.240000pt;}
.h28{height:42.272000pt;}
.h2e{height:42.560000pt;}
.h2f{height:42.592000pt;}
.h12{height:42.862500pt;}
.hb{height:43.201250pt;}
.h15{height:43.555589pt;}
.h33{height:43.605000pt;}
.h22{height:45.470920pt;}
.h1b{height:47.748750pt;}
.h8{height:48.378750pt;}
.h1a{height:48.662665pt;}
.h3e{height:50.490000pt;}
.h3c{height:50.957500pt;}
.h3{height:52.296250pt;}
.h27{height:52.750000pt;}
.h4{height:52.785000pt;}
.h18{height:53.511948pt;}
.hc{height:55.046250pt;}
.h2a{height:55.072000pt;}
.h2{height:56.843750pt;}
.ha{height:57.375000pt;}
.he{height:57.906250pt;}
.h5{height:58.563750pt;}
.h1d{height:58.906617pt;}
.h3d{height:59.872000pt;}
.h40{height:60.160000pt;}
.h41{height:60.192000pt;}
.h11{height:60.325000pt;}
.h29{height:63.360000pt;}
.h2c{height:63.392000pt;}
.h9{height:65.938750pt;}
.h31{height:76.170625pt;}
.hf{height:79.375000pt;}
.h1c{height:153.678198pt;}
.h10{height:160.015000pt;}
.h20{height:293.728836pt;}
.h39{height:722.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:13.400268pt;}
.w7{width:15.333079pt;}
.w8{width:17.266670pt;}
.w4{width:35.232000pt;}
.w1c{width:64.672000pt;}
.w1e{width:71.392000pt;}
.w1b{width:78.112000pt;}
.w1f{width:78.432000pt;}
.we{width:82.272000pt;}
.w17{width:82.304000pt;}
.wd{width:82.592000pt;}
.wb{width:93.792000pt;}
.w22{width:102.144000pt;}
.w11{width:119.104000pt;}
.wc{width:122.624000pt;}
.w16{width:122.912000pt;}
.w15{width:122.944000pt;}
.wf{width:136.386667pt;}
.w1d{width:137.346667pt;}
.w20{width:156.546667pt;}
.w14{width:173.826667pt;}
.w13{width:251.293333pt;}
.w1a{width:287.173333pt;}
.w6{width:295.813333pt;}
.w5{width:309.253333pt;}
.w21{width:421.400000pt;}
.w12{width:425.760000pt;}
.w19{width:429.946667pt;}
.w23{width:528.826667pt;}
.wa{width:540.200442pt;}
.w3{width:569.826667pt;}
.w10{width:598.718905pt;}
.w18{width:616.253333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5f{left:0.960000pt;}
.x27{left:2.517831pt;}
.x31{left:4.480000pt;}
.x47{left:6.720000pt;}
.x10{left:7.680000pt;}
.x7{left:9.320000pt;}
.x2a{left:10.247118pt;}
.x5b{left:12.800000pt;}
.x64{left:15.360000pt;}
.x60{left:19.520000pt;}
.x5e{left:22.720000pt;}
.x5c{left:24.960000pt;}
.x61{left:25.920000pt;}
.x5d{left:26.880000pt;}
.x71{left:27.996784pt;}
.x6a{left:31.360000pt;}
.x55{left:32.320000pt;}
.x67{left:33.632000pt;}
.x58{left:35.520000pt;}
.x69{left:38.080000pt;}
.x53{left:39.040000pt;}
.x70{left:41.213834pt;}
.x66{left:42.914667pt;}
.x6f{left:45.208516pt;}
.x5a{left:46.434667pt;}
.x4f{left:47.706667pt;}
.x6c{left:50.001544pt;}
.x63{left:50.914667pt;}
.x4d{left:52.186667pt;}
.x36{left:53.268997pt;}
.x6e{left:54.794574pt;}
.x65{left:56.034667pt;}
.x74{left:58.789262pt;}
.x62{left:60.194667pt;}
.x2f{left:63.164953pt;}
.x68{left:64.354667pt;}
.x6d{left:67.177796pt;}
.x56{left:68.514667pt;}
.xf{left:74.591988pt;}
.x37{left:81.289027pt;}
.x4e{left:88.040000pt;}
.x4c{left:92.520000pt;}
.x17{left:93.471988pt;}
.x1{left:94.431988pt;}
.x50{left:96.031988pt;}
.x73{left:98.369448pt;}
.x30{left:99.872000pt;}
.x35{left:103.746667pt;}
.x6b{left:105.159814pt;}
.x1b{left:109.791988pt;}
.x16{left:117.503988pt;}
.x14{left:118.463988pt;}
.x5{left:128.381333pt;}
.xa{left:129.663988pt;}
.xb{left:136.706655pt;}
.x26{left:138.093324pt;}
.x15{left:141.506655pt;}
.x13{left:142.466655pt;}
.x28{left:153.346655pt;}
.x38{left:165.753041pt;}
.x72{left:168.347373pt;}
.x45{left:179.339108pt;}
.xe{left:189.506655pt;}
.x32{left:193.986667pt;}
.x75{left:197.853333pt;}
.x2{left:214.813322pt;}
.x1c{left:217.053322pt;}
.x1d{left:222.173322pt;}
.x49{left:223.453333pt;}
.x76{left:225.666667pt;}
.x57{left:234.013333pt;}
.x18{left:237.533322pt;}
.x39{left:250.178846pt;}
.xd{left:263.773322pt;}
.x12{left:269.893333pt;}
.x3a{left:278.362630pt;}
.x59{left:305.413333pt;}
.x3b{left:306.564608pt;}
.x19{left:316.293322pt;}
.x1e{left:335.493322pt;}
.x1f{left:340.613322pt;}
.x4a{left:346.693333pt;}
.x51{left:358.239988pt;}
.x3c{left:362.841200pt;}
.x52{left:383.840000pt;}
.x29{left:387.359964pt;}
.x3d{left:391.024983pt;}
.x9{left:396.959988pt;}
.x4{left:397.919988pt;}
.x33{left:399.840000pt;}
.x11{left:403.680000pt;}
.x2b{left:404.639988pt;}
.x1a{left:415.519988pt;}
.x3e{left:419.045013pt;}
.x20{left:428.959988pt;}
.x2c{left:432.826630pt;}
.x21{left:434.106655pt;}
.x2d{left:446.266655pt;}
.x3f{left:447.246991pt;}
.x54{left:461.946667pt;}
.x48{left:466.746667pt;}
.x40{left:475.448969pt;}
.x34{left:482.426667pt;}
.x8{left:484.666655pt;}
.x41{left:503.523583pt;}
.x22{left:511.586655pt;}
.x23{left:516.706655pt;}
.x42{left:531.707366pt;}
.x43{left:559.909344pt;}
.x44{left:587.929374pt;}
.x24{left:591.293322pt;}
.x4b{left:594.813333pt;}
.x25{left:596.413322pt;}
.x3{left:619.133322pt;}
.x2e{left:635.133322pt;}
.x6{left:664.253333pt;}
.x46{left:693.413322pt;}
.xc{left:699.493322pt;}
}




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