
    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_95505b2d43e91ffa4d2f59c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.770020;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_1c7254c0a6660074728bdda2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980469;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_d157abe34235ff3030706155.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_d7c4c54c1aaec443de45b940.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6a637b83eb9b387d2f543518.woff2')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_cb5d91709b19c5bf6050095f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8cc5bf7452c1ae1000aebfaa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58008252bc00d931a702f948.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_c1d2b15696629918e0575463.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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_d7b22eeff0db1b841a0786fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_8b9134b6df49797a2986756b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_06692fc238a6b814020002f7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m0{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v4{vertical-align:-12.000000px;}
.v5{vertical-align:-6.000000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.200000px;}
.v1{vertical-align:3.600000px;}
.ls2f{letter-spacing:-1.734000px;}
.ls57{letter-spacing:-1.704000px;}
.ls51{letter-spacing:-1.344000px;}
.ls11{letter-spacing:-1.200000px;}
.ls56{letter-spacing:-0.624000px;}
.ls10{letter-spacing:-0.594000px;}
.ls48{letter-spacing:-0.552000px;}
.ls43{letter-spacing:-0.504000px;}
.ls40{letter-spacing:-0.462000px;}
.lsf{letter-spacing:-0.456000px;}
.ls2e{letter-spacing:-0.426000px;}
.ls33{letter-spacing:-0.306000px;}
.ls22{letter-spacing:-0.300000px;}
.ls41{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.186000px;}
.ls35{letter-spacing:-0.162000px;}
.ls2d{letter-spacing:-0.150000px;}
.ls47{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.054000px;}
.ls3e{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.072000px;}
.ls3b{letter-spacing:0.114000px;}
.ls15{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.132000px;}
.ls45{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.168000px;}
.ls2b{letter-spacing:0.204000px;}
.ls3{letter-spacing:0.216000px;}
.ls58{letter-spacing:0.276000px;}
.ls38{letter-spacing:0.306000px;}
.ls31{letter-spacing:0.312000px;}
.ls1d{letter-spacing:0.366000px;}
.ls8{letter-spacing:0.372000px;}
.ls3d{letter-spacing:0.402000px;}
.ls20{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.456000px;}
.ls53{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.600000px;}
.ls52{letter-spacing:0.696000px;}
.ls42{letter-spacing:0.708000px;}
.ls50{letter-spacing:0.828000px;}
.ls32{letter-spacing:1.014000px;}
.ls39{letter-spacing:1.566000px;}
.ls1f{letter-spacing:1.572000px;}
.ls4f{letter-spacing:1.728000px;}
.ls4a{letter-spacing:1.908000px;}
.ls4d{letter-spacing:2.928000px;}
.ls27{letter-spacing:2.952000px;}
.ls4c{letter-spacing:5.268000px;}
.ls36{letter-spacing:6.156000px;}
.ls2{letter-spacing:6.168000px;}
.ls4{letter-spacing:6.360000px;}
.ls17{letter-spacing:6.372000px;}
.ls1{letter-spacing:6.528000px;}
.ls37{letter-spacing:7.332000px;}
.ls44{letter-spacing:9.984000px;}
.ls4b{letter-spacing:10.128000px;}
.ls12{letter-spacing:11.232000px;}
.ls49{letter-spacing:11.328000px;}
.ls1b{letter-spacing:14.772000px;}
.ls1c{letter-spacing:14.832000px;}
.lse{letter-spacing:14.928000px;}
.ls28{letter-spacing:17.172000px;}
.ls4e{letter-spacing:17.328000px;}
.ls14{letter-spacing:18.312000px;}
.ls26{letter-spacing:18.372000px;}
.ls25{letter-spacing:23.172000px;}
.ls30{letter-spacing:24.372000px;}
.ls34{letter-spacing:26.772000px;}
.ls54{letter-spacing:26.928000px;}
.lsc{letter-spacing:28.068000px;}
.ls55{letter-spacing:28.128000px;}
.ls13{letter-spacing:31.572000px;}
.ls24{letter-spacing:36.372000px;}
.ls2a{letter-spacing:43.572000px;}
.lsd{letter-spacing:46.188000px;}
.ls16{letter-spacing:49.116000px;}
.ls18{letter-spacing:50.772000px;}
.ls1a{letter-spacing:51.972000px;}
.ls29{letter-spacing:56.772000px;}
.ls46{letter-spacing:58.164000px;}
.ls2c{letter-spacing:69.252000px;}
.ls1e{letter-spacing:98.892000px;}
.ls3f{letter-spacing:849.414000px;}
.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;}
}
.ws0{word-spacing:-125.984909px;}
.ws4{word-spacing:-29.832000px;}
.ws7{word-spacing:-24.624000px;}
.ws6{word-spacing:-24.408000px;}
.ws5{word-spacing:-24.288000px;}
.ws3{word-spacing:-22.632000px;}
.ws8{word-spacing:-21.696000px;}
.wsc{word-spacing:-18.984000px;}
.ws10{word-spacing:-18.642000px;}
.wsd{word-spacing:-17.994000px;}
.wse{word-spacing:-17.682000px;}
.wsa{word-spacing:-17.628000px;}
.wsf{word-spacing:-17.478000px;}
.ws13{word-spacing:-17.430000px;}
.ws11{word-spacing:-17.322000px;}
.ws12{word-spacing:-17.166000px;}
.wsb{word-spacing:-17.034000px;}
.ws17{word-spacing:-16.968000px;}
.ws9{word-spacing:-16.728000px;}
.ws2{word-spacing:-16.272000px;}
.ws16{word-spacing:-16.152000px;}
.ws19{word-spacing:-15.816000px;}
.ws14{word-spacing:-15.768000px;}
.ws15{word-spacing:-15.720000px;}
.ws18{word-spacing:-15.648000px;}
.ws1b{word-spacing:-14.916000px;}
.ws1a{word-spacing:-14.568000px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-1432.161167px;}
._f{margin-left:-97.933109px;}
._6{margin-left:-95.965225px;}
._2{margin-left:-94.550414px;}
._d{margin-left:-92.863476px;}
._15{margin-left:-90.799843px;}
._1b{margin-left:-89.198575px;}
._3{margin-left:-87.476362px;}
._1d{margin-left:-85.485800px;}
._1c{margin-left:-83.664058px;}
._24{margin-left:-82.517695px;}
._21{margin-left:-81.330818px;}
._22{margin-left:-72.714710px;}
._10{margin-left:-69.451701px;}
._12{margin-left:-68.345553px;}
._14{margin-left:-66.620820px;}
._5{margin-left:-64.714668px;}
._13{margin-left:-63.668993px;}
._1{margin-left:-62.499853px;}
._8{margin-left:-61.455439px;}
._1a{margin-left:-59.797477px;}
._11{margin-left:-58.071484px;}
._1f{margin-left:-56.720926px;}
._0{margin-left:-55.118398px;}
._e{margin-left:-52.927520px;}
._a{margin-left:-51.292236px;}
._1e{margin-left:-49.974434px;}
._4{margin-left:-48.536946px;}
._b{margin-left:-46.802134px;}
._9{margin-left:-45.447796px;}
._18{margin-left:-43.798654px;}
._23{margin-left:-42.728704px;}
._16{margin-left:-41.713603px;}
._7{margin-left:-37.339407px;}
._19{margin-left:-33.956712px;}
._17{margin-left:-31.003626px;}
._c{margin-left:-27.901878px;}
._3a{margin-left:-3.966000px;}
._2b{margin-left:-2.574000px;}
._29{margin-left:-1.020000px;}
._2a{width:1.104000px;}
._2c{width:2.166000px;}
._2d{width:3.600000px;}
._26{width:4.800000px;}
._25{width:6.384000px;}
._27{width:7.824000px;}
._28{width:9.312000px;}
._2f{width:10.980000px;}
._2e{width:12.162000px;}
._41{width:13.398000px;}
._3b{width:14.688000px;}
._3f{width:15.762000px;}
._36{width:17.322000px;}
._30{width:18.720000px;}
._31{width:20.322000px;}
._3c{width:21.564000px;}
._49{width:23.556000px;}
._4d{width:24.930000px;}
._50{width:26.058000px;}
._34{width:27.144000px;}
._35{width:28.320000px;}
._6b{width:29.748000px;}
._37{width:30.816000px;}
._38{width:31.962000px;}
._65{width:33.204000px;}
._4f{width:35.178000px;}
._48{width:36.618000px;}
._44{width:37.758000px;}
._33{width:39.384000px;}
._32{width:40.464000px;}
._3e{width:41.580000px;}
._3d{width:42.666000px;}
._40{width:44.046000px;}
._39{width:45.840000px;}
._66{width:47.100000px;}
._67{width:48.438000px;}
._43{width:50.004000px;}
._42{width:51.294000px;}
._45{width:52.338000px;}
._62{width:53.808000px;}
._4a{width:55.572000px;}
._4b{width:56.958000px;}
._60{width:58.032000px;}
._4c{width:60.066000px;}
._58{width:61.296000px;}
._57{width:62.784000px;}
._68{width:63.852000px;}
._5c{width:65.532000px;}
._5d{width:66.972000px;}
._4e{width:68.766000px;}
._59{width:77.952000px;}
._52{width:87.480000px;}
._53{width:88.848000px;}
._64{width:91.944000px;}
._63{width:93.630000px;}
._47{width:95.634000px;}
._46{width:97.968000px;}
._61{width:105.984000px;}
._6a{width:116.376000px;}
._69{width:117.648000px;}
._5a{width:120.972000px;}
._5b{width:122.400000px;}
._54{width:146.424000px;}
._5f{width:153.000000px;}
._5e{width:154.140000px;}
._56{width:165.744000px;}
._55{width:166.824000px;}
._51{width:845.346000px;}
.fc3{color:rgb(8,8,9);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:108.001498px;}
.fs0{font-size:125.984909px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y124{bottom:3.900000px;}
.y12e{bottom:4.800000px;}
.y148{bottom:4.815000px;}
.y126{bottom:5.100000px;}
.y133{bottom:5.400000px;}
.y139{bottom:5.700000px;}
.y141{bottom:5.715000px;}
.yce{bottom:8.100000px;}
.ya5{bottom:8.400000px;}
.y12b{bottom:12.600000px;}
.yf3{bottom:14.085000px;}
.y62{bottom:14.100000px;}
.y67{bottom:14.115000px;}
.yfd{bottom:14.130000px;}
.yf9{bottom:14.145000px;}
.y7d{bottom:14.385000px;}
.y5f{bottom:14.400000px;}
.y65{bottom:14.415000px;}
.y81{bottom:14.430000px;}
.y12a{bottom:20.100000px;}
.y127{bottom:22.500000px;}
.y135{bottom:26.100000px;}
.y130{bottom:26.130000px;}
.y13b{bottom:26.400000px;}
.y13e{bottom:26.415000px;}
.y136{bottom:26.700000px;}
.y131{bottom:26.730000px;}
.y13c{bottom:27.000000px;}
.y14b{bottom:27.615000px;}
.ycd{bottom:29.700000px;}
.ya4{bottom:30.045000px;}
.yf2{bottom:37.785000px;}
.y101{bottom:37.800000px;}
.y7c{bottom:38.085000px;}
.yed{bottom:38.100000px;}
.y103{bottom:38.115000px;}
.yfc{bottom:38.130000px;}
.yf8{bottom:38.145000px;}
.y61{bottom:38.700000px;}
.y5e{bottom:38.730000px;}
.y84{bottom:38.985000px;}
.yd4{bottom:39.015000px;}
.y80{bottom:39.030000px;}
.y128{bottom:39.315000px;}
.yaa{bottom:42.030000px;}
.y146{bottom:48.045000px;}
.y147{bottom:48.645000px;}
.y100{bottom:52.800000px;}
.ycc{bottom:57.330000px;}
.ya3{bottom:57.630000px;}
.yf1{bottom:61.785000px;}
.yec{bottom:61.800000px;}
.y7b{bottom:61.830000px;}
.yf7{bottom:61.845000px;}
.y110{bottom:62.115000px;}
.y97{bottom:63.285000px;}
.y64{bottom:63.300000px;}
.y5d{bottom:63.330000px;}
.y7f{bottom:63.630000px;}
.ya9{bottom:66.330000px;}
.ycb{bottom:78.930000px;}
.yf0{bottom:85.485000px;}
.yeb{bottom:85.500000px;}
.yfb{bottom:85.530000px;}
.yf6{bottom:85.545000px;}
.y117{bottom:85.800000px;}
.y7a{bottom:85.830000px;}
.y114{bottom:85.845000px;}
.y10f{bottom:86.400000px;}
.y1{bottom:87.845933px;}
.ya8{bottom:87.930000px;}
.y5c{bottom:87.945000px;}
.ya2{bottom:88.245000px;}
.y96{bottom:88.785000px;}
.y17e{bottom:90.000000px;}
.y1ae{bottom:91.800000px;}
.y11a{bottom:99.000000px;}
.y123{bottom:100.245000px;}
.y59{bottom:102.300000px;}
.y14e{bottom:103.200000px;}
.yac{bottom:105.600000px;}
.yca{bottom:106.530000px;}
.y104{bottom:108.300000px;}
.yff{bottom:109.200000px;}
.yef{bottom:109.230000px;}
.y82{bottom:109.500000px;}
.yea{bottom:109.530000px;}
.y113{bottom:109.545000px;}
.y79{bottom:109.830000px;}
.y10e{bottom:110.400000px;}
.y2f{bottom:111.000000px;}
.y1bb{bottom:111.300000px;}
.y5b{bottom:112.530000px;}
.y17d{bottom:112.800000px;}
.y1ad{bottom:114.600000px;}
.ya7{bottom:115.530000px;}
.y119{bottom:116.100000px;}
.y58{bottom:120.600000px;}
.y122{bottom:123.045000px;}
.ya1{bottom:124.545000px;}
.yc9{bottom:128.145000px;}
.y1e3{bottom:129.000000px;}
.y99{bottom:132.000000px;}
.ye9{bottom:133.230000px;}
.y10d{bottom:134.145000px;}
.y17c{bottom:135.300000px;}
.y1ba{bottom:136.500000px;}
.y1ac{bottom:137.100000px;}
.y57{bottom:138.900000px;}
.y14d{bottom:139.800000px;}
.y2e{bottom:140.400000px;}
.y78{bottom:143.430000px;}
.y95{bottom:146.130000px;}
.y1e2{bottom:147.900000px;}
.ya0{bottom:149.130000px;}
.y14c{bottom:152.400000px;}
.y7e{bottom:152.700000px;}
.yc8{bottom:155.430000px;}
.y56{bottom:157.200000px;}
.y116{bottom:157.230000px;}
.y10c{bottom:157.845000px;}
.y17b{bottom:158.130000px;}
.y1ab{bottom:159.930000px;}
.y1b9{bottom:161.730000px;}
.y1e1{bottom:166.830000px;}
.y77{bottom:167.430000px;}
.y2d{bottom:169.830000px;}
.y94{bottom:170.730000px;}
.y9f{bottom:173.775000px;}
.y55{bottom:175.545000px;}
.y14a{bottom:175.830000px;}
.yc7{bottom:177.030000px;}
.y17a{bottom:180.930000px;}
.y10b{bottom:181.845000px;}
.y1aa{bottom:182.745000px;}
.y1e0{bottom:185.730000px;}
.y1b8{bottom:186.930000px;}
.y93{bottom:195.030000px;}
.y9e{bottom:195.375000px;}
.y54{bottom:198.330000px;}
.y2c{bottom:199.230000px;}
.y76{bottom:201.030000px;}
.y179{bottom:203.445000px;}
.yc6{bottom:204.675000px;}
.y1a9{bottom:205.530000px;}
.y10a{bottom:205.545000px;}
.y1df{bottom:207.030000px;}
.y1b7{bottom:209.130000px;}
.y92{bottom:219.630000px;}
.y149{bottom:221.730000px;}
.y102{bottom:222.330000px;}
.y9d{bottom:222.975000px;}
.y53{bottom:223.545000px;}
.y75{bottom:224.760000px;}
.y178{bottom:226.230000px;}
.yc5{bottom:226.275000px;}
.y2b{bottom:227.445000px;}
.y1a8{bottom:228.030000px;}
.y118{bottom:229.830000px;}
.y108{bottom:230.145000px;}
.y109{bottom:230.445000px;}
.y1b6{bottom:231.930000px;}
.y1de{bottom:232.230000px;}
.ye5{bottom:232.830000px;}
.y68{bottom:245.130000px;}
.y6d{bottom:245.145000px;}
.y52{bottom:245.430000px;}
.y9{bottom:245.513524px;}
.y9c{bottom:247.275000px;}
.y74{bottom:248.760000px;}
.y177{bottom:249.030000px;}
.y1a7{bottom:250.830000px;}
.y2a{bottom:252.630000px;}
.y91{bottom:253.260000px;}
.y107{bottom:253.845000px;}
.yc4{bottom:253.875000px;}
.y1dd{bottom:254.130000px;}
.y1b5{bottom:254.445000px;}
.ye4{bottom:258.030000px;}
.y51{bottom:267.330000px;}
.y145{bottom:268.830000px;}
.y176{bottom:271.830000px;}
.y9b{bottom:271.875000px;}
.y29{bottom:273.330000px;}
.y1a6{bottom:273.630000px;}
.yc3{bottom:275.175000px;}
.y1dc{bottom:276.030000px;}
.y1b4{bottom:276.330000px;}
.y90{bottom:276.960000px;}
.y8{bottom:278.509601px;}
.ye3{bottom:282.630000px;}
.y73{bottom:282.675000px;}
.y50{bottom:289.530000px;}
.y175{bottom:294.330000px;}
.y1a5{bottom:296.130000px;}
.y1b3{bottom:297.330000px;}
.y1db{bottom:297.945000px;}
.y8f{bottom:300.660000px;}
.y9a{bottom:302.475000px;}
.yc2{bottom:302.775000px;}
.y72{bottom:306.360000px;}
.ye2{bottom:307.275000px;}
.y4f{bottom:311.475000px;}
.y7{bottom:311.505679px;}
.yfe{bottom:312.675000px;}
.y174{bottom:317.175000px;}
.y1a4{bottom:318.975000px;}
.y1da{bottom:320.175000px;}
.y1b2{bottom:320.475000px;}
.yc1{bottom:324.375000px;}
.y8e{bottom:324.660000px;}
.y71{bottom:330.360000px;}
.ye1{bottom:331.875000px;}
.y4e{bottom:333.375000px;}
.y144{bottom:335.475000px;}
.y173{bottom:339.975000px;}
.y28{bottom:340.875000px;}
.y1a3{bottom:341.775000px;}
.y1d9{bottom:342.075000px;}
.y1b1{bottom:343.275000px;}
.y115{bottom:343.875000px;}
.y8d{bottom:348.660000px;}
.y6{bottom:350.500843px;}
.yc0{bottom:352.020000px;}
.y4d{bottom:355.275000px;}
.y172{bottom:362.475000px;}
.y1d8{bottom:363.975000px;}
.y70{bottom:364.005000px;}
.y1a2{bottom:364.575000px;}
.y1b0{bottom:365.775000px;}
.y27{bottom:366.075000px;}
.ye0{bottom:368.175000px;}
.ybf{bottom:373.605000px;}
.y4c{bottom:377.475000px;}
.y143{bottom:380.175000px;}
.y8c{bottom:381.960000px;}
.y171{bottom:385.275000px;}
.y1d7{bottom:385.875000px;}
.y1af{bottom:386.775000px;}
.y1a1{bottom:387.075000px;}
.y6f{bottom:387.705000px;}
.y26{bottom:391.275000px;}
.y4b{bottom:399.375000px;}
.ybe{bottom:400.905000px;}
.y8b{bottom:405.705000px;}
.y170{bottom:408.075000px;}
.y1a0{bottom:409.875000px;}
.ydf{bottom:410.775000px;}
.y6e{bottom:411.705000px;}
.y25{bottom:416.775000px;}
.y4a{bottom:421.275000px;}
.y5{bottom:422.492399px;}
.ybd{bottom:422.505000px;}
.y142{bottom:424.875000px;}
.y8a{bottom:429.705000px;}
.y1d6{bottom:429.975000px;}
.y16f{bottom:430.875000px;}
.y19f{bottom:432.675000px;}
.yde{bottom:435.375000px;}
.y24{bottom:441.975000px;}
.y49{bottom:443.175000px;}
.y6c{bottom:445.620000px;}
.ybc{bottom:450.105000px;}
.yfa{bottom:450.375000px;}
.y1d5{bottom:451.875000px;}
.y16e{bottom:453.375000px;}
.y19e{bottom:455.205000px;}
.y4{bottom:455.488477px;}
.ydd{bottom:459.705000px;}
.y89{bottom:463.005000px;}
.y98{bottom:463.605000px;}
.y48{bottom:465.105000px;}
.y23{bottom:468.705000px;}
.y6b{bottom:469.320000px;}
.y140{bottom:469.605000px;}
.ybb{bottom:471.705000px;}
.y1d4{bottom:473.820000px;}
.y16d{bottom:476.205000px;}
.y19d{bottom:478.005000px;}
.ydc{bottom:484.305000px;}
.y88{bottom:487.005000px;}
.y47{bottom:487.320000px;}
.y3{bottom:488.484240px;}
.y13f{bottom:493.005000px;}
.y6a{bottom:493.020000px;}
.y1d3{bottom:496.005000px;}
.y22{bottom:497.205000px;}
.y16c{bottom:499.005000px;}
.yba{bottom:499.350000px;}
.y19c{bottom:500.820000px;}
.y87{bottom:506.820000px;}
.ydb{bottom:508.905000px;}
.y13d{bottom:516.405000px;}
.y69{bottom:517.065000px;}
.y1d2{bottom:521.205000px;}
.y16b{bottom:521.505000px;}
.y46{bottom:523.005000px;}
.y19b{bottom:523.605000px;}
.y21{bottom:524.805000px;}
.y2{bottom:527.479718px;}
.y112{bottom:529.305000px;}
.yb9{bottom:529.950000px;}
.yda{bottom:533.505000px;}
.y16a{bottom:544.320000px;}
.y19a{bottom:546.105000px;}
.y1d1{bottom:546.405000px;}
.y20{bottom:552.105000px;}
.y13a{bottom:561.105000px;}
.y45{bottom:565.605000px;}
.yb8{bottom:566.250000px;}
.y169{bottom:567.105000px;}
.y199{bottom:568.905000px;}
.yd9{bottom:569.820000px;}
.y1d0{bottom:571.605000px;}
.y1f{bottom:577.005000px;}
.yb7{bottom:587.850000px;}
.yf5{bottom:588.105000px;}
.y168{bottom:589.905000px;}
.y198{bottom:591.705000px;}
.y1cf{bottom:597.105000px;}
.y44{bottom:605.550000px;}
.y138{bottom:605.850000px;}
.y1e{bottom:606.450000px;}
.yd8{bottom:607.650000px;}
.y167{bottom:612.450000px;}
.y197{bottom:614.250000px;}
.yb6{bottom:615.450000px;}
.y1ce{bottom:622.350000px;}
.y43{bottom:627.750000px;}
.y137{bottom:629.550000px;}
.y166{bottom:635.250000px;}
.y1d{bottom:635.850000px;}
.y196{bottom:637.050000px;}
.yb5{bottom:640.050000px;}
.y1cd{bottom:643.950000px;}
.yd7{bottom:645.450000px;}
.y42{bottom:649.650000px;}
.ya{bottom:653.755090px;}
.y165{bottom:658.050000px;}
.y195{bottom:659.850000px;}
.yb4{bottom:661.680000px;}
.y1cc{bottom:664.050000px;}
.y1c{bottom:666.150000px;}
.y111{bottom:667.050000px;}
.y41{bottom:671.550000px;}
.y134{bottom:674.250000px;}
.yd6{bottom:674.550000px;}
.y164{bottom:680.550000px;}
.y194{bottom:682.650000px;}
.yd5{bottom:686.850000px;}
.y1cb{bottom:687.750000px;}
.yb3{bottom:688.980000px;}
.yf4{bottom:702.150000px;}
.y163{bottom:703.350000px;}
.y193{bottom:705.150000px;}
.y1b{bottom:708.150000px;}
.y1ca{bottom:713.250000px;}
.yb2{bottom:713.595000px;}
.y132{bottom:718.950000px;}
.y162{bottom:726.150000px;}
.y192{bottom:727.950000px;}
.y40{bottom:729.450000px;}
.yb1{bottom:738.180000px;}
.y1c9{bottom:738.450000px;}
.y1a{bottom:740.850000px;}
.y12f{bottom:742.350000px;}
.y161{bottom:748.950000px;}
.y191{bottom:750.780000px;}
.y3f{bottom:751.680000px;}
.yd3{bottom:754.680000px;}
.yb0{bottom:762.780000px;}
.y1c8{bottom:763.695000px;}
.y160{bottom:771.480000px;}
.y190{bottom:773.280000px;}
.y3e{bottom:773.580000px;}
.y19{bottom:773.880000px;}
.y106{bottom:781.080000px;}
.y66{bottom:782.580000px;}
.y12d{bottom:787.080000px;}
.yaf{bottom:787.380000px;}
.y1c7{bottom:788.880000px;}
.yee{bottom:792.495000px;}
.y15f{bottom:794.295000px;}
.y18f{bottom:796.080000px;}
.y12c{bottom:810.480000px;}
.yae{bottom:811.725000px;}
.y3d{bottom:813.480000px;}
.y1c6{bottom:814.080000px;}
.y15e{bottom:817.080000px;}
.y18{bottom:817.695000px;}
.y18e{bottom:818.880000px;}
.yd2{bottom:822.480000px;}
.y63{bottom:825.780000px;}
.y3c{bottom:835.380000px;}
.y15d{bottom:839.580000px;}
.y121{bottom:841.380000px;}
.y18d{bottom:841.695000px;}
.yad{bottom:842.325000px;}
.y17{bottom:856.980000px;}
.y3b{bottom:857.580000px;}
.y15c{bottom:862.380000px;}
.y18c{bottom:864.195000px;}
.y1c5{bottom:864.780000px;}
.yd1{bottom:865.695000px;}
.y3a{bottom:879.480000px;}
.y16{bottom:882.195000px;}
.y15b{bottom:885.195000px;}
.y18b{bottom:886.980000px;}
.y1c4{bottom:889.980000px;}
.y15{bottom:907.425000px;}
.y15a{bottom:908.025000px;}
.yd0{bottom:909.225000px;}
.y18a{bottom:909.825000px;}
.y1c3{bottom:916.725000px;}
.y39{bottom:919.425000px;}
.y159{bottom:930.525000px;}
.y189{bottom:932.325000px;}
.y14{bottom:932.625000px;}
.y129{bottom:935.925000px;}
.y38{bottom:941.325000px;}
.y60{bottom:942.825000px;}
.y1c2{bottom:946.425000px;}
.y158{bottom:953.325000px;}
.ye8{bottom:953.925000px;}
.y188{bottom:955.125000px;}
.y13{bottom:958.125000px;}
.y125{bottom:959.325000px;}
.y157{bottom:976.125000px;}
.yab{bottom:977.025000px;}
.y187{bottom:977.925000px;}
.y37{bottom:980.025000px;}
.y12{bottom:983.325000px;}
.y1c1{bottom:984.825000px;}
.y120{bottom:987.825000px;}
.y36{bottom:996.525000px;}
.y156{bottom:998.625000px;}
.y186{bottom:1000.725000px;}
.ycf{bottom:1001.625000px;}
.y11{bottom:1008.525000px;}
.y5a{bottom:1010.625000px;}
.y1c0{bottom:1014.225000px;}
.y35{bottom:1020.225000px;}
.y155{bottom:1021.425000px;}
.y86{bottom:1022.925000px;}
.y185{bottom:1023.225000px;}
.y11f{bottom:1033.425000px;}
.y10{bottom:1033.725000px;}
.y1bf{bottom:1043.625000px;}
.y34{bottom:1043.925000px;}
.y154{bottom:1044.225000px;}
.ya6{bottom:1044.825000px;}
.y184{bottom:1046.070000px;}
.y11e{bottom:1055.955000px;}
.yf{bottom:1059.255000px;}
.y105{bottom:1063.455000px;}
.y85{bottom:1066.170000px;}
.y153{bottom:1067.070000px;}
.y33{bottom:1067.955000px;}
.y183{bottom:1068.855000px;}
.y1be{bottom:1073.355000px;}
.y11d{bottom:1078.755000px;}
.ye{bottom:1084.455000px;}
.y152{bottom:1089.570000px;}
.y182{bottom:1091.355000px;}
.y32{bottom:1091.655000px;}
.y11c{bottom:1101.570000px;}
.y1bd{bottom:1102.755000px;}
.y83{bottom:1109.370000px;}
.yd{bottom:1109.655000px;}
.y151{bottom:1112.355000px;}
.y181{bottom:1114.155000px;}
.y31{bottom:1115.355000px;}
.y11b{bottom:1124.355000px;}
.ye7{bottom:1130.355000px;}
.y1bc{bottom:1132.155000px;}
.yc{bottom:1134.855000px;}
.y150{bottom:1135.155000px;}
.y180{bottom:1136.955000px;}
.ye6{bottom:1156.755000px;}
.y14f{bottom:1158.255000px;}
.y17f{bottom:1159.755000px;}
.yb{bottom:1160.355000px;}
.y30{bottom:1191.255000px;}
.h43{height:22.500000px;}
.h3c{height:22.800000px;}
.h4a{height:22.837500px;}
.h42{height:30.300000px;}
.h13{height:38.578125px;}
.h1a{height:42.300000px;}
.h21{height:42.585000px;}
.h1f{height:42.600000px;}
.h2b{height:42.622500px;}
.h22{height:42.637500px;}
.h45{height:43.800000px;}
.h44{height:43.837500px;}
.h47{height:44.100000px;}
.h46{height:44.137500px;}
.h49{height:45.300000px;}
.h2e{height:47.742188px;}
.h16{height:48.281250px;}
.h4b{height:49.148438px;}
.h50{height:53.709961px;}
.h10{height:57.867188px;}
.h14{height:57.937500px;}
.he{height:62.689453px;}
.h3a{height:65.645508px;}
.h48{height:65.737500px;}
.h18{height:66.900000px;}
.h2d{height:66.937500px;}
.h20{height:67.185000px;}
.h2c{height:67.200000px;}
.h27{height:68.977600px;}
.h25{height:69.037600px;}
.h26{height:69.097600px;}
.ha{height:71.613281px;}
.h40{height:71.613292px;}
.h3d{height:71.613297px;}
.h41{height:71.613304px;}
.h3b{height:71.613317px;}
.h9{height:73.722656px;}
.h4d{height:75.213281px;}
.h4e{height:77.544654px;}
.h12{height:77.581055px;}
.h4c{height:77.604654px;}
.h4f{height:77.664654px;}
.h11{height:79.866211px;}
.h1c{height:80.171709px;}
.h38{height:81.121055px;}
.h1d{height:81.181055px;}
.h5{height:82.846852px;}
.hf{height:83.548828px;}
.h15{height:86.009766px;}
.h31{height:89.437500px;}
.h2a{height:91.500000px;}
.h1e{height:91.837500px;}
.h3f{height:93.937500px;}
.hd{height:95.484375px;}
.h2{height:95.719003px;}
.h3{height:96.641744px;}
.h4{height:101.070901px;}
.hc{height:110.583984px;}
.h36{height:113.100000px;}
.h32{height:113.137500px;}
.h35{height:113.437500px;}
.h19{height:116.137500px;}
.h3e{height:117.337500px;}
.h28{height:131.737500px;}
.hb{height:135.158203px;}
.h34{height:136.800000px;}
.h33{height:137.137500px;}
.h17{height:140.737500px;}
.h30{height:160.815000px;}
.h2f{height:160.830000px;}
.h39{height:184.845000px;}
.h37{height:281.475000px;}
.h24{height:330.720000px;}
.h23{height:515.205000px;}
.h1b{height:536.550000px;}
.h29{height:870.525000px;}
.h7{height:1262.250000px;}
.h8{height:1262.399908px;}
.h6{height:1262.400000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:49.500000px;}
.wf{width:63.000000px;}
.wc{width:63.037500px;}
.w11{width:63.337500px;}
.we{width:84.337500px;}
.w10{width:126.937500px;}
.wd{width:190.545000px;}
.w8{width:200.775000px;}
.w5{width:251.475000px;}
.wb{width:339.705000px;}
.w12{width:339.720000px;}
.w6{width:465.150000px;}
.w9{width:507.150000px;}
.w7{width:717.225000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w4{width:893.099987px;}
.w2{width:893.100000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.500000px;}
.x22{left:11.100000px;}
.x1e{left:12.600000px;}
.x3b{left:19.800000px;}
.x39{left:22.200000px;}
.x36{left:24.000000px;}
.x31{left:26.100000px;}
.x38{left:28.500000px;}
.x3c{left:31.200000px;}
.x3a{left:32.745000px;}
.x23{left:38.100000px;}
.x1f{left:39.300000px;}
.x34{left:49.530000px;}
.x24{left:56.092500px;}
.x3d{left:67.245000px;}
.x2{left:78.593184px;}
.x11{left:108.037487px;}
.x2b{left:110.137487px;}
.x2a{left:113.137487px;}
.x2f{left:119.130000px;}
.x19{left:129.337487px;}
.xa{left:147.937487px;}
.xe{left:150.644987px;}
.x42{left:152.144987px;}
.x2c{left:157.829987px;}
.x2e{left:159.045000px;}
.x40{left:161.429987px;}
.x8{left:163.529987px;}
.xf{left:167.429987px;}
.x16{left:169.529987px;}
.x43{left:170.744987px;}
.x9{left:185.774987px;}
.x45{left:198.374987px;}
.x41{left:201.374987px;}
.x1d{left:212.767500px;}
.xc{left:218.474987px;}
.x20{left:219.682500px;}
.x6{left:223.574987px;}
.x5{left:225.074987px;}
.x21{left:226.582500px;}
.x17{left:227.774987px;}
.xb{left:235.874987px;}
.x44{left:237.374987px;}
.x48{left:255.674987px;}
.x27{left:258.374987px;}
.x25{left:259.882500px;}
.x12{left:264.374987px;}
.x10{left:288.374987px;}
.x4{left:293.174987px;}
.x18{left:299.519987px;}
.x28{left:310.620000px;}
.x2d{left:313.319987px;}
.x47{left:339.719987px;}
.x29{left:342.704987px;}
.x1c{left:361.020000px;}
.x26{left:364.619987px;}
.x46{left:367.319987px;}
.x14{left:425.249987px;}
.xd{left:429.449987px;}
.x3e{left:437.549987px;}
.x15{left:442.049987px;}
.x7{left:446.549987px;}
.x3f{left:448.349987px;}
.x30{left:499.350000px;}
.x3{left:546.116832px;}
.x1{left:551.518272px;}
.x32{left:563.280000px;}
.x13{left:600.494987px;}
.x35{left:626.895000px;}
.x37{left:690.825000px;}
.x33{left:754.425000px;}
.x1a{left:785.369987px;}
@media print{
.v4{vertical-align:-10.666667pt;}
.v5{vertical-align:-5.333333pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.066667pt;}
.v1{vertical-align:3.200000pt;}
.ls2f{letter-spacing:-1.541333pt;}
.ls57{letter-spacing:-1.514667pt;}
.ls51{letter-spacing:-1.194667pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls56{letter-spacing:-0.554667pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls48{letter-spacing:-0.490667pt;}
.ls43{letter-spacing:-0.448000pt;}
.ls40{letter-spacing:-0.410667pt;}
.lsf{letter-spacing:-0.405333pt;}
.ls2e{letter-spacing:-0.378667pt;}
.ls33{letter-spacing:-0.272000pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls41{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.165333pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls2d{letter-spacing:-0.133333pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.048000pt;}
.ls3e{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.064000pt;}
.ls3b{letter-spacing:0.101333pt;}
.ls15{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.117333pt;}
.ls45{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.149333pt;}
.ls2b{letter-spacing:0.181333pt;}
.ls3{letter-spacing:0.192000pt;}
.ls58{letter-spacing:0.245333pt;}
.ls38{letter-spacing:0.272000pt;}
.ls31{letter-spacing:0.277333pt;}
.ls1d{letter-spacing:0.325333pt;}
.ls8{letter-spacing:0.330667pt;}
.ls3d{letter-spacing:0.357333pt;}
.ls20{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.405333pt;}
.ls53{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.533333pt;}
.ls52{letter-spacing:0.618667pt;}
.ls42{letter-spacing:0.629333pt;}
.ls50{letter-spacing:0.736000pt;}
.ls32{letter-spacing:0.901333pt;}
.ls39{letter-spacing:1.392000pt;}
.ls1f{letter-spacing:1.397333pt;}
.ls4f{letter-spacing:1.536000pt;}
.ls4a{letter-spacing:1.696000pt;}
.ls4d{letter-spacing:2.602667pt;}
.ls27{letter-spacing:2.624000pt;}
.ls4c{letter-spacing:4.682667pt;}
.ls36{letter-spacing:5.472000pt;}
.ls2{letter-spacing:5.482667pt;}
.ls4{letter-spacing:5.653333pt;}
.ls17{letter-spacing:5.664000pt;}
.ls1{letter-spacing:5.802667pt;}
.ls37{letter-spacing:6.517333pt;}
.ls44{letter-spacing:8.874667pt;}
.ls4b{letter-spacing:9.002667pt;}
.ls12{letter-spacing:9.984000pt;}
.ls49{letter-spacing:10.069333pt;}
.ls1b{letter-spacing:13.130667pt;}
.ls1c{letter-spacing:13.184000pt;}
.lse{letter-spacing:13.269333pt;}
.ls28{letter-spacing:15.264000pt;}
.ls4e{letter-spacing:15.402667pt;}
.ls14{letter-spacing:16.277333pt;}
.ls26{letter-spacing:16.330667pt;}
.ls25{letter-spacing:20.597333pt;}
.ls30{letter-spacing:21.664000pt;}
.ls34{letter-spacing:23.797333pt;}
.ls54{letter-spacing:23.936000pt;}
.lsc{letter-spacing:24.949333pt;}
.ls55{letter-spacing:25.002667pt;}
.ls13{letter-spacing:28.064000pt;}
.ls24{letter-spacing:32.330667pt;}
.ls2a{letter-spacing:38.730667pt;}
.lsd{letter-spacing:41.056000pt;}
.ls16{letter-spacing:43.658667pt;}
.ls18{letter-spacing:45.130667pt;}
.ls1a{letter-spacing:46.197333pt;}
.ls29{letter-spacing:50.464000pt;}
.ls46{letter-spacing:51.701333pt;}
.ls2c{letter-spacing:61.557333pt;}
.ls1e{letter-spacing:87.904000pt;}
.ls3f{letter-spacing:755.034667pt;}
.ws0{word-spacing:-111.986586pt;}
.ws4{word-spacing:-26.517333pt;}
.ws7{word-spacing:-21.888000pt;}
.ws6{word-spacing:-21.696000pt;}
.ws5{word-spacing:-21.589333pt;}
.ws3{word-spacing:-20.117333pt;}
.ws8{word-spacing:-19.285333pt;}
.wsc{word-spacing:-16.874667pt;}
.ws10{word-spacing:-16.570667pt;}
.wsd{word-spacing:-15.994667pt;}
.wse{word-spacing:-15.717333pt;}
.wsa{word-spacing:-15.669333pt;}
.wsf{word-spacing:-15.536000pt;}
.ws13{word-spacing:-15.493333pt;}
.ws11{word-spacing:-15.397333pt;}
.ws12{word-spacing:-15.258667pt;}
.wsb{word-spacing:-15.141333pt;}
.ws17{word-spacing:-15.082667pt;}
.ws9{word-spacing:-14.869333pt;}
.ws2{word-spacing:-14.464000pt;}
.ws16{word-spacing:-14.357333pt;}
.ws19{word-spacing:-14.058667pt;}
.ws14{word-spacing:-14.016000pt;}
.ws15{word-spacing:-13.973333pt;}
.ws18{word-spacing:-13.909333pt;}
.ws1b{word-spacing:-13.258667pt;}
.ws1a{word-spacing:-12.949333pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-1273.032149pt;}
._f{margin-left:-87.051652pt;}
._6{margin-left:-85.302422pt;}
._2{margin-left:-84.044813pt;}
._d{margin-left:-82.545312pt;}
._15{margin-left:-80.710972pt;}
._1b{margin-left:-79.287622pt;}
._3{margin-left:-77.756766pt;}
._1d{margin-left:-75.987378pt;}
._1c{margin-left:-74.368052pt;}
._24{margin-left:-73.349062pt;}
._21{margin-left:-72.294060pt;}
._22{margin-left:-64.635298pt;}
._10{margin-left:-61.734845pt;}
._12{margin-left:-60.751603pt;}
._14{margin-left:-59.218506pt;}
._5{margin-left:-57.524149pt;}
._13{margin-left:-56.594661pt;}
._1{margin-left:-55.555425pt;}
._8{margin-left:-54.627056pt;}
._1a{margin-left:-53.153313pt;}
._11{margin-left:-51.619097pt;}
._1f{margin-left:-50.418601pt;}
._0{margin-left:-48.994131pt;}
._e{margin-left:-47.046684pt;}
._a{margin-left:-45.593099pt;}
._1e{margin-left:-44.421719pt;}
._4{margin-left:-43.143952pt;}
._b{margin-left:-41.601897pt;}
._9{margin-left:-40.398041pt;}
._18{margin-left:-38.932136pt;}
._23{margin-left:-37.981070pt;}
._16{margin-left:-37.078758pt;}
._7{margin-left:-33.190584pt;}
._19{margin-left:-30.183744pt;}
._17{margin-left:-27.558779pt;}
._c{margin-left:-24.801669pt;}
._3a{margin-left:-3.525333pt;}
._2b{margin-left:-2.288000pt;}
._29{margin-left:-0.906667pt;}
._2a{width:0.981333pt;}
._2c{width:1.925333pt;}
._2d{width:3.200000pt;}
._26{width:4.266667pt;}
._25{width:5.674667pt;}
._27{width:6.954667pt;}
._28{width:8.277333pt;}
._2f{width:9.760000pt;}
._2e{width:10.810667pt;}
._41{width:11.909333pt;}
._3b{width:13.056000pt;}
._3f{width:14.010667pt;}
._36{width:15.397333pt;}
._30{width:16.640000pt;}
._31{width:18.064000pt;}
._3c{width:19.168000pt;}
._49{width:20.938667pt;}
._4d{width:22.160000pt;}
._50{width:23.162667pt;}
._34{width:24.128000pt;}
._35{width:25.173333pt;}
._6b{width:26.442667pt;}
._37{width:27.392000pt;}
._38{width:28.410667pt;}
._65{width:29.514667pt;}
._4f{width:31.269333pt;}
._48{width:32.549333pt;}
._44{width:33.562667pt;}
._33{width:35.008000pt;}
._32{width:35.968000pt;}
._3e{width:36.960000pt;}
._3d{width:37.925333pt;}
._40{width:39.152000pt;}
._39{width:40.746667pt;}
._66{width:41.866667pt;}
._67{width:43.056000pt;}
._43{width:44.448000pt;}
._42{width:45.594667pt;}
._45{width:46.522667pt;}
._62{width:47.829333pt;}
._4a{width:49.397333pt;}
._4b{width:50.629333pt;}
._60{width:51.584000pt;}
._4c{width:53.392000pt;}
._58{width:54.485333pt;}
._57{width:55.808000pt;}
._68{width:56.757333pt;}
._5c{width:58.250667pt;}
._5d{width:59.530667pt;}
._4e{width:61.125333pt;}
._59{width:69.290667pt;}
._52{width:77.760000pt;}
._53{width:78.976000pt;}
._64{width:81.728000pt;}
._63{width:83.226667pt;}
._47{width:85.008000pt;}
._46{width:87.082667pt;}
._61{width:94.208000pt;}
._6a{width:103.445333pt;}
._69{width:104.576000pt;}
._5a{width:107.530667pt;}
._5b{width:108.800000pt;}
._54{width:130.154667pt;}
._5f{width:136.000000pt;}
._5e{width:137.013333pt;}
._56{width:147.328000pt;}
._55{width:148.288000pt;}
._51{width:751.418667pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:96.001331pt;}
.fs0{font-size:111.986586pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y124{bottom:3.466667pt;}
.y12e{bottom:4.266667pt;}
.y148{bottom:4.280000pt;}
.y126{bottom:4.533333pt;}
.y133{bottom:4.800000pt;}
.y139{bottom:5.066667pt;}
.y141{bottom:5.080000pt;}
.yce{bottom:7.200000pt;}
.ya5{bottom:7.466667pt;}
.y12b{bottom:11.200000pt;}
.yf3{bottom:12.520000pt;}
.y62{bottom:12.533333pt;}
.y67{bottom:12.546667pt;}
.yfd{bottom:12.560000pt;}
.yf9{bottom:12.573333pt;}
.y7d{bottom:12.786667pt;}
.y5f{bottom:12.800000pt;}
.y65{bottom:12.813333pt;}
.y81{bottom:12.826667pt;}
.y12a{bottom:17.866667pt;}
.y127{bottom:20.000000pt;}
.y135{bottom:23.200000pt;}
.y130{bottom:23.226667pt;}
.y13b{bottom:23.466667pt;}
.y13e{bottom:23.480000pt;}
.y136{bottom:23.733333pt;}
.y131{bottom:23.760000pt;}
.y13c{bottom:24.000000pt;}
.y14b{bottom:24.546667pt;}
.ycd{bottom:26.400000pt;}
.ya4{bottom:26.706667pt;}
.yf2{bottom:33.586667pt;}
.y101{bottom:33.600000pt;}
.y7c{bottom:33.853333pt;}
.yed{bottom:33.866667pt;}
.y103{bottom:33.880000pt;}
.yfc{bottom:33.893333pt;}
.yf8{bottom:33.906667pt;}
.y61{bottom:34.400000pt;}
.y5e{bottom:34.426667pt;}
.y84{bottom:34.653333pt;}
.yd4{bottom:34.680000pt;}
.y80{bottom:34.693333pt;}
.y128{bottom:34.946667pt;}
.yaa{bottom:37.360000pt;}
.y146{bottom:42.706667pt;}
.y147{bottom:43.240000pt;}
.y100{bottom:46.933333pt;}
.ycc{bottom:50.960000pt;}
.ya3{bottom:51.226667pt;}
.yf1{bottom:54.920000pt;}
.yec{bottom:54.933333pt;}
.y7b{bottom:54.960000pt;}
.yf7{bottom:54.973333pt;}
.y110{bottom:55.213333pt;}
.y97{bottom:56.253333pt;}
.y64{bottom:56.266667pt;}
.y5d{bottom:56.293333pt;}
.y7f{bottom:56.560000pt;}
.ya9{bottom:58.960000pt;}
.ycb{bottom:70.160000pt;}
.yf0{bottom:75.986667pt;}
.yeb{bottom:76.000000pt;}
.yfb{bottom:76.026667pt;}
.yf6{bottom:76.040000pt;}
.y117{bottom:76.266667pt;}
.y7a{bottom:76.293333pt;}
.y114{bottom:76.306667pt;}
.y10f{bottom:76.800000pt;}
.y1{bottom:78.085274pt;}
.ya8{bottom:78.160000pt;}
.y5c{bottom:78.173333pt;}
.ya2{bottom:78.440000pt;}
.y96{bottom:78.920000pt;}
.y17e{bottom:80.000000pt;}
.y1ae{bottom:81.600000pt;}
.y11a{bottom:88.000000pt;}
.y123{bottom:89.106667pt;}
.y59{bottom:90.933333pt;}
.y14e{bottom:91.733333pt;}
.yac{bottom:93.866667pt;}
.yca{bottom:94.693333pt;}
.y104{bottom:96.266667pt;}
.yff{bottom:97.066667pt;}
.yef{bottom:97.093333pt;}
.y82{bottom:97.333333pt;}
.yea{bottom:97.360000pt;}
.y113{bottom:97.373333pt;}
.y79{bottom:97.626667pt;}
.y10e{bottom:98.133333pt;}
.y2f{bottom:98.666667pt;}
.y1bb{bottom:98.933333pt;}
.y5b{bottom:100.026667pt;}
.y17d{bottom:100.266667pt;}
.y1ad{bottom:101.866667pt;}
.ya7{bottom:102.693333pt;}
.y119{bottom:103.200000pt;}
.y58{bottom:107.200000pt;}
.y122{bottom:109.373333pt;}
.ya1{bottom:110.706667pt;}
.yc9{bottom:113.906667pt;}
.y1e3{bottom:114.666667pt;}
.y99{bottom:117.333333pt;}
.ye9{bottom:118.426667pt;}
.y10d{bottom:119.240000pt;}
.y17c{bottom:120.266667pt;}
.y1ba{bottom:121.333333pt;}
.y1ac{bottom:121.866667pt;}
.y57{bottom:123.466667pt;}
.y14d{bottom:124.266667pt;}
.y2e{bottom:124.800000pt;}
.y78{bottom:127.493333pt;}
.y95{bottom:129.893333pt;}
.y1e2{bottom:131.466667pt;}
.ya0{bottom:132.560000pt;}
.y14c{bottom:135.466667pt;}
.y7e{bottom:135.733333pt;}
.yc8{bottom:138.160000pt;}
.y56{bottom:139.733333pt;}
.y116{bottom:139.760000pt;}
.y10c{bottom:140.306667pt;}
.y17b{bottom:140.560000pt;}
.y1ab{bottom:142.160000pt;}
.y1b9{bottom:143.760000pt;}
.y1e1{bottom:148.293333pt;}
.y77{bottom:148.826667pt;}
.y2d{bottom:150.960000pt;}
.y94{bottom:151.760000pt;}
.y9f{bottom:154.466667pt;}
.y55{bottom:156.040000pt;}
.y14a{bottom:156.293333pt;}
.yc7{bottom:157.360000pt;}
.y17a{bottom:160.826667pt;}
.y10b{bottom:161.640000pt;}
.y1aa{bottom:162.440000pt;}
.y1e0{bottom:165.093333pt;}
.y1b8{bottom:166.160000pt;}
.y93{bottom:173.360000pt;}
.y9e{bottom:173.666667pt;}
.y54{bottom:176.293333pt;}
.y2c{bottom:177.093333pt;}
.y76{bottom:178.693333pt;}
.y179{bottom:180.840000pt;}
.yc6{bottom:181.933333pt;}
.y1a9{bottom:182.693333pt;}
.y10a{bottom:182.706667pt;}
.y1df{bottom:184.026667pt;}
.y1b7{bottom:185.893333pt;}
.y92{bottom:195.226667pt;}
.y149{bottom:197.093333pt;}
.y102{bottom:197.626667pt;}
.y9d{bottom:198.200000pt;}
.y53{bottom:198.706667pt;}
.y75{bottom:199.786667pt;}
.y178{bottom:201.093333pt;}
.yc5{bottom:201.133333pt;}
.y2b{bottom:202.173333pt;}
.y1a8{bottom:202.693333pt;}
.y118{bottom:204.293333pt;}
.y108{bottom:204.573333pt;}
.y109{bottom:204.840000pt;}
.y1b6{bottom:206.160000pt;}
.y1de{bottom:206.426667pt;}
.ye5{bottom:206.960000pt;}
.y68{bottom:217.893333pt;}
.y6d{bottom:217.906667pt;}
.y52{bottom:218.160000pt;}
.y9{bottom:218.234244pt;}
.y9c{bottom:219.800000pt;}
.y74{bottom:221.120000pt;}
.y177{bottom:221.360000pt;}
.y1a7{bottom:222.960000pt;}
.y2a{bottom:224.560000pt;}
.y91{bottom:225.120000pt;}
.y107{bottom:225.640000pt;}
.yc4{bottom:225.666667pt;}
.y1dd{bottom:225.893333pt;}
.y1b5{bottom:226.173333pt;}
.ye4{bottom:229.360000pt;}
.y51{bottom:237.626667pt;}
.y145{bottom:238.960000pt;}
.y176{bottom:241.626667pt;}
.y9b{bottom:241.666667pt;}
.y29{bottom:242.960000pt;}
.y1a6{bottom:243.226667pt;}
.yc3{bottom:244.600000pt;}
.y1dc{bottom:245.360000pt;}
.y1b4{bottom:245.626667pt;}
.y90{bottom:246.186667pt;}
.y8{bottom:247.564090pt;}
.ye3{bottom:251.226667pt;}
.y73{bottom:251.266667pt;}
.y50{bottom:257.360000pt;}
.y175{bottom:261.626667pt;}
.y1a5{bottom:263.226667pt;}
.y1b3{bottom:264.293333pt;}
.y1db{bottom:264.840000pt;}
.y8f{bottom:267.253333pt;}
.y9a{bottom:268.866667pt;}
.yc2{bottom:269.133333pt;}
.y72{bottom:272.320000pt;}
.ye2{bottom:273.133333pt;}
.y4f{bottom:276.866667pt;}
.y7{bottom:276.893937pt;}
.yfe{bottom:277.933333pt;}
.y174{bottom:281.933333pt;}
.y1a4{bottom:283.533333pt;}
.y1da{bottom:284.600000pt;}
.y1b2{bottom:284.866667pt;}
.yc1{bottom:288.333333pt;}
.y8e{bottom:288.586667pt;}
.y71{bottom:293.653333pt;}
.ye1{bottom:295.000000pt;}
.y4e{bottom:296.333333pt;}
.y144{bottom:298.200000pt;}
.y173{bottom:302.200000pt;}
.y28{bottom:303.000000pt;}
.y1a3{bottom:303.800000pt;}
.y1d9{bottom:304.066667pt;}
.y1b1{bottom:305.133333pt;}
.y115{bottom:305.666667pt;}
.y8d{bottom:309.920000pt;}
.y6{bottom:311.556305pt;}
.yc0{bottom:312.906667pt;}
.y4d{bottom:315.800000pt;}
.y172{bottom:322.200000pt;}
.y1d8{bottom:323.533333pt;}
.y70{bottom:323.560000pt;}
.y1a2{bottom:324.066667pt;}
.y1b0{bottom:325.133333pt;}
.y27{bottom:325.400000pt;}
.ye0{bottom:327.266667pt;}
.ybf{bottom:332.093333pt;}
.y4c{bottom:335.533333pt;}
.y143{bottom:337.933333pt;}
.y8c{bottom:339.520000pt;}
.y171{bottom:342.466667pt;}
.y1d7{bottom:343.000000pt;}
.y1af{bottom:343.800000pt;}
.y1a1{bottom:344.066667pt;}
.y6f{bottom:344.626667pt;}
.y26{bottom:347.800000pt;}
.y4b{bottom:355.000000pt;}
.ybe{bottom:356.360000pt;}
.y8b{bottom:360.626667pt;}
.y170{bottom:362.733333pt;}
.y1a0{bottom:364.333333pt;}
.ydf{bottom:365.133333pt;}
.y6e{bottom:365.960000pt;}
.y25{bottom:370.466667pt;}
.y4a{bottom:374.466667pt;}
.y5{bottom:375.548799pt;}
.ybd{bottom:375.560000pt;}
.y142{bottom:377.666667pt;}
.y8a{bottom:381.960000pt;}
.y1d6{bottom:382.200000pt;}
.y16f{bottom:383.000000pt;}
.y19f{bottom:384.600000pt;}
.yde{bottom:387.000000pt;}
.y24{bottom:392.866667pt;}
.y49{bottom:393.933333pt;}
.y6c{bottom:396.106667pt;}
.ybc{bottom:400.093333pt;}
.yfa{bottom:400.333333pt;}
.y1d5{bottom:401.666667pt;}
.y16e{bottom:403.000000pt;}
.y19e{bottom:404.626667pt;}
.y4{bottom:404.878646pt;}
.ydd{bottom:408.626667pt;}
.y89{bottom:411.560000pt;}
.y98{bottom:412.093333pt;}
.y48{bottom:413.426667pt;}
.y23{bottom:416.626667pt;}
.y6b{bottom:417.173333pt;}
.y140{bottom:417.426667pt;}
.ybb{bottom:419.293333pt;}
.y1d4{bottom:421.173333pt;}
.y16d{bottom:423.293333pt;}
.y19d{bottom:424.893333pt;}
.ydc{bottom:430.493333pt;}
.y88{bottom:432.893333pt;}
.y47{bottom:433.173333pt;}
.y3{bottom:434.208213pt;}
.y13f{bottom:438.226667pt;}
.y6a{bottom:438.240000pt;}
.y1d3{bottom:440.893333pt;}
.y22{bottom:441.960000pt;}
.y16c{bottom:443.560000pt;}
.yba{bottom:443.866667pt;}
.y19c{bottom:445.173333pt;}
.y87{bottom:450.506667pt;}
.ydb{bottom:452.360000pt;}
.y13d{bottom:459.026667pt;}
.y69{bottom:459.613333pt;}
.y1d2{bottom:463.293333pt;}
.y16b{bottom:463.560000pt;}
.y46{bottom:464.893333pt;}
.y19b{bottom:465.426667pt;}
.y21{bottom:466.493333pt;}
.y2{bottom:468.870861pt;}
.y112{bottom:470.493333pt;}
.yb9{bottom:471.066667pt;}
.yda{bottom:474.226667pt;}
.y16a{bottom:483.840000pt;}
.y19a{bottom:485.426667pt;}
.y1d1{bottom:485.693333pt;}
.y20{bottom:490.760000pt;}
.y13a{bottom:498.760000pt;}
.y45{bottom:502.760000pt;}
.yb8{bottom:503.333333pt;}
.y169{bottom:504.093333pt;}
.y199{bottom:505.693333pt;}
.yd9{bottom:506.506667pt;}
.y1d0{bottom:508.093333pt;}
.y1f{bottom:512.893333pt;}
.yb7{bottom:522.533333pt;}
.yf5{bottom:522.760000pt;}
.y168{bottom:524.360000pt;}
.y198{bottom:525.960000pt;}
.y1cf{bottom:530.760000pt;}
.y44{bottom:538.266667pt;}
.y138{bottom:538.533333pt;}
.y1e{bottom:539.066667pt;}
.yd8{bottom:540.133333pt;}
.y167{bottom:544.400000pt;}
.y197{bottom:546.000000pt;}
.yb6{bottom:547.066667pt;}
.y1ce{bottom:553.200000pt;}
.y43{bottom:558.000000pt;}
.y137{bottom:559.600000pt;}
.y166{bottom:564.666667pt;}
.y1d{bottom:565.200000pt;}
.y196{bottom:566.266667pt;}
.yb5{bottom:568.933333pt;}
.y1cd{bottom:572.400000pt;}
.yd7{bottom:573.733333pt;}
.y42{bottom:577.466667pt;}
.ya{bottom:581.115635pt;}
.y165{bottom:584.933333pt;}
.y195{bottom:586.533333pt;}
.yb4{bottom:588.160000pt;}
.y1cc{bottom:590.266667pt;}
.y1c{bottom:592.133333pt;}
.y111{bottom:592.933333pt;}
.y41{bottom:596.933333pt;}
.y134{bottom:599.333333pt;}
.yd6{bottom:599.600000pt;}
.y164{bottom:604.933333pt;}
.y194{bottom:606.800000pt;}
.yd5{bottom:610.533333pt;}
.y1cb{bottom:611.333333pt;}
.yb3{bottom:612.426667pt;}
.yf4{bottom:624.133333pt;}
.y163{bottom:625.200000pt;}
.y193{bottom:626.800000pt;}
.y1b{bottom:629.466667pt;}
.y1ca{bottom:634.000000pt;}
.yb2{bottom:634.306667pt;}
.y132{bottom:639.066667pt;}
.y162{bottom:645.466667pt;}
.y192{bottom:647.066667pt;}
.y40{bottom:648.400000pt;}
.yb1{bottom:656.160000pt;}
.y1c9{bottom:656.400000pt;}
.y1a{bottom:658.533333pt;}
.y12f{bottom:659.866667pt;}
.y161{bottom:665.733333pt;}
.y191{bottom:667.360000pt;}
.y3f{bottom:668.160000pt;}
.yd3{bottom:670.826667pt;}
.yb0{bottom:678.026667pt;}
.y1c8{bottom:678.840000pt;}
.y160{bottom:685.760000pt;}
.y190{bottom:687.360000pt;}
.y3e{bottom:687.626667pt;}
.y19{bottom:687.893333pt;}
.y106{bottom:694.293333pt;}
.y66{bottom:695.626667pt;}
.y12d{bottom:699.626667pt;}
.yaf{bottom:699.893333pt;}
.y1c7{bottom:701.226667pt;}
.yee{bottom:704.440000pt;}
.y15f{bottom:706.040000pt;}
.y18f{bottom:707.626667pt;}
.y12c{bottom:720.426667pt;}
.yae{bottom:721.533333pt;}
.y3d{bottom:723.093333pt;}
.y1c6{bottom:723.626667pt;}
.y15e{bottom:726.293333pt;}
.y18{bottom:726.840000pt;}
.y18e{bottom:727.893333pt;}
.yd2{bottom:731.093333pt;}
.y63{bottom:734.026667pt;}
.y3c{bottom:742.560000pt;}
.y15d{bottom:746.293333pt;}
.y121{bottom:747.893333pt;}
.y18d{bottom:748.173333pt;}
.yad{bottom:748.733333pt;}
.y17{bottom:761.760000pt;}
.y3b{bottom:762.293333pt;}
.y15c{bottom:766.560000pt;}
.y18c{bottom:768.173333pt;}
.y1c5{bottom:768.693333pt;}
.yd1{bottom:769.506667pt;}
.y3a{bottom:781.760000pt;}
.y16{bottom:784.173333pt;}
.y15b{bottom:786.840000pt;}
.y18b{bottom:788.426667pt;}
.y1c4{bottom:791.093333pt;}
.y15{bottom:806.600000pt;}
.y15a{bottom:807.133333pt;}
.yd0{bottom:808.200000pt;}
.y18a{bottom:808.733333pt;}
.y1c3{bottom:814.866667pt;}
.y39{bottom:817.266667pt;}
.y159{bottom:827.133333pt;}
.y189{bottom:828.733333pt;}
.y14{bottom:829.000000pt;}
.y129{bottom:831.933333pt;}
.y38{bottom:836.733333pt;}
.y60{bottom:838.066667pt;}
.y1c2{bottom:841.266667pt;}
.y158{bottom:847.400000pt;}
.ye8{bottom:847.933333pt;}
.y188{bottom:849.000000pt;}
.y13{bottom:851.666667pt;}
.y125{bottom:852.733333pt;}
.y157{bottom:867.666667pt;}
.yab{bottom:868.466667pt;}
.y187{bottom:869.266667pt;}
.y37{bottom:871.133333pt;}
.y12{bottom:874.066667pt;}
.y1c1{bottom:875.400000pt;}
.y120{bottom:878.066667pt;}
.y36{bottom:885.800000pt;}
.y156{bottom:887.666667pt;}
.y186{bottom:889.533333pt;}
.ycf{bottom:890.333333pt;}
.y11{bottom:896.466667pt;}
.y5a{bottom:898.333333pt;}
.y1c0{bottom:901.533333pt;}
.y35{bottom:906.866667pt;}
.y155{bottom:907.933333pt;}
.y86{bottom:909.266667pt;}
.y185{bottom:909.533333pt;}
.y11f{bottom:918.600000pt;}
.y10{bottom:918.866667pt;}
.y1bf{bottom:927.666667pt;}
.y34{bottom:927.933333pt;}
.y154{bottom:928.200000pt;}
.ya6{bottom:928.733333pt;}
.y184{bottom:929.840000pt;}
.y11e{bottom:938.626667pt;}
.yf{bottom:941.560000pt;}
.y105{bottom:945.293333pt;}
.y85{bottom:947.706667pt;}
.y153{bottom:948.506667pt;}
.y33{bottom:949.293333pt;}
.y183{bottom:950.093333pt;}
.y1be{bottom:954.093333pt;}
.y11d{bottom:958.893333pt;}
.ye{bottom:963.960000pt;}
.y152{bottom:968.506667pt;}
.y182{bottom:970.093333pt;}
.y32{bottom:970.360000pt;}
.y11c{bottom:979.173333pt;}
.y1bd{bottom:980.226667pt;}
.y83{bottom:986.106667pt;}
.yd{bottom:986.360000pt;}
.y151{bottom:988.760000pt;}
.y181{bottom:990.360000pt;}
.y31{bottom:991.426667pt;}
.y11b{bottom:999.426667pt;}
.ye7{bottom:1004.760000pt;}
.y1bc{bottom:1006.360000pt;}
.yc{bottom:1008.760000pt;}
.y150{bottom:1009.026667pt;}
.y180{bottom:1010.626667pt;}
.ye6{bottom:1028.226667pt;}
.y14f{bottom:1029.560000pt;}
.y17f{bottom:1030.893333pt;}
.yb{bottom:1031.426667pt;}
.y30{bottom:1058.893333pt;}
.h43{height:20.000000pt;}
.h3c{height:20.266667pt;}
.h4a{height:20.300000pt;}
.h42{height:26.933333pt;}
.h13{height:34.291667pt;}
.h1a{height:37.600000pt;}
.h21{height:37.853333pt;}
.h1f{height:37.866667pt;}
.h2b{height:37.886667pt;}
.h22{height:37.900000pt;}
.h45{height:38.933333pt;}
.h44{height:38.966667pt;}
.h47{height:39.200000pt;}
.h46{height:39.233333pt;}
.h49{height:40.266667pt;}
.h2e{height:42.437500pt;}
.h16{height:42.916667pt;}
.h4b{height:43.687500pt;}
.h50{height:47.742188pt;}
.h10{height:51.437500pt;}
.h14{height:51.500000pt;}
.he{height:55.723958pt;}
.h3a{height:58.351562pt;}
.h48{height:58.433333pt;}
.h18{height:59.466667pt;}
.h2d{height:59.500000pt;}
.h20{height:59.720000pt;}
.h2c{height:59.733333pt;}
.h27{height:61.313422pt;}
.h25{height:61.366755pt;}
.h26{height:61.420089pt;}
.ha{height:63.656250pt;}
.h40{height:63.656259pt;}
.h3d{height:63.656264pt;}
.h41{height:63.656270pt;}
.h3b{height:63.656282pt;}
.h9{height:65.531250pt;}
.h4d{height:66.856250pt;}
.h4e{height:68.928582pt;}
.h12{height:68.960938pt;}
.h4c{height:68.981915pt;}
.h4f{height:69.035248pt;}
.h11{height:70.992188pt;}
.h1c{height:71.263741pt;}
.h38{height:72.107604pt;}
.h1d{height:72.160938pt;}
.h5{height:73.641646pt;}
.hf{height:74.265625pt;}
.h15{height:76.453125pt;}
.h31{height:79.500000pt;}
.h2a{height:81.333333pt;}
.h1e{height:81.633333pt;}
.h3f{height:83.500000pt;}
.hd{height:84.875000pt;}
.h2{height:85.083558pt;}
.h3{height:85.903772pt;}
.h4{height:89.840801pt;}
.hc{height:98.296875pt;}
.h36{height:100.533333pt;}
.h32{height:100.566667pt;}
.h35{height:100.833333pt;}
.h19{height:103.233333pt;}
.h3e{height:104.300000pt;}
.h28{height:117.100000pt;}
.hb{height:120.140625pt;}
.h34{height:121.600000pt;}
.h33{height:121.900000pt;}
.h17{height:125.100000pt;}
.h30{height:142.946667pt;}
.h2f{height:142.960000pt;}
.h39{height:164.306667pt;}
.h37{height:250.200000pt;}
.h24{height:293.973333pt;}
.h23{height:457.960000pt;}
.h1b{height:476.933333pt;}
.h29{height:773.800000pt;}
.h7{height:1122.000000pt;}
.h8{height:1122.133252pt;}
.h6{height:1122.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:44.000000pt;}
.wf{width:56.000000pt;}
.wc{width:56.033333pt;}
.w11{width:56.300000pt;}
.we{width:74.966667pt;}
.w10{width:112.833333pt;}
.wd{width:169.373333pt;}
.w8{width:178.466667pt;}
.w5{width:223.533333pt;}
.wb{width:301.960000pt;}
.w12{width:301.973333pt;}
.w6{width:413.466667pt;}
.w9{width:450.800000pt;}
.w7{width:637.533333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w4{width:793.866655pt;}
.w2{width:793.866667pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.666667pt;}
.x22{left:9.866667pt;}
.x1e{left:11.200000pt;}
.x3b{left:17.600000pt;}
.x39{left:19.733333pt;}
.x36{left:21.333333pt;}
.x31{left:23.200000pt;}
.x38{left:25.333333pt;}
.x3c{left:27.733333pt;}
.x3a{left:29.106667pt;}
.x23{left:33.866667pt;}
.x1f{left:34.933333pt;}
.x34{left:44.026667pt;}
.x24{left:49.860000pt;}
.x3d{left:59.773333pt;}
.x2{left:69.860608pt;}
.x11{left:96.033322pt;}
.x2b{left:97.899988pt;}
.x2a{left:100.566655pt;}
.x2f{left:105.893333pt;}
.x19{left:114.966655pt;}
.xa{left:131.499988pt;}
.xe{left:133.906655pt;}
.x42{left:135.239988pt;}
.x2c{left:140.293322pt;}
.x2e{left:141.373333pt;}
.x40{left:143.493322pt;}
.x8{left:145.359988pt;}
.xf{left:148.826655pt;}
.x16{left:150.693322pt;}
.x43{left:151.773322pt;}
.x9{left:165.133322pt;}
.x45{left:176.333322pt;}
.x41{left:178.999988pt;}
.x1d{left:189.126667pt;}
.xc{left:194.199988pt;}
.x20{left:195.273333pt;}
.x6{left:198.733322pt;}
.x5{left:200.066655pt;}
.x21{left:201.406667pt;}
.x17{left:202.466655pt;}
.xb{left:209.666655pt;}
.x44{left:210.999988pt;}
.x48{left:227.266655pt;}
.x27{left:229.666655pt;}
.x25{left:231.006667pt;}
.x12{left:234.999988pt;}
.x10{left:256.333322pt;}
.x4{left:260.599988pt;}
.x18{left:266.239988pt;}
.x28{left:276.106667pt;}
.x2d{left:278.506655pt;}
.x47{left:301.973322pt;}
.x29{left:304.626655pt;}
.x1c{left:320.906667pt;}
.x26{left:324.106655pt;}
.x46{left:326.506655pt;}
.x14{left:377.999988pt;}
.xd{left:381.733322pt;}
.x3e{left:388.933322pt;}
.x15{left:392.933322pt;}
.x7{left:396.933322pt;}
.x3f{left:398.533322pt;}
.x30{left:443.866667pt;}
.x3{left:485.437184pt;}
.x1{left:490.238464pt;}
.x32{left:500.693333pt;}
.x13{left:533.773322pt;}
.x35{left:557.240000pt;}
.x37{left:614.066667pt;}
.x33{left:670.600000pt;}
.x1a{left:698.106655pt;}
}




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