
    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_be678477cf994745e059db88.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d94d198b7c2d44cb6a31ca67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0816b25ecebf2582f414dda1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_30b2e6de560218c1de9c6977.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_307440f532dd085b039ce81c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_045e3bb408cc99aea4736114.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{transform:matrix(0.000000,-0.267393,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.267393,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.267393,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.259957,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259957,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259957,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.247186,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247186,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247186,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.247872,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247872,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247872,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.246608,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246608,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246608,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.250176,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250176,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250176,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.279426,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.279426,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.279426,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.257718,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.257718,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.257718,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.248340,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248340,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248340,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.223673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223673,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.233738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233738,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.240424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240424,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242494,0.000000,-0.080823,0.236575,0,0);-ms-transform:matrix(0.242494,0.000000,-0.080823,0.236575,0,0);-webkit-transform:matrix(0.242494,0.000000,-0.080823,0.236575,0,0);}
.m9{transform:matrix(0.242513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242513,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243460,0.000000,-0.081145,0.236465,0,0);-ms-transform:matrix(0.243460,0.000000,-0.081145,0.236465,0,0);-webkit-transform:matrix(0.243460,0.000000,-0.081145,0.236465,0,0);}
.m6{transform:matrix(0.244666,0.000000,-0.081547,0.236326,0,0);-ms-transform:matrix(0.244666,0.000000,-0.081547,0.236326,0,0);-webkit-transform:matrix(0.244666,0.000000,-0.081547,0.236326,0,0);}
.m7{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252146,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253438,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257396,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-72.720000px;}
.v2{vertical-align:-37.765007px;}
.v6{vertical-align:-18.247727px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v3{vertical-align:17.928346px;}
.ls18{letter-spacing:-2.398170px;}
.ls1d{letter-spacing:-1.963326px;}
.lsb{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.220800px;}
.ls5{letter-spacing:-0.206400px;}
.ls29{letter-spacing:-0.193800px;}
.ls13{letter-spacing:-0.142713px;}
.ls15{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.051840px;}
.ls1e{letter-spacing:-0.046269px;}
.ls23{letter-spacing:-0.045592px;}
.ls1f{letter-spacing:-0.045291px;}
.ls20{letter-spacing:-0.045222px;}
.ls25{letter-spacing:-0.043363px;}
.ls24{letter-spacing:-0.042466px;}
.ls1{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.047444px;}
.ls4{letter-spacing:0.051840px;}
.ls0{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.089280px;}
.ls21{letter-spacing:0.094888px;}
.ls26{letter-spacing:0.098413px;}
.ls10{letter-spacing:0.143040px;}
.lse{letter-spacing:0.167040px;}
.ls27{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.219000px;}
.lsc{letter-spacing:0.253440px;}
.ls19{letter-spacing:0.315600px;}
.ls11{letter-spacing:0.334080px;}
.ls3{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.375366px;}
.ls2a{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.892073px;}
.ls14{letter-spacing:0.893407px;}
.ls12{letter-spacing:2.880000px;}
.ls1c{letter-spacing:159.135483px;}
.ls1b{letter-spacing:164.300721px;}
.lsd{letter-spacing:363.710157px;}
.ls1a{letter-spacing:481.860000px;}
.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;}
}
.wsc{word-spacing:-41.858244px;}
.wsa{word-spacing:-41.838732px;}
.ws13{word-spacing:-18.286050px;}
.ws11{word-spacing:-18.002203px;}
.ws2b{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.059000px;}
.ws7{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws2c{word-spacing:-14.220000px;}
.ws2e{word-spacing:-14.026200px;}
.ws2d{word-spacing:-13.999200px;}
.ws2f{word-spacing:-13.860000px;}
.ws10{word-spacing:-11.372480px;}
.ws26{word-spacing:-11.342130px;}
.ws27{word-spacing:-11.317527px;}
.wse{word-spacing:-10.855773px;}
.ws17{word-spacing:-10.778193px;}
.ws12{word-spacing:-10.755600px;}
.ws16{word-spacing:-10.754813px;}
.ws1f{word-spacing:-10.513101px;}
.ws1c{word-spacing:-10.486589px;}
.wsf{word-spacing:-10.480407px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.353368px;}
.wsd{word-spacing:-10.350600px;}
.ws19{word-spacing:-10.055240px;}
.ws2{word-spacing:0.000000px;}
.ws24{word-spacing:71.520154px;}
.ws25{word-spacing:74.837768px;}
.ws23{word-spacing:77.263235px;}
.ws21{word-spacing:82.354828px;}
.ws22{word-spacing:87.620216px;}
.ws29{word-spacing:95.657708px;}
.ws28{word-spacing:95.829931px;}
.ws15{word-spacing:112.720813px;}
.ws1e{word-spacing:117.523898px;}
.ws1d{word-spacing:117.525747px;}
.ws1b{word-spacing:118.021232px;}
.ws18{word-spacing:119.588845px;}
.ws2a{word-spacing:121.337013px;}
.ws14{word-spacing:121.710236px;}
.ws20{word-spacing:124.505841px;}
.ws1a{word-spacing:126.810718px;}
.wsb{word-spacing:165.724376px;}
.ws9{word-spacing:172.721377px;}
._1d{margin-left:-216.314740px;}
._21{margin-left:-211.435283px;}
._1c{margin-left:-188.747798px;}
._20{margin-left:-184.321373px;}
._28{margin-left:-153.600822px;}
._2a{margin-left:-150.081025px;}
._27{margin-left:-124.133324px;}
._25{margin-left:-109.118957px;}
._26{margin-left:-106.876929px;}
._23{margin-left:-104.750737px;}
._24{margin-left:-93.587663px;}
._29{margin-left:-76.515082px;}
._1b{margin-left:-4.239360px;}
._17{margin-left:-3.047040px;}
._0{margin-left:-1.324800px;}
._1{width:1.108800px;}
._6{width:2.629440px;}
._5{width:3.645360px;}
._14{width:4.807440px;}
._4{width:6.573600px;}
._15{width:7.675200px;}
._e{width:8.930880px;}
._16{width:10.085280px;}
._3{width:11.842560px;}
._2{width:12.848400px;}
._18{width:14.307840px;}
._19{width:15.433920px;}
._8{width:17.390160px;}
._7{width:18.824400px;}
._f{width:21.600000px;}
._10{width:22.690560px;}
._1a{width:24.192960px;}
._11{width:25.245360px;}
._12{width:26.261040px;}
._13{width:27.728640px;}
._b{width:28.771200px;}
._9{width:32.416560px;}
._a{width:33.718080px;}
._d{width:74.460960px;}
._c{width:76.014720px;}
._3b{width:91.040450px;}
._3f{width:95.377756px;}
._3a{width:100.899685px;}
._31{width:104.273943px;}
._3e{width:105.647877px;}
._35{width:108.554541px;}
._30{width:115.099076px;}
._44{width:118.194349px;}
._43{width:129.905529px;}
._2f{width:138.953299px;}
._2d{width:141.137438px;}
._2b{width:143.063315px;}
._22{width:150.660000px;}
._39{width:151.789734px;}
._34{width:155.187208px;}
._2e{width:159.787236px;}
._2c{width:162.631477px;}
._41{width:163.956277px;}
._36{width:172.807644px;}
._42{width:174.209315px;}
._3c{width:175.837236px;}
._1e{width:178.020000px;}
._38{width:184.468253px;}
._3d{width:186.339126px;}
._33{width:189.100918px;}
._40{width:195.413508px;}
._1f{width:200.160000px;}
._37{width:205.394979px;}
._32{width:212.117955px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs26{font-size:39.041423px;}
.fs25{font-size:39.068902px;}
.fs20{font-size:39.136733px;}
.fs24{font-size:39.153834px;}
.fs27{font-size:39.894204px;}
.fs28{font-size:39.980930px;}
.fs17{font-size:40.220961px;}
.fs23{font-size:40.338031px;}
.fs29{font-size:40.348445px;}
.fs14{font-size:41.292611px;}
.fs1b{font-size:41.604048px;}
.fs19{font-size:41.667873px;}
.fs1c{font-size:41.694491px;}
.fs18{font-size:41.758456px;}
.fs7{font-size:41.760000px;}
.fsc{font-size:41.921628px;}
.fs21{font-size:41.944636px;}
.fs1a{font-size:41.946358px;}
.fs8{font-size:41.984325px;}
.fs22{font-size:42.035820px;}
.fs1d{font-size:42.052406px;}
.fs12{font-size:42.567351px;}
.fs13{font-size:42.659889px;}
.fs10{font-size:42.668432px;}
.fs15{font-size:43.019252px;}
.fs16{font-size:43.112772px;}
.fs1e{font-size:43.648454px;}
.fs1f{font-size:43.743342px;}
.fs2b{font-size:45.270109px;}
.fs2a{font-size:45.368522px;}
.fs2c{font-size:45.892728px;}
.fs2d{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fsf{font-size:64.909365px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:72.008810px;}
.fs9{font-size:72.116504px;}
.fs11{font-size:73.144199px;}
.fse{font-size:76.175223px;}
.fsa{font-size:76.208984px;}
.fsb{font-size:76.244524px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:156.240000px;}
.yb3{bottom:-67.443517px;}
.yb2{bottom:-32.392504px;}
.yb1{bottom:-1.398039px;}
.y0{bottom:0.000000px;}
.ybe{bottom:1.080000px;}
.y11c{bottom:2.160000px;}
.y31{bottom:3.240000px;}
.yc0{bottom:3.420000px;}
.y111{bottom:3.454560px;}
.y14d{bottom:3.503450px;}
.y15c{bottom:3.555797px;}
.y85{bottom:3.669507px;}
.y90{bottom:3.699495px;}
.y7c{bottom:3.705041px;}
.y16c{bottom:3.764274px;}
.y13f{bottom:3.806939px;}
.yf3{bottom:3.927847px;}
.ye7{bottom:3.932857px;}
.y131{bottom:3.985298px;}
.y102{bottom:4.302729px;}
.y119{bottom:4.320000px;}
.ybb{bottom:4.381395px;}
.yb9{bottom:5.841856px;}
.yca{bottom:6.118904px;}
.yb7{bottom:6.490949px;}
.y92{bottom:8.217352px;}
.ycc{bottom:9.720000px;}
.yc8{bottom:10.440000px;}
.ycb{bottom:10.680847px;}
.yb5{bottom:12.332799px;}
.y13d{bottom:13.700328px;}
.y14b{bottom:14.311020px;}
.y10f{bottom:14.330595px;}
.yf{bottom:14.400000px;}
.y15a{bottom:15.632647px;}
.y12f{bottom:16.083436px;}
.ye5{bottom:17.628367px;}
.y8f{bottom:17.644505px;}
.y16a{bottom:17.665052px;}
.y87{bottom:17.670927px;}
.y7e{bottom:17.670929px;}
.yf1{bottom:17.792131px;}
.y100{bottom:19.090113px;}
.y16{bottom:21.270000px;}
.y94{bottom:22.126591px;}
.y8a{bottom:22.159711px;}
.y82{bottom:22.159713px;}
.y7f{bottom:22.159722px;}
.y145{bottom:25.734430px;}
.y137{bottom:25.987377px;}
.y105{bottom:26.517868px;}
.y153{bottom:27.319047px;}
.y127{bottom:28.845869px;}
.y91{bottom:28.956161px;}
.y7d{bottom:29.141605px;}
.y86{bottom:29.212672px;}
.y30{bottom:29.340000px;}
.ydd{bottom:30.074693px;}
.yea{bottom:30.393973px;}
.y162{bottom:30.926243px;}
.yf6{bottom:31.273437px;}
.y93{bottom:33.438248px;}
.y80{bottom:33.630401px;}
.y81{bottom:33.630404px;}
.y88{bottom:33.737725px;}
.y89{bottom:33.737729px;}
.y101{bottom:34.013554px;}
.y112{bottom:34.838675px;}
.y15{bottom:38.550000px;}
.y151{bottom:44.228452px;}
.y106{bottom:45.126636px;}
.y2f{bottom:46.620000px;}
.yf7{bottom:49.684297px;}
.y103{bottom:51.518584px;}
.y154{bottom:52.296287px;}
.y110{bottom:53.470057px;}
.y128{bottom:53.777676px;}
.y14c{bottom:54.038152px;}
.yde{bottom:54.666595px;}
.y14{bottom:55.830000px;}
.y15b{bottom:56.394116px;}
.y16b{bottom:56.587507px;}
.y150{bottom:56.671048px;}
.y146{bottom:56.989552px;}
.y163{bottom:57.079573px;}
.yeb{bottom:58.730566px;}
.y13e{bottom:59.132759px;}
.y138{bottom:59.862229px;}
.yf2{bottom:59.993090px;}
.y107{bottom:63.758014px;}
.y16d{bottom:63.771670px;}
.y2e{bottom:63.900000px;}
.y130{bottom:64.618625px;}
.yf8{bottom:68.095156px;}
.ye8{bottom:68.755441px;}
.y14f{bottom:69.092410px;}
.y13{bottom:73.110000px;}
.ye6{bottom:75.811466px;}
.y155{bottom:77.295209px;}
.y129{bottom:78.709483px;}
.ydf{bottom:79.258493px;}
.y2d{bottom:81.225000px;}
.y14e{bottom:81.535006px;}
.y108{bottom:82.366781px;}
.y164{bottom:83.232902px;}
.yf9{bottom:86.483370px;}
.yec{bottom:87.043781px;}
.y147{bottom:88.223440px;}
.y12{bottom:90.390000px;}
.y139{bottom:93.737082px;}
.y17{bottom:95.430000px;}
.y2c{bottom:98.505000px;}
.y109{bottom:100.976490px;}
.y156{bottom:102.269740px;}
.y12a{bottom:103.621522px;}
.ye0{bottom:103.850394px;}
.yfa{bottom:104.892342px;}
.y11{bottom:105.330000px;}
.yf4{bottom:107.271384px;}
.y165{bottom:109.388281px;}
.yed{bottom:115.376475px;}
.y2b{bottom:115.785000px;}
.y148{bottom:119.459097px;}
.y10a{bottom:119.602215px;}
.yfb{bottom:123.282443px;}
.y157{bottom:127.248787px;}
.y13a{bottom:127.615734px;}
.ye1{bottom:128.440363px;}
.y12b{bottom:128.549375px;}
.y2a{bottom:133.065000px;}
.y166{bottom:135.539560px;}
.y10b{bottom:138.218519px;}
.yfc{bottom:141.691415px;}
.y160{bottom:141.793549px;}
.yee{bottom:143.715021px;}
.y29{bottom:150.165000px;}
.y149{bottom:150.689447px;}
.y135{bottom:151.085244px;}
.y158{bottom:152.245903px;}
.ye2{bottom:153.030336px;}
.y12c{bottom:153.477229px;}
.y15f{bottom:154.368896px;}
.y143{bottom:154.600481px;}
.y10c{bottom:156.825402px;}
.ya1{bottom:159.870000px;}
.yfd{bottom:160.100387px;}
.y19d{bottom:160.230000px;}
.y13b{bottom:161.486787px;}
.y167{bottom:161.690839px;}
.y76{bottom:162.930000px;}
.y134{bottom:163.677665px;}
.y142{bottom:165.998480px;}
.y15e{bottom:166.926175px;}
.y28{bottom:167.445000px;}
.ydb{bottom:168.870000px;}
.y41{bottom:169.050000px;}
.yef{bottom:172.053562px;}
.y10d{bottom:175.451127px;}
.y133{bottom:176.250317px;}
.y19c{bottom:176.610000px;}
.y159{bottom:177.224950px;}
.y141{bottom:177.396479px;}
.ye3{bottom:177.629945px;}
.ya0{bottom:178.050000px;}
.y12d{bottom:178.385314px;}
.yfe{bottom:178.490488px;}
.y15d{bottom:179.483453px;}
.y125{bottom:180.030000px;}
.y75{bottom:180.930000px;}
.y14a{bottom:181.928643px;}
.y27{bottom:184.725000px;}
.yda{bottom:187.050000px;}
.y168{bottom:187.842118px;}
.y40{bottom:187.950000px;}
.y140{bottom:188.794478px;}
.y132{bottom:188.822970px;}
.y19b{bottom:193.170000px;}
.y10e{bottom:194.067431px;}
.y124{bottom:194.790000px;}
.y13c{bottom:195.357840px;}
.y161{bottom:196.019480px;}
.y9f{bottom:196.050000px;}
.yff{bottom:196.899460px;}
.y74{bottom:199.110000px;}
.yf0{bottom:200.392106px;}
.y26{bottom:202.005000px;}
.ye4{bottom:202.219918px;}
.y12e{bottom:203.323052px;}
.yd9{bottom:205.050000px;}
.y3f{bottom:207.030000px;}
.y38{bottom:211.005000px;}
.y169{bottom:214.003648px;}
.y19a{bottom:214.050000px;}
.y9e{bottom:214.230000px;}
.y73{bottom:217.290000px;}
.y25{bottom:219.285000px;}
.y3e{bottom:225.930000px;}
.y37{bottom:228.285000px;}
.y199{bottom:230.430000px;}
.y9d{bottom:232.410000px;}
.y72{bottom:235.290000px;}
.y24{bottom:236.385000px;}
.yd8{bottom:237.810000px;}
.y3d{bottom:245.010000px;}
.y36{bottom:245.565000px;}
.y9c{bottom:250.410000px;}
.y198{bottom:251.310000px;}
.y71{bottom:253.470000px;}
.y23{bottom:253.665000px;}
.yd7{bottom:255.990000px;}
.y35{bottom:262.845000px;}
.y3c{bottom:263.910000px;}
.y197{bottom:267.690000px;}
.y9b{bottom:268.590000px;}
.y22{bottom:270.945000px;}
.y70{bottom:271.470000px;}
.yd6{bottom:273.990000px;}
.y104{bottom:275.310000px;}
.yf5{bottom:275.436550px;}
.y34{bottom:280.125000px;}
.y21{bottom:288.225000px;}
.y196{bottom:288.570000px;}
.y6f{bottom:289.650000px;}
.y3b{bottom:291.630000px;}
.y33{bottom:297.225000px;}
.y39{bottom:302.445000px;}
.y9a{bottom:304.770000px;}
.y195{bottom:304.950000px;}
.y20{bottom:305.505000px;}
.y6e{bottom:307.830000px;}
.y3a{bottom:310.350000px;}
.y32{bottom:312.165000px;}
.y194{bottom:321.330000px;}
.y1f{bottom:322.785000px;}
.y6d{bottom:325.830000px;}
.y18{bottom:326.730000px;}
.y1e{bottom:339.915000px;}
.y99{bottom:341.490000px;}
.y193{bottom:342.210000px;}
.y6c{bottom:344.010000px;}
.y1d{bottom:357.195000px;}
.y192{bottom:358.590000px;}
.y98{bottom:359.670000px;}
.y6b{bottom:371.190000px;}
.y1c{bottom:374.475000px;}
.y191{bottom:374.970000px;}
.y97{bottom:377.850000px;}
.yb0{bottom:386.954446px;}
.y1b{bottom:391.755000px;}
.y190{bottom:395.850000px;}
.y96{bottom:396.030000px;}
.y6a{bottom:408.135000px;}
.y1a{bottom:409.035000px;}
.y18f{bottom:412.275000px;}
.yaf{bottom:421.843230px;}
.y19{bottom:423.975000px;}
.y69{bottom:427.395000px;}
.y8e{bottom:428.880000px;}
.y18e{bottom:433.155000px;}
.y123{bottom:443.415000px;}
.y68{bottom:446.295000px;}
.y18d{bottom:449.535000px;}
.y95{bottom:451.335000px;}
.yae{bottom:456.921332px;}
.y122{bottom:461.595000px;}
.y67{bottom:465.375000px;}
.y18c{bottom:470.415000px;}
.y121{bottom:479.595000px;}
.y18b{bottom:486.795000px;}
.y66{bottom:488.595000px;}
.yad{bottom:491.810116px;}
.y120{bottom:497.775000px;}
.y8d{bottom:500.655000px;}
.yd5{bottom:504.615000px;}
.y65{bottom:507.675000px;}
.y11f{bottom:515.955000px;}
.y8c{bottom:518.835000px;}
.yd4{bottom:522.795000px;}
.y18a{bottom:524.055000px;}
.y64{bottom:526.755000px;}
.yac{bottom:526.861173px;}
.y11e{bottom:530.535000px;}
.yd3{bottom:540.975000px;}
.y189{bottom:544.935000px;}
.y63{bottom:545.655000px;}
.y11d{bottom:548.715000px;}
.y84{bottom:551.579959px;}
.yd2{bottom:559.155000px;}
.y188{bottom:561.315000px;}
.yab{bottom:561.749956px;}
.y62{bottom:564.735000px;}
.y11b{bottom:566.895000px;}
.y152{bottom:567.688701px;}
.y144{bottom:569.878635px;}
.y8b{bottom:574.095000px;}
.y187{bottom:582.195000px;}
.y61{bottom:583.635000px;}
.yd1{bottom:592.455000px;}
.yaa{bottom:596.801013px;}
.y186{bottom:598.575000px;}
.y1bb{bottom:602.175000px;}
.y60{bottom:602.535000px;}
.yd0{bottom:610.635000px;}
.y185{bottom:614.955000px;}
.y7b{bottom:620.354959px;}
.y5f{bottom:621.615000px;}
.y1ba{bottom:626.475000px;}
.ycf{bottom:628.815000px;}
.ya9{bottom:631.852070px;}
.y184{bottom:635.835000px;}
.y5e{bottom:640.515000px;}
.y83{bottom:642.855000px;}
.y1b9{bottom:643.035000px;}
.y10{bottom:645.375000px;}
.yce{bottom:646.815000px;}
.y183{bottom:652.215000px;}
.y1b8{bottom:659.445000px;}
.y5d{bottom:659.625000px;}
.ycd{bottom:665.025000px;}
.ya8{bottom:666.740854px;}
.y182{bottom:673.125000px;}
.y1b7{bottom:680.325000px;}
.y5c{bottom:682.845000px;}
.yc9{bottom:682.979919px;}
.yc7{bottom:683.025000px;}
.y181{bottom:689.505000px;}
.y7a{bottom:692.205000px;}
.y1b6{bottom:696.705000px;}
.ya7{bottom:701.791911px;}
.y5b{bottom:701.925000px;}
.y180{bottom:710.385000px;}
.y1b5{bottom:713.085000px;}
.yc6{bottom:713.445000px;}
.y5a{bottom:721.005000px;}
.y79{bottom:724.965000px;}
.ya2{bottom:726.210000px;}
.y17f{bottom:726.945000px;}
.yc5{bottom:731.625000px;}
.y1b4{bottom:733.965000px;}
.ya6{bottom:736.721263px;}
.y59{bottom:739.905000px;}
.y17e{bottom:743.325000px;}
.yc4{bottom:749.805000px;}
.y1b3{bottom:750.345000px;}
.ye{bottom:757.185000px;}
.y58{bottom:758.985000px;}
.y17d{bottom:764.205000px;}
.y11a{bottom:767.085000px;}
.yc3{bottom:768.525000px;}
.yba{bottom:770.897318px;}
.y1b2{bottom:771.225000px;}
.ya5{bottom:771.772319px;}
.y57{bottom:777.885000px;}
.y17c{bottom:780.585000px;}
.y118{bottom:785.265000px;}
.y126{bottom:785.518900px;}
.y1b1{bottom:787.605000px;}
.y136{bottom:789.673354px;}
.y56{bottom:796.965000px;}
.yd{bottom:801.645000px;}
.y1b0{bottom:803.985000px;}
.yb8{bottom:804.325638px;}
.ya4{bottom:806.661103px;}
.yc2{bottom:809.025000px;}
.y55{bottom:815.865000px;}
.yc{bottom:818.745000px;}
.yc1{bottom:823.605000px;}
.y1af{bottom:824.865000px;}
.y17b{bottom:831.705000px;}
.y54{bottom:834.765000px;}
.yb{bottom:836.025000px;}
.y1ae{bottom:841.245000px;}
.ya3{bottom:841.712160px;}
.ybf{bottom:841.785000px;}
.yb6{bottom:847.977183px;}
.ya{bottom:853.485000px;}
.y53{bottom:858.165000px;}
.y17a{bottom:859.605000px;}
.ybd{bottom:859.965000px;}
.ye9{bottom:861.103698px;}
.y1ad{bottom:862.125000px;}
.ydc{bottom:862.228553px;}
.y9{bottom:871.665000px;}
.y52{bottom:877.245000px;}
.y1ac{bottom:878.505000px;}
.y8{bottom:889.665000px;}
.y1ab{bottom:894.885000px;}
.y51{bottom:896.325000px;}
.y179{bottom:896.685000px;}
.y50{bottom:915.270000px;}
.y1aa{bottom:915.810000px;}
.y7{bottom:926.430000px;}
.y1a9{bottom:932.190000px;}
.y178{bottom:933.630000px;}
.y4f{bottom:938.490000px;}
.y177{bottom:951.630000px;}
.y1a8{bottom:953.070000px;}
.y4e{bottom:957.750000px;}
.y6{bottom:965.130000px;}
.y1a7{bottom:969.450000px;}
.y176{bottom:969.810000px;}
.y4d{bottom:976.650000px;}
.yb4{bottom:982.047474px;}
.y175{bottom:987.990000px;}
.y1a6{bottom:990.330000px;}
.y4c{bottom:995.730000px;}
.y5{bottom:1003.830000px;}
.y174{bottom:1005.990000px;}
.y1a5{bottom:1006.710000px;}
.y4b{bottom:1014.630000px;}
.y173{bottom:1024.170000px;}
.y117{bottom:1024.890000px;}
.y1a4{bottom:1027.590000px;}
.y4a{bottom:1033.530000px;}
.y4{bottom:1038.570000px;}
.y172{bottom:1042.350000px;}
.y116{bottom:1043.070000px;}
.y1a3{bottom:1043.970000px;}
.y49{bottom:1052.610000px;}
.y171{bottom:1060.350000px;}
.y115{bottom:1061.070000px;}
.y1a2{bottom:1064.850000px;}
.y48{bottom:1075.830000px;}
.y170{bottom:1078.530000px;}
.y114{bottom:1079.250000px;}
.y1a1{bottom:1081.230000px;}
.y47{bottom:1095.090000px;}
.y16f{bottom:1096.530000px;}
.ybc{bottom:1097.250000px;}
.y113{bottom:1097.430000px;}
.y1a0{bottom:1097.610000px;}
.y46{bottom:1113.990000px;}
.y78{bottom:1115.430000px;}
.y19f{bottom:1118.490000px;}
.y16e{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.y77{bottom:1133.610000px;}
.y19e{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hb{height:17.657227px;}
.h28{height:18.000000px;}
.h26{height:18.180000px;}
.h2d{height:18.216000px;}
.h24{height:19.148277px;}
.h23{height:20.608738px;}
.h22{height:21.257831px;}
.h21{height:27.099681px;}
.h29{height:30.420000px;}
.h2a{height:30.449317px;}
.h52{height:38.343990px;}
.h51{height:38.427347px;}
.h56{height:39.153979px;}
.h57{height:39.239097px;}
.h53{height:39.346435px;}
.h49{height:39.442489px;}
.h54{height:39.459723px;}
.h59{height:40.293281px;}
.h8{height:40.320000px;}
.h37{height:40.535187px;}
.h4e{height:40.653172px;}
.h58{height:40.663668px;}
.h3f{height:40.832098px;}
.h3b{height:40.894739px;}
.h40{height:40.920863px;}
.h3a{height:40.983641px;}
.h1a{height:41.123316px;}
.h4c{height:41.166366px;}
.h14{height:41.184819px;}
.h4d{height:41.255858px;}
.h32{height:41.615210px;}
.h30{height:41.777527px;}
.h2b{height:41.855898px;}
.h31{height:41.868348px;}
.h42{height:41.929079px;}
.h3d{height:41.993404px;}
.h35{height:42.221043px;}
.h4f{height:42.272328px;}
.h3c{height:42.274064px;}
.h36{height:42.312828px;}
.h41{height:42.380940px;}
.h47{height:42.838571px;}
.h33{height:42.899909px;}
.h48{height:42.931698px;}
.h38{height:43.355340px;}
.h4a{height:43.989458px;}
.h5c{height:44.430136px;}
.h5b{height:44.526723px;}
.h5e{height:45.722964px;}
.h43{height:45.818438px;}
.h5d{height:46.251265px;}
.h11{height:47.901094px;}
.he{height:49.255313px;}
.h1e{height:49.998305px;}
.h17{height:50.073081px;}
.h19{height:50.548377px;}
.h13{height:50.624017px;}
.h1d{height:52.891195px;}
.h16{height:52.914636px;}
.h18{height:52.939313px;}
.h60{height:55.824609px;}
.h5f{height:57.324375px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h5{height:62.184375px;}
.h20{height:63.704992px;}
.h27{height:63.855000px;}
.h2{height:65.010937px;}
.h9{height:66.757500px;}
.h1c{height:70.637549px;}
.h10{height:70.664062px;}
.h15{height:70.743192px;}
.h2c{height:71.787031px;}
.h4{height:72.562500px;}
.h1b{height:88.565895px;}
.h3{height:96.508125px;}
.ha{height:109.476000px;}
.h12{height:153.341016px;}
.h50{height:195.022390px;}
.h55{height:199.466691px;}
.h45{height:200.190000px;}
.h39{height:207.995797px;}
.h3e{height:208.123872px;}
.h2e{height:209.370000px;}
.h4b{height:209.491363px;}
.h2f{height:212.601497px;}
.h34{height:214.858504px;}
.h25{height:216.030000px;}
.h46{height:217.981100px;}
.h44{height:218.190000px;}
.h5a{height:226.080520px;}
.hf{height:316.470000px;}
.h1f{height:367.830000px;}
.hd{height:428.115000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w15{width:67.536000px;}
.w14{width:67.860000px;}
.w12{width:67.896000px;}
.w13{width:68.040000px;}
.w16{width:75.375663px;}
.wb{width:97.004893px;}
.wc{width:98.461909px;}
.w6{width:113.551154px;}
.w7{width:120.452353px;}
.wa{width:140.035441px;}
.w8{width:174.455417px;}
.w10{width:228.270000px;}
.w3{width:237.990000px;}
.w11{width:271.335000px;}
.w23{width:323.789201px;}
.w21{width:323.875574px;}
.w1b{width:334.118147px;}
.w22{width:334.542587px;}
.w24{width:334.738598px;}
.w1a{width:343.123271px;}
.w1c{width:345.259561px;}
.w1d{width:345.372108px;}
.w1e{width:350.175000px;}
.we{width:351.615000px;}
.wd{width:360.390000px;}
.w17{width:371.415000px;}
.w1f{width:374.115000px;}
.w18{width:374.835000px;}
.w25{width:377.991464px;}
.w5{width:406.875000px;}
.w9{width:561.369405px;}
.wf{width:712.005000px;}
.w20{width:724.110000px;}
.w19{width:746.250000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x28{left:-120.673307px;}
.x0{left:0.000000px;}
.x14{left:3.256897px;}
.x7{left:8.100000px;}
.x2a{left:9.713441px;}
.x4a{left:11.669647px;}
.x13{left:12.954280px;}
.x52{left:16.163021px;}
.x3c{left:17.640000px;}
.x61{left:19.275149px;}
.x1a{left:20.509682px;}
.x48{left:22.666049px;}
.x38{left:26.100000px;}
.x64{left:27.236322px;}
.x51{left:29.225664px;}
.x17{left:30.373175px;}
.x41{left:33.660000px;}
.x5d{left:35.592354px;}
.x1c{left:37.344488px;}
.x60{left:40.505476px;}
.x49{left:41.696560px;}
.x4d{left:45.379733px;}
.x3f{left:46.858639px;}
.x65{left:54.098546px;}
.x3e{left:56.705378px;}
.x16{left:72.529306px;}
.x54{left:76.123058px;}
.x11{left:78.055086px;}
.x15{left:83.323667px;}
.x42{left:87.300000px;}
.x1b{left:88.731412px;}
.x5e{left:90.457702px;}
.x2e{left:94.176000px;}
.x4f{left:95.725138px;}
.x62{left:96.796030px;}
.x12{left:98.400986px;}
.x50{left:99.750005px;}
.x47{left:102.225000px;}
.x19{left:104.132708px;}
.x46{left:106.410000px;}
.x5{left:108.035987px;}
.x4b{left:112.002464px;}
.x21{left:114.479995px;}
.x10{left:118.889990px;}
.x6{left:122.796000px;}
.x66{left:126.807754px;}
.x24{left:129.021441px;}
.x2{left:131.255987px;}
.x59{left:133.590000px;}
.x22{left:135.958582px;}
.x23{left:138.579306px;}
.x34{left:140.394000px;}
.x4e{left:143.159661px;}
.x1f{left:144.631877px;}
.x20{left:151.051759px;}
.x1e{left:165.219891px;}
.x33{left:166.530000px;}
.x32{left:171.534000px;}
.x40{left:177.165000px;}
.x45{left:178.230000px;}
.x26{left:183.772874px;}
.xa{left:185.250000px;}
.xc{left:193.709987px;}
.x36{left:196.950000px;}
.x18{left:232.409987px;}
.x35{left:237.629987px;}
.x1d{left:239.249987px;}
.x63{left:257.580000px;}
.xf{left:271.109987px;}
.x25{left:293.294987px;}
.x3d{left:298.739980px;}
.x3{left:314.354987px;}
.x55{left:332.175000px;}
.x58{left:337.035000px;}
.x5c{left:340.994987px;}
.x31{left:343.335000px;}
.x2f{left:352.299000px;}
.x57{left:354.675000px;}
.x43{left:358.815000px;}
.x8{left:360.795000px;}
.x27{left:367.100596px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x37{left:425.235000px;}
.x56{left:437.475000px;}
.x5a{left:446.654987px;}
.x30{left:454.575000px;}
.x5f{left:456.750000px;}
.x44{left:458.715000px;}
.x4c{left:462.675000px;}
.x53{left:472.755000px;}
.x39{left:493.125000px;}
.x3a{left:561.165000px;}
.x2d{left:582.862922px;}
.x29{left:587.233964px;}
.x2c{left:601.804130px;}
.x2b{left:622.404717px;}
.x3b{left:629.025000px;}
.x5b{left:635.684987px;}
.xe{left:727.349987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v5{vertical-align:-64.640000pt;}
.v2{vertical-align:-33.568895pt;}
.v6{vertical-align:-16.220201pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v3{vertical-align:15.936307pt;}
.ls18{letter-spacing:-2.131706pt;}
.ls1d{letter-spacing:-1.745178pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.196267pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls29{letter-spacing:-0.172267pt;}
.ls13{letter-spacing:-0.126856pt;}
.ls15{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.046080pt;}
.ls1e{letter-spacing:-0.041128pt;}
.ls23{letter-spacing:-0.040526pt;}
.ls1f{letter-spacing:-0.040259pt;}
.ls20{letter-spacing:-0.040197pt;}
.ls25{letter-spacing:-0.038545pt;}
.ls24{letter-spacing:-0.037748pt;}
.ls1{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.042172pt;}
.ls4{letter-spacing:0.046080pt;}
.ls0{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.079360pt;}
.ls21{letter-spacing:0.084345pt;}
.ls26{letter-spacing:0.087478pt;}
.ls10{letter-spacing:0.127147pt;}
.lse{letter-spacing:0.148480pt;}
.ls27{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.194667pt;}
.lsc{letter-spacing:0.225280pt;}
.ls19{letter-spacing:0.280533pt;}
.ls11{letter-spacing:0.296960pt;}
.ls3{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.333658pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.792954pt;}
.ls14{letter-spacing:0.794140pt;}
.ls12{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:141.453763pt;}
.ls1b{letter-spacing:146.045086pt;}
.lsd{letter-spacing:323.297918pt;}
.ls1a{letter-spacing:428.320000pt;}
.wsc{word-spacing:-37.207328pt;}
.wsa{word-spacing:-37.189984pt;}
.ws13{word-spacing:-16.254266pt;}
.ws11{word-spacing:-16.001958pt;}
.ws2b{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.274667pt;}
.ws7{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws2c{word-spacing:-12.640000pt;}
.ws2e{word-spacing:-12.467733pt;}
.ws2d{word-spacing:-12.443733pt;}
.ws2f{word-spacing:-12.320000pt;}
.ws10{word-spacing:-10.108871pt;}
.ws26{word-spacing:-10.081894pt;}
.ws27{word-spacing:-10.060024pt;}
.wse{word-spacing:-9.649576pt;}
.ws17{word-spacing:-9.580616pt;}
.ws12{word-spacing:-9.560533pt;}
.ws16{word-spacing:-9.559834pt;}
.ws1f{word-spacing:-9.344979pt;}
.ws1c{word-spacing:-9.321413pt;}
.wsf{word-spacing:-9.315917pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.202994pt;}
.wsd{word-spacing:-9.200533pt;}
.ws19{word-spacing:-8.937991pt;}
.ws2{word-spacing:0.000000pt;}
.ws24{word-spacing:63.573470pt;}
.ws25{word-spacing:66.522460pt;}
.ws23{word-spacing:68.678431pt;}
.ws21{word-spacing:73.204291pt;}
.ws22{word-spacing:77.884637pt;}
.ws29{word-spacing:85.029074pt;}
.ws28{word-spacing:85.182161pt;}
.ws15{word-spacing:100.196279pt;}
.ws1e{word-spacing:104.465687pt;}
.ws1d{word-spacing:104.467330pt;}
.ws1b{word-spacing:104.907762pt;}
.ws18{word-spacing:106.301196pt;}
.ws2a{word-spacing:107.855123pt;}
.ws14{word-spacing:108.186876pt;}
.ws20{word-spacing:110.671859pt;}
.ws1a{word-spacing:112.720638pt;}
.wsb{word-spacing:147.310557pt;}
.ws9{word-spacing:153.530113pt;}
._1d{margin-left:-192.279769pt;}
._21{margin-left:-187.942474pt;}
._1c{margin-left:-167.775820pt;}
._20{margin-left:-163.841220pt;}
._28{margin-left:-136.534064pt;}
._2a{margin-left:-133.405355pt;}
._27{margin-left:-110.340732pt;}
._25{margin-left:-96.994628pt;}
._26{margin-left:-95.001715pt;}
._23{margin-left:-93.111766pt;}
._24{margin-left:-83.189034pt;}
._29{margin-left:-68.013406pt;}
._1b{margin-left:-3.768320pt;}
._17{margin-left:-2.708480pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.985600pt;}
._6{width:2.337280pt;}
._5{width:3.240320pt;}
._14{width:4.273280pt;}
._4{width:5.843200pt;}
._15{width:6.822400pt;}
._e{width:7.938560pt;}
._16{width:8.964693pt;}
._3{width:10.526720pt;}
._2{width:11.420800pt;}
._18{width:12.718080pt;}
._19{width:13.719040pt;}
._8{width:15.457920pt;}
._7{width:16.732800pt;}
._f{width:19.200000pt;}
._10{width:20.169387pt;}
._1a{width:21.504853pt;}
._11{width:22.440320pt;}
._12{width:23.343147pt;}
._13{width:24.647680pt;}
._b{width:25.574400pt;}
._9{width:28.814720pt;}
._a{width:29.971627pt;}
._d{width:66.187520pt;}
._c{width:67.568640pt;}
._3b{width:80.924844pt;}
._3f{width:84.780227pt;}
._3a{width:89.688609pt;}
._31{width:92.687949pt;}
._3e{width:93.909224pt;}
._35{width:96.492925pt;}
._30{width:102.310290pt;}
._44{width:105.061644pt;}
._43{width:115.471582pt;}
._2f{width:123.514044pt;}
._2d{width:125.455500pt;}
._2b{width:127.167391pt;}
._22{width:133.920000pt;}
._39{width:134.924208pt;}
._34{width:137.944185pt;}
._2e{width:142.033099pt;}
._2c{width:144.561313pt;}
._41{width:145.738913pt;}
._36{width:153.606795pt;}
._42{width:154.852724pt;}
._3c{width:156.299765pt;}
._1e{width:158.240000pt;}
._38{width:163.971780pt;}
._3d{width:165.634779pt;}
._33{width:168.089705pt;}
._40{width:173.700896pt;}
._1f{width:177.920000pt;}
._37{width:182.573314pt;}
._32{width:188.549293pt;}
.fs5{font-size:16.000000pt;}
.fs26{font-size:34.703488pt;}
.fs25{font-size:34.727913pt;}
.fs20{font-size:34.788207pt;}
.fs24{font-size:34.803408pt;}
.fs27{font-size:35.461514pt;}
.fs28{font-size:35.538605pt;}
.fs17{font-size:35.751965pt;}
.fs23{font-size:35.856027pt;}
.fs29{font-size:35.865285pt;}
.fs14{font-size:36.704543pt;}
.fs1b{font-size:36.981376pt;}
.fs19{font-size:37.038110pt;}
.fs1c{font-size:37.061770pt;}
.fs18{font-size:37.118627pt;}
.fs7{font-size:37.120000pt;}
.fsc{font-size:37.263669pt;}
.fs21{font-size:37.284121pt;}
.fs1a{font-size:37.285652pt;}
.fs8{font-size:37.319400pt;}
.fs22{font-size:37.365173pt;}
.fs1d{font-size:37.379916pt;}
.fs12{font-size:37.837645pt;}
.fs13{font-size:37.919901pt;}
.fs10{font-size:37.927495pt;}
.fs15{font-size:38.239335pt;}
.fs16{font-size:38.322464pt;}
.fs1e{font-size:38.798626pt;}
.fs1f{font-size:38.882971pt;}
.fs2b{font-size:40.240097pt;}
.fs2a{font-size:40.327575pt;}
.fs2c{font-size:40.793536pt;}
.fs2d{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fsf{font-size:57.697213pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:64.007831pt;}
.fs9{font-size:64.103559pt;}
.fs11{font-size:65.017066pt;}
.fse{font-size:67.711309pt;}
.fsa{font-size:67.741319pt;}
.fsb{font-size:67.772910pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:138.880000pt;}
.yb3{bottom:-59.949793pt;}
.yb2{bottom:-28.793337pt;}
.yb1{bottom:-1.242701pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:0.960000pt;}
.y11c{bottom:1.920000pt;}
.y31{bottom:2.880000pt;}
.yc0{bottom:3.040000pt;}
.y111{bottom:3.070720pt;}
.y14d{bottom:3.114178pt;}
.y15c{bottom:3.160708pt;}
.y85{bottom:3.261784pt;}
.y90{bottom:3.288440pt;}
.y7c{bottom:3.293370pt;}
.y16c{bottom:3.346021pt;}
.y13f{bottom:3.383946pt;}
.yf3{bottom:3.491420pt;}
.ye7{bottom:3.495873pt;}
.y131{bottom:3.542487pt;}
.y102{bottom:3.824648pt;}
.y119{bottom:3.840000pt;}
.ybb{bottom:3.894573pt;}
.yb9{bottom:5.192761pt;}
.yca{bottom:5.439026pt;}
.yb7{bottom:5.769733pt;}
.y92{bottom:7.304313pt;}
.ycc{bottom:8.640000pt;}
.yc8{bottom:9.280000pt;}
.ycb{bottom:9.494086pt;}
.yb5{bottom:10.962488pt;}
.y13d{bottom:12.178070pt;}
.y14b{bottom:12.720907pt;}
.y10f{bottom:12.738306pt;}
.yf{bottom:12.800000pt;}
.y15a{bottom:13.895686pt;}
.y12f{bottom:14.296387pt;}
.ye5{bottom:15.669660pt;}
.y8f{bottom:15.684004pt;}
.y16a{bottom:15.702269pt;}
.y87{bottom:15.707491pt;}
.y7e{bottom:15.707493pt;}
.yf1{bottom:15.815227pt;}
.y100{bottom:16.968989pt;}
.y16{bottom:18.906667pt;}
.y94{bottom:19.668081pt;}
.y8a{bottom:19.697521pt;}
.y82{bottom:19.697522pt;}
.y7f{bottom:19.697531pt;}
.y145{bottom:22.875049pt;}
.y137{bottom:23.099890pt;}
.y105{bottom:23.571438pt;}
.y153{bottom:24.283597pt;}
.y127{bottom:25.640772pt;}
.y91{bottom:25.738810pt;}
.y7d{bottom:25.903649pt;}
.y86{bottom:25.966820pt;}
.y30{bottom:26.080000pt;}
.ydd{bottom:26.733061pt;}
.yea{bottom:27.016864pt;}
.y162{bottom:27.489993pt;}
.yf6{bottom:27.798611pt;}
.y93{bottom:29.722887pt;}
.y80{bottom:29.893689pt;}
.y81{bottom:29.893693pt;}
.y88{bottom:29.989089pt;}
.y89{bottom:29.989092pt;}
.y101{bottom:30.234270pt;}
.y112{bottom:30.967711pt;}
.y15{bottom:34.266667pt;}
.y151{bottom:39.314179pt;}
.y106{bottom:40.112565pt;}
.y2f{bottom:41.440000pt;}
.yf7{bottom:44.163820pt;}
.y103{bottom:45.794297pt;}
.y154{bottom:46.485589pt;}
.y110{bottom:47.528939pt;}
.y128{bottom:47.802378pt;}
.y14c{bottom:48.033913pt;}
.yde{bottom:48.592529pt;}
.y14{bottom:49.626667pt;}
.y15b{bottom:50.128103pt;}
.y16b{bottom:50.300006pt;}
.y150{bottom:50.374265pt;}
.y146{bottom:50.657379pt;}
.y163{bottom:50.737398pt;}
.yeb{bottom:52.204947pt;}
.y13e{bottom:52.562452pt;}
.y138{bottom:53.210871pt;}
.yf2{bottom:53.327191pt;}
.y107{bottom:56.673790pt;}
.y16d{bottom:56.685929pt;}
.y2e{bottom:56.800000pt;}
.y130{bottom:57.438778pt;}
.yf8{bottom:60.529028pt;}
.ye8{bottom:61.115947pt;}
.y14f{bottom:61.415476pt;}
.y13{bottom:64.986667pt;}
.ye6{bottom:67.387970pt;}
.y155{bottom:68.706853pt;}
.y129{bottom:69.963985pt;}
.ydf{bottom:70.451994pt;}
.y2d{bottom:72.200000pt;}
.y14e{bottom:72.475561pt;}
.y108{bottom:73.214916pt;}
.y164{bottom:73.984802pt;}
.yf9{bottom:76.874107pt;}
.yec{bottom:77.372250pt;}
.y147{bottom:78.420835pt;}
.y12{bottom:80.346667pt;}
.y139{bottom:83.321851pt;}
.y17{bottom:84.826667pt;}
.y2c{bottom:87.560000pt;}
.y109{bottom:89.756880pt;}
.y156{bottom:90.906435pt;}
.y12a{bottom:92.108019pt;}
.ye0{bottom:92.311461pt;}
.yfa{bottom:93.237637pt;}
.y11{bottom:93.626667pt;}
.yf4{bottom:95.352341pt;}
.y165{bottom:97.234028pt;}
.yed{bottom:102.556867pt;}
.y2b{bottom:102.920000pt;}
.y148{bottom:106.185864pt;}
.y10a{bottom:106.313080pt;}
.yfb{bottom:109.584394pt;}
.y157{bottom:113.110033pt;}
.y13a{bottom:113.436208pt;}
.ye1{bottom:114.169212pt;}
.y12b{bottom:114.266112pt;}
.y2a{bottom:118.280000pt;}
.y166{bottom:120.479609pt;}
.y10b{bottom:122.860906pt;}
.yfc{bottom:125.947924pt;}
.y160{bottom:126.038710pt;}
.yee{bottom:127.746685pt;}
.y29{bottom:133.480000pt;}
.y149{bottom:133.946175pt;}
.y135{bottom:134.297995pt;}
.y158{bottom:135.329691pt;}
.ye2{bottom:136.026965pt;}
.y12c{bottom:136.424204pt;}
.y15f{bottom:137.216796pt;}
.y143{bottom:137.422650pt;}
.y10c{bottom:139.400357pt;}
.ya1{bottom:142.106667pt;}
.yfd{bottom:142.311455pt;}
.y19d{bottom:142.426667pt;}
.y13b{bottom:143.543811pt;}
.y167{bottom:143.725190pt;}
.y76{bottom:144.826667pt;}
.y134{bottom:145.491258pt;}
.y142{bottom:147.554205pt;}
.y15e{bottom:148.378822pt;}
.y28{bottom:148.840000pt;}
.ydb{bottom:150.106667pt;}
.y41{bottom:150.266667pt;}
.yef{bottom:152.936500pt;}
.y10d{bottom:155.956557pt;}
.y133{bottom:156.666949pt;}
.y19c{bottom:156.986667pt;}
.y159{bottom:157.533289pt;}
.y141{bottom:157.685759pt;}
.ye3{bottom:157.893285pt;}
.ya0{bottom:158.266667pt;}
.y12d{bottom:158.564724pt;}
.yfe{bottom:158.658211pt;}
.y15d{bottom:159.540847pt;}
.y125{bottom:160.026667pt;}
.y75{bottom:160.826667pt;}
.y14a{bottom:161.714350pt;}
.y27{bottom:164.200000pt;}
.yda{bottom:166.266667pt;}
.y168{bottom:166.970771pt;}
.y40{bottom:167.066667pt;}
.y140{bottom:167.817314pt;}
.y132{bottom:167.842640pt;}
.y19b{bottom:171.706667pt;}
.y10e{bottom:172.504383pt;}
.y124{bottom:173.146667pt;}
.y13c{bottom:173.651414pt;}
.y161{bottom:174.239538pt;}
.y9f{bottom:174.266667pt;}
.yff{bottom:175.021742pt;}
.y74{bottom:176.986667pt;}
.yf0{bottom:178.126317pt;}
.y26{bottom:179.560000pt;}
.ye4{bottom:179.751038pt;}
.y12e{bottom:180.731602pt;}
.yd9{bottom:182.266667pt;}
.y3f{bottom:184.026667pt;}
.y38{bottom:187.560000pt;}
.y169{bottom:190.225465pt;}
.y19a{bottom:190.266667pt;}
.y9e{bottom:190.426667pt;}
.y73{bottom:193.146667pt;}
.y25{bottom:194.920000pt;}
.y3e{bottom:200.826667pt;}
.y37{bottom:202.920000pt;}
.y199{bottom:204.826667pt;}
.y9d{bottom:206.586667pt;}
.y72{bottom:209.146667pt;}
.y24{bottom:210.120000pt;}
.yd8{bottom:211.386667pt;}
.y3d{bottom:217.786667pt;}
.y36{bottom:218.280000pt;}
.y9c{bottom:222.586667pt;}
.y198{bottom:223.386667pt;}
.y71{bottom:225.306667pt;}
.y23{bottom:225.480000pt;}
.yd7{bottom:227.546667pt;}
.y35{bottom:233.640000pt;}
.y3c{bottom:234.586667pt;}
.y197{bottom:237.946667pt;}
.y9b{bottom:238.746667pt;}
.y22{bottom:240.840000pt;}
.y70{bottom:241.306667pt;}
.yd6{bottom:243.546667pt;}
.y104{bottom:244.720000pt;}
.yf5{bottom:244.832489pt;}
.y34{bottom:249.000000pt;}
.y21{bottom:256.200000pt;}
.y196{bottom:256.506667pt;}
.y6f{bottom:257.466667pt;}
.y3b{bottom:259.226667pt;}
.y33{bottom:264.200000pt;}
.y39{bottom:268.840000pt;}
.y9a{bottom:270.906667pt;}
.y195{bottom:271.066667pt;}
.y20{bottom:271.560000pt;}
.y6e{bottom:273.626667pt;}
.y3a{bottom:275.866667pt;}
.y32{bottom:277.480000pt;}
.y194{bottom:285.626667pt;}
.y1f{bottom:286.920000pt;}
.y6d{bottom:289.626667pt;}
.y18{bottom:290.426667pt;}
.y1e{bottom:302.146667pt;}
.y99{bottom:303.546667pt;}
.y193{bottom:304.186667pt;}
.y6c{bottom:305.786667pt;}
.y1d{bottom:317.506667pt;}
.y192{bottom:318.746667pt;}
.y98{bottom:319.706667pt;}
.y6b{bottom:329.946667pt;}
.y1c{bottom:332.866667pt;}
.y191{bottom:333.306667pt;}
.y97{bottom:335.866667pt;}
.yb0{bottom:343.959508pt;}
.y1b{bottom:348.226667pt;}
.y190{bottom:351.866667pt;}
.y96{bottom:352.026667pt;}
.y6a{bottom:362.786667pt;}
.y1a{bottom:363.586667pt;}
.y18f{bottom:366.466667pt;}
.yaf{bottom:374.971760pt;}
.y19{bottom:376.866667pt;}
.y69{bottom:379.906667pt;}
.y8e{bottom:381.226667pt;}
.y18e{bottom:385.026667pt;}
.y123{bottom:394.146667pt;}
.y68{bottom:396.706667pt;}
.y18d{bottom:399.586667pt;}
.y95{bottom:401.186667pt;}
.yae{bottom:406.152295pt;}
.y122{bottom:410.306667pt;}
.y67{bottom:413.666667pt;}
.y18c{bottom:418.146667pt;}
.y121{bottom:426.306667pt;}
.y18b{bottom:432.706667pt;}
.y66{bottom:434.306667pt;}
.yad{bottom:437.164547pt;}
.y120{bottom:442.466667pt;}
.y8d{bottom:445.026667pt;}
.yd5{bottom:448.546667pt;}
.y65{bottom:451.266667pt;}
.y11f{bottom:458.626667pt;}
.y8c{bottom:461.186667pt;}
.yd4{bottom:464.706667pt;}
.y18a{bottom:465.826667pt;}
.y64{bottom:468.226667pt;}
.yac{bottom:468.321043pt;}
.y11e{bottom:471.586667pt;}
.yd3{bottom:480.866667pt;}
.y189{bottom:484.386667pt;}
.y63{bottom:485.026667pt;}
.y11d{bottom:487.746667pt;}
.y84{bottom:490.293297pt;}
.yd2{bottom:497.026667pt;}
.y188{bottom:498.946667pt;}
.yab{bottom:499.333295pt;}
.y62{bottom:501.986667pt;}
.y11b{bottom:503.906667pt;}
.y152{bottom:504.612179pt;}
.y144{bottom:506.558786pt;}
.y8b{bottom:510.306667pt;}
.y187{bottom:517.506667pt;}
.y61{bottom:518.786667pt;}
.yd1{bottom:526.626667pt;}
.yaa{bottom:530.489790pt;}
.y186{bottom:532.066667pt;}
.y1bb{bottom:535.266667pt;}
.y60{bottom:535.586667pt;}
.yd0{bottom:542.786667pt;}
.y185{bottom:546.626667pt;}
.y7b{bottom:551.426630pt;}
.y5f{bottom:552.546667pt;}
.y1ba{bottom:556.866667pt;}
.ycf{bottom:558.946667pt;}
.ya9{bottom:561.646285pt;}
.y184{bottom:565.186667pt;}
.y5e{bottom:569.346667pt;}
.y83{bottom:571.426667pt;}
.y1b9{bottom:571.586667pt;}
.y10{bottom:573.666667pt;}
.yce{bottom:574.946667pt;}
.y183{bottom:579.746667pt;}
.y1b8{bottom:586.173333pt;}
.y5d{bottom:586.333333pt;}
.ycd{bottom:591.133333pt;}
.ya8{bottom:592.658537pt;}
.y182{bottom:598.333333pt;}
.y1b7{bottom:604.733333pt;}
.y5c{bottom:606.973333pt;}
.yc9{bottom:607.093261pt;}
.yc7{bottom:607.133333pt;}
.y181{bottom:612.893333pt;}
.y7a{bottom:615.293333pt;}
.y1b6{bottom:619.293333pt;}
.ya7{bottom:623.815032pt;}
.y5b{bottom:623.933333pt;}
.y180{bottom:631.453333pt;}
.y1b5{bottom:633.853333pt;}
.yc6{bottom:634.173333pt;}
.y5a{bottom:640.893333pt;}
.y79{bottom:644.413333pt;}
.ya2{bottom:645.520000pt;}
.y17f{bottom:646.173333pt;}
.yc5{bottom:650.333333pt;}
.y1b4{bottom:652.413333pt;}
.ya6{bottom:654.863344pt;}
.y59{bottom:657.693333pt;}
.y17e{bottom:660.733333pt;}
.yc4{bottom:666.493333pt;}
.y1b3{bottom:666.973333pt;}
.ye{bottom:673.053333pt;}
.y58{bottom:674.653333pt;}
.y17d{bottom:679.293333pt;}
.y11a{bottom:681.853333pt;}
.yc3{bottom:683.133333pt;}
.yba{bottom:685.242061pt;}
.y1b2{bottom:685.533333pt;}
.ya5{bottom:686.019840pt;}
.y57{bottom:691.453333pt;}
.y17c{bottom:693.853333pt;}
.y118{bottom:698.013333pt;}
.y126{bottom:698.239022pt;}
.y1b1{bottom:700.093333pt;}
.y136{bottom:701.931870pt;}
.y56{bottom:708.413333pt;}
.yd{bottom:712.573333pt;}
.y1b0{bottom:714.653333pt;}
.yb8{bottom:714.956123pt;}
.ya4{bottom:717.032092pt;}
.yc2{bottom:719.133333pt;}
.y55{bottom:725.213333pt;}
.yc{bottom:727.773333pt;}
.yc1{bottom:732.093333pt;}
.y1af{bottom:733.213333pt;}
.y17b{bottom:739.293333pt;}
.y54{bottom:742.013333pt;}
.yb{bottom:743.133333pt;}
.y1ae{bottom:747.773333pt;}
.ya3{bottom:748.188587pt;}
.ybf{bottom:748.253333pt;}
.yb6{bottom:753.757496pt;}
.ya{bottom:758.653333pt;}
.y53{bottom:762.813333pt;}
.y17a{bottom:764.093333pt;}
.ybd{bottom:764.413333pt;}
.ye9{bottom:765.425509pt;}
.y1ad{bottom:766.333333pt;}
.ydc{bottom:766.425381pt;}
.y9{bottom:774.813333pt;}
.y52{bottom:779.773333pt;}
.y1ac{bottom:780.893333pt;}
.y8{bottom:790.813333pt;}
.y1ab{bottom:795.453333pt;}
.y51{bottom:796.733333pt;}
.y179{bottom:797.053333pt;}
.y50{bottom:813.573333pt;}
.y1aa{bottom:814.053333pt;}
.y7{bottom:823.493333pt;}
.y1a9{bottom:828.613333pt;}
.y178{bottom:829.893333pt;}
.y4f{bottom:834.213333pt;}
.y177{bottom:845.893333pt;}
.y1a8{bottom:847.173333pt;}
.y4e{bottom:851.333333pt;}
.y6{bottom:857.893333pt;}
.y1a7{bottom:861.733333pt;}
.y176{bottom:862.053333pt;}
.y4d{bottom:868.133333pt;}
.yb4{bottom:872.931088pt;}
.y175{bottom:878.213333pt;}
.y1a6{bottom:880.293333pt;}
.y4c{bottom:885.093333pt;}
.y5{bottom:892.293333pt;}
.y174{bottom:894.213333pt;}
.y1a5{bottom:894.853333pt;}
.y4b{bottom:901.893333pt;}
.y173{bottom:910.373333pt;}
.y117{bottom:911.013333pt;}
.y1a4{bottom:913.413333pt;}
.y4a{bottom:918.693333pt;}
.y4{bottom:923.173333pt;}
.y172{bottom:926.533333pt;}
.y116{bottom:927.173333pt;}
.y1a3{bottom:927.973333pt;}
.y49{bottom:935.653333pt;}
.y171{bottom:942.533333pt;}
.y115{bottom:943.173333pt;}
.y1a2{bottom:946.533333pt;}
.y48{bottom:956.293333pt;}
.y170{bottom:958.693333pt;}
.y114{bottom:959.333333pt;}
.y1a1{bottom:961.093333pt;}
.y47{bottom:973.413333pt;}
.y16f{bottom:974.693333pt;}
.ybc{bottom:975.333333pt;}
.y113{bottom:975.493333pt;}
.y1a0{bottom:975.653333pt;}
.y46{bottom:990.213333pt;}
.y78{bottom:991.493333pt;}
.y19f{bottom:994.213333pt;}
.y16e{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.y77{bottom:1007.653333pt;}
.y19e{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hb{height:15.695312pt;}
.h28{height:16.000000pt;}
.h26{height:16.160000pt;}
.h2d{height:16.192000pt;}
.h24{height:17.020691pt;}
.h23{height:18.318878pt;}
.h22{height:18.895850pt;}
.h21{height:24.088605pt;}
.h29{height:27.040000pt;}
.h2a{height:27.066060pt;}
.h52{height:34.083547pt;}
.h51{height:34.157642pt;}
.h56{height:34.803537pt;}
.h57{height:34.879197pt;}
.h53{height:34.974609pt;}
.h49{height:35.059990pt;}
.h54{height:35.075310pt;}
.h59{height:35.816250pt;}
.h8{height:35.840000pt;}
.h37{height:36.031278pt;}
.h4e{height:36.136153pt;}
.h58{height:36.145482pt;}
.h3f{height:36.295198pt;}
.h3b{height:36.350879pt;}
.h40{height:36.374101pt;}
.h3a{height:36.429903pt;}
.h1a{height:36.554059pt;}
.h4c{height:36.592325pt;}
.h14{height:36.608728pt;}
.h4d{height:36.671874pt;}
.h32{height:36.991297pt;}
.h30{height:37.135580pt;}
.h2b{height:37.205243pt;}
.h31{height:37.216309pt;}
.h42{height:37.270293pt;}
.h3d{height:37.327470pt;}
.h35{height:37.529816pt;}
.h4f{height:37.575403pt;}
.h3c{height:37.576946pt;}
.h36{height:37.611403pt;}
.h41{height:37.671947pt;}
.h47{height:38.078730pt;}
.h33{height:38.133252pt;}
.h48{height:38.161509pt;}
.h38{height:38.538080pt;}
.h4a{height:39.101740pt;}
.h5c{height:39.493454pt;}
.h5b{height:39.579310pt;}
.h5e{height:40.642634pt;}
.h43{height:40.727500pt;}
.h5d{height:41.112235pt;}
.h11{height:42.578750pt;}
.he{height:43.782500pt;}
.h1e{height:44.442938pt;}
.h17{height:44.509405pt;}
.h19{height:44.931891pt;}
.h13{height:44.999126pt;}
.h1d{height:47.014395pt;}
.h16{height:47.035232pt;}
.h18{height:47.057167pt;}
.h60{height:49.621875pt;}
.h5f{height:50.955000pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h5{height:55.275000pt;}
.h20{height:56.626659pt;}
.h27{height:56.760000pt;}
.h2{height:57.787500pt;}
.h9{height:59.340000pt;}
.h1c{height:62.788932pt;}
.h10{height:62.812500pt;}
.h15{height:62.882837pt;}
.h2c{height:63.810695pt;}
.h4{height:64.500000pt;}
.h1b{height:78.725240pt;}
.h3{height:85.785000pt;}
.ha{height:97.312000pt;}
.h12{height:136.303125pt;}
.h50{height:173.353235pt;}
.h55{height:177.303726pt;}
.h45{height:177.946667pt;}
.h39{height:184.885153pt;}
.h3e{height:184.998998pt;}
.h2e{height:186.106667pt;}
.h4b{height:186.214545pt;}
.h2f{height:188.979109pt;}
.h34{height:190.985337pt;}
.h25{height:192.026667pt;}
.h46{height:193.760978pt;}
.h44{height:193.946667pt;}
.h5a{height:200.960462pt;}
.hf{height:281.306667pt;}
.h1f{height:326.960000pt;}
.hd{height:380.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w15{width:60.032000pt;}
.w14{width:60.320000pt;}
.w12{width:60.352000pt;}
.w13{width:60.480000pt;}
.w16{width:67.000589pt;}
.wb{width:86.226571pt;}
.wc{width:87.521697pt;}
.w6{width:100.934359pt;}
.w7{width:107.068758pt;}
.wa{width:124.475948pt;}
.w8{width:155.071481pt;}
.w10{width:202.906667pt;}
.w3{width:211.546667pt;}
.w11{width:241.186667pt;}
.w23{width:287.812624pt;}
.w21{width:287.889399pt;}
.w1b{width:296.993908pt;}
.w22{width:297.371189pt;}
.w24{width:297.545420pt;}
.w1a{width:304.998463pt;}
.w1c{width:306.897387pt;}
.w1d{width:306.997429pt;}
.w1e{width:311.266667pt;}
.we{width:312.546667pt;}
.wd{width:320.346667pt;}
.w17{width:330.146667pt;}
.w1f{width:332.546667pt;}
.w18{width:333.186667pt;}
.w25{width:335.992412pt;}
.w5{width:361.666667pt;}
.w9{width:498.995027pt;}
.wf{width:632.893333pt;}
.w20{width:643.653333pt;}
.w19{width:663.333333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x28{left:-107.265162pt;}
.x0{left:0.000000pt;}
.x14{left:2.895019pt;}
.x7{left:7.200000pt;}
.x2a{left:8.634170pt;}
.x4a{left:10.373020pt;}
.x13{left:11.514916pt;}
.x52{left:14.367130pt;}
.x3c{left:15.680000pt;}
.x61{left:17.133465pt;}
.x1a{left:18.230828pt;}
.x48{left:20.147599pt;}
.x38{left:23.200000pt;}
.x64{left:24.210064pt;}
.x51{left:25.978368pt;}
.x17{left:26.998378pt;}
.x41{left:29.920000pt;}
.x5d{left:31.637648pt;}
.x1c{left:33.195100pt;}
.x60{left:36.004868pt;}
.x49{left:37.063609pt;}
.x4d{left:40.337541pt;}
.x3f{left:41.652124pt;}
.x65{left:48.087596pt;}
.x3e{left:50.404781pt;}
.x16{left:64.470495pt;}
.x54{left:67.664940pt;}
.x11{left:69.382298pt;}
.x15{left:74.065482pt;}
.x42{left:77.600000pt;}
.x1b{left:78.872367pt;}
.x5e{left:80.406846pt;}
.x2e{left:83.712000pt;}
.x4f{left:85.089012pt;}
.x62{left:86.040916pt;}
.x12{left:87.467543pt;}
.x50{left:88.666671pt;}
.x47{left:90.866667pt;}
.x19{left:92.562407pt;}
.x46{left:94.586667pt;}
.x5{left:96.031988pt;}
.x4b{left:99.557746pt;}
.x21{left:101.759996pt;}
.x10{left:105.679991pt;}
.x6{left:109.152000pt;}
.x66{left:112.718004pt;}
.x24{left:114.685725pt;}
.x2{left:116.671988pt;}
.x59{left:118.746667pt;}
.x22{left:120.852073pt;}
.x23{left:123.181606pt;}
.x34{left:124.794667pt;}
.x4e{left:127.253032pt;}
.x1f{left:128.561669pt;}
.x20{left:134.268230pt;}
.x1e{left:146.862126pt;}
.x33{left:148.026667pt;}
.x32{left:152.474667pt;}
.x40{left:157.480000pt;}
.x45{left:158.426667pt;}
.x26{left:163.353666pt;}
.xa{left:164.666667pt;}
.xc{left:172.186655pt;}
.x36{left:175.066667pt;}
.x18{left:206.586655pt;}
.x35{left:211.226655pt;}
.x1d{left:212.666655pt;}
.x63{left:228.960000pt;}
.xf{left:240.986655pt;}
.x25{left:260.706655pt;}
.x3d{left:265.546649pt;}
.x3{left:279.426655pt;}
.x55{left:295.266667pt;}
.x58{left:299.586667pt;}
.x5c{left:303.106655pt;}
.x31{left:305.186667pt;}
.x2f{left:313.154667pt;}
.x57{left:315.266667pt;}
.x43{left:318.946667pt;}
.x8{left:320.706667pt;}
.x27{left:326.311641pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x37{left:377.986667pt;}
.x56{left:388.866667pt;}
.x5a{left:397.026655pt;}
.x30{left:404.066667pt;}
.x5f{left:406.000000pt;}
.x44{left:407.746667pt;}
.x4c{left:411.266667pt;}
.x53{left:420.226667pt;}
.x39{left:438.333333pt;}
.x3a{left:498.813333pt;}
.x2d{left:518.100375pt;}
.x29{left:521.985746pt;}
.x2c{left:534.937004pt;}
.x2b{left:553.248637pt;}
.x3b{left:559.133333pt;}
.x5b{left:565.053322pt;}
.xe{left:646.533322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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