
    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_885f8737e10cdbf2e39cee1f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.365723;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_be9419a23ad6eeb6c950f25c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_5a0cb7f579b927a5db5f4129.woff')format("woff");}.ff3{font-family:ff3;line-height:1.365723;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_2d96f689786d8fbccb991b71.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_cc49cae120b2ad745885cf61.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b56ae8617c9cf83f5c2e7e3d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_8b3b6c30802b702d2a1a9ec6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.325684;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_aaa1d571c4904d041588fd20.woff')format("woff");}.ff8{font-family:ff8;line-height:1.325684;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_3809d52ecc85416d9ec95900.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3125f2a5cca7ec0b0f309479.woff')format("woff");}.ffa{font-family:ffa;line-height:1.120605;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_0614a308294389fb59b79a16.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_38a9f58a7a3197f5fa6807d2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_2ab796de4764aa092127258a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-83.880000px;}
.v2{vertical-align:-76.680000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.ls32{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.391800px;}
.ls69{letter-spacing:-0.355800px;}
.ls44{letter-spacing:-0.288000px;}
.ls3b{letter-spacing:-0.242400px;}
.ls31{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.121200px;}
.ls14{letter-spacing:-0.114000px;}
.ls11{letter-spacing:-0.112200px;}
.ls12{letter-spacing:-0.089400px;}
.ls2f{letter-spacing:-0.072000px;}
.ls2a{letter-spacing:-0.059760px;}
.ls6c{letter-spacing:-0.055440px;}
.ls7b{letter-spacing:-0.048960px;}
.ls6b{letter-spacing:-0.045360px;}
.ls4c{letter-spacing:-0.036720px;}
.ls46{letter-spacing:-0.032400px;}
.lsc{letter-spacing:-0.031680px;}
.ls2c{letter-spacing:-0.028440px;}
.ls2d{letter-spacing:-0.023040px;}
.ls79{letter-spacing:-0.022680px;}
.ls45{letter-spacing:-0.004680px;}
.ls30{letter-spacing:-0.000003px;}
.lsb{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000001px;}
.ls6a{letter-spacing:0.003954px;}
.ls1{letter-spacing:0.012600px;}
.ls29{letter-spacing:0.026280px;}
.ls9{letter-spacing:0.027000px;}
.ls3e{letter-spacing:0.032400px;}
.ls3d{letter-spacing:0.045360px;}
.ls1e{letter-spacing:0.048000px;}
.lse{letter-spacing:0.064800px;}
.ls1b{letter-spacing:0.072000px;}
.ls7a{letter-spacing:0.087600px;}
.ls13{letter-spacing:0.089400px;}
.ls3{letter-spacing:0.107400px;}
.ls43{letter-spacing:0.130800px;}
.ls48{letter-spacing:0.139800px;}
.ls16{letter-spacing:0.140040px;}
.ls1d{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.153600px;}
.ls42{letter-spacing:0.172080px;}
.ls2{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.247680px;}
.ls41{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.408000px;}
.ls33{letter-spacing:0.432000px;}
.ls6d{letter-spacing:0.648000px;}
.ls47{letter-spacing:0.732000px;}
.ls67{letter-spacing:1.008000px;}
.ls56{letter-spacing:1.368000px;}
.ls54{letter-spacing:2.448000px;}
.ls4d{letter-spacing:2.808000px;}
.ls73{letter-spacing:3.168000px;}
.ls60{letter-spacing:3.456000px;}
.ls26{letter-spacing:3.528000px;}
.ls55{letter-spacing:3.888000px;}
.lsa{letter-spacing:3.986280px;}
.ls59{letter-spacing:4.248000px;}
.ls35{letter-spacing:4.608000px;}
.ls6f{letter-spacing:4.896000px;}
.ls28{letter-spacing:5.688000px;}
.ls65{letter-spacing:6.048000px;}
.ls8{letter-spacing:6.146280px;}
.ls20{letter-spacing:6.408000px;}
.ls22{letter-spacing:6.768000px;}
.ls4f{letter-spacing:7.128000px;}
.ls39{letter-spacing:7.488000px;}
.ls17{letter-spacing:7.586280px;}
.ls15{letter-spacing:7.706280px;}
.ls38{letter-spacing:7.848000px;}
.ls63{letter-spacing:8.208000px;}
.ls51{letter-spacing:8.256000px;}
.ls58{letter-spacing:8.328000px;}
.ls71{letter-spacing:8.496000px;}
.ls3a{letter-spacing:8.568000px;}
.ls0{letter-spacing:8.666280px;}
.ls5a{letter-spacing:9.288000px;}
.ls6e{letter-spacing:10.008000px;}
.ls21{letter-spacing:10.368000px;}
.ls5e{letter-spacing:11.016000px;}
.ls4e{letter-spacing:11.088000px;}
.ls1a{letter-spacing:11.448000px;}
.ls61{letter-spacing:11.736000px;}
.ls34{letter-spacing:12.168000px;}
.ls1c{letter-spacing:12.816000px;}
.ls50{letter-spacing:12.888000px;}
.ls57{letter-spacing:13.248000px;}
.ls68{letter-spacing:13.896000px;}
.ls66{letter-spacing:13.968000px;}
.ls64{letter-spacing:15.048000px;}
.ls78{letter-spacing:15.768000px;}
.ls5c{letter-spacing:16.416000px;}
.ls25{letter-spacing:16.488000px;}
.ls24{letter-spacing:16.848000px;}
.ls23{letter-spacing:17.496000px;}
.ls62{letter-spacing:18.288000px;}
.ls5b{letter-spacing:18.648000px;}
.ls76{letter-spacing:19.008000px;}
.ls5f{letter-spacing:19.656000px;}
.ls36{letter-spacing:19.728000px;}
.ls49{letter-spacing:20.448000px;}
.ls53{letter-spacing:20.568000px;}
.ls5{letter-spacing:20.612880px;}
.ls70{letter-spacing:21.528000px;}
.ls72{letter-spacing:21.888000px;}
.ls37{letter-spacing:22.248000px;}
.ls6{letter-spacing:22.346280px;}
.ls52{letter-spacing:23.328000px;}
.ls7{letter-spacing:25.946280px;}
.ls40{letter-spacing:26.568000px;}
.ls3f{letter-spacing:26.928000px;}
.ls4a{letter-spacing:30.168000px;}
.ls4b{letter-spacing:30.528000px;}
.ls75{letter-spacing:30.888000px;}
.ls5d{letter-spacing:42.696000px;}
.ls74{letter-spacing:44.928000px;}
.ls77{letter-spacing:59.544000px;}
.ls3c{letter-spacing:153.506280px;}
.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;}
}
.ws25{word-spacing:-22.778400px;}
.ws26{word-spacing:-22.647600px;}
.ws38{word-spacing:-20.448000px;}
.ws27{word-spacing:-20.376000px;}
.ws20{word-spacing:-20.304000px;}
.ws2e{word-spacing:-20.232001px;}
.ws6{word-spacing:-20.232000px;}
.ws1f{word-spacing:-20.231997px;}
.ws1d{word-spacing:-20.088000px;}
.ws37{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.665880px;}
.ws4{word-spacing:-18.512280px;}
.ws31{word-spacing:-18.072000px;}
.ws11{word-spacing:-17.928000px;}
.ws30{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.640000px;}
.ws16{word-spacing:-17.568000px;}
.ws24{word-spacing:-17.073720px;}
.ws2d{word-spacing:-17.072640px;}
.ws2{word-spacing:-16.893720px;}
.ws3b{word-spacing:-16.861320px;}
.ws0{word-spacing:-16.713720px;}
.wsa{word-spacing:-16.321800px;}
.ws9{word-spacing:-16.232400px;}
.ws8{word-spacing:-16.143000px;}
.ws35{word-spacing:-16.128000px;}
.ws33{word-spacing:-14.853594px;}
.ws7{word-spacing:-14.849640px;}
.wse{word-spacing:-14.821200px;}
.ws34{word-spacing:-14.804280px;}
.wsd{word-spacing:-14.789880px;}
.wsb{word-spacing:-14.735640px;}
.ws32{word-spacing:-14.493840px;}
.ws39{word-spacing:-11.813040px;}
.ws2b{word-spacing:-0.792120px;}
.ws36{word-spacing:-0.648000px;}
.ws17{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.240120px;}
.ws2c{word-spacing:-0.199920px;}
.ws3a{word-spacing:-0.144000px;}
.ws2f{word-spacing:-0.083880px;}
.ws19{word-spacing:-0.072001px;}
.ws12{word-spacing:-0.072000px;}
.ws21{word-spacing:-0.071997px;}
.ws3{word-spacing:-0.065880px;}
.ws1{word-spacing:-0.060120px;}
.ws29{word-spacing:-0.055440px;}
.ws2a{word-spacing:-0.027720px;}
.wsc{word-spacing:0.000000px;}
.wsf{word-spacing:0.072000px;}
.ws1e{word-spacing:0.119880px;}
.ws23{word-spacing:0.182280px;}
.ws1c{word-spacing:0.192000px;}
.ws1a{word-spacing:0.288000px;}
.ws18{word-spacing:9.720000px;}
.ws28{word-spacing:26.832600px;}
.ws1b{word-spacing:35.856000px;}
.ws14{word-spacing:37.944000px;}
._27{margin-left:-9.168000px;}
._1e{margin-left:-6.105960px;}
._18{margin-left:-4.103400px;}
._17{margin-left:-3.039840px;}
._0{margin-left:-1.082160px;}
._2{width:1.563120px;}
._d{width:3.085920px;}
._3{width:4.869720px;}
._1{width:5.951880px;}
._5{width:7.612320px;}
._4{width:9.198360px;}
._13{width:10.521000px;}
._10{width:12.504960px;}
._7{width:13.767480px;}
._14{width:15.631200px;}
._8{width:17.210280px;}
._9{width:18.456840px;}
._1f{width:19.475040px;}
._11{width:20.500920px;}
._b{width:21.643200px;}
._c{width:23.025960px;}
._19{width:24.599040px;}
._e{width:25.757040px;}
._f{width:27.691200px;}
._a{width:29.158200px;}
._12{width:30.480840px;}
._1b{width:32.256000px;}
._24{width:33.408000px;}
._20{width:34.968000px;}
._1c{width:36.144000px;}
._1d{width:37.152000px;}
._21{width:38.664000px;}
._22{width:40.608000px;}
._23{width:41.760000px;}
._28{width:42.836880px;}
._29{width:45.072000px;}
._15{width:46.584000px;}
._16{width:47.664000px;}
._1a{width:49.320000px;}
._26{width:52.488000px;}
._25{width:53.568000px;}
._6{width:959.721480px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs7{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:18.540000px;}
.y222{bottom:18.570000px;}
.ydd{bottom:18.630000px;}
.yd7{bottom:19.080000px;}
.y5{bottom:23.310000px;}
.yd5{bottom:25.380000px;}
.y1f0{bottom:37.800000px;}
.y1f1{bottom:37.890000px;}
.y4{bottom:40.050000px;}
.yd4{bottom:44.640000px;}
.y1fd{bottom:50.670000px;}
.y20f{bottom:50.700000px;}
.y3{bottom:56.700000px;}
.y1ef{bottom:69.210000px;}
.y2{bottom:73.350000px;}
.y3f{bottom:76.230000px;}
.y1f8{bottom:82.620000px;}
.y1f4{bottom:82.710000px;}
.y10{bottom:93.420000px;}
.y3e{bottom:95.220000px;}
.y21b{bottom:95.490000px;}
.yf{bottom:113.670000px;}
.y21a{bottom:114.660000px;}
.y212{bottom:114.750000px;}
.y220{bottom:114.870000px;}
.y78{bottom:116.190000px;}
.y15a{bottom:118.890000px;}
.y10b{bottom:119.160000px;}
.y16e{bottom:120.240000px;}
.y111{bottom:121.410000px;}
.y138{bottom:126.000000px;}
.y1fb{bottom:128.430000px;}
.y21f{bottom:129.960000px;}
.y14b{bottom:130.320000px;}
.y19a{bottom:132.660000px;}
.y77{bottom:132.840000px;}
.ya9{bottom:138.060000px;}
.y1e7{bottom:138.690000px;}
.y159{bottom:138.870000px;}
.y16d{bottom:140.220000px;}
.y10a{bottom:140.940000px;}
.y137{bottom:145.980000px;}
.y201{bottom:146.910000px;}
.y1d5{bottom:148.140000px;}
.y76{bottom:149.580000px;}
.ydf{bottom:150.570000px;}
.y14a{bottom:152.100000px;}
.y1bd{bottom:152.640000px;}
.ye{bottom:153.630000px;}
.ya8{bottom:154.800000px;}
.y199{bottom:157.140000px;}
.y158{bottom:158.940000px;}
.y1fc{bottom:160.560000px;}
.y223{bottom:162.090000px;}
.y16c{bottom:164.790000px;}
.y136{bottom:165.960000px;}
.y75{bottom:166.230000px;}
.y1d4{bottom:168.210000px;}
.yd{bottom:170.370000px;}
.y110{bottom:171.450000px;}
.y1bc{bottom:172.710000px;}
.y198{bottom:177.210000px;}
.y157{bottom:178.920000px;}
.y205{bottom:179.010000px;}
.y74{bottom:182.970000px;}
.y10f{bottom:183.870000px;}
.y16b{bottom:184.770000px;}
.y135{bottom:186.030000px;}
.yc{bottom:187.020000px;}
.y108{bottom:188.190000px;}
.y1fa{bottom:192.600000px;}
.y1bb{bottom:192.690000px;}
.y221{bottom:194.130000px;}
.y156{bottom:198.990000px;}
.y73{bottom:199.620000px;}
.y197{bottom:201.690000px;}
.yb{bottom:203.670000px;}
.y72{bottom:204.840000px;}
.y134{bottom:206.010000px;}
.y1ba{bottom:212.790000px;}
.yde{bottom:214.590000px;}
.ya7{bottom:216.300000px;}
.y71{bottom:217.290000px;}
.y155{bottom:219.000000px;}
.ya{bottom:220.440000px;}
.y196{bottom:221.790000px;}
.y1f7{bottom:224.760000px;}
.y16a{bottom:224.850000px;}
.y133{bottom:226.110000px;}
.y21e{bottom:226.290000px;}
.ydc{bottom:230.610000px;}
.y1d3{bottom:232.770000px;}
.ya6{bottom:233.040000px;}
.y9{bottom:237.090000px;}
.y1b9{bottom:237.270000px;}
.y154{bottom:239.070000px;}
.y169{bottom:244.920000px;}
.y132{bottom:246.090000px;}
.y195{bottom:246.270000px;}
.ya5{bottom:249.690000px;}
.y70{bottom:250.230000px;}
.y8{bottom:253.740000px;}
.ya4{bottom:254.910000px;}
.y1f9{bottom:256.800000px;}
.y1b8{bottom:257.250000px;}
.y219{bottom:258.330000px;}
.y153{bottom:259.050000px;}
.ydb{bottom:262.740000px;}
.y168{bottom:264.900000px;}
.y131{bottom:266.160000px;}
.y194{bottom:266.250000px;}
.ya3{bottom:266.340000px;}
.y13a{bottom:267.330000px;}
.y6f{bottom:270.210000px;}
.ya2{bottom:271.560000px;}
.y1b7{bottom:277.320000px;}
.y152{bottom:279.120000px;}
.y107{bottom:283.080000px;}
.ya1{bottom:284.070000px;}
.y167{bottom:284.970000px;}
.y130{bottom:286.140000px;}
.y7{bottom:287.040000px;}
.y1f6{bottom:288.840000px;}
.y6e{bottom:290.280000px;}
.y21d{bottom:290.370000px;}
.y193{bottom:290.820000px;}
.yda{bottom:294.780000px;}
.y1d2{bottom:297.300000px;}
.y151{bottom:299.100000px;}
.y106{bottom:299.730000px;}
.y1b6{bottom:301.800000px;}
.y166{bottom:304.950000px;}
.y12f{bottom:306.210000px;}
.y6d{bottom:310.260000px;}
.y192{bottom:310.800000px;}
.y105{bottom:316.470000px;}
.y150{bottom:319.080000px;}
.y3d{bottom:319.710000px;}
.y1f3{bottom:320.970000px;}
.y104{bottom:321.690000px;}
.y1b5{bottom:321.870000px;}
.y21c{bottom:322.500000px;}
.y12e{bottom:326.190000px;}
.yd9{bottom:326.910000px;}
.y165{bottom:329.430000px;}
.y6c{bottom:330.330000px;}
.y103{bottom:334.110000px;}
.y191{bottom:335.370000px;}
.y3c{bottom:336.360000px;}
.y14f{bottom:339.150000px;}
.y1d1{bottom:341.850000px;}
.y12d{bottom:346.260000px;}
.y1b4{bottom:346.350000px;}
.y164{bottom:349.500000px;}
.y6b{bottom:350.310000px;}
.y1f5{bottom:353.010000px;}
.y3b{bottom:353.100000px;}
.y218{bottom:354.540000px;}
.y190{bottom:355.350000px;}
.y102{bottom:356.970000px;}
.yd3{bottom:358.950000px;}
.y14e{bottom:359.130000px;}
.y12c{bottom:366.240000px;}
.y1b3{bottom:366.420000px;}
.y3a{bottom:369.750000px;}
.y6a{bottom:370.380000px;}
.y163{bottom:373.980000px;}
.y18f{bottom:375.420000px;}
.y101{bottom:377.040000px;}
.y14d{bottom:378.390000px;}
.y1f2{bottom:385.140000px;}
.y12b{bottom:386.310000px;}
.y1d0{bottom:386.400000px;}
.y39{bottom:386.490000px;}
.y216{bottom:386.670000px;}
.y69{bottom:390.360000px;}
.y1b2{bottom:390.900000px;}
.yd6{bottom:390.990000px;}
.y162{bottom:394.050000px;}
.y100{bottom:397.020000px;}
.y18e{bottom:399.900000px;}
.y38{bottom:403.140000px;}
.y12a{bottom:406.290000px;}
.y68{bottom:410.430000px;}
.y1b1{bottom:410.970000px;}
.y14c{bottom:412.140000px;}
.y161{bottom:417.000000px;}
.yff{bottom:417.090000px;}
.y1ee{bottom:417.180000px;}
.y217{bottom:418.710000px;}
.y37{bottom:419.790000px;}
.y18d{bottom:419.970000px;}
.y10e{bottom:420.420000px;}
.y129{bottom:426.270000px;}
.yd2{bottom:428.790000px;}
.y67{bottom:430.410000px;}
.y1cf{bottom:430.950000px;}
.y1b0{bottom:435.450000px;}
.y36{bottom:436.530000px;}
.yfe{bottom:437.070000px;}
.y18c{bottom:439.950000px;}
.ya0{bottom:440.400000px;}
.y128{bottom:446.340000px;}
.yd1{bottom:447.960000px;}
.y66{bottom:450.390000px;}
.y215{bottom:450.750000px;}
.y1ce{bottom:451.020000px;}
.y35{bottom:453.180000px;}
.y1af{bottom:455.520000px;}
.yfd{bottom:457.140000px;}
.y18b{bottom:460.020000px;}
.y9f{bottom:460.470000px;}
.yd0{bottom:464.610000px;}
.y127{bottom:466.320000px;}
.y34{bottom:469.830000px;}
.y65{bottom:470.460000px;}
.y1cd{bottom:471.000000px;}
.y1ae{bottom:475.500000px;}
.yfb{bottom:477.120000px;}
.y9e{bottom:480.450000px;}
.ycf{bottom:482.160000px;}
.y211{bottom:482.880000px;}
.yfc{bottom:483.150000px;}
.y18a{bottom:484.500000px;}
.y126{bottom:486.390000px;}
.y33{bottom:486.570000px;}
.y64{bottom:490.440000px;}
.y1cc{bottom:495.570000px;}
.yfa{bottom:497.190000px;}
.y1ad{bottom:500.070000px;}
.y9d{bottom:500.520000px;}
.yce{bottom:502.140000px;}
.y32{bottom:503.220000px;}
.y189{bottom:504.570000px;}
.y1ed{bottom:504.660000px;}
.y125{bottom:506.370000px;}
.y63{bottom:510.510000px;}
.y149{bottom:512.400000px;}
.y214{bottom:514.920000px;}
.y1cb{bottom:515.550000px;}
.yf9{bottom:517.170000px;}
.y31{bottom:519.960000px;}
.y1ac{bottom:520.050000px;}
.y9b{bottom:520.500000px;}
.ycd{bottom:522.210000px;}
.y1ec{bottom:523.830000px;}
.y124{bottom:526.440000px;}
.y9c{bottom:526.530000px;}
.y188{bottom:529.050000px;}
.y62{bottom:530.490000px;}
.y148{bottom:532.380000px;}
.y30{bottom:536.610000px;}
.yf8{bottom:537.150000px;}
.y1ab{bottom:540.030000px;}
.y1eb{bottom:540.480000px;}
.y9a{bottom:540.570000px;}
.ycb{bottom:542.190000px;}
.y123{bottom:546.420000px;}
.y213{bottom:547.050000px;}
.ycc{bottom:548.220000px;}
.y187{bottom:549.030000px;}
.y61{bottom:550.560000px;}
.y147{bottom:552.450000px;}
.y2f{bottom:553.260000px;}
.yf7{bottom:557.220000px;}
.y1aa{bottom:560.100000px;}
.y99{bottom:560.550000px;}
.yca{bottom:562.260000px;}
.y122{bottom:566.490000px;}
.y10d{bottom:566.580000px;}
.y2e{bottom:570.000000px;}
.y60{bottom:570.540000px;}
.y146{bottom:572.430000px;}
.y186{bottom:573.600000px;}
.y1ea{bottom:573.870000px;}
.yf6{bottom:577.200000px;}
.y210{bottom:579.090000px;}
.y1ca{bottom:580.080000px;}
.y98{bottom:580.530000px;}
.y1a9{bottom:584.580000px;}
.y121{bottom:586.470000px;}
.y2d{bottom:586.650000px;}
.y5f{bottom:590.610000px;}
.y145{bottom:592.500000px;}
.y185{bottom:593.580000px;}
.yf5{bottom:597.270000px;}
.y97{bottom:600.600000px;}
.yc9{bottom:601.410000px;}
.y2c{bottom:603.390000px;}
.y1a8{bottom:604.650000px;}
.y120{bottom:606.540000px;}
.y1e9{bottom:607.260000px;}
.y5e{bottom:610.590000px;}
.y20b{bottom:611.130000px;}
.y144{bottom:612.480000px;}
.y184{bottom:613.650000px;}
.yf4{bottom:617.250000px;}
.yc8{bottom:618.150000px;}
.y2b{bottom:620.040000px;}
.y96{bottom:620.580000px;}
.y1e8{bottom:623.910000px;}
.y1a7{bottom:624.630000px;}
.y11f{bottom:626.520000px;}
.y5d{bottom:630.660000px;}
.y143{bottom:632.580000px;}
.y183{bottom:633.660000px;}
.yc7{bottom:634.830000px;}
.y2a{bottom:636.720000px;}
.yf3{bottom:637.350000px;}
.y95{bottom:640.680000px;}
.y20e{bottom:643.290000px;}
.y1a6{bottom:644.730000px;}
.y11e{bottom:646.620000px;}
.y1c9{bottom:649.230000px;}
.y5c{bottom:650.670000px;}
.yc6{bottom:651.570000px;}
.y142{bottom:652.560000px;}
.y29{bottom:653.460000px;}
.yf2{bottom:657.330000px;}
.y182{bottom:658.230000px;}
.y94{bottom:660.660000px;}
.y1a5{bottom:664.710000px;}
.y11d{bottom:666.600000px;}
.yc5{bottom:668.220000px;}
.y1c8{bottom:669.210000px;}
.y28{bottom:670.110000px;}
.y5b{bottom:670.740000px;}
.y141{bottom:672.540000px;}
.y20d{bottom:675.330000px;}
.yf1{bottom:677.400000px;}
.y181{bottom:678.210000px;}
.y93{bottom:680.730000px;}
.yc4{bottom:684.870000px;}
.y11c{bottom:686.580000px;}
.y27{bottom:686.760000px;}
.y1a4{bottom:689.280000px;}
.y5a{bottom:690.720000px;}
.y140{bottom:692.610000px;}
.y1c7{bottom:693.780000px;}
.yf0{bottom:697.380000px;}
.y180{bottom:698.280000px;}
.y1e6{bottom:698.460000px;}
.y92{bottom:700.710000px;}
.yc3{bottom:701.610000px;}
.y26{bottom:703.500000px;}
.y11b{bottom:706.650000px;}
.y20c{bottom:707.460000px;}
.y1a3{bottom:709.260000px;}
.y59{bottom:710.700000px;}
.y13f{bottom:712.590000px;}
.y1c6{bottom:713.760000px;}
.y1e5{bottom:715.110000px;}
.yef{bottom:717.450000px;}
.y109{bottom:718.170000px;}
.yc2{bottom:718.260000px;}
.y25{bottom:720.150000px;}
.y91{bottom:720.780000px;}
.y11a{bottom:726.630000px;}
.y1a2{bottom:729.330000px;}
.y58{bottom:730.770000px;}
.y1e4{bottom:731.850000px;}
.y13e{bottom:732.660000px;}
.yc1{bottom:735.000000px;}
.y24{bottom:736.890000px;}
.yed{bottom:737.430000px;}
.y1c5{bottom:738.330000px;}
.y20a{bottom:739.500000px;}
.y8f{bottom:740.760000px;}
.y17f{bottom:742.830000px;}
.yee{bottom:743.460000px;}
.y119{bottom:746.700000px;}
.y90{bottom:746.790000px;}
.y1e3{bottom:749.310000px;}
.y56{bottom:750.750000px;}
.yc0{bottom:751.650000px;}
.y13d{bottom:752.640000px;}
.y23{bottom:753.540000px;}
.y1a1{bottom:753.810000px;}
.y57{bottom:756.780000px;}
.yec{bottom:757.500000px;}
.y1c4{bottom:758.310000px;}
.y8e{bottom:760.830000px;}
.y17e{bottom:762.810000px;}
.y118{bottom:766.680000px;}
.ybf{bottom:768.300000px;}
.y1e2{bottom:769.290000px;}
.y22{bottom:770.190000px;}
.y55{bottom:770.820000px;}
.y204{bottom:771.540000px;}
.y13c{bottom:771.900000px;}
.yeb{bottom:777.480000px;}
.y139{bottom:778.290000px;}
.y8c{bottom:780.810000px;}
.y17d{bottom:782.790000px;}
.ybe{bottom:785.040000px;}
.y117{bottom:786.750000px;}
.y8d{bottom:786.840000px;}
.y21{bottom:786.930000px;}
.y54{bottom:790.800000px;}
.y13b{bottom:793.680000px;}
.y1e1{bottom:793.860000px;}
.yea{bottom:797.460000px;}
.y1a0{bottom:798.360000px;}
.y8b{bottom:800.790000px;}
.ybd{bottom:801.690000px;}
.y17c{bottom:802.860000px;}
.y20{bottom:803.580000px;}
.y209{bottom:803.670000px;}
.y116{bottom:806.730000px;}
.y1c3{bottom:807.360000px;}
.y53{bottom:810.870000px;}
.y1e0{bottom:813.840000px;}
.ye8{bottom:817.530000px;}
.ybc{bottom:818.340000px;}
.y1f{bottom:820.320000px;}
.y8a{bottom:820.860000px;}
.y17b{bottom:822.840000px;}
.ye9{bottom:823.560000px;}
.y115{bottom:826.800000px;}
.y1c2{bottom:827.340000px;}
.y52{bottom:831.660000px;}
.ybb{bottom:835.080000px;}
.y208{bottom:835.710000px;}
.y1e{bottom:836.970000px;}
.ye7{bottom:837.510000px;}
.y1df{bottom:838.410000px;}
.y89{bottom:840.840000px;}
.y19f{bottom:842.910000px;}
.y114{bottom:846.780000px;}
.y17a{bottom:847.410000px;}
.yba{bottom:851.730000px;}
.y1c1{bottom:851.910000px;}
.y1d{bottom:854.430000px;}
.y51{bottom:854.970000px;}
.ye6{bottom:857.580000px;}
.y88{bottom:860.910000px;}
.y19e{bottom:862.890000px;}
.y113{bottom:866.040000px;}
.y179{bottom:867.390000px;}
.y207{bottom:867.840000px;}
.yb9{bottom:868.470000px;}
.y1c0{bottom:871.890000px;}
.y1c{bottom:874.050000px;}
.y50{bottom:876.750000px;}
.ye5{bottom:877.560000px;}
.y87{bottom:880.890000px;}
.y1de{bottom:882.960000px;}
.yb8{bottom:885.120000px;}
.y178{bottom:887.460000px;}
.y1bf{bottom:891.960000px;}
.y1b{bottom:892.410000px;}
.y4f{bottom:893.490000px;}
.ye4{bottom:897.630000px;}
.y112{bottom:899.790000px;}
.y206{bottom:899.880000px;}
.y85{bottom:900.960000px;}
.yb7{bottom:901.770000px;}
.y1dd{bottom:902.940000px;}
.y86{bottom:906.990000px;}
.y19d{bottom:907.440000px;}
.y4e{bottom:910.140000px;}
.y1a{bottom:910.770000px;}
.y177{bottom:911.940000px;}
.ye3{bottom:917.610000px;}
.yb6{bottom:918.510000px;}
.y84{bottom:920.940000px;}
.y1dc{bottom:923.010000px;}
.y4d{bottom:926.790000px;}
.y19c{bottom:927.510000px;}
.y19{bottom:929.130000px;}
.y176{bottom:932.010000px;}
.yb5{bottom:935.160000px;}
.ye2{bottom:937.680000px;}
.y83{bottom:941.010000px;}
.y1db{bottom:942.990000px;}
.y4c{bottom:943.530000px;}
.y18{bottom:947.490000px;}
.yb4{bottom:951.900000px;}
.y175{bottom:951.990000px;}
.y160{bottom:957.660000px;}
.ye1{bottom:958.470000px;}
.y4b{bottom:960.180000px;}
.y82{bottom:960.990000px;}
.y200{bottom:964.050000px;}
.y17{bottom:965.850000px;}
.y1da{bottom:967.560000px;}
.yb3{bottom:968.550000px;}
.y174{bottom:972.060000px;}
.y4a{bottom:976.830000px;}
.y15f{bottom:977.730000px;}
.y81{bottom:981.060000px;}
.y16{bottom:983.760000px;}
.yb2{bottom:985.200000px;}
.y1d9{bottom:987.540000px;}
.y19b{bottom:992.040000px;}
.y49{bottom:993.570000px;}
.y203{bottom:996.090000px;}
.y173{bottom:996.540000px;}
.y15e{bottom:997.710000px;}
.y80{bottom:1001.040000px;}
.y15{bottom:1001.310000px;}
.yb1{bottom:1001.940000px;}
.y1d8{bottom:1007.610000px;}
.y48{bottom:1010.220000px;}
.y1be{bottom:1012.110000px;}
.y172{bottom:1016.610000px;}
.y15d{bottom:1017.690000px;}
.yb0{bottom:1018.590000px;}
.y7f{bottom:1021.110000px;}
.y14{bottom:1021.290000px;}
.y47{bottom:1026.960000px;}
.y1d7{bottom:1027.590000px;}
.y202{bottom:1028.220000px;}
.yaf{bottom:1035.240000px;}
.y171{bottom:1036.590000px;}
.y15c{bottom:1037.760000px;}
.y7e{bottom:1041.090000px;}
.y46{bottom:1043.610000px;}
.y13{bottom:1051.080000px;}
.yae{bottom:1051.980000px;}
.y1d6{bottom:1052.070000px;}
.y170{bottom:1056.600000px;}
.y15b{bottom:1058.580000px;}
.y45{bottom:1060.290000px;}
.y7d{bottom:1061.100000px;}
.ye0{bottom:1067.130000px;}
.yad{bottom:1068.660000px;}
.y12{bottom:1074.510000px;}
.y16f{bottom:1076.670000px;}
.y44{bottom:1077.030000px;}
.y7c{bottom:1081.170000px;}
.yac{bottom:1085.400000px;}
.y10c{bottom:1087.200000px;}
.y1ff{bottom:1092.420000px;}
.y43{bottom:1093.680000px;}
.y11{bottom:1096.650000px;}
.y7b{bottom:1101.150000px;}
.yab{bottom:1102.050000px;}
.y42{bottom:1110.420000px;}
.y6{bottom:1115.550000px;}
.y7a{bottom:1121.220000px;}
.y1fe{bottom:1124.460000px;}
.y41{bottom:1127.070000px;}
.y1{bottom:1134.180000px;}
.yaa{bottom:1139.670000px;}
.y79{bottom:1141.200000px;}
.y40{bottom:1143.720000px;}
.h12{height:31.320000px;}
.h1a{height:31.350000px;}
.h13{height:31.410000px;}
.h20{height:31.440000px;}
.h11{height:32.310000px;}
.hd{height:40.781250px;}
.hc{height:47.714062px;}
.h4{height:51.929824px;}
.h6{height:61.171875px;}
.h7{height:61.793886px;}
.ha{height:62.191406px;}
.h1c{height:63.450000px;}
.h1f{height:63.480000px;}
.h10{height:64.350000px;}
.hf{height:65.198496px;}
.h3{height:68.104687px;}
.h5{height:71.613281px;}
.h9{height:72.452988px;}
.h14{height:73.722656px;}
.he{height:74.004654px;}
.h8{height:74.629687px;}
.h15{height:78.082031px;}
.hb{height:81.562500px;}
.h17{height:81.990000px;}
.h2{height:86.130000px;}
.h16{height:95.020312px;}
.h19{height:95.400000px;}
.h18{height:95.490000px;}
.h1b{height:95.520000px;}
.h21{height:127.530000px;}
.h22{height:127.650000px;}
.h1d{height:159.690000px;}
.h1e{height:191.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.wc{width:52.410000px;}
.w7{width:76.680000px;}
.w8{width:136.560000px;}
.wa{width:137.340000px;}
.wd{width:137.520000px;}
.we{width:148.080000px;}
.wb{width:148.170000px;}
.wf{width:180.030000px;}
.w10{width:190.620000px;}
.w9{width:286.230000px;}
.w4{width:329.700000px;}
.w2{width:331.890000px;}
.w11{width:520.290000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1a{left:14.850000px;}
.x42{left:15.930000px;}
.x24{left:17.550000px;}
.x1c{left:20.340000px;}
.x49{left:22.050000px;}
.x27{left:24.120000px;}
.x41{left:26.130000px;}
.x44{left:28.440000px;}
.x23{left:30.780000px;}
.x22{left:48.960000px;}
.x1d{left:50.670000px;}
.x20{left:52.110000px;}
.x4d{left:56.610000px;}
.x25{left:64.890000px;}
.x28{left:66.540000px;}
.x43{left:68.760000px;}
.x26{left:70.320000px;}
.x46{left:73.980000px;}
.x4a{left:75.420000px;}
.x48{left:89.910000px;}
.x4c{left:95.310000px;}
.x1{left:98.280000px;}
.x8{left:104.669987px;}
.x6{left:106.379987px;}
.xf{left:110.879987px;}
.x31{left:115.379987px;}
.x1f{left:128.340000px;}
.x3f{left:133.409987px;}
.xb{left:148.979987px;}
.x2d{left:152.309973px;}
.x2e{left:157.619987px;}
.x9{left:159.599987px;}
.x14{left:181.289973px;}
.x2{left:185.880000px;}
.x19{left:195.960000px;}
.x3a{left:224.129973px;}
.x10{left:226.829973px;}
.x11{left:232.859987px;}
.x2f{left:234.029973px;}
.x30{left:244.649987px;}
.x1b{left:273.450000px;}
.x45{left:289.650000px;}
.xe{left:322.409987px;}
.x29{left:402.899973px;}
.x2a{left:408.209987px;}
.x1e{left:410.730000px;}
.x3{left:430.170000px;}
.x47{left:438.540000px;}
.x7{left:446.549987px;}
.x4e{left:469.680000px;}
.x5{left:481.020000px;}
.xc{left:500.729973px;}
.xd{left:506.039987px;}
.x32{left:541.139987px;}
.x21{left:548.790000px;}
.x15{left:567.599973px;}
.x16{left:572.909987px;}
.x12{left:592.349973px;}
.x33{left:594.599973px;}
.x13{left:597.659987px;}
.x34{left:605.219987px;}
.x4b{left:619.290000px;}
.x40{left:642.329987px;}
.x35{left:649.709973px;}
.x36{left:660.329987px;}
.x17{left:667.799973px;}
.x18{left:673.469987px;}
.x37{left:675.089973px;}
.x38{left:685.709987px;}
.x2b{left:719.099973px;}
.x2c{left:724.409987px;}
.x3b{left:768.419987px;}
.xa{left:777.599987px;}
.x3d{left:785.969987px;}
.x3c{left:788.939987px;}
.x39{left:793.349987px;}
.x3e{left:797.849987px;}
@media print{
.v1{vertical-align:-74.560000pt;}
.v2{vertical-align:-68.160000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.ls32{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.348267pt;}
.ls69{letter-spacing:-0.316267pt;}
.ls44{letter-spacing:-0.256000pt;}
.ls3b{letter-spacing:-0.215467pt;}
.ls31{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.107733pt;}
.ls14{letter-spacing:-0.101333pt;}
.ls11{letter-spacing:-0.099733pt;}
.ls12{letter-spacing:-0.079467pt;}
.ls2f{letter-spacing:-0.064000pt;}
.ls2a{letter-spacing:-0.053120pt;}
.ls6c{letter-spacing:-0.049280pt;}
.ls7b{letter-spacing:-0.043520pt;}
.ls6b{letter-spacing:-0.040320pt;}
.ls4c{letter-spacing:-0.032640pt;}
.ls46{letter-spacing:-0.028800pt;}
.lsc{letter-spacing:-0.028160pt;}
.ls2c{letter-spacing:-0.025280pt;}
.ls2d{letter-spacing:-0.020480pt;}
.ls79{letter-spacing:-0.020160pt;}
.ls45{letter-spacing:-0.004160pt;}
.ls30{letter-spacing:-0.000003pt;}
.lsb{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000001pt;}
.ls6a{letter-spacing:0.003515pt;}
.ls1{letter-spacing:0.011200pt;}
.ls29{letter-spacing:0.023360pt;}
.ls9{letter-spacing:0.024000pt;}
.ls3e{letter-spacing:0.028800pt;}
.ls3d{letter-spacing:0.040320pt;}
.ls1e{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.057600pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls7a{letter-spacing:0.077867pt;}
.ls13{letter-spacing:0.079467pt;}
.ls3{letter-spacing:0.095467pt;}
.ls43{letter-spacing:0.116267pt;}
.ls48{letter-spacing:0.124267pt;}
.ls16{letter-spacing:0.124480pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.136533pt;}
.ls42{letter-spacing:0.152960pt;}
.ls2{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.220160pt;}
.ls41{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.362667pt;}
.ls33{letter-spacing:0.384000pt;}
.ls6d{letter-spacing:0.576000pt;}
.ls47{letter-spacing:0.650667pt;}
.ls67{letter-spacing:0.896000pt;}
.ls56{letter-spacing:1.216000pt;}
.ls54{letter-spacing:2.176000pt;}
.ls4d{letter-spacing:2.496000pt;}
.ls73{letter-spacing:2.816000pt;}
.ls60{letter-spacing:3.072000pt;}
.ls26{letter-spacing:3.136000pt;}
.ls55{letter-spacing:3.456000pt;}
.lsa{letter-spacing:3.543360pt;}
.ls59{letter-spacing:3.776000pt;}
.ls35{letter-spacing:4.096000pt;}
.ls6f{letter-spacing:4.352000pt;}
.ls28{letter-spacing:5.056000pt;}
.ls65{letter-spacing:5.376000pt;}
.ls8{letter-spacing:5.463360pt;}
.ls20{letter-spacing:5.696000pt;}
.ls22{letter-spacing:6.016000pt;}
.ls4f{letter-spacing:6.336000pt;}
.ls39{letter-spacing:6.656000pt;}
.ls17{letter-spacing:6.743360pt;}
.ls15{letter-spacing:6.850027pt;}
.ls38{letter-spacing:6.976000pt;}
.ls63{letter-spacing:7.296000pt;}
.ls51{letter-spacing:7.338667pt;}
.ls58{letter-spacing:7.402667pt;}
.ls71{letter-spacing:7.552000pt;}
.ls3a{letter-spacing:7.616000pt;}
.ls0{letter-spacing:7.703360pt;}
.ls5a{letter-spacing:8.256000pt;}
.ls6e{letter-spacing:8.896000pt;}
.ls21{letter-spacing:9.216000pt;}
.ls5e{letter-spacing:9.792000pt;}
.ls4e{letter-spacing:9.856000pt;}
.ls1a{letter-spacing:10.176000pt;}
.ls61{letter-spacing:10.432000pt;}
.ls34{letter-spacing:10.816000pt;}
.ls1c{letter-spacing:11.392000pt;}
.ls50{letter-spacing:11.456000pt;}
.ls57{letter-spacing:11.776000pt;}
.ls68{letter-spacing:12.352000pt;}
.ls66{letter-spacing:12.416000pt;}
.ls64{letter-spacing:13.376000pt;}
.ls78{letter-spacing:14.016000pt;}
.ls5c{letter-spacing:14.592000pt;}
.ls25{letter-spacing:14.656000pt;}
.ls24{letter-spacing:14.976000pt;}
.ls23{letter-spacing:15.552000pt;}
.ls62{letter-spacing:16.256000pt;}
.ls5b{letter-spacing:16.576000pt;}
.ls76{letter-spacing:16.896000pt;}
.ls5f{letter-spacing:17.472000pt;}
.ls36{letter-spacing:17.536000pt;}
.ls49{letter-spacing:18.176000pt;}
.ls53{letter-spacing:18.282667pt;}
.ls5{letter-spacing:18.322560pt;}
.ls70{letter-spacing:19.136000pt;}
.ls72{letter-spacing:19.456000pt;}
.ls37{letter-spacing:19.776000pt;}
.ls6{letter-spacing:19.863360pt;}
.ls52{letter-spacing:20.736000pt;}
.ls7{letter-spacing:23.063360pt;}
.ls40{letter-spacing:23.616000pt;}
.ls3f{letter-spacing:23.936000pt;}
.ls4a{letter-spacing:26.816000pt;}
.ls4b{letter-spacing:27.136000pt;}
.ls75{letter-spacing:27.456000pt;}
.ls5d{letter-spacing:37.952000pt;}
.ls74{letter-spacing:39.936000pt;}
.ls77{letter-spacing:52.928000pt;}
.ls3c{letter-spacing:136.450027pt;}
.ws25{word-spacing:-20.247467pt;}
.ws26{word-spacing:-20.131200pt;}
.ws38{word-spacing:-18.176000pt;}
.ws27{word-spacing:-18.112000pt;}
.ws20{word-spacing:-18.048000pt;}
.ws2e{word-spacing:-17.984001pt;}
.ws6{word-spacing:-17.984000pt;}
.ws1f{word-spacing:-17.983997pt;}
.ws1d{word-spacing:-17.856000pt;}
.ws37{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.591893pt;}
.ws4{word-spacing:-16.455360pt;}
.ws31{word-spacing:-16.064000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws30{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.680000pt;}
.ws16{word-spacing:-15.616000pt;}
.ws24{word-spacing:-15.176640pt;}
.ws2d{word-spacing:-15.175680pt;}
.ws2{word-spacing:-15.016640pt;}
.ws3b{word-spacing:-14.987840pt;}
.ws0{word-spacing:-14.856640pt;}
.wsa{word-spacing:-14.508267pt;}
.ws9{word-spacing:-14.428800pt;}
.ws8{word-spacing:-14.349333pt;}
.ws35{word-spacing:-14.336000pt;}
.ws33{word-spacing:-13.203195pt;}
.ws7{word-spacing:-13.199680pt;}
.wse{word-spacing:-13.174400pt;}
.ws34{word-spacing:-13.159360pt;}
.wsd{word-spacing:-13.146560pt;}
.wsb{word-spacing:-13.098347pt;}
.ws32{word-spacing:-12.883413pt;}
.ws39{word-spacing:-10.500480pt;}
.ws2b{word-spacing:-0.704107pt;}
.ws36{word-spacing:-0.576000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.213440pt;}
.ws2c{word-spacing:-0.177707pt;}
.ws3a{word-spacing:-0.128000pt;}
.ws2f{word-spacing:-0.074560pt;}
.ws19{word-spacing:-0.064001pt;}
.ws12{word-spacing:-0.064000pt;}
.ws21{word-spacing:-0.063997pt;}
.ws3{word-spacing:-0.058560pt;}
.ws1{word-spacing:-0.053440pt;}
.ws29{word-spacing:-0.049280pt;}
.ws2a{word-spacing:-0.024640pt;}
.wsc{word-spacing:0.000000pt;}
.wsf{word-spacing:0.064000pt;}
.ws1e{word-spacing:0.106560pt;}
.ws23{word-spacing:0.162027pt;}
.ws1c{word-spacing:0.170667pt;}
.ws1a{word-spacing:0.256000pt;}
.ws18{word-spacing:8.640000pt;}
.ws28{word-spacing:23.851200pt;}
.ws1b{word-spacing:31.872000pt;}
.ws14{word-spacing:33.728000pt;}
._27{margin-left:-8.149333pt;}
._1e{margin-left:-5.427520pt;}
._18{margin-left:-3.647467pt;}
._17{margin-left:-2.702080pt;}
._0{margin-left:-0.961920pt;}
._2{width:1.389440pt;}
._d{width:2.743040pt;}
._3{width:4.328640pt;}
._1{width:5.290560pt;}
._5{width:6.766507pt;}
._4{width:8.176320pt;}
._13{width:9.352000pt;}
._10{width:11.115520pt;}
._7{width:12.237760pt;}
._14{width:13.894400pt;}
._8{width:15.298027pt;}
._9{width:16.406080pt;}
._1f{width:17.311147pt;}
._11{width:18.223040pt;}
._b{width:19.238400pt;}
._c{width:20.467520pt;}
._19{width:21.865813pt;}
._e{width:22.895147pt;}
._f{width:24.614400pt;}
._a{width:25.918400pt;}
._12{width:27.094080pt;}
._1b{width:28.672000pt;}
._24{width:29.696000pt;}
._20{width:31.082667pt;}
._1c{width:32.128000pt;}
._1d{width:33.024000pt;}
._21{width:34.368000pt;}
._22{width:36.096000pt;}
._23{width:37.120000pt;}
._28{width:38.077227pt;}
._29{width:40.064000pt;}
._15{width:41.408000pt;}
._16{width:42.368000pt;}
._1a{width:43.840000pt;}
._26{width:46.656000pt;}
._25{width:47.616000pt;}
._6{width:853.085760pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs7{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:16.480000pt;}
.y222{bottom:16.506667pt;}
.ydd{bottom:16.560000pt;}
.yd7{bottom:16.960000pt;}
.y5{bottom:20.720000pt;}
.yd5{bottom:22.560000pt;}
.y1f0{bottom:33.600000pt;}
.y1f1{bottom:33.680000pt;}
.y4{bottom:35.600000pt;}
.yd4{bottom:39.680000pt;}
.y1fd{bottom:45.040000pt;}
.y20f{bottom:45.066667pt;}
.y3{bottom:50.400000pt;}
.y1ef{bottom:61.520000pt;}
.y2{bottom:65.200000pt;}
.y3f{bottom:67.760000pt;}
.y1f8{bottom:73.440000pt;}
.y1f4{bottom:73.520000pt;}
.y10{bottom:83.040000pt;}
.y3e{bottom:84.640000pt;}
.y21b{bottom:84.880000pt;}
.yf{bottom:101.040000pt;}
.y21a{bottom:101.920000pt;}
.y212{bottom:102.000000pt;}
.y220{bottom:102.106667pt;}
.y78{bottom:103.280000pt;}
.y15a{bottom:105.680000pt;}
.y10b{bottom:105.920000pt;}
.y16e{bottom:106.880000pt;}
.y111{bottom:107.920000pt;}
.y138{bottom:112.000000pt;}
.y1fb{bottom:114.160000pt;}
.y21f{bottom:115.520000pt;}
.y14b{bottom:115.840000pt;}
.y19a{bottom:117.920000pt;}
.y77{bottom:118.080000pt;}
.ya9{bottom:122.720000pt;}
.y1e7{bottom:123.280000pt;}
.y159{bottom:123.440000pt;}
.y16d{bottom:124.640000pt;}
.y10a{bottom:125.280000pt;}
.y137{bottom:129.760000pt;}
.y201{bottom:130.586667pt;}
.y1d5{bottom:131.680000pt;}
.y76{bottom:132.960000pt;}
.ydf{bottom:133.840000pt;}
.y14a{bottom:135.200000pt;}
.y1bd{bottom:135.680000pt;}
.ye{bottom:136.560000pt;}
.ya8{bottom:137.600000pt;}
.y199{bottom:139.680000pt;}
.y158{bottom:141.280000pt;}
.y1fc{bottom:142.720000pt;}
.y223{bottom:144.080000pt;}
.y16c{bottom:146.480000pt;}
.y136{bottom:147.520000pt;}
.y75{bottom:147.760000pt;}
.y1d4{bottom:149.520000pt;}
.yd{bottom:151.440000pt;}
.y110{bottom:152.400000pt;}
.y1bc{bottom:153.520000pt;}
.y198{bottom:157.520000pt;}
.y157{bottom:159.040000pt;}
.y205{bottom:159.120000pt;}
.y74{bottom:162.640000pt;}
.y10f{bottom:163.440000pt;}
.y16b{bottom:164.240000pt;}
.y135{bottom:165.360000pt;}
.yc{bottom:166.240000pt;}
.y108{bottom:167.280000pt;}
.y1fa{bottom:171.200000pt;}
.y1bb{bottom:171.280000pt;}
.y221{bottom:172.560000pt;}
.y156{bottom:176.880000pt;}
.y73{bottom:177.440000pt;}
.y197{bottom:179.280000pt;}
.yb{bottom:181.040000pt;}
.y72{bottom:182.080000pt;}
.y134{bottom:183.120000pt;}
.y1ba{bottom:189.146667pt;}
.yde{bottom:190.746667pt;}
.ya7{bottom:192.266667pt;}
.y71{bottom:193.146667pt;}
.y155{bottom:194.666667pt;}
.ya{bottom:195.946667pt;}
.y196{bottom:197.146667pt;}
.y1f7{bottom:199.786667pt;}
.y16a{bottom:199.866667pt;}
.y133{bottom:200.986667pt;}
.y21e{bottom:201.146667pt;}
.ydc{bottom:204.986667pt;}
.y1d3{bottom:206.906667pt;}
.ya6{bottom:207.146667pt;}
.y9{bottom:210.746667pt;}
.y1b9{bottom:210.906667pt;}
.y154{bottom:212.506667pt;}
.y169{bottom:217.706667pt;}
.y132{bottom:218.746667pt;}
.y195{bottom:218.906667pt;}
.ya5{bottom:221.946667pt;}
.y70{bottom:222.426667pt;}
.y8{bottom:225.546667pt;}
.ya4{bottom:226.586667pt;}
.y1f9{bottom:228.266667pt;}
.y1b8{bottom:228.666667pt;}
.y219{bottom:229.626667pt;}
.y153{bottom:230.266667pt;}
.ydb{bottom:233.546667pt;}
.y168{bottom:235.466667pt;}
.y131{bottom:236.586667pt;}
.y194{bottom:236.666667pt;}
.ya3{bottom:236.746667pt;}
.y13a{bottom:237.626667pt;}
.y6f{bottom:240.186667pt;}
.ya2{bottom:241.386667pt;}
.y1b7{bottom:246.506667pt;}
.y152{bottom:248.106667pt;}
.y107{bottom:251.626667pt;}
.ya1{bottom:252.506667pt;}
.y167{bottom:253.306667pt;}
.y130{bottom:254.346667pt;}
.y7{bottom:255.146667pt;}
.y1f6{bottom:256.746667pt;}
.y6e{bottom:258.026667pt;}
.y21d{bottom:258.106667pt;}
.y193{bottom:258.506667pt;}
.yda{bottom:262.026667pt;}
.y1d2{bottom:264.266667pt;}
.y151{bottom:265.866667pt;}
.y106{bottom:266.426667pt;}
.y1b6{bottom:268.266667pt;}
.y166{bottom:271.066667pt;}
.y12f{bottom:272.186667pt;}
.y6d{bottom:275.786667pt;}
.y192{bottom:276.266667pt;}
.y105{bottom:281.306667pt;}
.y150{bottom:283.626667pt;}
.y3d{bottom:284.186667pt;}
.y1f3{bottom:285.306667pt;}
.y104{bottom:285.946667pt;}
.y1b5{bottom:286.106667pt;}
.y21c{bottom:286.666667pt;}
.y12e{bottom:289.946667pt;}
.yd9{bottom:290.586667pt;}
.y165{bottom:292.826667pt;}
.y6c{bottom:293.626667pt;}
.y103{bottom:296.986667pt;}
.y191{bottom:298.106667pt;}
.y3c{bottom:298.986667pt;}
.y14f{bottom:301.466667pt;}
.y1d1{bottom:303.866667pt;}
.y12d{bottom:307.786667pt;}
.y1b4{bottom:307.866667pt;}
.y164{bottom:310.666667pt;}
.y6b{bottom:311.386667pt;}
.y1f5{bottom:313.786667pt;}
.y3b{bottom:313.866667pt;}
.y218{bottom:315.146667pt;}
.y190{bottom:315.866667pt;}
.y102{bottom:317.306667pt;}
.yd3{bottom:319.066667pt;}
.y14e{bottom:319.226667pt;}
.y12c{bottom:325.546667pt;}
.y1b3{bottom:325.706667pt;}
.y3a{bottom:328.666667pt;}
.y6a{bottom:329.226667pt;}
.y163{bottom:332.426667pt;}
.y18f{bottom:333.706667pt;}
.y101{bottom:335.146667pt;}
.y14d{bottom:336.346667pt;}
.y1f2{bottom:342.346667pt;}
.y12b{bottom:343.386667pt;}
.y1d0{bottom:343.466667pt;}
.y39{bottom:343.546667pt;}
.y216{bottom:343.706667pt;}
.y69{bottom:346.986667pt;}
.y1b2{bottom:347.466667pt;}
.yd6{bottom:347.546667pt;}
.y162{bottom:350.266667pt;}
.y100{bottom:352.906667pt;}
.y18e{bottom:355.466667pt;}
.y38{bottom:358.346667pt;}
.y12a{bottom:361.146667pt;}
.y68{bottom:364.826667pt;}
.y1b1{bottom:365.306667pt;}
.y14c{bottom:366.346667pt;}
.y161{bottom:370.666667pt;}
.yff{bottom:370.746667pt;}
.y1ee{bottom:370.826667pt;}
.y217{bottom:372.186667pt;}
.y37{bottom:373.146667pt;}
.y18d{bottom:373.306667pt;}
.y10e{bottom:373.706667pt;}
.y129{bottom:378.906667pt;}
.yd2{bottom:381.146667pt;}
.y67{bottom:382.586667pt;}
.y1cf{bottom:383.066667pt;}
.y1b0{bottom:387.066667pt;}
.y36{bottom:388.026667pt;}
.yfe{bottom:388.506667pt;}
.y18c{bottom:391.066667pt;}
.ya0{bottom:391.466667pt;}
.y128{bottom:396.746667pt;}
.yd1{bottom:398.186667pt;}
.y66{bottom:400.346667pt;}
.y215{bottom:400.666667pt;}
.y1ce{bottom:400.906667pt;}
.y35{bottom:402.826667pt;}
.y1af{bottom:404.906667pt;}
.yfd{bottom:406.346667pt;}
.y18b{bottom:408.906667pt;}
.y9f{bottom:409.306667pt;}
.yd0{bottom:412.986667pt;}
.y127{bottom:414.506667pt;}
.y34{bottom:417.626667pt;}
.y65{bottom:418.186667pt;}
.y1cd{bottom:418.666667pt;}
.y1ae{bottom:422.666667pt;}
.yfb{bottom:424.106667pt;}
.y9e{bottom:427.066667pt;}
.ycf{bottom:428.586667pt;}
.y211{bottom:429.226667pt;}
.yfc{bottom:429.466667pt;}
.y18a{bottom:430.666667pt;}
.y126{bottom:432.346667pt;}
.y33{bottom:432.506667pt;}
.y64{bottom:435.946667pt;}
.y1cc{bottom:440.506667pt;}
.yfa{bottom:441.946667pt;}
.y1ad{bottom:444.506667pt;}
.y9d{bottom:444.906667pt;}
.yce{bottom:446.346667pt;}
.y32{bottom:447.306667pt;}
.y189{bottom:448.506667pt;}
.y1ed{bottom:448.586667pt;}
.y125{bottom:450.106667pt;}
.y63{bottom:453.786667pt;}
.y149{bottom:455.466667pt;}
.y214{bottom:457.706667pt;}
.y1cb{bottom:458.266667pt;}
.yf9{bottom:459.706667pt;}
.y31{bottom:462.186667pt;}
.y1ac{bottom:462.266667pt;}
.y9b{bottom:462.666667pt;}
.ycd{bottom:464.186667pt;}
.y1ec{bottom:465.626667pt;}
.y124{bottom:467.946667pt;}
.y9c{bottom:468.026667pt;}
.y188{bottom:470.266667pt;}
.y62{bottom:471.546667pt;}
.y148{bottom:473.226667pt;}
.y30{bottom:476.986667pt;}
.yf8{bottom:477.466667pt;}
.y1ab{bottom:480.026667pt;}
.y1eb{bottom:480.426667pt;}
.y9a{bottom:480.506667pt;}
.ycb{bottom:481.946667pt;}
.y123{bottom:485.706667pt;}
.y213{bottom:486.266667pt;}
.ycc{bottom:487.306667pt;}
.y187{bottom:488.026667pt;}
.y61{bottom:489.386667pt;}
.y147{bottom:491.066667pt;}
.y2f{bottom:491.786667pt;}
.yf7{bottom:495.306667pt;}
.y1aa{bottom:497.866667pt;}
.y99{bottom:498.266667pt;}
.yca{bottom:499.786667pt;}
.y122{bottom:503.546667pt;}
.y10d{bottom:503.626667pt;}
.y2e{bottom:506.666667pt;}
.y60{bottom:507.146667pt;}
.y146{bottom:508.826667pt;}
.y186{bottom:509.866667pt;}
.y1ea{bottom:510.106667pt;}
.yf6{bottom:513.066667pt;}
.y210{bottom:514.746667pt;}
.y1ca{bottom:515.626667pt;}
.y98{bottom:516.026667pt;}
.y1a9{bottom:519.626667pt;}
.y121{bottom:521.306667pt;}
.y2d{bottom:521.466667pt;}
.y5f{bottom:524.986667pt;}
.y145{bottom:526.666667pt;}
.y185{bottom:527.626667pt;}
.yf5{bottom:530.906667pt;}
.y97{bottom:533.866667pt;}
.yc9{bottom:534.586667pt;}
.y2c{bottom:536.346667pt;}
.y1a8{bottom:537.466667pt;}
.y120{bottom:539.146667pt;}
.y1e9{bottom:539.786667pt;}
.y5e{bottom:542.746667pt;}
.y20b{bottom:543.226667pt;}
.y144{bottom:544.426667pt;}
.y184{bottom:545.466667pt;}
.yf4{bottom:548.666667pt;}
.yc8{bottom:549.466667pt;}
.y2b{bottom:551.146667pt;}
.y96{bottom:551.626667pt;}
.y1e8{bottom:554.586667pt;}
.y1a7{bottom:555.226667pt;}
.y11f{bottom:556.906667pt;}
.y5d{bottom:560.586667pt;}
.y143{bottom:562.293333pt;}
.y183{bottom:563.253333pt;}
.yc7{bottom:564.293333pt;}
.y2a{bottom:565.973333pt;}
.yf3{bottom:566.533333pt;}
.y95{bottom:569.493333pt;}
.y20e{bottom:571.813333pt;}
.y1a6{bottom:573.093333pt;}
.y11e{bottom:574.773333pt;}
.y1c9{bottom:577.093333pt;}
.y5c{bottom:578.373333pt;}
.yc6{bottom:579.173333pt;}
.y142{bottom:580.053333pt;}
.y29{bottom:580.853333pt;}
.yf2{bottom:584.293333pt;}
.y182{bottom:585.093333pt;}
.y94{bottom:587.253333pt;}
.y1a5{bottom:590.853333pt;}
.y11d{bottom:592.533333pt;}
.yc5{bottom:593.973333pt;}
.y1c8{bottom:594.853333pt;}
.y28{bottom:595.653333pt;}
.y5b{bottom:596.213333pt;}
.y141{bottom:597.813333pt;}
.y20d{bottom:600.293333pt;}
.yf1{bottom:602.133333pt;}
.y181{bottom:602.853333pt;}
.y93{bottom:605.093333pt;}
.yc4{bottom:608.773333pt;}
.y11c{bottom:610.293333pt;}
.y27{bottom:610.453333pt;}
.y1a4{bottom:612.693333pt;}
.y5a{bottom:613.973333pt;}
.y140{bottom:615.653333pt;}
.y1c7{bottom:616.693333pt;}
.yf0{bottom:619.893333pt;}
.y180{bottom:620.693333pt;}
.y1e6{bottom:620.853333pt;}
.y92{bottom:622.853333pt;}
.yc3{bottom:623.653333pt;}
.y26{bottom:625.333333pt;}
.y11b{bottom:628.133333pt;}
.y20c{bottom:628.853333pt;}
.y1a3{bottom:630.453333pt;}
.y59{bottom:631.733333pt;}
.y13f{bottom:633.413333pt;}
.y1c6{bottom:634.453333pt;}
.y1e5{bottom:635.653333pt;}
.yef{bottom:637.733333pt;}
.y109{bottom:638.373333pt;}
.yc2{bottom:638.453333pt;}
.y25{bottom:640.133333pt;}
.y91{bottom:640.693333pt;}
.y11a{bottom:645.893333pt;}
.y1a2{bottom:648.293333pt;}
.y58{bottom:649.573333pt;}
.y1e4{bottom:650.533333pt;}
.y13e{bottom:651.253333pt;}
.yc1{bottom:653.333333pt;}
.y24{bottom:655.013333pt;}
.yed{bottom:655.493333pt;}
.y1c5{bottom:656.293333pt;}
.y20a{bottom:657.333333pt;}
.y8f{bottom:658.453333pt;}
.y17f{bottom:660.293333pt;}
.yee{bottom:660.853333pt;}
.y119{bottom:663.733333pt;}
.y90{bottom:663.813333pt;}
.y1e3{bottom:666.053333pt;}
.y56{bottom:667.333333pt;}
.yc0{bottom:668.133333pt;}
.y13d{bottom:669.013333pt;}
.y23{bottom:669.813333pt;}
.y1a1{bottom:670.053333pt;}
.y57{bottom:672.693333pt;}
.yec{bottom:673.333333pt;}
.y1c4{bottom:674.053333pt;}
.y8e{bottom:676.293333pt;}
.y17e{bottom:678.053333pt;}
.y118{bottom:681.493333pt;}
.ybf{bottom:682.933333pt;}
.y1e2{bottom:683.813333pt;}
.y22{bottom:684.613333pt;}
.y55{bottom:685.173333pt;}
.y204{bottom:685.813333pt;}
.y13c{bottom:686.133333pt;}
.yeb{bottom:691.093333pt;}
.y139{bottom:691.813333pt;}
.y8c{bottom:694.053333pt;}
.y17d{bottom:695.813333pt;}
.ybe{bottom:697.813333pt;}
.y117{bottom:699.333333pt;}
.y8d{bottom:699.413333pt;}
.y21{bottom:699.493333pt;}
.y54{bottom:702.933333pt;}
.y13b{bottom:705.493333pt;}
.y1e1{bottom:705.653333pt;}
.yea{bottom:708.853333pt;}
.y1a0{bottom:709.653333pt;}
.y8b{bottom:711.813333pt;}
.ybd{bottom:712.613333pt;}
.y17c{bottom:713.653333pt;}
.y20{bottom:714.293333pt;}
.y209{bottom:714.373333pt;}
.y116{bottom:717.093333pt;}
.y1c3{bottom:717.653333pt;}
.y53{bottom:720.773333pt;}
.y1e0{bottom:723.413333pt;}
.ye8{bottom:726.693333pt;}
.ybc{bottom:727.413333pt;}
.y1f{bottom:729.173333pt;}
.y8a{bottom:729.653333pt;}
.y17b{bottom:731.413333pt;}
.ye9{bottom:732.053333pt;}
.y115{bottom:734.933333pt;}
.y1c2{bottom:735.413333pt;}
.y52{bottom:739.253333pt;}
.ybb{bottom:742.293333pt;}
.y208{bottom:742.853333pt;}
.y1e{bottom:743.973333pt;}
.ye7{bottom:744.453333pt;}
.y1df{bottom:745.253333pt;}
.y89{bottom:747.413333pt;}
.y19f{bottom:749.253333pt;}
.y114{bottom:752.693333pt;}
.y17a{bottom:753.253333pt;}
.yba{bottom:757.093333pt;}
.y1c1{bottom:757.253333pt;}
.y1d{bottom:759.493333pt;}
.y51{bottom:759.973333pt;}
.ye6{bottom:762.293333pt;}
.y88{bottom:765.253333pt;}
.y19e{bottom:767.013333pt;}
.y113{bottom:769.813333pt;}
.y179{bottom:771.013333pt;}
.y207{bottom:771.413333pt;}
.yb9{bottom:771.973333pt;}
.y1c0{bottom:775.013333pt;}
.y1c{bottom:776.933333pt;}
.y50{bottom:779.333333pt;}
.ye5{bottom:780.053333pt;}
.y87{bottom:783.013333pt;}
.y1de{bottom:784.853333pt;}
.yb8{bottom:786.773333pt;}
.y178{bottom:788.853333pt;}
.y1bf{bottom:792.853333pt;}
.y1b{bottom:793.253333pt;}
.y4f{bottom:794.213333pt;}
.ye4{bottom:797.893333pt;}
.y112{bottom:799.813333pt;}
.y206{bottom:799.893333pt;}
.y85{bottom:800.853333pt;}
.yb7{bottom:801.573333pt;}
.y1dd{bottom:802.613333pt;}
.y86{bottom:806.213333pt;}
.y19d{bottom:806.613333pt;}
.y4e{bottom:809.013333pt;}
.y1a{bottom:809.573333pt;}
.y177{bottom:810.613333pt;}
.ye3{bottom:815.653333pt;}
.yb6{bottom:816.453333pt;}
.y84{bottom:818.613333pt;}
.y1dc{bottom:820.453333pt;}
.y4d{bottom:823.813333pt;}
.y19c{bottom:824.453333pt;}
.y19{bottom:825.893333pt;}
.y176{bottom:828.453333pt;}
.yb5{bottom:831.253333pt;}
.ye2{bottom:833.493333pt;}
.y83{bottom:836.453333pt;}
.y1db{bottom:838.213333pt;}
.y4c{bottom:838.693333pt;}
.y18{bottom:842.213333pt;}
.yb4{bottom:846.133333pt;}
.y175{bottom:846.213333pt;}
.y160{bottom:851.253333pt;}
.ye1{bottom:851.973333pt;}
.y4b{bottom:853.493333pt;}
.y82{bottom:854.213333pt;}
.y200{bottom:856.933333pt;}
.y17{bottom:858.533333pt;}
.y1da{bottom:860.053333pt;}
.yb3{bottom:860.933333pt;}
.y174{bottom:864.053333pt;}
.y4a{bottom:868.293333pt;}
.y15f{bottom:869.093333pt;}
.y81{bottom:872.053333pt;}
.y16{bottom:874.453333pt;}
.yb2{bottom:875.733333pt;}
.y1d9{bottom:877.813333pt;}
.y19b{bottom:881.813333pt;}
.y49{bottom:883.173333pt;}
.y203{bottom:885.413333pt;}
.y173{bottom:885.813333pt;}
.y15e{bottom:886.853333pt;}
.y80{bottom:889.813333pt;}
.y15{bottom:890.053333pt;}
.yb1{bottom:890.613333pt;}
.y1d8{bottom:895.653333pt;}
.y48{bottom:897.973333pt;}
.y1be{bottom:899.653333pt;}
.y172{bottom:903.653333pt;}
.y15d{bottom:904.613333pt;}
.yb0{bottom:905.413333pt;}
.y7f{bottom:907.653333pt;}
.y14{bottom:907.813333pt;}
.y47{bottom:912.853333pt;}
.y1d7{bottom:913.413333pt;}
.y202{bottom:913.973333pt;}
.yaf{bottom:920.213333pt;}
.y171{bottom:921.413333pt;}
.y15c{bottom:922.453333pt;}
.y7e{bottom:925.413333pt;}
.y46{bottom:927.653333pt;}
.y13{bottom:934.293333pt;}
.yae{bottom:935.093333pt;}
.y1d6{bottom:935.173333pt;}
.y170{bottom:939.200000pt;}
.y15b{bottom:940.960000pt;}
.y45{bottom:942.480000pt;}
.y7d{bottom:943.200000pt;}
.ye0{bottom:948.560000pt;}
.yad{bottom:949.920000pt;}
.y12{bottom:955.120000pt;}
.y16f{bottom:957.040000pt;}
.y44{bottom:957.360000pt;}
.y7c{bottom:961.040000pt;}
.yac{bottom:964.800000pt;}
.y10c{bottom:966.400000pt;}
.y1ff{bottom:971.040000pt;}
.y43{bottom:972.160000pt;}
.y11{bottom:974.800000pt;}
.y7b{bottom:978.800000pt;}
.yab{bottom:979.600000pt;}
.y42{bottom:987.040000pt;}
.y6{bottom:991.600000pt;}
.y7a{bottom:996.640000pt;}
.y1fe{bottom:999.520000pt;}
.y41{bottom:1001.840000pt;}
.y1{bottom:1008.160000pt;}
.yaa{bottom:1013.040000pt;}
.y79{bottom:1014.400000pt;}
.y40{bottom:1016.640000pt;}
.h12{height:27.840000pt;}
.h1a{height:27.866667pt;}
.h13{height:27.920000pt;}
.h20{height:27.946667pt;}
.h11{height:28.720000pt;}
.hd{height:36.250000pt;}
.hc{height:42.412500pt;}
.h4{height:46.159844pt;}
.h6{height:54.375000pt;}
.h7{height:54.927899pt;}
.ha{height:55.281250pt;}
.h1c{height:56.400000pt;}
.h1f{height:56.426667pt;}
.h10{height:57.200000pt;}
.hf{height:57.954219pt;}
.h3{height:60.537500pt;}
.h5{height:63.656250pt;}
.h9{height:64.402656pt;}
.h14{height:65.531250pt;}
.he{height:65.781915pt;}
.h8{height:66.337500pt;}
.h15{height:69.406250pt;}
.hb{height:72.500000pt;}
.h17{height:72.880000pt;}
.h2{height:76.560000pt;}
.h16{height:84.462500pt;}
.h19{height:84.800000pt;}
.h18{height:84.880000pt;}
.h1b{height:84.906667pt;}
.h21{height:113.360000pt;}
.h22{height:113.466667pt;}
.h1d{height:141.946667pt;}
.h1e{height:170.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.wc{width:46.586667pt;}
.w7{width:68.160000pt;}
.w8{width:121.386667pt;}
.wa{width:122.080000pt;}
.wd{width:122.240000pt;}
.we{width:131.626667pt;}
.wb{width:131.706667pt;}
.wf{width:160.026667pt;}
.w10{width:169.440000pt;}
.w9{width:254.426667pt;}
.w4{width:293.066667pt;}
.w2{width:295.013333pt;}
.w11{width:462.480000pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1a{left:13.200000pt;}
.x42{left:14.160000pt;}
.x24{left:15.600000pt;}
.x1c{left:18.080000pt;}
.x49{left:19.600000pt;}
.x27{left:21.440000pt;}
.x41{left:23.226667pt;}
.x44{left:25.280000pt;}
.x23{left:27.360000pt;}
.x22{left:43.520000pt;}
.x1d{left:45.040000pt;}
.x20{left:46.320000pt;}
.x4d{left:50.320000pt;}
.x25{left:57.680000pt;}
.x28{left:59.146667pt;}
.x43{left:61.120000pt;}
.x26{left:62.506667pt;}
.x46{left:65.760000pt;}
.x4a{left:67.040000pt;}
.x48{left:79.920000pt;}
.x4c{left:84.720000pt;}
.x1{left:87.360000pt;}
.x8{left:93.039988pt;}
.x6{left:94.559988pt;}
.xf{left:98.559988pt;}
.x31{left:102.559988pt;}
.x1f{left:114.080000pt;}
.x3f{left:118.586655pt;}
.xb{left:132.426655pt;}
.x2d{left:135.386643pt;}
.x2e{left:140.106655pt;}
.x9{left:141.866655pt;}
.x14{left:161.146643pt;}
.x2{left:165.226667pt;}
.x19{left:174.186667pt;}
.x3a{left:199.226643pt;}
.x10{left:201.626643pt;}
.x11{left:206.986655pt;}
.x2f{left:208.026643pt;}
.x30{left:217.466655pt;}
.x1b{left:243.066667pt;}
.x45{left:257.466667pt;}
.xe{left:286.586655pt;}
.x29{left:358.133310pt;}
.x2a{left:362.853322pt;}
.x1e{left:365.093333pt;}
.x3{left:382.373333pt;}
.x47{left:389.813333pt;}
.x7{left:396.933322pt;}
.x4e{left:417.493333pt;}
.x5{left:427.573333pt;}
.xc{left:445.093310pt;}
.xd{left:449.813322pt;}
.x32{left:481.013322pt;}
.x21{left:487.813333pt;}
.x15{left:504.533310pt;}
.x16{left:509.253322pt;}
.x12{left:526.533310pt;}
.x33{left:528.533310pt;}
.x13{left:531.253322pt;}
.x34{left:537.973322pt;}
.x4b{left:550.480000pt;}
.x40{left:570.959988pt;}
.x35{left:577.519976pt;}
.x36{left:586.959988pt;}
.x17{left:593.599976pt;}
.x18{left:598.639988pt;}
.x37{left:600.079976pt;}
.x38{left:609.519988pt;}
.x2b{left:639.199976pt;}
.x2c{left:643.919988pt;}
.x3b{left:683.039988pt;}
.xa{left:691.199988pt;}
.x3d{left:698.639988pt;}
.x3c{left:701.279988pt;}
.x39{left:705.199988pt;}
.x3e{left:709.199988pt;}
}




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