
    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_a981f3be6bab86b9ecd32a19.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_0459da084249704ba3b1e6ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.718000;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_6a3fbfa9b931bf5986313de5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.935000;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_a981f3be6bab86b9ecd32a19.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_7f576a7f7a17ba3d9aa2a134.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_fa33c4e0dc7ac6b61a7a4da6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_a981f3be6bab86b9ecd32a19.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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_dbaf8b183318b9411dcd35dd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_dec916bc043002e38a79cea0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_1cea49b6897f82188d412bab.woff')format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_27eb7d14481f8bbfcf38dd31.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_a8392e2a8458b474f6f6a0a2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.933000;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_73fd83b5bbb081ff9852756e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.948000;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_8f83ac04f070d8957924c621.woff')format("woff");}.ffe{font-family:ffe;line-height:0.933000;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_3fbed7ceee994b3cea45674f.woff')format("woff");}.fff{font-family:fff;line-height:0.956000;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:ff10;src:url('chunks/assets/font_fff0a949f3c0e944de464644.woff')format("woff");}.ff10{font-family:ff10;line-height:0.929000;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:ff11;src:url('chunks/assets/font_e2dffd40afa5e0bcbae2eeb8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.680000;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:ff12;src:url('chunks/assets/font_f76fc8afcf3fdc12c0a56685.woff')format("woff");}.ff12{font-family:ff12;line-height:1.181818;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:ff13;src:url('chunks/assets/font_2b3347fa118e3f3fd1e08365.woff')format("woff");}.ff13{font-family:ff13;line-height:0.948000;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:ff14;src:url('chunks/assets/font_4da6b2e57503a0d81ff30203.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666000;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;}
.mc{transform:matrix(0.176278,0.177274,-0.177274,0.176278,0,0);-ms-transform:matrix(0.176278,0.177274,-0.177274,0.176278,0,0);-webkit-transform:matrix(0.176278,0.177274,-0.177274,0.176278,0,0);}
.m5{transform:matrix(0.185620,-0.167467,0.167467,0.185620,0,0);-ms-transform:matrix(0.185620,-0.167467,0.167467,0.185620,0,0);-webkit-transform:matrix(0.185620,-0.167467,0.167467,0.185620,0,0);}
.mb{transform:matrix(0.196859,0.154099,-0.154099,0.196859,0,0);-ms-transform:matrix(0.196859,0.154099,-0.154099,0.196859,0,0);-webkit-transform:matrix(0.196859,0.154099,-0.154099,0.196859,0,0);}
.ma{transform:matrix(0.221729,0.115483,-0.115483,0.221729,0,0);-ms-transform:matrix(0.221729,0.115483,-0.115483,0.221729,0,0);-webkit-transform:matrix(0.221729,0.115483,-0.115483,0.221729,0,0);}
.m6{transform:matrix(0.223506,-0.112004,0.112004,0.223506,0,0);-ms-transform:matrix(0.223506,-0.112004,0.112004,0.223506,0,0);-webkit-transform:matrix(0.223506,-0.112004,0.112004,0.223506,0,0);}
.m7{transform:matrix(0.241114,-0.066062,0.066062,0.241114,0,0);-ms-transform:matrix(0.241114,-0.066062,0.066062,0.241114,0,0);-webkit-transform:matrix(0.241114,-0.066062,0.066062,0.241114,0,0);}
.m9{transform:matrix(0.244769,0.050876,-0.050876,0.244769,0,0);-ms-transform:matrix(0.244769,0.050876,-0.050876,0.244769,0,0);-webkit-transform:matrix(0.244769,0.050876,-0.050876,0.244769,0,0);}
.m2{transform:matrix(0.245407,0.047702,-0.047702,0.245407,0,0);-ms-transform:matrix(0.245407,0.047702,-0.047702,0.245407,0,0);-webkit-transform:matrix(0.245407,0.047702,-0.047702,0.245407,0,0);}
.m4{transform:matrix(0.246202,0.043412,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.043412,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.043412,-0.043412,0.246202,0,0);}
.m3{transform:matrix(0.247444,0.035656,-0.035656,0.247444,0,0);-ms-transform:matrix(0.247444,0.035656,-0.035656,0.247444,0,0);-webkit-transform:matrix(0.247444,0.035656,-0.035656,0.247444,0,0);}
.m8{transform:matrix(0.249383,-0.017560,0.017560,0.249383,0,0);-ms-transform:matrix(0.249383,-0.017560,0.017560,0.249383,0,0);-webkit-transform:matrix(0.249383,-0.017560,0.017560,0.249383,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.248744px;}
.v3{vertical-align:27.845400px;}
.v2{vertical-align:28.875000px;}
.v4{vertical-align:32.504544px;}
.v7{vertical-align:36.000000px;}
.v5{vertical-align:40.095000px;}
.ls17{letter-spacing:-10.680000px;}
.ls16{letter-spacing:-2.220000px;}
.lse{letter-spacing:-0.540000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.960000px;}
.lsb{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.085892px;}
.ls13{letter-spacing:1.198800px;}
.lsa{letter-spacing:1.199400px;}
.ls2{letter-spacing:1.200000px;}
.ls11{letter-spacing:1.203000px;}
.ls15{letter-spacing:1.206000px;}
.ls3{letter-spacing:1.438800px;}
.lsc{letter-spacing:1.439400px;}
.ls4{letter-spacing:1.439997px;}
.ls0{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.680000px;}
.ls8{letter-spacing:1.786920px;}
.ls7{letter-spacing:1.800000px;}
.ls1{letter-spacing:3.600000px;}
.ls10{letter-spacing:64.099200px;}
.ls14{letter-spacing:67.200000px;}
.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;}
}
.ws1a{word-spacing:-19.800000px;}
.ws8{word-spacing:-19.656120px;}
.wsa{word-spacing:-18.480000px;}
.ws5{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.839964px;}
.wsb{word-spacing:-14.400013px;}
.ws4{word-spacing:-14.400000px;}
.ws1{word-spacing:-13.200000px;}
.ws11{word-spacing:-12.600000px;}
.ws13{word-spacing:-12.360000px;}
.ws9{word-spacing:-11.944812px;}
.ws10{word-spacing:-11.460000px;}
.ws18{word-spacing:-9.780000px;}
.ws12{word-spacing:-8.400000px;}
.ws15{word-spacing:-2.400000px;}
.wsc{word-spacing:-1.440000px;}
.ws19{word-spacing:-1.320000px;}
.ws7{word-spacing:-1.200000px;}
.ws16{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.600000px;}
.ws6{word-spacing:0.840000px;}
.ws17{word-spacing:67.200000px;}
.ws3{word-spacing:201.600000px;}
.wse{word-spacing:340.019755px;}
.wsd{word-spacing:341.925441px;}
.wsf{word-spacing:590.702384px;}
._12{margin-left:-79.200000px;}
._7{margin-left:-15.840000px;}
._11{margin-left:-13.200000px;}
._2{margin-left:-6.660000px;}
._8{margin-left:-5.520000px;}
._1{margin-left:-4.456800px;}
._0{margin-left:-2.743200px;}
._3{margin-left:-1.036800px;}
._5{width:1.656000px;}
._c{width:2.794800px;}
._15{width:11.512200px;}
._19{width:13.036800px;}
._9{width:20.299200px;}
._a{width:25.246800px;}
._b{width:27.239400px;}
._14{width:48.289200px;}
._10{width:50.899800px;}
._17{width:66.000000px;}
._16{width:71.528400px;}
._18{width:79.200000px;}
._13{width:100.800000px;}
._4{width:146.232000px;}
._6{width:200.160000px;}
._d{width:243.811072px;}
._e{width:466.103537px;}
._f{width:826.632000px;}
.fc8{color:rgb(128,213,237);}
.fc7{color:rgb(100,195,225);}
.fca{color:rgb(247,243,255);}
.fc9{color:rgb(39,24,68);}
.fc6{color:rgb(120,185,40);}
.fc4{color:rgb(4,6,6);}
.fc3{color:transparent;}
.fc2{color:rgb(102,196,48);}
.fc5{color:rgb(40,70,95);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(41,81,110);}
.fs12{font-size:36.000000px;}
.fs10{font-size:44.755800px;}
.fs5{font-size:47.739247px;}
.fs13{font-size:48.000000px;}
.fsf{font-size:49.556400px;}
.fse{font-size:50.530800px;}
.fsd{font-size:52.913400px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:54.294600px;}
.fs1c{font-size:58.416600px;}
.fs1d{font-size:58.577400px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:71.999837px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:72.000064px;}
.fs15{font-size:73.384561px;}
.fs14{font-size:73.384593px;}
.fs1b{font-size:73.384823px;}
.fs1a{font-size:73.384852px;}
.fs17{font-size:73.384855px;}
.fs19{font-size:73.384890px;}
.fs18{font-size:73.385016px;}
.fs16{font-size:73.385126px;}
.fs11{font-size:76.079400px;}
.fsb{font-size:84.000000px;}
.fs7{font-size:88.350600px;}
.fs6{font-size:89.346000px;}
.fs4{font-size:90.000000px;}
.fs8{font-size:113.937000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:56.127750px;}
.y7{bottom:56.557500px;}
.y6{bottom:76.057500px;}
.y151{bottom:120.076350px;}
.y1ae{bottom:121.139400px;}
.y13d{bottom:137.196900px;}
.yf9{bottom:138.147300px;}
.y109{bottom:138.868128px;}
.y106{bottom:147.896664px;}
.y1c2{bottom:150.696900px;}
.y177{bottom:152.916600px;}
.y108{bottom:154.213014px;}
.y13c{bottom:155.196900px;}
.y36{bottom:159.696900px;}
.y105{bottom:163.241550px;}
.ya0{bottom:168.696900px;}
.y107{bottom:169.557900px;}
.y13b{bottom:173.196900px;}
.y35{bottom:177.696900px;}
.ycc{bottom:186.696750px;}
.y9f{bottom:186.696900px;}
.y13a{bottom:191.196900px;}
.y34{bottom:195.696900px;}
.y25{bottom:204.176550px;}
.ycb{bottom:204.696750px;}
.y9e{bottom:204.696900px;}
.y190{bottom:209.196900px;}
.y176{bottom:209.599350px;}
.y33{bottom:213.696900px;}
.y1c1{bottom:218.196900px;}
.yca{bottom:222.696750px;}
.y9d{bottom:222.696900px;}
.y139{bottom:227.196900px;}
.y24{bottom:228.176550px;}
.y104{bottom:231.589578px;}
.y192{bottom:231.696900px;}
.ye2{bottom:236.196900px;}
.yc9{bottom:240.696750px;}
.y9c{bottom:240.696900px;}
.y101{bottom:243.661950px;}
.y138{bottom:245.196900px;}
.y103{bottom:246.934464px;}
.y32{bottom:249.696900px;}
.y23{bottom:252.176550px;}
.y8a{bottom:254.196900px;}
.yc8{bottom:258.696750px;}
.y9b{bottom:258.696900px;}
.y102{bottom:262.279350px;}
.y137{bottom:263.196900px;}
.y175{bottom:266.282100px;}
.y31{bottom:267.696900px;}
.y89{bottom:272.196900px;}
.y22{bottom:276.176550px;}
.yc7{bottom:276.696900px;}
.y136{bottom:281.196900px;}
.y30{bottom:285.696900px;}
.y88{bottom:290.196900px;}
.y1d5{bottom:294.696900px;}
.y18f{bottom:299.196900px;}
.y21{bottom:300.176550px;}
.y191{bottom:303.696900px;}
.y87{bottom:308.196900px;}
.yc6{bottom:312.696900px;}
.y9a{bottom:317.196900px;}
.y2f{bottom:321.696900px;}
.y1c0{bottom:322.867200px;}
.y174{bottom:322.965000px;}
.y20{bottom:324.176550px;}
.y100{bottom:325.885174px;}
.y86{bottom:326.196900px;}
.yfe{bottom:326.768064px;}
.yc5{bottom:330.696900px;}
.y99{bottom:335.196900px;}
.y2e{bottom:339.696900px;}
.yff{bottom:340.324350px;}
.yfd{bottom:342.112950px;}
.y8d{bottom:344.196900px;}
.y1bf{bottom:346.867200px;}
.y1f{bottom:348.176550px;}
.yc4{bottom:348.696900px;}
.y98{bottom:353.196900px;}
.y2d{bottom:357.696900px;}
.y85{bottom:362.196900px;}
.y1a5{bottom:363.127963px;}
.y1a2{bottom:363.267986px;}
.yc3{bottom:366.696900px;}
.y97{bottom:371.196900px;}
.y1e{bottom:372.176550px;}
.y2c{bottom:375.696900px;}
.y173{bottom:379.647750px;}
.y84{bottom:380.196900px;}
.y1a4{bottom:382.648881px;}
.y1a1{bottom:382.735318px;}
.yc2{bottom:384.696900px;}
.y96{bottom:389.196900px;}
.y158{bottom:393.696900px;}
.y1d{bottom:396.176550px;}
.y83{bottom:398.196900px;}
.y1ce{bottom:398.197500px;}
.y1a3{bottom:402.169800px;}
.y1a0{bottom:402.202650px;}
.y1d4{bottom:402.696900px;}
.y53{bottom:411.696900px;}
.y82{bottom:416.196900px;}
.yfc{bottom:416.228064px;}
.y1c{bottom:420.176550px;}
.yc1{bottom:420.696900px;}
.yfb{bottom:424.354200px;}
.y2b{bottom:429.288150px;}
.y52{bottom:429.696900px;}
.y8c{bottom:434.196900px;}
.y95{bottom:438.696900px;}
.y135{bottom:443.196900px;}
.y1b{bottom:444.176550px;}
.y51{bottom:447.696900px;}
.y81{bottom:452.196900px;}
.yc0{bottom:456.696900px;}
.y134{bottom:461.196900px;}
.y1cd{bottom:461.292000px;}
.y50{bottom:465.696900px;}
.y1a{bottom:468.176550px;}
.y80{bottom:470.196900px;}
.ybf{bottom:474.696900px;}
.y133{bottom:479.196900px;}
.y4f{bottom:483.696900px;}
.y7f{bottom:488.196900px;}
.y19{bottom:492.176550px;}
.y1b9{bottom:492.696900px;}
.y198{bottom:493.023900px;}
.y19f{bottom:498.135900px;}
.y19e{bottom:500.155050px;}
.y199{bottom:500.203950px;}
.y4e{bottom:501.696900px;}
.y19a{bottom:505.078950px;}
.y10c{bottom:505.384914px;}
.y19d{bottom:505.669050px;}
.ye1{bottom:506.196900px;}
.y19b{bottom:506.656650px;}
.y19c{bottom:507.659550px;}
.ybe{bottom:510.696900px;}
.yfa{bottom:513.798000px;}
.y18{bottom:516.176550px;}
.y157{bottom:519.696900px;}
.y10b{bottom:520.729800px;}
.y132{bottom:524.196900px;}
.ybd{bottom:528.696900px;}
.y4d{bottom:537.696900px;}
.y17{bottom:540.176550px;}
.ya3{bottom:540.696900px;}
.y7e{bottom:542.196900px;}
.y187{bottom:543.198750px;}
.y16f{bottom:546.696750px;}
.ybc{bottom:546.696900px;}
.y1d3{bottom:547.596450px;}
.y15f{bottom:551.196900px;}
.y4c{bottom:555.696900px;}
.y7d{bottom:560.196900px;}
.y186{bottom:561.098250px;}
.ya2{bottom:563.196900px;}
.y16{bottom:564.176550px;}
.y16e{bottom:564.696750px;}
.ybb{bottom:564.696900px;}
.yf4{bottom:569.196900px;}
.y4b{bottom:573.696900px;}
.ye0{bottom:578.196900px;}
.y185{bottom:578.997750px;}
.y16d{bottom:582.696750px;}
.y1b8{bottom:582.696900px;}
.y10a{bottom:583.295250px;}
.ya1{bottom:585.696900px;}
.y7c{bottom:587.196900px;}
.y15{bottom:588.176550px;}
.y4a{bottom:591.696900px;}
.y161{bottom:593.256150px;}
.ydf{bottom:596.196900px;}
.y184{bottom:596.897250px;}
.y1cc{bottom:600.696750px;}
.y1b7{bottom:600.696900px;}
.yf3{bottom:605.196900px;}
.y160{bottom:608.256150px;}
.y131{bottom:609.549750px;}
.y49{bottom:609.696900px;}
.y14{bottom:612.176550px;}
.yf8{bottom:614.196900px;}
.y18e{bottom:614.197500px;}
.y183{bottom:614.796750px;}
.y16c{bottom:618.696750px;}
.y1b6{bottom:618.696900px;}
.yde{bottom:623.196900px;}
.y62{bottom:627.696900px;}
.y150{bottom:632.196900px;}
.y182{bottom:632.696250px;}
.y13{bottom:636.176550px;}
.y16b{bottom:636.696750px;}
.y172{bottom:636.696900px;}
.yf2{bottom:641.196900px;}
.y48{bottom:645.696900px;}
.y14f{bottom:650.196900px;}
.y16a{bottom:654.696750px;}
.y1b5{bottom:654.696900px;}
.yba{bottom:659.196750px;}
.yf1{bottom:659.196900px;}
.y12{bottom:660.176550px;}
.y47{bottom:663.696900px;}
.y120{bottom:663.789678px;}
.y123{bottom:664.000947px;}
.y14e{bottom:668.196900px;}
.y181{bottom:668.696250px;}
.y12f{bottom:672.162114px;}
.y169{bottom:672.696750px;}
.y1b4{bottom:672.696900px;}
.y8b{bottom:677.196600px;}
.yb9{bottom:677.196750px;}
.yf0{bottom:677.196900px;}
.y122{bottom:678.434248px;}
.y11f{bottom:679.134564px;}
.y156{bottom:681.696900px;}
.y11{bottom:684.176550px;}
.ya9{bottom:684.271350px;}
.yf7{bottom:686.196900px;}
.y180{bottom:686.571750px;}
.y12e{bottom:687.507000px;}
.y1b3{bottom:690.696900px;}
.y121{bottom:692.867550px;}
.y11e{bottom:694.479450px;}
.yb8{bottom:695.196750px;}
.yef{bottom:695.196900px;}
.y1b2{bottom:698.947950px;}
.y46{bottom:699.696900px;}
.ydd{bottom:704.196900px;}
.y17f{bottom:704.447250px;}
.y10{bottom:708.176550px;}
.y94{bottom:708.696600px;}
.y168{bottom:708.696750px;}
.yf6{bottom:708.696900px;}
.yb7{bottom:713.196750px;}
.yee{bottom:713.196900px;}
.ya8{bottom:713.346750px;}
.y45{bottom:717.696900px;}
.ydc{bottom:722.196900px;}
.y17e{bottom:722.322750px;}
.y1b1{bottom:722.947950px;}
.y167{bottom:726.696750px;}
.y171{bottom:726.696900px;}
.yb6{bottom:731.196750px;}
.yf5{bottom:731.196900px;}
.yf{bottom:732.176550px;}
.y44{bottom:735.696900px;}
.ya7{bottom:735.963300px;}
.ydb{bottom:740.196900px;}
.y17d{bottom:740.198250px;}
.y166{bottom:744.696750px;}
.y197{bottom:744.696900px;}
.y69{bottom:745.909800px;}
.y67{bottom:747.181650px;}
.yed{bottom:749.196900px;}
.y11b{bottom:752.525628px;}
.y43{bottom:753.696900px;}
.ye{bottom:756.176550px;}
.yda{bottom:758.196900px;}
.y12d{bottom:761.291364px;}
.y11d{bottom:761.554014px;}
.y1cb{bottom:762.696750px;}
.y196{bottom:762.696900px;}
.yb5{bottom:767.196750px;}
.yec{bottom:767.196900px;}
.y11a{bottom:767.870514px;}
.y61{bottom:771.696750px;}
.y42{bottom:771.696900px;}
.y14d{bottom:776.196900px;}
.y17c{bottom:776.198250px;}
.y12c{bottom:776.636250px;}
.y11c{bottom:776.898900px;}
.yd{bottom:780.176550px;}
.y165{bottom:780.696750px;}
.yd9{bottom:780.696900px;}
.y119{bottom:783.215400px;}
.yb4{bottom:785.196750px;}
.y15e{bottom:785.196900px;}
.y41{bottom:789.696900px;}
.y17b{bottom:793.947750px;}
.y170{bottom:794.196900px;}
.y164{bottom:798.696750px;}
.yd8{bottom:798.696900px;}
.yb3{bottom:803.196750px;}
.y15d{bottom:803.196900px;}
.yc{bottom:804.176550px;}
.y60{bottom:807.696750px;}
.y40{bottom:807.696900px;}
.ya6{bottom:810.696900px;}
.y17a{bottom:811.696500px;}
.y14c{bottom:812.196900px;}
.y7b{bottom:816.202727px;}
.y163{bottom:816.696750px;}
.yd7{bottom:816.696900px;}
.y15c{bottom:821.196900px;}
.y5f{bottom:825.696750px;}
.y3f{bottom:825.696900px;}
.yb{bottom:828.176550px;}
.yeb{bottom:830.196750px;}
.y14b{bottom:830.196900px;}
.y7a{bottom:832.043177px;}
.ya5{bottom:833.196750px;}
.y1ca{bottom:834.696750px;}
.yd6{bottom:834.696900px;}
.yb2{bottom:839.196750px;}
.y15b{bottom:839.196900px;}
.y12b{bottom:843.289801px;}
.y5e{bottom:843.696750px;}
.y3e{bottom:843.696900px;}
.y74{bottom:847.856404px;}
.y79{bottom:847.883626px;}
.y14a{bottom:848.196900px;}
.y116{bottom:850.273914px;}
.y118{bottom:850.290114px;}
.ya{bottom:852.176550px;}
.y162{bottom:852.696750px;}
.yd5{bottom:852.696900px;}
.ya4{bottom:855.696750px;}
.y12a{bottom:855.922125px;}
.yb1{bottom:857.196750px;}
.y1bd{bottom:857.196900px;}
.y129{bottom:858.530700px;}
.y5d{bottom:861.696750px;}
.y1ad{bottom:861.696900px;}
.y73{bottom:863.696854px;}
.y78{bottom:863.724076px;}
.y115{bottom:865.618800px;}
.y117{bottom:865.635000px;}
.y149{bottom:866.196900px;}
.yea{bottom:870.696750px;}
.y195{bottom:870.696900px;}
.yb0{bottom:875.196750px;}
.y1b0{bottom:875.196900px;}
.y18d{bottom:878.996100px;}
.y72{bottom:879.537303px;}
.y77{bottom:879.564525px;}
.y5c{bottom:879.696750px;}
.y3d{bottom:879.696900px;}
.y66{bottom:880.078029px;}
.y179{bottom:880.251450px;}
.y15a{bottom:884.196900px;}
.ye9{bottom:888.696750px;}
.yd4{bottom:888.696900px;}
.y1be{bottom:890.521650px;}
.yaf{bottom:893.196750px;}
.y1d2{bottom:893.196900px;}
.y71{bottom:895.377753px;}
.y76{bottom:895.404975px;}
.y5b{bottom:897.696750px;}
.y3c{bottom:897.696900px;}
.y148{bottom:902.196900px;}
.y18c{bottom:902.990100px;}
.y178{bottom:904.245450px;}
.y65{bottom:906.368089px;}
.ye8{bottom:906.696750px;}
.yd3{bottom:906.696900px;}
.y26{bottom:907.929600px;}
.y1d1{bottom:911.196900px;}
.y70{bottom:911.218202px;}
.y3b{bottom:915.696900px;}
.y147{bottom:920.196900px;}
.ye7{bottom:924.696750px;}
.yd2{bottom:924.696900px;}
.y6f{bottom:927.058652px;}
.y75{bottom:927.072300px;}
.yae{bottom:929.196750px;}
.y1d0{bottom:929.196900px;}
.y114{bottom:929.997528px;}
.y64{bottom:932.658150px;}
.y5a{bottom:933.696750px;}
.y3a{bottom:933.696900px;}
.y146{bottom:938.196900px;}
.y128{bottom:939.550014px;}
.y1c9{bottom:942.696750px;}
.yd1{bottom:942.696900px;}
.y6e{bottom:942.899101px;}
.y113{bottom:945.342414px;}
.y111{bottom:947.152200px;}
.yad{bottom:947.196750px;}
.y1cf{bottom:947.196900px;}
.y59{bottom:951.696750px;}
.y39{bottom:951.696900px;}
.y127{bottom:954.894900px;}
.y145{bottom:956.196900px;}
.y6d{bottom:958.739551px;}
.y112{bottom:960.687300px;}
.ye6{bottom:960.696750px;}
.y155{bottom:960.696900px;}
.yac{bottom:965.196750px;}
.y58{bottom:969.696750px;}
.y1ac{bottom:969.696900px;}
.y18a{bottom:974.196750px;}
.y144{bottom:974.196900px;}
.y6c{bottom:974.580000px;}
.ye5{bottom:978.696750px;}
.y38{bottom:978.696900px;}
.yab{bottom:983.196750px;}
.y57{bottom:987.696750px;}
.y1ab{bottom:987.696900px;}
.y6b{bottom:990.420450px;}
.y189{bottom:992.196750px;}
.y5{bottom:992.196900px;}
.y28{bottom:995.230800px;}
.ye4{bottom:996.696750px;}
.yd0{bottom:996.696900px;}
.y93{bottom:1001.196750px;}
.y37{bottom:1001.196900px;}
.y56{bottom:1005.696750px;}
.y1aa{bottom:1005.696900px;}
.yaa{bottom:1010.196750px;}
.y143{bottom:1010.196900px;}
.y1c8{bottom:1014.696750px;}
.ycf{bottom:1014.696900px;}
.y110{bottom:1018.733478px;}
.y92{bottom:1019.196750px;}
.y1bc{bottom:1019.196900px;}
.y27{bottom:1023.180150px;}
.ye3{bottom:1023.696750px;}
.y1a9{bottom:1023.696900px;}
.y4{bottom:1027.401000px;}
.y188{bottom:1028.196750px;}
.y142{bottom:1028.196900px;}
.y126{bottom:1028.421864px;}
.y1c7{bottom:1032.696750px;}
.yce{bottom:1032.696900px;}
.y10f{bottom:1034.078364px;}
.y10d{bottom:1035.888150px;}
.y125{bottom:1036.805400px;}
.y91{bottom:1037.196750px;}
.y1a8{bottom:1041.696900px;}
.y68{bottom:1045.308150px;}
.y55{bottom:1046.196750px;}
.y141{bottom:1046.196900px;}
.y6a{bottom:1046.536050px;}
.y10e{bottom:1049.423250px;}
.y1c6{bottom:1050.696750px;}
.y1af{bottom:1050.696900px;}
.y90{bottom:1055.196750px;}
.y1a7{bottom:1059.696900px;}
.y159{bottom:1060.505250px;}
.y140{bottom:1064.196900px;}
.y63{bottom:1067.193000px;}
.y1c5{bottom:1068.696750px;}
.y154{bottom:1068.696900px;}
.y1bb{bottom:1071.427350px;}
.y54{bottom:1073.196750px;}
.ycd{bottom:1073.196900px;}
.y3{bottom:1076.901000px;}
.y8f{bottom:1082.196750px;}
.y13f{bottom:1082.196900px;}
.y1c4{bottom:1086.696750px;}
.y153{bottom:1086.696900px;}
.y1ba{bottom:1095.427350px;}
.y1a6{bottom:1095.696900px;}
.y194{bottom:1096.104300px;}
.y18b{bottom:1100.196750px;}
.y193{bottom:1100.196900px;}
.y8e{bottom:1104.696750px;}
.y124{bottom:1105.286100px;}
.y130{bottom:1106.153550px;}
.y13e{bottom:1109.196900px;}
.y1c3{bottom:1113.696750px;}
.y152{bottom:1113.696900px;}
.y2{bottom:1126.401000px;}
.y1{bottom:1190.190300px;}
.y9{bottom:1190.196750px;}
.y8{bottom:1190.709450px;}
.y2a{bottom:1192.199250px;}
.h1f{height:32.761246px;}
.hb{height:34.467736px;}
.h1a{height:35.878834px;}
.h23{height:36.000000px;}
.h19{height:36.483238px;}
.h18{height:36.584299px;}
.h15{height:38.203475px;}
.h17{height:38.309302px;}
.h1c{height:38.732609px;}
.hf{height:39.309290px;}
.h10{height:39.363885px;}
.h11{height:40.500000px;}
.h2d{height:42.293618px;}
.h2e{height:42.410038px;}
.h5{height:43.560000px;}
.h9{height:45.000000px;}
.h22{height:45.003000px;}
.h12{height:48.000000px;}
.h4{height:50.832000px;}
.h8{height:52.271881px;}
.h2{height:52.272000px;}
.h14{height:52.272046px;}
.h7{height:52.272185px;}
.h6{height:54.000000px;}
.h21{height:55.081486px;}
.h20{height:57.981353px;}
.h13{height:63.000000px;}
.hd{height:63.789133px;}
.hc{height:64.507812px;}
.ha{height:65.340000px;}
.h1b{height:66.578009px;}
.h16{height:67.184302px;}
.h26{height:70.048899px;}
.h25{height:70.048930px;}
.h2c{height:70.049149px;}
.h2b{height:70.049177px;}
.h28{height:70.049180px;}
.h2a{height:70.049213px;}
.h29{height:70.049334px;}
.h27{height:70.049439px;}
.h1d{height:71.237153px;}
.h1e{height:72.856246px;}
.he{height:82.262514px;}
.h24{height:90.000000px;}
.h3{height:130.680000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.185050px;}
.x2{left:54.212550px;}
.xe{left:56.338650px;}
.x9{left:57.401550px;}
.x1f{left:60.082650px;}
.xa{left:67.181100px;}
.xb{left:71.433000px;}
.x57{left:72.886500px;}
.x64{left:75.472500px;}
.x65{left:81.065400px;}
.x51{left:95.669250px;}
.x1e{left:98.353950px;}
.x2a{left:100.071150px;}
.x63{left:104.576250px;}
.x4d{left:110.072100px;}
.x43{left:112.280950px;}
.x4c{left:113.441850px;}
.x31{left:117.243900px;}
.x2e{left:119.034450px;}
.x2f{left:124.656499px;}
.x2c{left:126.704400px;}
.x4e{left:127.983286px;}
.x4{left:129.685050px;}
.x5c{left:132.054150px;}
.x3d{left:134.028300px;}
.x42{left:136.171350px;}
.x34{left:140.056200px;}
.x3{left:143.170050px;}
.x5d{left:153.667050px;}
.x5e{left:163.660950px;}
.x5f{left:166.466700px;}
.x5{left:183.685050px;}
.x48{left:187.923450px;}
.x15{left:200.274750px;}
.x50{left:207.919950px;}
.x37{left:210.073050px;}
.x30{left:256.447200px;}
.x3f{left:258.889178px;}
.x41{left:262.039765px;}
.x32{left:265.439556px;}
.x3a{left:266.901450px;}
.x44{left:267.973050px;}
.x3e{left:269.538000px;}
.x46{left:272.583450px;}
.x38{left:274.254300px;}
.x4a{left:277.624037px;}
.x3b{left:279.124445px;}
.x35{left:280.359300px;}
.x14{left:282.467550px;}
.xf{left:285.076800px;}
.x4f{left:288.850078px;}
.x39{left:297.112889px;}
.x45{left:307.684557px;}
.x49{left:311.984622px;}
.x4b{left:345.954954px;}
.x2d{left:351.956506px;}
.x10{left:375.281250px;}
.x47{left:378.745648px;}
.x33{left:396.969040px;}
.x11{left:400.119438px;}
.x66{left:402.601650px;}
.x36{left:444.271785px;}
.x40{left:456.348759px;}
.x55{left:459.849300px;}
.x5b{left:461.161350px;}
.x28{left:462.224400px;}
.xc{left:463.464600px;}
.x3c{left:466.821504px;}
.x53{left:474.874050px;}
.x54{left:478.559100px;}
.x59{left:479.991450px;}
.xd{left:484.724400px;}
.x12{left:487.720200px;}
.x29{left:506.870100px;}
.x27{left:508.996050px;}
.x61{left:511.481566px;}
.x60{left:518.111850px;}
.x2b{left:523.054950px;}
.x58{left:530.554350px;}
.x62{left:534.541519px;}
.x5a{left:541.556700px;}
.x22{left:572.342250px;}
.x1c{left:596.534361px;}
.x20{left:598.865400px;}
.x13{left:602.498400px;}
.x18{left:604.936450px;}
.x16{left:605.940900px;}
.x56{left:612.140400px;}
.x6{left:613.512750px;}
.x21{left:614.846550px;}
.x17{left:616.474052px;}
.x23{left:619.376550px;}
.x19{left:621.034799px;}
.x1d{left:632.803153px;}
.x7{left:639.380850px;}
.x1a{left:677.623346px;}
.x25{left:706.070550px;}
.x24{left:716.016750px;}
.x26{left:732.755400px;}
.x52{left:786.612750px;}
.x1b{left:792.999371px;}
.x8{left:794.367600px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.109995pt;}
.v3{vertical-align:24.751467pt;}
.v2{vertical-align:25.666667pt;}
.v4{vertical-align:28.892928pt;}
.v7{vertical-align:32.000000pt;}
.v5{vertical-align:35.640000pt;}
.ls17{letter-spacing:-9.493333pt;}
.ls16{letter-spacing:-1.973333pt;}
.lse{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.853333pt;}
.lsb{letter-spacing:0.960000pt;}
.ls9{letter-spacing:0.965237pt;}
.ls13{letter-spacing:1.065600pt;}
.lsa{letter-spacing:1.066133pt;}
.ls2{letter-spacing:1.066667pt;}
.ls11{letter-spacing:1.069333pt;}
.ls15{letter-spacing:1.072000pt;}
.ls3{letter-spacing:1.278933pt;}
.lsc{letter-spacing:1.279467pt;}
.ls4{letter-spacing:1.279997pt;}
.ls0{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.493333pt;}
.ls8{letter-spacing:1.588373pt;}
.ls7{letter-spacing:1.600000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls10{letter-spacing:56.977067pt;}
.ls14{letter-spacing:59.733333pt;}
.ws1a{word-spacing:-17.600000pt;}
.ws8{word-spacing:-17.472107pt;}
.wsa{word-spacing:-16.426667pt;}
.ws5{word-spacing:-14.080000pt;}
.ws2{word-spacing:-14.079968pt;}
.wsb{word-spacing:-12.800011pt;}
.ws4{word-spacing:-12.800000pt;}
.ws1{word-spacing:-11.733333pt;}
.ws11{word-spacing:-11.200000pt;}
.ws13{word-spacing:-10.986667pt;}
.ws9{word-spacing:-10.617611pt;}
.ws10{word-spacing:-10.186667pt;}
.ws18{word-spacing:-8.693333pt;}
.ws12{word-spacing:-7.466667pt;}
.ws15{word-spacing:-2.133333pt;}
.wsc{word-spacing:-1.280000pt;}
.ws19{word-spacing:-1.173333pt;}
.ws7{word-spacing:-1.066667pt;}
.ws16{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.533333pt;}
.ws6{word-spacing:0.746667pt;}
.ws17{word-spacing:59.733333pt;}
.ws3{word-spacing:179.200000pt;}
.wse{word-spacing:302.239782pt;}
.wsd{word-spacing:303.933725pt;}
.wsf{word-spacing:525.068786pt;}
._12{margin-left:-70.400000pt;}
._7{margin-left:-14.080000pt;}
._11{margin-left:-11.733333pt;}
._2{margin-left:-5.920000pt;}
._8{margin-left:-4.906667pt;}
._1{margin-left:-3.961600pt;}
._0{margin-left:-2.438400pt;}
._3{margin-left:-0.921600pt;}
._5{width:1.472000pt;}
._c{width:2.484267pt;}
._15{width:10.233067pt;}
._19{width:11.588267pt;}
._9{width:18.043733pt;}
._a{width:22.441600pt;}
._b{width:24.212800pt;}
._14{width:42.923733pt;}
._10{width:45.244267pt;}
._17{width:58.666667pt;}
._16{width:63.580800pt;}
._18{width:70.400000pt;}
._13{width:89.600000pt;}
._4{width:129.984000pt;}
._6{width:177.920000pt;}
._d{width:216.720953pt;}
._e{width:414.314255pt;}
._f{width:734.784000pt;}
.fs12{font-size:32.000000pt;}
.fs10{font-size:39.782933pt;}
.fs5{font-size:42.434886pt;}
.fs13{font-size:42.666667pt;}
.fsf{font-size:44.050133pt;}
.fse{font-size:44.916267pt;}
.fsd{font-size:47.034133pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:48.261867pt;}
.fs1c{font-size:51.925867pt;}
.fs1d{font-size:52.068800pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:63.999855pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:64.000057pt;}
.fs15{font-size:65.230721pt;}
.fs14{font-size:65.230750pt;}
.fs1b{font-size:65.230953pt;}
.fs1a{font-size:65.230980pt;}
.fs17{font-size:65.230982pt;}
.fs19{font-size:65.231013pt;}
.fs18{font-size:65.231126pt;}
.fs16{font-size:65.231223pt;}
.fs11{font-size:67.626133pt;}
.fsb{font-size:74.666667pt;}
.fs7{font-size:78.533867pt;}
.fs6{font-size:79.418667pt;}
.fs4{font-size:80.000000pt;}
.fs8{font-size:101.277333pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:49.891333pt;}
.y7{bottom:50.273333pt;}
.y6{bottom:67.606667pt;}
.y151{bottom:106.734533pt;}
.y1ae{bottom:107.679467pt;}
.y13d{bottom:121.952800pt;}
.yf9{bottom:122.797600pt;}
.y109{bottom:123.438336pt;}
.y106{bottom:131.463701pt;}
.y1c2{bottom:133.952800pt;}
.y177{bottom:135.925867pt;}
.y108{bottom:137.078235pt;}
.y13c{bottom:137.952800pt;}
.y36{bottom:141.952800pt;}
.y105{bottom:145.103600pt;}
.ya0{bottom:149.952800pt;}
.y107{bottom:150.718133pt;}
.y13b{bottom:153.952800pt;}
.y35{bottom:157.952800pt;}
.ycc{bottom:165.952667pt;}
.y9f{bottom:165.952800pt;}
.y13a{bottom:169.952800pt;}
.y34{bottom:173.952800pt;}
.y25{bottom:181.490267pt;}
.ycb{bottom:181.952667pt;}
.y9e{bottom:181.952800pt;}
.y190{bottom:185.952800pt;}
.y176{bottom:186.310533pt;}
.y33{bottom:189.952800pt;}
.y1c1{bottom:193.952800pt;}
.yca{bottom:197.952667pt;}
.y9d{bottom:197.952800pt;}
.y139{bottom:201.952800pt;}
.y24{bottom:202.823600pt;}
.y104{bottom:205.857403pt;}
.y192{bottom:205.952800pt;}
.ye2{bottom:209.952800pt;}
.yc9{bottom:213.952667pt;}
.y9c{bottom:213.952800pt;}
.y101{bottom:216.588400pt;}
.y138{bottom:217.952800pt;}
.y103{bottom:219.497301pt;}
.y32{bottom:221.952800pt;}
.y23{bottom:224.156933pt;}
.y8a{bottom:225.952800pt;}
.yc8{bottom:229.952667pt;}
.y9b{bottom:229.952800pt;}
.y102{bottom:233.137200pt;}
.y137{bottom:233.952800pt;}
.y175{bottom:236.695200pt;}
.y31{bottom:237.952800pt;}
.y89{bottom:241.952800pt;}
.y22{bottom:245.490267pt;}
.yc7{bottom:245.952800pt;}
.y136{bottom:249.952800pt;}
.y30{bottom:253.952800pt;}
.y88{bottom:257.952800pt;}
.y1d5{bottom:261.952800pt;}
.y18f{bottom:265.952800pt;}
.y21{bottom:266.823600pt;}
.y191{bottom:269.952800pt;}
.y87{bottom:273.952800pt;}
.yc6{bottom:277.952800pt;}
.y9a{bottom:281.952800pt;}
.y2f{bottom:285.952800pt;}
.y1c0{bottom:286.993067pt;}
.y174{bottom:287.080000pt;}
.y20{bottom:288.156933pt;}
.y100{bottom:289.675710pt;}
.y86{bottom:289.952800pt;}
.yfe{bottom:290.460501pt;}
.yc5{bottom:293.952800pt;}
.y99{bottom:297.952800pt;}
.y2e{bottom:301.952800pt;}
.yff{bottom:302.510533pt;}
.yfd{bottom:304.100400pt;}
.y8d{bottom:305.952800pt;}
.y1bf{bottom:308.326400pt;}
.y1f{bottom:309.490267pt;}
.yc4{bottom:309.952800pt;}
.y98{bottom:313.952800pt;}
.y2d{bottom:317.952800pt;}
.y85{bottom:321.952800pt;}
.y1a5{bottom:322.780411pt;}
.y1a2{bottom:322.904877pt;}
.yc3{bottom:325.952800pt;}
.y97{bottom:329.952800pt;}
.y1e{bottom:330.823600pt;}
.y2c{bottom:333.952800pt;}
.y173{bottom:337.464667pt;}
.y84{bottom:337.952800pt;}
.y1a4{bottom:340.132339pt;}
.y1a1{bottom:340.209172pt;}
.yc2{bottom:341.952800pt;}
.y96{bottom:345.952800pt;}
.y158{bottom:349.952800pt;}
.y1d{bottom:352.156933pt;}
.y83{bottom:353.952800pt;}
.y1ce{bottom:353.953333pt;}
.y1a3{bottom:357.484267pt;}
.y1a0{bottom:357.513467pt;}
.y1d4{bottom:357.952800pt;}
.y53{bottom:365.952800pt;}
.y82{bottom:369.952800pt;}
.yfc{bottom:369.980501pt;}
.y1c{bottom:373.490267pt;}
.yc1{bottom:373.952800pt;}
.yfb{bottom:377.203733pt;}
.y2b{bottom:381.589467pt;}
.y52{bottom:381.952800pt;}
.y8c{bottom:385.952800pt;}
.y95{bottom:389.952800pt;}
.y135{bottom:393.952800pt;}
.y1b{bottom:394.823600pt;}
.y51{bottom:397.952800pt;}
.y81{bottom:401.952800pt;}
.yc0{bottom:405.952800pt;}
.y134{bottom:409.952800pt;}
.y1cd{bottom:410.037333pt;}
.y50{bottom:413.952800pt;}
.y1a{bottom:416.156933pt;}
.y80{bottom:417.952800pt;}
.ybf{bottom:421.952800pt;}
.y133{bottom:425.952800pt;}
.y4f{bottom:429.952800pt;}
.y7f{bottom:433.952800pt;}
.y19{bottom:437.490267pt;}
.y1b9{bottom:437.952800pt;}
.y198{bottom:438.243467pt;}
.y19f{bottom:442.787467pt;}
.y19e{bottom:444.582267pt;}
.y199{bottom:444.625733pt;}
.y4e{bottom:445.952800pt;}
.y19a{bottom:448.959067pt;}
.y10c{bottom:449.231035pt;}
.y19d{bottom:449.483600pt;}
.ye1{bottom:449.952800pt;}
.y19b{bottom:450.361467pt;}
.y19c{bottom:451.252933pt;}
.ybe{bottom:453.952800pt;}
.yfa{bottom:456.709333pt;}
.y18{bottom:458.823600pt;}
.y157{bottom:461.952800pt;}
.y10b{bottom:462.870933pt;}
.y132{bottom:465.952800pt;}
.ybd{bottom:469.952800pt;}
.y4d{bottom:477.952800pt;}
.y17{bottom:480.156933pt;}
.ya3{bottom:480.619467pt;}
.y7e{bottom:481.952800pt;}
.y187{bottom:482.843333pt;}
.y16f{bottom:485.952667pt;}
.ybc{bottom:485.952800pt;}
.y1d3{bottom:486.752400pt;}
.y15f{bottom:489.952800pt;}
.y4c{bottom:493.952800pt;}
.y7d{bottom:497.952800pt;}
.y186{bottom:498.754000pt;}
.ya2{bottom:500.619467pt;}
.y16{bottom:501.490267pt;}
.y16e{bottom:501.952667pt;}
.ybb{bottom:501.952800pt;}
.yf4{bottom:505.952800pt;}
.y4b{bottom:509.952800pt;}
.ye0{bottom:513.952800pt;}
.y185{bottom:514.664667pt;}
.y16d{bottom:517.952667pt;}
.y1b8{bottom:517.952800pt;}
.y10a{bottom:518.484667pt;}
.ya1{bottom:520.619467pt;}
.y7c{bottom:521.952800pt;}
.y15{bottom:522.823600pt;}
.y4a{bottom:525.952800pt;}
.y161{bottom:527.338800pt;}
.ydf{bottom:529.952800pt;}
.y184{bottom:530.575333pt;}
.y1cc{bottom:533.952667pt;}
.y1b7{bottom:533.952800pt;}
.yf3{bottom:537.952800pt;}
.y160{bottom:540.672133pt;}
.y131{bottom:541.822000pt;}
.y49{bottom:541.952800pt;}
.y14{bottom:544.156933pt;}
.yf8{bottom:545.952800pt;}
.y18e{bottom:545.953333pt;}
.y183{bottom:546.486000pt;}
.y16c{bottom:549.952667pt;}
.y1b6{bottom:549.952800pt;}
.yde{bottom:553.952800pt;}
.y62{bottom:557.952800pt;}
.y150{bottom:561.952800pt;}
.y182{bottom:562.396667pt;}
.y13{bottom:565.490267pt;}
.y16b{bottom:565.952667pt;}
.y172{bottom:565.952800pt;}
.yf2{bottom:569.952800pt;}
.y48{bottom:573.952800pt;}
.y14f{bottom:577.952800pt;}
.y16a{bottom:581.952667pt;}
.y1b5{bottom:581.952800pt;}
.yba{bottom:585.952667pt;}
.yf1{bottom:585.952800pt;}
.y12{bottom:586.823600pt;}
.y47{bottom:589.952800pt;}
.y120{bottom:590.035269pt;}
.y123{bottom:590.223064pt;}
.y14e{bottom:593.952800pt;}
.y181{bottom:594.396667pt;}
.y12f{bottom:597.477435pt;}
.y169{bottom:597.952667pt;}
.y1b4{bottom:597.952800pt;}
.y8b{bottom:601.952533pt;}
.yb9{bottom:601.952667pt;}
.yf0{bottom:601.952800pt;}
.y122{bottom:603.052665pt;}
.y11f{bottom:603.675168pt;}
.y156{bottom:605.952800pt;}
.y11{bottom:608.156933pt;}
.ya9{bottom:608.241200pt;}
.yf7{bottom:609.952800pt;}
.y180{bottom:610.286000pt;}
.y12e{bottom:611.117333pt;}
.y1b3{bottom:613.952800pt;}
.y121{bottom:615.882267pt;}
.y11e{bottom:617.315067pt;}
.yb8{bottom:617.952667pt;}
.yef{bottom:617.952800pt;}
.y1b2{bottom:621.287067pt;}
.y46{bottom:621.952800pt;}
.ydd{bottom:625.952800pt;}
.y17f{bottom:626.175333pt;}
.y10{bottom:629.490267pt;}
.y94{bottom:629.952533pt;}
.y168{bottom:629.952667pt;}
.yf6{bottom:629.952800pt;}
.yb7{bottom:633.952667pt;}
.yee{bottom:633.952800pt;}
.ya8{bottom:634.086000pt;}
.y45{bottom:637.952800pt;}
.ydc{bottom:641.952800pt;}
.y17e{bottom:642.064667pt;}
.y1b1{bottom:642.620400pt;}
.y167{bottom:645.952667pt;}
.y171{bottom:645.952800pt;}
.yb6{bottom:649.952667pt;}
.yf5{bottom:649.952800pt;}
.yf{bottom:650.823600pt;}
.y44{bottom:653.952800pt;}
.ya7{bottom:654.189600pt;}
.ydb{bottom:657.952800pt;}
.y17d{bottom:657.954000pt;}
.y166{bottom:661.952667pt;}
.y197{bottom:661.952800pt;}
.y69{bottom:663.030933pt;}
.y67{bottom:664.161467pt;}
.yed{bottom:665.952800pt;}
.y11b{bottom:668.911669pt;}
.y43{bottom:669.952800pt;}
.ye{bottom:672.156933pt;}
.yda{bottom:673.952800pt;}
.y12d{bottom:676.703435pt;}
.y11d{bottom:676.936901pt;}
.y1cb{bottom:677.952667pt;}
.y196{bottom:677.952800pt;}
.yb5{bottom:681.952667pt;}
.yec{bottom:681.952800pt;}
.y11a{bottom:682.551568pt;}
.y61{bottom:685.952667pt;}
.y42{bottom:685.952800pt;}
.y14d{bottom:689.952800pt;}
.y17c{bottom:689.954000pt;}
.y12c{bottom:690.343333pt;}
.y11c{bottom:690.576800pt;}
.yd{bottom:693.490267pt;}
.y165{bottom:693.952667pt;}
.yd9{bottom:693.952800pt;}
.y119{bottom:696.191467pt;}
.yb4{bottom:697.952667pt;}
.y15e{bottom:697.952800pt;}
.y41{bottom:701.952800pt;}
.y17b{bottom:705.731333pt;}
.y170{bottom:705.952800pt;}
.y164{bottom:709.952667pt;}
.yd8{bottom:709.952800pt;}
.yb3{bottom:713.952667pt;}
.y15d{bottom:713.952800pt;}
.yc{bottom:714.823600pt;}
.y60{bottom:717.952667pt;}
.y40{bottom:717.952800pt;}
.ya6{bottom:720.619467pt;}
.y17a{bottom:721.508000pt;}
.y14c{bottom:721.952800pt;}
.y7b{bottom:725.513535pt;}
.y163{bottom:725.952667pt;}
.yd7{bottom:725.952800pt;}
.y15c{bottom:729.952800pt;}
.y5f{bottom:733.952667pt;}
.y3f{bottom:733.952800pt;}
.yb{bottom:736.156933pt;}
.yeb{bottom:737.952667pt;}
.y14b{bottom:737.952800pt;}
.y7a{bottom:739.593935pt;}
.ya5{bottom:740.619333pt;}
.y1ca{bottom:741.952667pt;}
.yd6{bottom:741.952800pt;}
.yb2{bottom:745.952667pt;}
.y15b{bottom:745.952800pt;}
.y12b{bottom:749.590934pt;}
.y5e{bottom:749.952667pt;}
.y3e{bottom:749.952800pt;}
.y74{bottom:753.650137pt;}
.y79{bottom:753.674335pt;}
.y14a{bottom:753.952800pt;}
.y116{bottom:755.799035pt;}
.y118{bottom:755.813435pt;}
.ya{bottom:757.490267pt;}
.y162{bottom:757.952667pt;}
.yd5{bottom:757.952800pt;}
.ya4{bottom:760.619333pt;}
.y12a{bottom:760.819667pt;}
.yb1{bottom:761.952667pt;}
.y1bd{bottom:761.952800pt;}
.y129{bottom:763.138400pt;}
.y5d{bottom:765.952667pt;}
.y1ad{bottom:765.952800pt;}
.y73{bottom:767.730537pt;}
.y78{bottom:767.754734pt;}
.y115{bottom:769.438933pt;}
.y117{bottom:769.453333pt;}
.y149{bottom:769.952800pt;}
.yea{bottom:773.952667pt;}
.y195{bottom:773.952800pt;}
.yb0{bottom:777.952667pt;}
.y1b0{bottom:777.952800pt;}
.y18d{bottom:781.329867pt;}
.y72{bottom:781.810936pt;}
.y77{bottom:781.835134pt;}
.y5c{bottom:781.952667pt;}
.y3d{bottom:781.952800pt;}
.y66{bottom:782.291581pt;}
.y179{bottom:782.445733pt;}
.y15a{bottom:785.952800pt;}
.ye9{bottom:789.952667pt;}
.yd4{bottom:789.952800pt;}
.y1be{bottom:791.574800pt;}
.yaf{bottom:793.952667pt;}
.y1d2{bottom:793.952800pt;}
.y71{bottom:795.891336pt;}
.y76{bottom:795.915533pt;}
.y5b{bottom:797.952667pt;}
.y3c{bottom:797.952800pt;}
.y148{bottom:801.952800pt;}
.y18c{bottom:802.657867pt;}
.y178{bottom:803.773733pt;}
.y65{bottom:805.660524pt;}
.ye8{bottom:805.952667pt;}
.yd3{bottom:805.952800pt;}
.y26{bottom:807.048533pt;}
.y1d1{bottom:809.952800pt;}
.y70{bottom:809.971735pt;}
.y3b{bottom:813.952800pt;}
.y147{bottom:817.952800pt;}
.ye7{bottom:821.952667pt;}
.yd2{bottom:821.952800pt;}
.y6f{bottom:824.052135pt;}
.y75{bottom:824.064267pt;}
.yae{bottom:825.952667pt;}
.y1d0{bottom:825.952800pt;}
.y114{bottom:826.664469pt;}
.y64{bottom:829.029467pt;}
.y5a{bottom:829.952667pt;}
.y3a{bottom:829.952800pt;}
.y146{bottom:833.952800pt;}
.y128{bottom:835.155568pt;}
.y1c9{bottom:837.952667pt;}
.yd1{bottom:837.952800pt;}
.y6e{bottom:838.132535pt;}
.y113{bottom:840.304368pt;}
.y111{bottom:841.913067pt;}
.yad{bottom:841.952667pt;}
.y1cf{bottom:841.952800pt;}
.y59{bottom:845.952667pt;}
.y39{bottom:845.952800pt;}
.y127{bottom:848.795467pt;}
.y145{bottom:849.952800pt;}
.y6d{bottom:852.212934pt;}
.y112{bottom:853.944267pt;}
.ye6{bottom:853.952667pt;}
.y155{bottom:853.952800pt;}
.yac{bottom:857.952667pt;}
.y58{bottom:861.952667pt;}
.y1ac{bottom:861.952800pt;}
.y18a{bottom:865.952667pt;}
.y144{bottom:865.952800pt;}
.y6c{bottom:866.293334pt;}
.ye5{bottom:869.952667pt;}
.y38{bottom:869.952800pt;}
.yab{bottom:873.952667pt;}
.y57{bottom:877.952667pt;}
.y1ab{bottom:877.952800pt;}
.y6b{bottom:880.373733pt;}
.y189{bottom:881.952667pt;}
.y5{bottom:881.952800pt;}
.y28{bottom:884.649600pt;}
.ye4{bottom:885.952667pt;}
.yd0{bottom:885.952800pt;}
.y93{bottom:889.952667pt;}
.y37{bottom:889.952800pt;}
.y56{bottom:893.952667pt;}
.y1aa{bottom:893.952800pt;}
.yaa{bottom:897.952667pt;}
.y143{bottom:897.952800pt;}
.y1c8{bottom:901.952667pt;}
.ycf{bottom:901.952800pt;}
.y110{bottom:905.540869pt;}
.y92{bottom:905.952667pt;}
.y1bc{bottom:905.952800pt;}
.y27{bottom:909.493467pt;}
.ye3{bottom:909.952667pt;}
.y1a9{bottom:909.952800pt;}
.y4{bottom:913.245333pt;}
.y188{bottom:913.952667pt;}
.y142{bottom:913.952800pt;}
.y126{bottom:914.152768pt;}
.y1c7{bottom:917.952667pt;}
.yce{bottom:917.952800pt;}
.y10f{bottom:919.180768pt;}
.y10d{bottom:920.789467pt;}
.y125{bottom:921.604800pt;}
.y91{bottom:921.952667pt;}
.y1a8{bottom:925.952800pt;}
.y68{bottom:929.162800pt;}
.y55{bottom:929.952667pt;}
.y141{bottom:929.952800pt;}
.y6a{bottom:930.254267pt;}
.y10e{bottom:932.820667pt;}
.y1c6{bottom:933.952667pt;}
.y1af{bottom:933.952800pt;}
.y90{bottom:937.952667pt;}
.y1a7{bottom:941.952800pt;}
.y159{bottom:942.671333pt;}
.y140{bottom:945.952800pt;}
.y63{bottom:948.616000pt;}
.y1c5{bottom:949.952667pt;}
.y154{bottom:949.952800pt;}
.y1bb{bottom:952.379867pt;}
.y54{bottom:953.952667pt;}
.ycd{bottom:953.952800pt;}
.y3{bottom:957.245333pt;}
.y8f{bottom:961.952667pt;}
.y13f{bottom:961.952800pt;}
.y1c4{bottom:965.952667pt;}
.y153{bottom:965.952800pt;}
.y1ba{bottom:973.713200pt;}
.y1a6{bottom:973.952800pt;}
.y194{bottom:974.314933pt;}
.y18b{bottom:977.952667pt;}
.y193{bottom:977.952800pt;}
.y8e{bottom:981.952667pt;}
.y124{bottom:982.476533pt;}
.y130{bottom:983.247600pt;}
.y13e{bottom:985.952800pt;}
.y1c3{bottom:989.952667pt;}
.y152{bottom:989.952800pt;}
.y2{bottom:1001.245333pt;}
.y1{bottom:1057.946933pt;}
.y9{bottom:1057.952667pt;}
.y8{bottom:1058.408400pt;}
.y2a{bottom:1059.732667pt;}
.h1f{height:29.121107pt;}
.hb{height:30.637988pt;}
.h1a{height:31.892297pt;}
.h23{height:32.000000pt;}
.h19{height:32.429545pt;}
.h18{height:32.519377pt;}
.h15{height:33.958644pt;}
.h17{height:34.052713pt;}
.h1c{height:34.428986pt;}
.hf{height:34.941591pt;}
.h10{height:34.990120pt;}
.h11{height:36.000000pt;}
.h2d{height:37.594327pt;}
.h2e{height:37.697811pt;}
.h5{height:38.720000pt;}
.h9{height:40.000000pt;}
.h22{height:40.002667pt;}
.h12{height:42.666667pt;}
.h4{height:45.184000pt;}
.h8{height:46.463895pt;}
.h2{height:46.464000pt;}
.h14{height:46.464041pt;}
.h7{height:46.464164pt;}
.h6{height:48.000000pt;}
.h21{height:48.961321pt;}
.h20{height:51.538980pt;}
.h13{height:56.000000pt;}
.hd{height:56.701452pt;}
.hc{height:57.340277pt;}
.ha{height:58.080000pt;}
.h1b{height:59.180452pt;}
.h16{height:59.719379pt;}
.h26{height:62.265688pt;}
.h25{height:62.265716pt;}
.h2c{height:62.265910pt;}
.h2b{height:62.265935pt;}
.h28{height:62.265938pt;}
.h2a{height:62.265967pt;}
.h29{height:62.266075pt;}
.h27{height:62.266168pt;}
.h1d{height:63.321914pt;}
.h1e{height:64.761107pt;}
.he{height:73.122235pt;}
.h24{height:80.000000pt;}
.h3{height:116.160000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.275600pt;}
.x2{left:48.188933pt;}
.xe{left:50.078800pt;}
.x9{left:51.023600pt;}
.x1f{left:53.406800pt;}
.xa{left:59.716533pt;}
.xb{left:63.496000pt;}
.x57{left:64.788000pt;}
.x64{left:67.086667pt;}
.x65{left:72.058133pt;}
.x51{left:85.039333pt;}
.x1e{left:87.425733pt;}
.x2a{left:88.952133pt;}
.x63{left:92.956667pt;}
.x4d{left:97.841867pt;}
.x43{left:99.805289pt;}
.x4c{left:100.837200pt;}
.x31{left:104.216800pt;}
.x2e{left:105.808400pt;}
.x2f{left:110.805777pt;}
.x2c{left:112.626133pt;}
.x4e{left:113.762921pt;}
.x4{left:115.275600pt;}
.x5c{left:117.381467pt;}
.x3d{left:119.136267pt;}
.x42{left:121.041200pt;}
.x34{left:124.494400pt;}
.x3{left:127.262267pt;}
.x5d{left:136.592933pt;}
.x5e{left:145.476400pt;}
.x5f{left:147.970400pt;}
.x5{left:163.275600pt;}
.x48{left:167.043067pt;}
.x15{left:178.022000pt;}
.x50{left:184.817733pt;}
.x37{left:186.731600pt;}
.x30{left:227.953067pt;}
.x3f{left:230.123714pt;}
.x41{left:232.924236pt;}
.x32{left:235.946272pt;}
.x3a{left:237.245733pt;}
.x44{left:238.198267pt;}
.x3e{left:239.589333pt;}
.x46{left:242.296400pt;}
.x38{left:243.781600pt;}
.x4a{left:246.776921pt;}
.x3b{left:248.110618pt;}
.x35{left:249.208267pt;}
.x14{left:251.082267pt;}
.xf{left:253.401600pt;}
.x4f{left:256.755625pt;}
.x39{left:264.100346pt;}
.x45{left:273.497384pt;}
.x49{left:277.319664pt;}
.x4b{left:307.515515pt;}
.x2d{left:312.850228pt;}
.x10{left:333.583333pt;}
.x47{left:336.662798pt;}
.x33{left:352.861369pt;}
.x11{left:355.661723pt;}
.x66{left:357.868133pt;}
.x36{left:394.908253pt;}
.x40{left:405.643341pt;}
.x55{left:408.754933pt;}
.x5b{left:409.921200pt;}
.x28{left:410.866133pt;}
.xc{left:411.968533pt;}
.x3c{left:414.952448pt;}
.x53{left:422.110267pt;}
.x54{left:425.385867pt;}
.x59{left:426.659067pt;}
.xd{left:430.866133pt;}
.x12{left:433.529067pt;}
.x29{left:450.551200pt;}
.x27{left:452.440933pt;}
.x61{left:454.650281pt;}
.x60{left:460.543867pt;}
.x2b{left:464.937733pt;}
.x58{left:471.603867pt;}
.x62{left:475.148017pt;}
.x5a{left:481.383733pt;}
.x22{left:508.748667pt;}
.x1c{left:530.252765pt;}
.x20{left:532.324800pt;}
.x13{left:535.554133pt;}
.x18{left:537.721289pt;}
.x16{left:538.614133pt;}
.x56{left:544.124800pt;}
.x6{left:545.344667pt;}
.x21{left:546.530267pt;}
.x17{left:547.976935pt;}
.x23{left:550.556933pt;}
.x19{left:552.030932pt;}
.x1d{left:562.491692pt;}
.x7{left:568.338533pt;}
.x1a{left:602.331863pt;}
.x25{left:627.618267pt;}
.x24{left:636.459333pt;}
.x26{left:651.338133pt;}
.x52{left:699.211333pt;}
.x1b{left:704.888329pt;}
.x8{left:706.104533pt;}
}




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