
    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_dc6b8971f69ea3100fdf139a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157227;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_3c9dd37d6879c6574174ee8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3556174646cffe54a203a66c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_928c04a384fca99f04a5f5a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.719000;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_66c59de25bef55ce8a52149d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.676000;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_24c7850aa910112ee378d5b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_b9f59088d15d7d438949dd6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109863;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_684b5189f84f18b2f88e8636.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.625000;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_6ba9f4654d234daf79c47f88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.558000;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_a272e79901e781aa8b92a420.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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:-15.065400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.739400px;}
.ls48{letter-spacing:-0.025823px;}
.ls82{letter-spacing:-0.023910px;}
.ls68{letter-spacing:-0.022954px;}
.ls47{letter-spacing:-0.019128px;}
.ls42{letter-spacing:-0.019009px;}
.ls49{letter-spacing:-0.017215px;}
.ls3c{letter-spacing:-0.016140px;}
.ls67{letter-spacing:-0.015303px;}
.ls3a{letter-spacing:-0.014346px;}
.ls4c{letter-spacing:-0.012912px;}
.ls41{letter-spacing:-0.012672px;}
.ls46{letter-spacing:-0.011477px;}
.ls39{letter-spacing:-0.009564px;}
.ls4d{letter-spacing:-0.009038px;}
.ls4a{letter-spacing:-0.008608px;}
.ls3d{letter-spacing:-0.008070px;}
.ls45{letter-spacing:-0.007651px;}
.ls3f{letter-spacing:-0.006336px;}
.ls3b{letter-spacing:-0.004782px;}
.ls4b{letter-spacing:-0.004304px;}
.ls44{letter-spacing:-0.003826px;}
.ls37{letter-spacing:0.000000px;}
.ls8d{letter-spacing:0.001201px;}
.ls75{letter-spacing:0.001590px;}
.ls92{letter-spacing:0.001801px;}
.ls64{letter-spacing:0.002085px;}
.ls10{letter-spacing:0.002304px;}
.ls1d{letter-spacing:0.002482px;}
.ls70{letter-spacing:0.002654px;}
.ls65{letter-spacing:0.002685px;}
.ls61{letter-spacing:0.002832px;}
.ls13{letter-spacing:0.002904px;}
.ls27{letter-spacing:0.003082px;}
.ls5e{letter-spacing:0.003432px;}
.lsa{letter-spacing:0.003505px;}
.ls16{letter-spacing:0.003826px;}
.ls25{letter-spacing:0.004291px;}
.ls0{letter-spacing:0.004304px;}
.ls2{letter-spacing:0.004782px;}
.lsb{letter-spacing:0.004872px;}
.ls3e{letter-spacing:0.005649px;}
.ls9e{letter-spacing:0.005706px;}
.lsc{letter-spacing:0.006336px;}
.ls22{letter-spacing:0.006686px;}
.ls1e{letter-spacing:0.007286px;}
.ls17{letter-spacing:0.007651px;}
.ls20{letter-spacing:0.007723px;}
.ls8{letter-spacing:0.008070px;}
.ls4{letter-spacing:0.008369px;}
.ls2d{letter-spacing:0.008608px;}
.ls5f{letter-spacing:0.008716px;}
.ls4e{letter-spacing:0.009564px;}
.ls33{letter-spacing:0.010588px;}
.ls6c{letter-spacing:0.010742px;}
.lsd{letter-spacing:0.010974px;}
.ls15{letter-spacing:0.011477px;}
.ls28{letter-spacing:0.011755px;}
.ls1c{letter-spacing:0.012355px;}
.ls2a{letter-spacing:0.012912px;}
.lse{letter-spacing:0.013975px;}
.ls18{letter-spacing:0.014131px;}
.ls3{letter-spacing:0.014346px;}
.ls60{letter-spacing:0.014515px;}
.ls12{letter-spacing:0.014657px;}
.ls5b{letter-spacing:0.015115px;}
.ls54{letter-spacing:0.015303px;}
.lsf{letter-spacing:0.015809px;}
.ls32{letter-spacing:0.016054px;}
.ls1a{letter-spacing:0.016392px;}
.ls19{letter-spacing:0.016781px;}
.ls29{letter-spacing:0.016992px;}
.ls1{letter-spacing:0.017215px;}
.ls35{letter-spacing:0.017668px;}
.ls87{letter-spacing:0.018489px;}
.ls36{letter-spacing:0.018686px;}
.ls88{letter-spacing:0.019089px;}
.ls5c{letter-spacing:0.019128px;}
.ls2f{letter-spacing:0.019153px;}
.ls85{letter-spacing:0.019689px;}
.ls80{letter-spacing:0.020533px;}
.ls2c{letter-spacing:0.021519px;}
.ls14{letter-spacing:0.022076px;}
.ls5d{letter-spacing:0.022486px;}
.ls69{letter-spacing:0.022954px;}
.ls58{letter-spacing:0.023086px;}
.ls5a{letter-spacing:0.023686px;}
.ls38{letter-spacing:0.023910px;}
.ls59{letter-spacing:0.024802px;}
.ls2b{letter-spacing:0.025823px;}
.ls43{letter-spacing:0.026780px;}
.ls24{letter-spacing:0.026875px;}
.ls6a{letter-spacing:0.028692px;}
.ls86{letter-spacing:0.029824px;}
.ls2e{letter-spacing:0.030127px;}
.ls89{letter-spacing:0.030424px;}
.ls77{letter-spacing:0.030605px;}
.ls11{letter-spacing:0.031332px;}
.ls26{letter-spacing:0.041966px;}
.ls81{letter-spacing:0.055485px;}
.ls62{letter-spacing:0.056085px;}
.ls7f{letter-spacing:0.056685px;}
.ls63{letter-spacing:0.110085px;}
.ls8c{letter-spacing:0.110685px;}
.ls66{letter-spacing:0.164085px;}
.ls8f{letter-spacing:0.272085px;}
.ls91{letter-spacing:0.326085px;}
.ls8e{letter-spacing:0.380085px;}
.ls93{letter-spacing:0.380685px;}
.ls90{letter-spacing:0.434085px;}
.ls95{letter-spacing:0.758085px;}
.lsa4{letter-spacing:0.802059px;}
.ls9f{letter-spacing:0.806002px;}
.ls72{letter-spacing:0.866085px;}
.ls71{letter-spacing:0.920085px;}
.ls74{letter-spacing:0.974085px;}
.ls94{letter-spacing:1.028085px;}
.ls73{letter-spacing:1.028685px;}
.ls96{letter-spacing:1.082085px;}
.ls97{letter-spacing:1.136685px;}
.lsa5{letter-spacing:1.243339px;}
.lsa7{letter-spacing:1.296899px;}
.lsa6{letter-spacing:1.350458px;}
.lsa8{letter-spacing:1.407843px;}
.ls34{letter-spacing:1.462485px;}
.ls30{letter-spacing:1.463085px;}
.ls31{letter-spacing:1.464885px;}
.lsad{letter-spacing:2.303047px;}
.ls6{letter-spacing:3.674085px;}
.ls5{letter-spacing:3.728085px;}
.ls9{letter-spacing:3.728685px;}
.ls7{letter-spacing:3.782685px;}
.ls76{letter-spacing:3.838485px;}
.ls1f{letter-spacing:3.944085px;}
.ls84{letter-spacing:3.989685px;}
.ls1b{letter-spacing:3.998085px;}
.ls23{letter-spacing:3.998685px;}
.lsb5{letter-spacing:4.755295px;}
.lsb7{letter-spacing:4.808855px;}
.lsb6{letter-spacing:4.862414px;}
.lsb8{letter-spacing:4.915973px;}
.lsb2{letter-spacing:6.538053px;}
.lsb4{letter-spacing:6.591612px;}
.lsb3{letter-spacing:6.645171px;}
.lsa3{letter-spacing:7.995629px;}
.lsa0{letter-spacing:8.049189px;}
.lsa1{letter-spacing:8.102748px;}
.lsa2{letter-spacing:8.156307px;}
.lsb1{letter-spacing:9.399647px;}
.lsae{letter-spacing:9.453206px;}
.lsaf{letter-spacing:9.506765px;}
.lsb0{letter-spacing:9.560324px;}
.ls7c{letter-spacing:10.585601px;}
.ls7a{letter-spacing:10.639160px;}
.ls7b{letter-spacing:10.692720px;}
.lsa9{letter-spacing:10.964342px;}
.lsaa{letter-spacing:11.017901px;}
.lsab{letter-spacing:11.071460px;}
.ls6f{letter-spacing:11.178579px;}
.ls79{letter-spacing:11.232138px;}
.ls78{letter-spacing:11.285697px;}
.lsac{letter-spacing:11.480806px;}
.ls8b{letter-spacing:12.299458px;}
.ls6b{letter-spacing:14.011436px;}
.ls8a{letter-spacing:14.403565px;}
.ls9d{letter-spacing:14.647450px;}
.ls83{letter-spacing:15.379105px;}
.ls7d{letter-spacing:16.187273px;}
.ls7e{letter-spacing:16.512453px;}
.ls40{letter-spacing:18.558847px;}
.ls99{letter-spacing:18.803060px;}
.ls9b{letter-spacing:19.941190px;}
.ls98{letter-spacing:19.993793px;}
.ls9a{letter-spacing:20.318973px;}
.ls9c{letter-spacing:20.964551px;}
.ls21{letter-spacing:43.688685px;}
.ls6d{letter-spacing:153.995205px;}
.ls50{letter-spacing:174.428505px;}
.ls6e{letter-spacing:216.862245px;}
.ls51{letter-spacing:230.382585px;}
.ls57{letter-spacing:255.222585px;}
.ls53{letter-spacing:269.151825px;}
.ls55{letter-spacing:327.963705px;}
.ls52{letter-spacing:363.064125px;}
.ls4f{letter-spacing:407.193105px;}
.ls56{letter-spacing:512.827245px;}
.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;}
}
.ws11{word-spacing:-61.898729px;}
.ws6{word-spacing:-57.249729px;}
.wsc{word-spacing:-55.205228px;}
.ws9{word-spacing:-55.197158px;}
.wsb{word-spacing:-55.189089px;}
.wsa{word-spacing:-55.181019px;}
.ws70{word-spacing:-53.673841px;}
.ws68{word-spacing:-53.028263px;}
.ws62{word-spacing:-52.703083px;}
.ws6b{word-spacing:-52.650481px;}
.ws65{word-spacing:-51.512350px;}
.ws54{word-spacing:-49.221744px;}
.ws52{word-spacing:-48.896563px;}
.ws58{word-spacing:-48.088395px;}
.ws74{word-spacing:-47.356740px;}
.ws5d{word-spacing:-47.112855px;}
.ws49{word-spacing:-46.720726px;}
.ws5f{word-spacing:-45.008749px;}
.wse{word-spacing:-43.346218px;}
.ws12{word-spacing:-43.339882px;}
.wsf{word-spacing:-43.333545px;}
.ws13{word-spacing:-43.327209px;}
.ws15{word-spacing:-43.320873px;}
.ws78{word-spacing:-37.648320px;}
.ws4c{word-spacing:-37.453211px;}
.ws4d{word-spacing:-37.399652px;}
.ws4e{word-spacing:-37.346093px;}
.ws50{word-spacing:-36.860234px;}
.ws4f{word-spacing:-36.806675px;}
.ws23{word-spacing:-36.798106px;}
.ws51{word-spacing:-36.753116px;}
.ws46{word-spacing:-32.737983px;}
.ws4{word-spacing:-32.733201px;}
.ws3e{word-spacing:-32.728419px;}
.ws3{word-spacing:-32.723637px;}
.ws3f{word-spacing:-32.718855px;}
.ws2{word-spacing:-32.714072px;}
.ws3c{word-spacing:-32.709290px;}
.ws3d{word-spacing:-32.704508px;}
.ws5{word-spacing:-32.699726px;}
.ws47{word-spacing:-32.694944px;}
.ws75{word-spacing:-32.690162px;}
.ws56{word-spacing:-32.685380px;}
.ws10{word-spacing:-30.337589px;}
.ws2e{word-spacing:-29.468529px;}
.ws2b{word-spacing:-29.464226px;}
.ws2c{word-spacing:-29.459922px;}
.ws1{word-spacing:-29.455618px;}
.ws2a{word-spacing:-29.451314px;}
.ws2d{word-spacing:-29.447010px;}
.ws0{word-spacing:-29.442706px;}
.ws32{word-spacing:-29.438402px;}
.ws33{word-spacing:-29.434099px;}
.ws31{word-spacing:-29.429795px;}
.ws5a{word-spacing:-29.425491px;}
.ws30{word-spacing:-29.421187px;}
.ws2f{word-spacing:-29.412579px;}
.ws4b{word-spacing:-26.198120px;}
.ws79{word-spacing:-26.194294px;}
.ws44{word-spacing:-26.190468px;}
.ws77{word-spacing:-26.186643px;}
.ws42{word-spacing:-26.182817px;}
.ws28{word-spacing:-26.178991px;}
.ws26{word-spacing:-26.175166px;}
.ws27{word-spacing:-26.171340px;}
.ws24{word-spacing:-26.167514px;}
.ws29{word-spacing:-26.163689px;}
.ws25{word-spacing:-26.159863px;}
.ws41{word-spacing:-26.156037px;}
.ws40{word-spacing:-26.152212px;}
.ws7a{word-spacing:-26.148386px;}
.ws43{word-spacing:-26.144560px;}
.ws14{word-spacing:-24.793707px;}
.ws17{word-spacing:-24.781035px;}
.ws16{word-spacing:-24.768362px;}
.ws18{word-spacing:-24.724008px;}
.ws53{word-spacing:-21.863578px;}
.ws72{word-spacing:-20.127691px;}
.ws71{word-spacing:-19.979447px;}
.ws60{word-spacing:-19.496459px;}
.ws5c{word-spacing:-18.458752px;}
.ws19{word-spacing:-18.316973px;}
.ws5e{word-spacing:-18.305726px;}
.ws73{word-spacing:-18.090533px;}
.ws5b{word-spacing:-17.932800px;}
.ws38{word-spacing:-16.995943px;}
.ws66{word-spacing:-14.025782px;}
.ws76{word-spacing:-13.676692px;}
.ws63{word-spacing:-13.485409px;}
.ws64{word-spacing:-13.394550px;}
.ws6c{word-spacing:-12.964165px;}
.ws6a{word-spacing:-12.796792px;}
.ws61{word-spacing:-12.744190px;}
.ws69{word-spacing:-12.586382px;}
.ws67{word-spacing:-12.419010px;}
.ws6e{word-spacing:-11.720829px;}
.ws6d{word-spacing:-11.706483px;}
.ws6f{word-spacing:-11.653880px;}
.ws48{word-spacing:-0.066949px;}
.ws1c{word-spacing:-0.065036px;}
.wsd{word-spacing:-0.062136px;}
.ws55{word-spacing:-0.057385px;}
.ws59{word-spacing:-0.055950px;}
.ws45{word-spacing:-0.052603px;}
.ws1a{word-spacing:-0.049734px;}
.ws4a{word-spacing:-0.047821px;}
.ws37{word-spacing:-0.047342px;}
.ws21{word-spacing:-0.045908px;}
.ws8{word-spacing:-0.043039px;}
.ws1e{word-spacing:-0.042082px;}
.ws34{word-spacing:-0.038735px;}
.ws1b{word-spacing:-0.038257px;}
.ws1d{word-spacing:-0.034431px;}
.ws7{word-spacing:-0.033474px;}
.ws1f{word-spacing:-0.030605px;}
.ws35{word-spacing:-0.030127px;}
.ws57{word-spacing:-0.028692px;}
.ws20{word-spacing:-0.026780px;}
.ws36{word-spacing:-0.021089px;}
.ws22{word-spacing:-0.019128px;}
.ws39{word-spacing:0.000000px;}
.ws3b{word-spacing:11.117368px;}
.ws3a{word-spacing:11.182404px;}
._10{margin-left:-21.187919px;}
._3{margin-left:-20.137515px;}
._5{margin-left:-18.584192px;}
._f{margin-left:-16.456098px;}
._e{margin-left:-15.392737px;}
._d{margin-left:-13.833510px;}
._a{margin-left:-11.944118px;}
._8{margin-left:-10.915177px;}
._7{margin-left:-9.907746px;}
._6{margin-left:-8.802804px;}
._0{margin-left:-7.347558px;}
._1{margin-left:-5.953355px;}
._9{margin-left:-4.583854px;}
._2{margin-left:-3.371959px;}
._4{margin-left:-1.371482px;}
._c{width:1.053169px;}
._b{width:1611.299135px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,172);}
.fs8{font-size:26.779200px;}
.fsa{font-size:30.126600px;}
.fsb{font-size:35.865600px;}
.fs1{font-size:38.256600px;}
.fs0{font-size:43.038600px;}
.fs7{font-size:44.353200px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs5{font-size:56.487600px;}
.fs6{font-size:63.362400px;}
.fs4{font-size:80.697600px;}
.fs3{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y79{bottom:47.452650px;}
.y3e{bottom:59.062650px;}
.y3d{bottom:73.413000px;}
.y183{bottom:78.840114px;}
.y78{bottom:78.840150px;}
.y3c{bottom:87.750150px;}
.y182{bottom:90.787650px;}
.y77{bottom:94.527150px;}
.y3b{bottom:102.100500px;}
.y181{bottom:102.748500px;}
.y180{bottom:102.748614px;}
.y123{bottom:109.471500px;}
.yb3{bottom:110.214000px;}
.y17f{bottom:114.696150px;}
.y3a{bottom:116.451000px;}
.y76{bottom:125.914650px;}
.y17e{bottom:126.657000px;}
.y17d{bottom:126.657114px;}
.yb2{bottom:136.512150px;}
.y122{bottom:136.782000px;}
.y17c{bottom:138.604650px;}
.yf3{bottom:141.601650px;}
.y39{bottom:142.344150px;}
.y1ec{bottom:148.324574px;}
.y1ed{bottom:148.324650px;}
.y17b{bottom:150.565500px;}
.y17a{bottom:150.565574px;}
.yb1{bottom:152.199150px;}
.y121{bottom:152.469150px;}
.y75{bottom:157.288500px;}
.y1eb{bottom:160.285500px;}
.y38{bottom:160.353000px;}
.y179{bottom:162.526500px;}
.y120{bottom:168.169650px;}
.yf2{bottom:170.140500px;}
.y1ea{bottom:172.233000px;}
.y1e9{bottom:172.233224px;}
.y178{bottom:174.474150px;}
.y177{bottom:174.474188px;}
.y37{bottom:174.595500px;}
.yb0{bottom:183.573000px;}
.y11f{bottom:183.855952px;}
.y1e8{bottom:184.194150px;}
.yf1{bottom:185.827650px;}
.y176{bottom:186.435114px;}
.y36{bottom:188.838000px;}
.ye0{bottom:189.675150px;}
.y74{bottom:190.282650px;}
.y1e7{bottom:196.141500px;}
.y1e6{bottom:196.141724px;}
.y175{bottom:198.382650px;}
.y11e{bottom:199.543500px;}
.yf0{bottom:201.528000px;}
.ydf{bottom:205.375500px;}
.y73{bottom:205.969650px;}
.y1e5{bottom:208.102650px;}
.y173{bottom:210.343464px;}
.y174{bottom:210.343500px;}
.y11d{bottom:215.230500px;}
.yef{bottom:217.215150px;}
.yaf{bottom:219.037650px;}
.y1e3{bottom:220.050074px;}
.y1e4{bottom:220.050150px;}
.yde{bottom:221.062650px;}
.y72{bottom:221.670150px;}
.y172{bottom:222.291000px;}
.y11c{bottom:230.931000px;}
.y1e2{bottom:232.011000px;}
.yee{bottom:232.902150px;}
.y170{bottom:234.252074px;}
.y171{bottom:234.252150px;}
.yae{bottom:234.738000px;}
.ydd{bottom:236.749650px;}
.y71{bottom:237.357150px;}
.y1e0{bottom:243.972114px;}
.y1e1{bottom:243.972150px;}
.y16f{bottom:246.213000px;}
.y11b{bottom:246.618000px;}
.yed{bottom:248.589150px;}
.yad{bottom:250.425150px;}
.ydc{bottom:252.449602px;}
.y70{bottom:253.044150px;}
.y1df{bottom:255.919650px;}
.y16e{bottom:258.160500px;}
.y16d{bottom:258.160724px;}
.y11a{bottom:262.305150px;}
.yec{bottom:264.289650px;}
.yac{bottom:266.112150px;}
.y1de{bottom:267.880500px;}
.y1dd{bottom:267.880614px;}
.ydb{bottom:268.137150px;}
.y16c{bottom:270.121650px;}
.y1dc{bottom:279.828150px;}
.yeb{bottom:279.976650px;}
.yab{bottom:281.799150px;}
.y16b{bottom:282.069150px;}
.y16a{bottom:282.069224px;}
.yda{bottom:283.824000px;}
.y6f{bottom:284.431500px;}
.y1da{bottom:291.789114px;}
.y1db{bottom:291.789150px;}
.y119{bottom:293.692500px;}
.y169{bottom:294.030150px;}
.yaa{bottom:297.499500px;}
.yd9{bottom:299.511000px;}
.y1d9{bottom:303.736650px;}
.y168{bottom:305.977500px;}
.y167{bottom:305.977574px;}
.yea{bottom:311.364000px;}
.ya9{bottom:313.186650px;}
.y1d7{bottom:315.697538px;}
.y1d8{bottom:315.697650px;}
.y6e{bottom:317.425650px;}
.y166{bottom:317.938500px;}
.y118{bottom:322.542000px;}
.y1d6{bottom:327.658464px;}
.ya8{bottom:328.873500px;}
.y164{bottom:329.899464px;}
.y165{bottom:329.899500px;}
.yd8{bottom:330.898500px;}
.y6d{bottom:333.112500px;}
.y117{bottom:338.229150px;}
.y1d5{bottom:339.606000px;}
.ye9{bottom:339.903150px;}
.y163{bottom:341.847000px;}
.ya7{bottom:344.574000px;}
.y6c{bottom:348.799500px;}
.y1d3{bottom:351.566964px;}
.y1d4{bottom:351.567000px;}
.y161{bottom:353.807964px;}
.y162{bottom:353.808000px;}
.y35{bottom:354.213000px;}
.ye8{bottom:355.590000px;}
.ya6{bottom:360.261000px;}
.yd7{bottom:363.285000px;}
.y1d2{bottom:363.514500px;}
.y6b{bottom:364.500000px;}
.y160{bottom:365.755500px;}
.y34{bottom:368.563500px;}
.y116{bottom:369.616650px;}
.ye7{bottom:371.277000px;}
.y1d1{bottom:375.475500px;}
.ya5{bottom:375.948000px;}
.y15f{bottom:377.716650px;}
.yd6{bottom:378.972000px;}
.y6a{bottom:380.187000px;}
.y33{bottom:382.914150px;}
.y1d0{bottom:387.423000px;}
.y1cf{bottom:387.423074px;}
.y15e{bottom:389.664150px;}
.y15d{bottom:389.664224px;}
.ya4{bottom:391.648650px;}
.yd5{bottom:394.672650px;}
.y69{bottom:395.874150px;}
.y32{bottom:397.251000px;}
.y115{bottom:398.466000px;}
.y1ce{bottom:399.384000px;}
.y15c{bottom:401.625150px;}
.ye6{bottom:402.664650px;}
.ya3{bottom:407.335500px;}
.yd4{bottom:410.359650px;}
.y1cd{bottom:411.331650px;}
.y1cc{bottom:411.331724px;}
.y68{bottom:411.561150px;}
.y31{bottom:411.601650px;}
.y15a{bottom:413.586114px;}
.y15b{bottom:413.586150px;}
.y114{bottom:414.153150px;}
.ya2{bottom:423.022500px;}
.y1cb{bottom:423.292650px;}
.y159{bottom:425.533650px;}
.y30{bottom:425.952000px;}
.yd3{bottom:426.046650px;}
.y67{bottom:427.261650px;}
.y113{bottom:429.853500px;}
.ye5{bottom:431.203650px;}
.y1c9{bottom:435.253464px;}
.y1ca{bottom:435.253500px;}
.y158{bottom:437.494500px;}
.ya1{bottom:438.723000px;}
.y2f{bottom:440.289150px;}
.yd2{bottom:441.747000px;}
.y66{bottom:442.948500px;}
.y112{bottom:445.540500px;}
.ye4{bottom:446.890500px;}
.y1c8{bottom:447.201000px;}
.y157{bottom:449.442150px;}
.y156{bottom:449.442224px;}
.ya0{bottom:454.410150px;}
.y2e{bottom:454.639500px;}
.y25{bottom:455.541855px;}
.yd1{bottom:457.434150px;}
.y65{bottom:458.635500px;}
.y1c7{bottom:459.162000px;}
.y1c6{bottom:459.162114px;}
.y111{bottom:461.227500px;}
.y155{bottom:461.403150px;}
.ye3{bottom:462.591000px;}
.y24{bottom:468.394155px;}
.y2d{bottom:468.990150px;}
.y9f{bottom:470.097000px;}
.y1c5{bottom:471.109650px;}
.yd0{bottom:473.121150px;}
.y154{bottom:473.350500px;}
.y153{bottom:473.350724px;}
.y64{bottom:474.336150px;}
.y110{bottom:476.928000px;}
.ye2{bottom:478.278150px;}
.y23{bottom:481.246470px;}
.y1c3{bottom:483.070464px;}
.y1c4{bottom:483.070500px;}
.y2c{bottom:483.327000px;}
.y152{bottom:485.311650px;}
.y9e{bottom:485.784000px;}
.ycf{bottom:488.821650px;}
.y63{bottom:490.023000px;}
.y10f{bottom:492.615150px;}
.y22{bottom:494.098770px;}
.y1c2{bottom:495.018000px;}
.y150{bottom:497.272464px;}
.y151{bottom:497.272500px;}
.y2b{bottom:497.677650px;}
.y9d{bottom:501.484650px;}
.y62{bottom:505.710000px;}
.y21{bottom:506.951070px;}
.y1c1{bottom:506.979000px;}
.y10e{bottom:508.302000px;}
.y14f{bottom:509.220000px;}
.y2a{bottom:512.028150px;}
.y9c{bottom:517.171500px;}
.ye1{bottom:517.252650px;}
.y1bf{bottom:518.939964px;}
.y1c0{bottom:518.940150px;}
.y20{bottom:519.803385px;}
.yce{bottom:520.195500px;}
.y14d{bottom:521.180964px;}
.y14e{bottom:521.181000px;}
.y61{bottom:521.410500px;}
.y10d{bottom:524.002650px;}
.y29{bottom:526.365150px;}
.y1be{bottom:530.887500px;}
.y1f{bottom:532.655685px;}
.y14c{bottom:533.128500px;}
.y60{bottom:537.097650px;}
.y10c{bottom:539.689500px;}
.y28{bottom:540.715650px;}
.y1bc{bottom:542.848464px;}
.y1bd{bottom:542.848500px;}
.y14a{bottom:545.089464px;}
.y14b{bottom:545.089500px;}
.y9b{bottom:548.559000px;}
.ycd{bottom:552.582000px;}
.y5f{bottom:552.784500px;}
.y1bb{bottom:554.796000px;}
.y27{bottom:555.066000px;}
.y10b{bottom:555.376500px;}
.y149{bottom:557.037000px;}
.y1e{bottom:557.495700px;}
.y1b9{bottom:566.756964px;}
.y1ba{bottom:566.757000px;}
.ycc{bottom:568.282500px;}
.y5e{bottom:568.485150px;}
.y147{bottom:568.997964px;}
.y148{bottom:568.998000px;}
.y26{bottom:569.403150px;}
.y1d{bottom:570.348000px;}
.y10a{bottom:571.077000px;}
.y1b8{bottom:578.704500px;}
.y146{bottom:580.945500px;}
.ycb{bottom:583.969500px;}
.y9a{bottom:584.010150px;}
.y5d{bottom:584.172150px;}
.y1b7{bottom:590.665500px;}
.y1b6{bottom:590.665574px;}
.y145{bottom:592.906500px;}
.y144{bottom:592.906724px;}
.y1c{bottom:598.077000px;}
.yca{bottom:599.656500px;}
.y99{bottom:599.710500px;}
.y5c{bottom:599.859000px;}
.y109{bottom:602.451150px;}
.y1b5{bottom:602.626500px;}
.y143{bottom:604.867650px;}
.y1b4{bottom:614.574000px;}
.y1b3{bottom:614.574224px;}
.yc9{bottom:615.357000px;}
.y98{bottom:615.397500px;}
.y5b{bottom:615.546000px;}
.y141{bottom:616.815038px;}
.y142{bottom:616.815150px;}
.y1b2{bottom:626.535150px;}
.y140{bottom:628.775964px;}
.yc8{bottom:631.044000px;}
.y97{bottom:631.084650px;}
.y5a{bottom:631.246500px;}
.y108{bottom:631.300500px;}
.y1b1{bottom:638.482500px;}
.y1b0{bottom:638.482574px;}
.y13f{bottom:640.723500px;}
.y107{bottom:647.001000px;}
.y1b{bottom:648.863280px;}
.y1af{bottom:650.443500px;}
.y13d{bottom:652.684464px;}
.y13e{bottom:652.684500px;}
.y1a{bottom:661.715595px;}
.y1ae{bottom:662.391150px;}
.yc7{bottom:662.431500px;}
.y59{bottom:662.620500px;}
.y106{bottom:662.688150px;}
.y13c{bottom:664.632000px;}
.y19{bottom:665.064000px;}
.y1ad{bottom:674.352150px;}
.y1ac{bottom:674.352224px;}
.y18{bottom:674.567595px;}
.y13b{bottom:676.593000px;}
.y13a{bottom:676.593074px;}
.y17{bottom:677.916000px;}
.y105{bottom:678.375150px;}
.y96{bottom:682.182150px;}
.y1ab{bottom:686.313150px;}
.y16{bottom:687.419595px;}
.y139{bottom:688.554000px;}
.y15{bottom:690.768000px;}
.y104{bottom:694.062000px;}
.yc6{bottom:694.818000px;}
.y95{bottom:695.033700px;}
.y1aa{bottom:698.260500px;}
.y1a9{bottom:698.260574px;}
.y14{bottom:700.271595px;}
.y138{bottom:700.501500px;}
.y137{bottom:700.501574px;}
.y58{bottom:700.959285px;}
.y13{bottom:703.620000px;}
.y93{bottom:707.885235px;}
.y94{bottom:707.886000px;}
.y103{bottom:709.762500px;}
.y1a8{bottom:710.221500px;}
.yc5{bottom:710.505000px;}
.y136{bottom:712.462500px;}
.y12{bottom:713.123595px;}
.y57{bottom:713.811585px;}
.y11{bottom:716.472000px;}
.y92{bottom:720.737535px;}
.y1a7{bottom:722.169000px;}
.y1a6{bottom:722.169074px;}
.y134{bottom:724.410074px;}
.y135{bottom:724.410150px;}
.y102{bottom:725.449650px;}
.y10{bottom:725.976435px;}
.y56{bottom:726.663885px;}
.yf{bottom:729.310500px;}
.y91{bottom:733.589850px;}
.y1a5{bottom:734.130000px;}
.yc4{bottom:735.561000px;}
.y133{bottom:736.371000px;}
.y55{bottom:739.516200px;}
.y101{bottom:741.136500px;}
.y1a4{bottom:746.077500px;}
.y1a3{bottom:746.077574px;}
.y8f{bottom:746.441085px;}
.y90{bottom:746.442150px;}
.y132{bottom:748.318500px;}
.y131{bottom:748.318574px;}
.yd{bottom:748.912650px;}
.yc3{bottom:751.261500px;}
.y54{bottom:752.367585px;}
.ye{bottom:754.447500px;}
.y100{bottom:756.837000px;}
.y1a2{bottom:758.038500px;}
.y8e{bottom:759.293385px;}
.y130{bottom:760.279500px;}
.y53{bottom:765.219885px;}
.yc2{bottom:766.948500px;}
.yb{bottom:768.339150px;}
.y1a0{bottom:769.999464px;}
.y1a1{bottom:769.999500px;}
.y8d{bottom:772.145700px;}
.y12f{bottom:772.240500px;}
.y12e{bottom:772.240614px;}
.yff{bottom:772.524150px;}
.yc{bottom:773.874000px;}
.y52{bottom:778.072200px;}
.y19f{bottom:781.947000px;}
.yc1{bottom:782.635650px;}
.y12d{bottom:784.188150px;}
.y8c{bottom:784.998000px;}
.y8{bottom:787.765500px;}
.ya{bottom:787.765650px;}
.yfe{bottom:788.211150px;}
.y51{bottom:790.924500px;}
.y9{bottom:793.314000px;}
.y19e{bottom:793.908000px;}
.y19d{bottom:793.908114px;}
.y12b{bottom:796.148964px;}
.y12c{bottom:796.149150px;}
.y8b{bottom:797.849385px;}
.yc0{bottom:798.322500px;}
.y50{bottom:803.776350px;}
.yfd{bottom:803.911500px;}
.y19c{bottom:805.855650px;}
.y12a{bottom:808.096500px;}
.y8a{bottom:810.701700px;}
.ybf{bottom:814.023150px;}
.y4f{bottom:816.628650px;}
.y19a{bottom:817.816464px;}
.y19b{bottom:817.816650px;}
.yfc{bottom:819.598500px;}
.y128{bottom:820.057464px;}
.y129{bottom:820.057650px;}
.y6{bottom:822.717000px;}
.y89{bottom:823.553235px;}
.y4e{bottom:829.480650px;}
.ybe{bottom:829.710000px;}
.y199{bottom:829.764000px;}
.y7{bottom:829.777650px;}
.y127{bottom:832.005000px;}
.yfb{bottom:835.285650px;}
.y88{bottom:836.405535px;}
.y198{bottom:841.725000px;}
.y197{bottom:841.725074px;}
.y4d{bottom:842.332200px;}
.ybd{bottom:845.397000px;}
.y5{bottom:848.583000px;}
.y87{bottom:849.257850px;}
.yfa{bottom:850.986000px;}
.y196{bottom:853.686000px;}
.y4b{bottom:855.183585px;}
.y4c{bottom:855.184500px;}
.y126{bottom:859.653150px;}
.ybc{bottom:861.097650px;}
.y85{bottom:862.109385px;}
.y86{bottom:862.110150px;}
.y195{bottom:865.633574px;}
.y4a{bottom:868.035885px;}
.y84{bottom:874.961700px;}
.ybb{bottom:876.784650px;}
.y194{bottom:877.594500px;}
.y49{bottom:880.888200px;}
.yf9{bottom:882.360150px;}
.y125{bottom:883.561500px;}
.y83{bottom:887.814000px;}
.y193{bottom:889.542150px;}
.y192{bottom:889.542224px;}
.yba{bottom:892.471650px;}
.y48{bottom:893.739885px;}
.y82{bottom:900.665385px;}
.y191{bottom:901.503150px;}
.y47{bottom:906.592200px;}
.yb9{bottom:908.172150px;}
.yf8{bottom:911.209500px;}
.y190{bottom:913.450500px;}
.y81{bottom:913.517700px;}
.y124{bottom:914.949150px;}
.y46{bottom:919.444500px;}
.yb8{bottom:923.859000px;}
.y18e{bottom:925.411464px;}
.y18f{bottom:925.411500px;}
.y80{bottom:926.370000px;}
.yf7{bottom:926.910150px;}
.y4{bottom:928.206000px;}
.y45{bottom:932.296500px;}
.y18d{bottom:937.359000px;}
.y7f{bottom:939.221535px;}
.yb7{bottom:939.546000px;}
.yf6{bottom:942.597000px;}
.y44{bottom:945.148500px;}
.y18c{bottom:949.320000px;}
.y18b{bottom:949.320074px;}
.y7e{bottom:952.073850px;}
.y43{bottom:958.000650px;}
.yf5{bottom:958.284150px;}
.y18a{bottom:961.281000px;}
.yb6{bottom:964.615500px;}
.y7d{bottom:964.926150px;}
.y3{bottom:965.290500px;}
.y42{bottom:970.852500px;}
.y189{bottom:973.228500px;}
.y188{bottom:973.228574px;}
.yf4{bottom:973.984500px;}
.y187{bottom:985.189500px;}
.y7c{bottom:985.608000px;}
.yb5{bottom:989.671500px;}
.y186{bottom:997.137150px;}
.y41{bottom:997.893150px;}
.yb4{bottom:1005.358500px;}
.y7b{bottom:1008.720000px;}
.y184{bottom:1009.097964px;}
.y185{bottom:1009.098150px;}
.y2{bottom:1010.596650px;}
.y40{bottom:1021.045500px;}
.y7a{bottom:1023.070650px;}
.y1{bottom:1053.283500px;}
.y3f{bottom:1053.715650px;}
.ha{height:24.857060px;}
.hf{height:24.883404px;}
.he{height:24.884004px;}
.hb{height:33.623965px;}
.h5{height:34.478653px;}
.hd{height:35.510643px;}
.h12{height:35.512503px;}
.h13{height:35.513703px;}
.h11{height:37.826895px;}
.h2{height:39.949404px;}
.h9{height:41.169645px;}
.h10{height:42.029824px;}
.h3{height:44.388164px;}
.h14{height:44.390356px;}
.hc{height:49.936894px;}
.h7{height:52.433070px;}
.h8{height:58.814415px;}
.h6{height:74.905341px;}
.h4{height:77.679427px;}
.h1{height:1113.750000px;}
.h0{height:1113.972000px;}
.w1{width:816.000000px;}
.w0{width:816.267000px;}
.x0{left:0.000000px;}
.x5{left:58.900500px;}
.x19{left:62.883345px;}
.x18{left:64.098045px;}
.x1b{left:65.407500px;}
.x1c{left:67.662000px;}
.x1d{left:76.842000px;}
.x27{left:83.002782px;}
.x2b{left:99.211500px;}
.x4f{left:131.652000px;}
.x35{left:133.461000px;}
.x21{left:139.599675px;}
.x37{left:141.817500px;}
.x25{left:165.807000px;}
.x47{left:168.601500px;}
.x39{left:171.639000px;}
.x34{left:173.394000px;}
.x43{left:182.155500px;}
.x3f{left:185.085000px;}
.x33{left:187.002000px;}
.x2d{left:192.388500px;}
.x49{left:195.682500px;}
.x7{left:203.836500px;}
.x50{left:207.346500px;}
.x8{left:208.723500px;}
.x13{left:212.625000px;}
.x14{left:215.514000px;}
.xd{left:228.946500px;}
.x2e{left:230.485500px;}
.x42{left:232.186500px;}
.x1e{left:238.232580px;}
.x28{left:239.544000px;}
.x23{left:241.620900px;}
.xe{left:243.202500px;}
.x38{left:244.822500px;}
.x4{left:260.172000px;}
.x3d{left:267.624000px;}
.x52{left:277.479000px;}
.x3a{left:285.592500px;}
.x1a{left:298.930500px;}
.x2a{left:306.990000px;}
.x31{left:309.379500px;}
.x2{left:310.527000px;}
.x29{left:315.049500px;}
.x4a{left:317.020500px;}
.x6{left:320.503500px;}
.x1{left:339.700500px;}
.x22{left:343.028400px;}
.x30{left:348.894000px;}
.x45{left:355.104000px;}
.x3{left:369.589500px;}
.x32{left:378.540000px;}
.x46{left:395.118000px;}
.x26{left:397.710000px;}
.x20{left:405.904500px;}
.x4d{left:407.983500px;}
.x3c{left:411.237000px;}
.x9{left:419.863500px;}
.xf{left:421.645500px;}
.xa{left:425.277000px;}
.x10{left:426.330000px;}
.x15{left:438.925500px;}
.x16{left:444.447000px;}
.x4b{left:455.463000px;}
.x2c{left:465.102000px;}
.x2f{left:466.209000px;}
.x40{left:469.786500px;}
.x48{left:472.014000px;}
.x4e{left:485.932500px;}
.x36{left:487.998000px;}
.x3b{left:527.148000px;}
.x41{left:529.834500px;}
.x17{left:535.909500px;}
.x3e{left:562.113000px;}
.x44{left:565.650000px;}
.x24{left:570.327600px;}
.x51{left:573.885000px;}
.xb{left:582.444000px;}
.xc{left:586.872000px;}
.x11{left:588.006000px;}
.x12{left:592.893000px;}
.x4c{left:600.763500px;}
.x1f{left:640.899600px;}
@media print{
.v1{vertical-align:-13.391467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.879467pt;}
.ls48{letter-spacing:-0.022954pt;}
.ls82{letter-spacing:-0.021254pt;}
.ls68{letter-spacing:-0.020403pt;}
.ls47{letter-spacing:-0.017003pt;}
.ls42{letter-spacing:-0.016897pt;}
.ls49{letter-spacing:-0.015303pt;}
.ls3c{letter-spacing:-0.014346pt;}
.ls67{letter-spacing:-0.013602pt;}
.ls3a{letter-spacing:-0.012752pt;}
.ls4c{letter-spacing:-0.011477pt;}
.ls41{letter-spacing:-0.011264pt;}
.ls46{letter-spacing:-0.010202pt;}
.ls39{letter-spacing:-0.008501pt;}
.ls4d{letter-spacing:-0.008034pt;}
.ls4a{letter-spacing:-0.007651pt;}
.ls3d{letter-spacing:-0.007173pt;}
.ls45{letter-spacing:-0.006801pt;}
.ls3f{letter-spacing:-0.005632pt;}
.ls3b{letter-spacing:-0.004251pt;}
.ls4b{letter-spacing:-0.003826pt;}
.ls44{letter-spacing:-0.003401pt;}
.ls37{letter-spacing:0.000000pt;}
.ls8d{letter-spacing:0.001067pt;}
.ls75{letter-spacing:0.001413pt;}
.ls92{letter-spacing:0.001601pt;}
.ls64{letter-spacing:0.001853pt;}
.ls10{letter-spacing:0.002048pt;}
.ls1d{letter-spacing:0.002206pt;}
.ls70{letter-spacing:0.002359pt;}
.ls65{letter-spacing:0.002387pt;}
.ls61{letter-spacing:0.002517pt;}
.ls13{letter-spacing:0.002581pt;}
.ls27{letter-spacing:0.002739pt;}
.ls5e{letter-spacing:0.003051pt;}
.lsa{letter-spacing:0.003116pt;}
.ls16{letter-spacing:0.003401pt;}
.ls25{letter-spacing:0.003814pt;}
.ls0{letter-spacing:0.003826pt;}
.ls2{letter-spacing:0.004251pt;}
.lsb{letter-spacing:0.004331pt;}
.ls3e{letter-spacing:0.005021pt;}
.ls9e{letter-spacing:0.005072pt;}
.lsc{letter-spacing:0.005632pt;}
.ls22{letter-spacing:0.005943pt;}
.ls1e{letter-spacing:0.006477pt;}
.ls17{letter-spacing:0.006801pt;}
.ls20{letter-spacing:0.006865pt;}
.ls8{letter-spacing:0.007173pt;}
.ls4{letter-spacing:0.007439pt;}
.ls2d{letter-spacing:0.007651pt;}
.ls5f{letter-spacing:0.007747pt;}
.ls4e{letter-spacing:0.008501pt;}
.ls33{letter-spacing:0.009412pt;}
.ls6c{letter-spacing:0.009548pt;}
.lsd{letter-spacing:0.009755pt;}
.ls15{letter-spacing:0.010202pt;}
.ls28{letter-spacing:0.010449pt;}
.ls1c{letter-spacing:0.010982pt;}
.ls2a{letter-spacing:0.011477pt;}
.lse{letter-spacing:0.012422pt;}
.ls18{letter-spacing:0.012561pt;}
.ls3{letter-spacing:0.012752pt;}
.ls60{letter-spacing:0.012902pt;}
.ls12{letter-spacing:0.013028pt;}
.ls5b{letter-spacing:0.013435pt;}
.ls54{letter-spacing:0.013602pt;}
.lsf{letter-spacing:0.014052pt;}
.ls32{letter-spacing:0.014270pt;}
.ls1a{letter-spacing:0.014571pt;}
.ls19{letter-spacing:0.014916pt;}
.ls29{letter-spacing:0.015104pt;}
.ls1{letter-spacing:0.015303pt;}
.ls35{letter-spacing:0.015705pt;}
.ls87{letter-spacing:0.016435pt;}
.ls36{letter-spacing:0.016610pt;}
.ls88{letter-spacing:0.016968pt;}
.ls5c{letter-spacing:0.017003pt;}
.ls2f{letter-spacing:0.017025pt;}
.ls85{letter-spacing:0.017501pt;}
.ls80{letter-spacing:0.018252pt;}
.ls2c{letter-spacing:0.019128pt;}
.ls14{letter-spacing:0.019623pt;}
.ls5d{letter-spacing:0.019988pt;}
.ls69{letter-spacing:0.020403pt;}
.ls58{letter-spacing:0.020521pt;}
.ls5a{letter-spacing:0.021054pt;}
.ls38{letter-spacing:0.021254pt;}
.ls59{letter-spacing:0.022046pt;}
.ls2b{letter-spacing:0.022954pt;}
.ls43{letter-spacing:0.023804pt;}
.ls24{letter-spacing:0.023889pt;}
.ls6a{letter-spacing:0.025504pt;}
.ls86{letter-spacing:0.026510pt;}
.ls2e{letter-spacing:0.026780pt;}
.ls89{letter-spacing:0.027043pt;}
.ls77{letter-spacing:0.027205pt;}
.ls11{letter-spacing:0.027851pt;}
.ls26{letter-spacing:0.037303pt;}
.ls81{letter-spacing:0.049320pt;}
.ls62{letter-spacing:0.049853pt;}
.ls7f{letter-spacing:0.050387pt;}
.ls63{letter-spacing:0.097853pt;}
.ls8c{letter-spacing:0.098387pt;}
.ls66{letter-spacing:0.145853pt;}
.ls8f{letter-spacing:0.241853pt;}
.ls91{letter-spacing:0.289853pt;}
.ls8e{letter-spacing:0.337853pt;}
.ls93{letter-spacing:0.338387pt;}
.ls90{letter-spacing:0.385853pt;}
.ls95{letter-spacing:0.673853pt;}
.lsa4{letter-spacing:0.712942pt;}
.ls9f{letter-spacing:0.716446pt;}
.ls72{letter-spacing:0.769853pt;}
.ls71{letter-spacing:0.817853pt;}
.ls74{letter-spacing:0.865853pt;}
.ls94{letter-spacing:0.913853pt;}
.ls73{letter-spacing:0.914387pt;}
.ls96{letter-spacing:0.961853pt;}
.ls97{letter-spacing:1.010387pt;}
.lsa5{letter-spacing:1.105191pt;}
.lsa7{letter-spacing:1.152799pt;}
.lsa6{letter-spacing:1.200407pt;}
.lsa8{letter-spacing:1.251416pt;}
.ls34{letter-spacing:1.299987pt;}
.ls30{letter-spacing:1.300520pt;}
.ls31{letter-spacing:1.302120pt;}
.lsad{letter-spacing:2.047153pt;}
.ls6{letter-spacing:3.265853pt;}
.ls5{letter-spacing:3.313853pt;}
.ls9{letter-spacing:3.314387pt;}
.ls7{letter-spacing:3.362387pt;}
.ls76{letter-spacing:3.411987pt;}
.ls1f{letter-spacing:3.505853pt;}
.ls84{letter-spacing:3.546387pt;}
.ls1b{letter-spacing:3.553853pt;}
.ls23{letter-spacing:3.554387pt;}
.lsb5{letter-spacing:4.226929pt;}
.lsb7{letter-spacing:4.274537pt;}
.lsb6{letter-spacing:4.322146pt;}
.lsb8{letter-spacing:4.369754pt;}
.lsb2{letter-spacing:5.811603pt;}
.lsb4{letter-spacing:5.859211pt;}
.lsb3{letter-spacing:5.906819pt;}
.lsa3{letter-spacing:7.107226pt;}
.lsa0{letter-spacing:7.154834pt;}
.lsa1{letter-spacing:7.202443pt;}
.lsa2{letter-spacing:7.250051pt;}
.lsb1{letter-spacing:8.355241pt;}
.lsae{letter-spacing:8.402850pt;}
.lsaf{letter-spacing:8.450458pt;}
.lsb0{letter-spacing:8.498066pt;}
.ls7c{letter-spacing:9.409423pt;}
.ls7a{letter-spacing:9.457032pt;}
.ls7b{letter-spacing:9.504640pt;}
.lsa9{letter-spacing:9.746081pt;}
.lsaa{letter-spacing:9.793690pt;}
.lsab{letter-spacing:9.841298pt;}
.ls6f{letter-spacing:9.936514pt;}
.ls79{letter-spacing:9.984122pt;}
.ls78{letter-spacing:10.031731pt;}
.lsac{letter-spacing:10.205161pt;}
.ls8b{letter-spacing:10.932852pt;}
.ls6b{letter-spacing:12.454610pt;}
.ls8a{letter-spacing:12.803169pt;}
.ls9d{letter-spacing:13.019955pt;}
.ls83{letter-spacing:13.670316pt;}
.ls7d{letter-spacing:14.388687pt;}
.ls7e{letter-spacing:14.677736pt;}
.ls40{letter-spacing:16.496753pt;}
.ls99{letter-spacing:16.713831pt;}
.ls9b{letter-spacing:17.725502pt;}
.ls98{letter-spacing:17.772260pt;}
.ls9a{letter-spacing:18.061309pt;}
.ls9c{letter-spacing:18.635156pt;}
.ls21{letter-spacing:38.834387pt;}
.ls6d{letter-spacing:136.884627pt;}
.ls50{letter-spacing:155.047560pt;}
.ls6e{letter-spacing:192.766440pt;}
.ls51{letter-spacing:204.784520pt;}
.ls57{letter-spacing:226.864520pt;}
.ls53{letter-spacing:239.246067pt;}
.ls55{letter-spacing:291.523293pt;}
.ls52{letter-spacing:322.723667pt;}
.ls4f{letter-spacing:361.949427pt;}
.ls56{letter-spacing:455.846440pt;}
.ws11{word-spacing:-55.021092pt;}
.ws6{word-spacing:-50.888648pt;}
.wsc{word-spacing:-49.071314pt;}
.ws9{word-spacing:-49.064141pt;}
.wsb{word-spacing:-49.056968pt;}
.wsa{word-spacing:-49.049795pt;}
.ws70{word-spacing:-47.710081pt;}
.ws68{word-spacing:-47.136234pt;}
.ws62{word-spacing:-46.847185pt;}
.ws6b{word-spacing:-46.800427pt;}
.ws65{word-spacing:-45.788756pt;}
.ws54{word-spacing:-43.752661pt;}
.ws52{word-spacing:-43.463612pt;}
.ws58{word-spacing:-42.745240pt;}
.ws74{word-spacing:-42.094880pt;}
.ws5d{word-spacing:-41.878093pt;}
.ws49{word-spacing:-41.529534pt;}
.ws5f{word-spacing:-40.007777pt;}
.wse{word-spacing:-38.529971pt;}
.ws12{word-spacing:-38.524339pt;}
.wsf{word-spacing:-38.518707pt;}
.ws13{word-spacing:-38.513075pt;}
.ws15{word-spacing:-38.507443pt;}
.ws78{word-spacing:-33.465173pt;}
.ws4c{word-spacing:-33.291743pt;}
.ws4d{word-spacing:-33.244135pt;}
.ws4e{word-spacing:-33.196527pt;}
.ws50{word-spacing:-32.764653pt;}
.ws4f{word-spacing:-32.717044pt;}
.ws23{word-spacing:-32.709427pt;}
.ws51{word-spacing:-32.669436pt;}
.ws46{word-spacing:-29.100429pt;}
.ws4{word-spacing:-29.096178pt;}
.ws3e{word-spacing:-29.091928pt;}
.ws3{word-spacing:-29.087677pt;}
.ws3f{word-spacing:-29.083426pt;}
.ws2{word-spacing:-29.079176pt;}
.ws3c{word-spacing:-29.074925pt;}
.ws3d{word-spacing:-29.070674pt;}
.ws5{word-spacing:-29.066423pt;}
.ws47{word-spacing:-29.062173pt;}
.ws75{word-spacing:-29.057922pt;}
.ws56{word-spacing:-29.053671pt;}
.ws10{word-spacing:-26.966746pt;}
.ws2e{word-spacing:-26.194248pt;}
.ws2b{word-spacing:-26.190423pt;}
.ws2c{word-spacing:-26.186597pt;}
.ws1{word-spacing:-26.182771pt;}
.ws2a{word-spacing:-26.178946pt;}
.ws2d{word-spacing:-26.175120pt;}
.ws0{word-spacing:-26.171294pt;}
.ws32{word-spacing:-26.167469pt;}
.ws33{word-spacing:-26.163643pt;}
.ws31{word-spacing:-26.159817pt;}
.ws5a{word-spacing:-26.155992pt;}
.ws30{word-spacing:-26.152166pt;}
.ws2f{word-spacing:-26.144515pt;}
.ws4b{word-spacing:-23.287217pt;}
.ws79{word-spacing:-23.283817pt;}
.ws44{word-spacing:-23.280416pt;}
.ws77{word-spacing:-23.277016pt;}
.ws42{word-spacing:-23.273615pt;}
.ws28{word-spacing:-23.270215pt;}
.ws26{word-spacing:-23.266814pt;}
.ws27{word-spacing:-23.263413pt;}
.ws24{word-spacing:-23.260013pt;}
.ws29{word-spacing:-23.256612pt;}
.ws25{word-spacing:-23.253212pt;}
.ws41{word-spacing:-23.249811pt;}
.ws40{word-spacing:-23.246410pt;}
.ws7a{word-spacing:-23.243010pt;}
.ws43{word-spacing:-23.239609pt;}
.ws14{word-spacing:-22.038851pt;}
.ws17{word-spacing:-22.027586pt;}
.ws16{word-spacing:-22.016322pt;}
.ws18{word-spacing:-21.976896pt;}
.ws53{word-spacing:-19.434292pt;}
.ws72{word-spacing:-17.891280pt;}
.ws71{word-spacing:-17.759508pt;}
.ws60{word-spacing:-17.330185pt;}
.ws5c{word-spacing:-16.407779pt;}
.ws19{word-spacing:-16.281754pt;}
.ws5e{word-spacing:-16.271756pt;}
.ws73{word-spacing:-16.080474pt;}
.ws5b{word-spacing:-15.940267pt;}
.ws38{word-spacing:-15.107505pt;}
.ws66{word-spacing:-12.467362pt;}
.ws76{word-spacing:-12.157059pt;}
.ws63{word-spacing:-11.987030pt;}
.ws64{word-spacing:-11.906267pt;}
.ws6c{word-spacing:-11.523702pt;}
.ws6a{word-spacing:-11.374927pt;}
.ws61{word-spacing:-11.328169pt;}
.ws69{word-spacing:-11.187895pt;}
.ws67{word-spacing:-11.039120pt;}
.ws6e{word-spacing:-10.418515pt;}
.ws6d{word-spacing:-10.405763pt;}
.ws6f{word-spacing:-10.359005pt;}
.ws48{word-spacing:-0.059510pt;}
.ws1c{word-spacing:-0.057810pt;}
.wsd{word-spacing:-0.055232pt;}
.ws55{word-spacing:-0.051009pt;}
.ws59{word-spacing:-0.049733pt;}
.ws45{word-spacing:-0.046758pt;}
.ws1a{word-spacing:-0.044208pt;}
.ws4a{word-spacing:-0.042507pt;}
.ws37{word-spacing:-0.042082pt;}
.ws21{word-spacing:-0.040807pt;}
.ws8{word-spacing:-0.038256pt;}
.ws1e{word-spacing:-0.037406pt;}
.ws34{word-spacing:-0.034431pt;}
.ws1b{word-spacing:-0.034006pt;}
.ws1d{word-spacing:-0.030605pt;}
.ws7{word-spacing:-0.029755pt;}
.ws1f{word-spacing:-0.027205pt;}
.ws35{word-spacing:-0.026779pt;}
.ws57{word-spacing:-0.025504pt;}
.ws20{word-spacing:-0.023804pt;}
.ws36{word-spacing:-0.018745pt;}
.ws22{word-spacing:-0.017003pt;}
.ws39{word-spacing:0.000000pt;}
.ws3b{word-spacing:9.882105pt;}
.ws3a{word-spacing:9.939915pt;}
._10{margin-left:-18.833706pt;}
._3{margin-left:-17.900013pt;}
._5{margin-left:-16.519282pt;}
._f{margin-left:-14.627643pt;}
._e{margin-left:-13.682433pt;}
._d{margin-left:-12.296453pt;}
._a{margin-left:-10.616994pt;}
._8{margin-left:-9.702379pt;}
._7{margin-left:-8.806885pt;}
._6{margin-left:-7.824715pt;}
._0{margin-left:-6.531163pt;}
._1{margin-left:-5.291871pt;}
._9{margin-left:-4.074537pt;}
._2{margin-left:-2.997297pt;}
._4{margin-left:-1.219095pt;}
._c{width:0.936150pt;}
._b{width:1432.265898pt;}
.fs8{font-size:23.803733pt;}
.fsa{font-size:26.779200pt;}
.fsb{font-size:31.880533pt;}
.fs1{font-size:34.005867pt;}
.fs0{font-size:38.256533pt;}
.fs7{font-size:39.425067pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs5{font-size:50.211200pt;}
.fs6{font-size:56.322133pt;}
.fs4{font-size:71.731200pt;}
.fs3{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:42.180133pt;}
.y3e{bottom:52.500133pt;}
.y3d{bottom:65.256000pt;}
.y183{bottom:70.080101pt;}
.y78{bottom:70.080133pt;}
.y3c{bottom:78.000133pt;}
.y182{bottom:80.700133pt;}
.y77{bottom:84.024133pt;}
.y3b{bottom:90.756000pt;}
.y181{bottom:91.332000pt;}
.y180{bottom:91.332101pt;}
.y123{bottom:97.308000pt;}
.yb3{bottom:97.968000pt;}
.y17f{bottom:101.952133pt;}
.y3a{bottom:103.512000pt;}
.y76{bottom:111.924133pt;}
.y17e{bottom:112.584000pt;}
.y17d{bottom:112.584101pt;}
.yb2{bottom:121.344133pt;}
.y122{bottom:121.584000pt;}
.y17c{bottom:123.204133pt;}
.yf3{bottom:125.868133pt;}
.y39{bottom:126.528133pt;}
.y1ec{bottom:131.844066pt;}
.y1ed{bottom:131.844133pt;}
.y17b{bottom:133.836000pt;}
.y17a{bottom:133.836066pt;}
.yb1{bottom:135.288133pt;}
.y121{bottom:135.528133pt;}
.y75{bottom:139.812000pt;}
.y1eb{bottom:142.476000pt;}
.y38{bottom:142.536000pt;}
.y179{bottom:144.468000pt;}
.y120{bottom:149.484133pt;}
.yf2{bottom:151.236000pt;}
.y1ea{bottom:153.096000pt;}
.y1e9{bottom:153.096199pt;}
.y178{bottom:155.088133pt;}
.y177{bottom:155.088167pt;}
.y37{bottom:155.196000pt;}
.yb0{bottom:163.176000pt;}
.y11f{bottom:163.427513pt;}
.y1e8{bottom:163.728133pt;}
.yf1{bottom:165.180133pt;}
.y176{bottom:165.720101pt;}
.y36{bottom:167.856000pt;}
.ye0{bottom:168.600133pt;}
.y74{bottom:169.140133pt;}
.y1e7{bottom:174.348000pt;}
.y1e6{bottom:174.348199pt;}
.y175{bottom:176.340133pt;}
.y11e{bottom:177.372000pt;}
.yf0{bottom:179.136000pt;}
.ydf{bottom:182.556000pt;}
.y73{bottom:183.084133pt;}
.y1e5{bottom:184.980133pt;}
.y173{bottom:186.971968pt;}
.y174{bottom:186.972000pt;}
.y11d{bottom:191.316000pt;}
.yef{bottom:193.080133pt;}
.yaf{bottom:194.700133pt;}
.y1e3{bottom:195.600066pt;}
.y1e4{bottom:195.600133pt;}
.yde{bottom:196.500133pt;}
.y72{bottom:197.040133pt;}
.y172{bottom:197.592000pt;}
.y11c{bottom:205.272000pt;}
.y1e2{bottom:206.232000pt;}
.yee{bottom:207.024133pt;}
.y170{bottom:208.224066pt;}
.y171{bottom:208.224133pt;}
.yae{bottom:208.656000pt;}
.ydd{bottom:210.444133pt;}
.y71{bottom:210.984133pt;}
.y1e0{bottom:216.864101pt;}
.y1e1{bottom:216.864133pt;}
.y16f{bottom:218.856000pt;}
.y11b{bottom:219.216000pt;}
.yed{bottom:220.968133pt;}
.yad{bottom:222.600133pt;}
.ydc{bottom:224.399646pt;}
.y70{bottom:224.928133pt;}
.y1df{bottom:227.484133pt;}
.y16e{bottom:229.476000pt;}
.y16d{bottom:229.476199pt;}
.y11a{bottom:233.160133pt;}
.yec{bottom:234.924133pt;}
.yac{bottom:236.544133pt;}
.y1de{bottom:238.116000pt;}
.y1dd{bottom:238.116101pt;}
.ydb{bottom:238.344133pt;}
.y16c{bottom:240.108133pt;}
.y1dc{bottom:248.736133pt;}
.yeb{bottom:248.868133pt;}
.yab{bottom:250.488133pt;}
.y16b{bottom:250.728133pt;}
.y16a{bottom:250.728199pt;}
.yda{bottom:252.288000pt;}
.y6f{bottom:252.828000pt;}
.y1da{bottom:259.368101pt;}
.y1db{bottom:259.368133pt;}
.y119{bottom:261.060000pt;}
.y169{bottom:261.360133pt;}
.yaa{bottom:264.444000pt;}
.yd9{bottom:266.232000pt;}
.y1d9{bottom:269.988133pt;}
.y168{bottom:271.980000pt;}
.y167{bottom:271.980066pt;}
.yea{bottom:276.768000pt;}
.ya9{bottom:278.388133pt;}
.y1d7{bottom:280.620034pt;}
.y1d8{bottom:280.620133pt;}
.y6e{bottom:282.156133pt;}
.y166{bottom:282.612000pt;}
.y118{bottom:286.704000pt;}
.y1d6{bottom:291.251968pt;}
.ya8{bottom:292.332000pt;}
.y164{bottom:293.243968pt;}
.y165{bottom:293.244000pt;}
.yd8{bottom:294.132000pt;}
.y6d{bottom:296.100000pt;}
.y117{bottom:300.648133pt;}
.y1d5{bottom:301.872000pt;}
.ye9{bottom:302.136133pt;}
.y163{bottom:303.864000pt;}
.ya7{bottom:306.288000pt;}
.y6c{bottom:310.044000pt;}
.y1d3{bottom:312.503968pt;}
.y1d4{bottom:312.504000pt;}
.y161{bottom:314.495968pt;}
.y162{bottom:314.496000pt;}
.y35{bottom:314.856000pt;}
.ye8{bottom:316.080000pt;}
.ya6{bottom:320.232000pt;}
.yd7{bottom:322.920000pt;}
.y1d2{bottom:323.124000pt;}
.y6b{bottom:324.000000pt;}
.y160{bottom:325.116000pt;}
.y34{bottom:327.612000pt;}
.y116{bottom:328.548133pt;}
.ye7{bottom:330.024000pt;}
.y1d1{bottom:333.756000pt;}
.ya5{bottom:334.176000pt;}
.y15f{bottom:335.748133pt;}
.yd6{bottom:336.864000pt;}
.y6a{bottom:337.944000pt;}
.y33{bottom:340.368133pt;}
.y1d0{bottom:344.376000pt;}
.y1cf{bottom:344.376066pt;}
.y15e{bottom:346.368133pt;}
.y15d{bottom:346.368199pt;}
.ya4{bottom:348.132133pt;}
.yd5{bottom:350.820133pt;}
.y69{bottom:351.888133pt;}
.y32{bottom:353.112000pt;}
.y115{bottom:354.192000pt;}
.y1ce{bottom:355.008000pt;}
.y15c{bottom:357.000133pt;}
.ye6{bottom:357.924133pt;}
.ya3{bottom:362.076000pt;}
.yd4{bottom:364.764133pt;}
.y1cd{bottom:365.628133pt;}
.y1cc{bottom:365.628199pt;}
.y68{bottom:365.832133pt;}
.y31{bottom:365.868133pt;}
.y15a{bottom:367.632101pt;}
.y15b{bottom:367.632133pt;}
.y114{bottom:368.136133pt;}
.ya2{bottom:376.020000pt;}
.y1cb{bottom:376.260133pt;}
.y159{bottom:378.252133pt;}
.y30{bottom:378.624000pt;}
.yd3{bottom:378.708133pt;}
.y67{bottom:379.788133pt;}
.y113{bottom:382.092000pt;}
.ye5{bottom:383.292133pt;}
.y1c9{bottom:386.891968pt;}
.y1ca{bottom:386.892000pt;}
.y158{bottom:388.884000pt;}
.ya1{bottom:389.976000pt;}
.y2f{bottom:391.368133pt;}
.yd2{bottom:392.664000pt;}
.y66{bottom:393.732000pt;}
.y112{bottom:396.036000pt;}
.ye4{bottom:397.236000pt;}
.y1c8{bottom:397.512000pt;}
.y157{bottom:399.504133pt;}
.y156{bottom:399.504199pt;}
.ya0{bottom:403.920133pt;}
.y2e{bottom:404.124000pt;}
.y25{bottom:404.926093pt;}
.yd1{bottom:406.608133pt;}
.y65{bottom:407.676000pt;}
.y1c7{bottom:408.144000pt;}
.y1c6{bottom:408.144101pt;}
.y111{bottom:409.980000pt;}
.y155{bottom:410.136133pt;}
.ye3{bottom:411.192000pt;}
.y24{bottom:416.350360pt;}
.y2d{bottom:416.880133pt;}
.y9f{bottom:417.864000pt;}
.y1c5{bottom:418.764133pt;}
.yd0{bottom:420.552133pt;}
.y154{bottom:420.756000pt;}
.y153{bottom:420.756199pt;}
.y64{bottom:421.632133pt;}
.y110{bottom:423.936000pt;}
.ye2{bottom:425.136133pt;}
.y23{bottom:427.774640pt;}
.y1c3{bottom:429.395968pt;}
.y1c4{bottom:429.396000pt;}
.y2c{bottom:429.624000pt;}
.y152{bottom:431.388133pt;}
.y9e{bottom:431.808000pt;}
.ycf{bottom:434.508133pt;}
.y63{bottom:435.576000pt;}
.y10f{bottom:437.880133pt;}
.y22{bottom:439.198907pt;}
.y1c2{bottom:440.016000pt;}
.y150{bottom:442.019968pt;}
.y151{bottom:442.020000pt;}
.y2b{bottom:442.380133pt;}
.y9d{bottom:445.764133pt;}
.y62{bottom:449.520000pt;}
.y21{bottom:450.623173pt;}
.y1c1{bottom:450.648000pt;}
.y10e{bottom:451.824000pt;}
.y14f{bottom:452.640000pt;}
.y2a{bottom:455.136133pt;}
.y9c{bottom:459.708000pt;}
.ye1{bottom:459.780133pt;}
.y1bf{bottom:461.279968pt;}
.y1c0{bottom:461.280133pt;}
.y20{bottom:462.047453pt;}
.yce{bottom:462.396000pt;}
.y14d{bottom:463.271968pt;}
.y14e{bottom:463.272000pt;}
.y61{bottom:463.476000pt;}
.y10d{bottom:465.780133pt;}
.y29{bottom:467.880133pt;}
.y1be{bottom:471.900000pt;}
.y1f{bottom:473.471720pt;}
.y14c{bottom:473.892000pt;}
.y60{bottom:477.420133pt;}
.y10c{bottom:479.724000pt;}
.y28{bottom:480.636133pt;}
.y1bc{bottom:482.531968pt;}
.y1bd{bottom:482.532000pt;}
.y14a{bottom:484.523968pt;}
.y14b{bottom:484.524000pt;}
.y9b{bottom:487.608000pt;}
.ycd{bottom:491.184000pt;}
.y5f{bottom:491.364000pt;}
.y1bb{bottom:493.152000pt;}
.y27{bottom:493.392000pt;}
.y10b{bottom:493.668000pt;}
.y149{bottom:495.144000pt;}
.y1e{bottom:495.551733pt;}
.y1b9{bottom:503.783968pt;}
.y1ba{bottom:503.784000pt;}
.ycc{bottom:505.140000pt;}
.y5e{bottom:505.320133pt;}
.y147{bottom:505.775968pt;}
.y148{bottom:505.776000pt;}
.y26{bottom:506.136133pt;}
.y1d{bottom:506.976000pt;}
.y10a{bottom:507.624000pt;}
.y1b8{bottom:514.404000pt;}
.y146{bottom:516.396000pt;}
.ycb{bottom:519.084000pt;}
.y9a{bottom:519.120133pt;}
.y5d{bottom:519.264133pt;}
.y1b7{bottom:525.036000pt;}
.y1b6{bottom:525.036066pt;}
.y145{bottom:527.028000pt;}
.y144{bottom:527.028199pt;}
.y1c{bottom:531.624000pt;}
.yca{bottom:533.028000pt;}
.y99{bottom:533.076000pt;}
.y5c{bottom:533.208000pt;}
.y109{bottom:535.512133pt;}
.y1b5{bottom:535.668000pt;}
.y143{bottom:537.660133pt;}
.y1b4{bottom:546.288000pt;}
.y1b3{bottom:546.288199pt;}
.yc9{bottom:546.984000pt;}
.y98{bottom:547.020000pt;}
.y5b{bottom:547.152000pt;}
.y141{bottom:548.280034pt;}
.y142{bottom:548.280133pt;}
.y1b2{bottom:556.920133pt;}
.y140{bottom:558.911968pt;}
.yc8{bottom:560.928000pt;}
.y97{bottom:560.964133pt;}
.y5a{bottom:561.108000pt;}
.y108{bottom:561.156000pt;}
.y1b1{bottom:567.540000pt;}
.y1b0{bottom:567.540066pt;}
.y13f{bottom:569.532000pt;}
.y107{bottom:575.112000pt;}
.y1b{bottom:576.767360pt;}
.y1af{bottom:578.172000pt;}
.y13d{bottom:580.163968pt;}
.y13e{bottom:580.164000pt;}
.y1a{bottom:588.191640pt;}
.y1ae{bottom:588.792133pt;}
.yc7{bottom:588.828000pt;}
.y59{bottom:588.996000pt;}
.y106{bottom:589.056133pt;}
.y13c{bottom:590.784000pt;}
.y19{bottom:591.168000pt;}
.y1ad{bottom:599.424133pt;}
.y1ac{bottom:599.424199pt;}
.y18{bottom:599.615640pt;}
.y13b{bottom:601.416000pt;}
.y13a{bottom:601.416066pt;}
.y17{bottom:602.592000pt;}
.y105{bottom:603.000133pt;}
.y96{bottom:606.384133pt;}
.y1ab{bottom:610.056133pt;}
.y16{bottom:611.039640pt;}
.y139{bottom:612.048000pt;}
.y15{bottom:614.016000pt;}
.y104{bottom:616.944000pt;}
.yc6{bottom:617.616000pt;}
.y95{bottom:617.807733pt;}
.y1aa{bottom:620.676000pt;}
.y1a9{bottom:620.676066pt;}
.y14{bottom:622.463640pt;}
.y138{bottom:622.668000pt;}
.y137{bottom:622.668066pt;}
.y58{bottom:623.074920pt;}
.y13{bottom:625.440000pt;}
.y93{bottom:629.231320pt;}
.y94{bottom:629.232000pt;}
.y103{bottom:630.900000pt;}
.y1a8{bottom:631.308000pt;}
.yc5{bottom:631.560000pt;}
.y136{bottom:633.300000pt;}
.y12{bottom:633.887640pt;}
.y57{bottom:634.499187pt;}
.y11{bottom:636.864000pt;}
.y92{bottom:640.655587pt;}
.y1a7{bottom:641.928000pt;}
.y1a6{bottom:641.928066pt;}
.y134{bottom:643.920066pt;}
.y135{bottom:643.920133pt;}
.y102{bottom:644.844133pt;}
.y10{bottom:645.312387pt;}
.y56{bottom:645.923453pt;}
.yf{bottom:648.276000pt;}
.y91{bottom:652.079867pt;}
.y1a5{bottom:652.560000pt;}
.yc4{bottom:653.832000pt;}
.y133{bottom:654.552000pt;}
.y55{bottom:657.347733pt;}
.y101{bottom:658.788000pt;}
.y1a4{bottom:663.180000pt;}
.y1a3{bottom:663.180066pt;}
.y8f{bottom:663.503187pt;}
.y90{bottom:663.504133pt;}
.y132{bottom:665.172000pt;}
.y131{bottom:665.172066pt;}
.yd{bottom:665.700133pt;}
.yc3{bottom:667.788000pt;}
.y54{bottom:668.771187pt;}
.ye{bottom:670.620000pt;}
.y100{bottom:672.744000pt;}
.y1a2{bottom:673.812000pt;}
.y8e{bottom:674.927453pt;}
.y130{bottom:675.804000pt;}
.y53{bottom:680.195453pt;}
.yc2{bottom:681.732000pt;}
.yb{bottom:682.968133pt;}
.y1a0{bottom:684.443968pt;}
.y1a1{bottom:684.444000pt;}
.y8d{bottom:686.351733pt;}
.y12f{bottom:686.436000pt;}
.y12e{bottom:686.436101pt;}
.yff{bottom:686.688133pt;}
.yc{bottom:687.888000pt;}
.y52{bottom:691.619733pt;}
.y19f{bottom:695.064000pt;}
.yc1{bottom:695.676133pt;}
.y12d{bottom:697.056133pt;}
.y8c{bottom:697.776000pt;}
.y8{bottom:700.236000pt;}
.ya{bottom:700.236133pt;}
.yfe{bottom:700.632133pt;}
.y51{bottom:703.044000pt;}
.y9{bottom:705.168000pt;}
.y19e{bottom:705.696000pt;}
.y19d{bottom:705.696101pt;}
.y12b{bottom:707.687968pt;}
.y12c{bottom:707.688133pt;}
.y8b{bottom:709.199453pt;}
.yc0{bottom:709.620000pt;}
.y50{bottom:714.467867pt;}
.yfd{bottom:714.588000pt;}
.y19c{bottom:716.316133pt;}
.y12a{bottom:718.308000pt;}
.y8a{bottom:720.623733pt;}
.ybf{bottom:723.576133pt;}
.y4f{bottom:725.892133pt;}
.y19a{bottom:726.947968pt;}
.y19b{bottom:726.948133pt;}
.yfc{bottom:728.532000pt;}
.y128{bottom:728.939968pt;}
.y129{bottom:728.940133pt;}
.y6{bottom:731.304000pt;}
.y89{bottom:732.047320pt;}
.y4e{bottom:737.316133pt;}
.ybe{bottom:737.520000pt;}
.y199{bottom:737.568000pt;}
.y7{bottom:737.580133pt;}
.y127{bottom:739.560000pt;}
.yfb{bottom:742.476133pt;}
.y88{bottom:743.471587pt;}
.y198{bottom:748.200000pt;}
.y197{bottom:748.200066pt;}
.y4d{bottom:748.739733pt;}
.ybd{bottom:751.464000pt;}
.y5{bottom:754.296000pt;}
.y87{bottom:754.895867pt;}
.yfa{bottom:756.432000pt;}
.y196{bottom:758.832000pt;}
.y4b{bottom:760.163187pt;}
.y4c{bottom:760.164000pt;}
.y126{bottom:764.136133pt;}
.ybc{bottom:765.420133pt;}
.y85{bottom:766.319453pt;}
.y86{bottom:766.320133pt;}
.y195{bottom:769.452066pt;}
.y4a{bottom:771.587453pt;}
.y84{bottom:777.743733pt;}
.ybb{bottom:779.364133pt;}
.y194{bottom:780.084000pt;}
.y49{bottom:783.011733pt;}
.yf9{bottom:784.320133pt;}
.y125{bottom:785.388000pt;}
.y83{bottom:789.168000pt;}
.y193{bottom:790.704133pt;}
.y192{bottom:790.704199pt;}
.yba{bottom:793.308133pt;}
.y48{bottom:794.435453pt;}
.y82{bottom:800.591453pt;}
.y191{bottom:801.336133pt;}
.y47{bottom:805.859733pt;}
.yb9{bottom:807.264133pt;}
.yf8{bottom:809.964000pt;}
.y190{bottom:811.956000pt;}
.y81{bottom:812.015733pt;}
.y124{bottom:813.288133pt;}
.y46{bottom:817.284000pt;}
.yb8{bottom:821.208000pt;}
.y18e{bottom:822.587968pt;}
.y18f{bottom:822.588000pt;}
.y80{bottom:823.440000pt;}
.yf7{bottom:823.920133pt;}
.y4{bottom:825.072000pt;}
.y45{bottom:828.708000pt;}
.y18d{bottom:833.208000pt;}
.y7f{bottom:834.863587pt;}
.yb7{bottom:835.152000pt;}
.yf6{bottom:837.864000pt;}
.y44{bottom:840.132000pt;}
.y18c{bottom:843.840000pt;}
.y18b{bottom:843.840066pt;}
.y7e{bottom:846.287867pt;}
.y43{bottom:851.556133pt;}
.yf5{bottom:851.808133pt;}
.y18a{bottom:854.472000pt;}
.yb6{bottom:857.436000pt;}
.y7d{bottom:857.712133pt;}
.y3{bottom:858.036000pt;}
.y42{bottom:862.980000pt;}
.y189{bottom:865.092000pt;}
.y188{bottom:865.092066pt;}
.yf4{bottom:865.764000pt;}
.y187{bottom:875.724000pt;}
.y7c{bottom:876.096000pt;}
.yb5{bottom:879.708000pt;}
.y186{bottom:886.344133pt;}
.y41{bottom:887.016133pt;}
.yb4{bottom:893.652000pt;}
.y7b{bottom:896.640000pt;}
.y184{bottom:896.975968pt;}
.y185{bottom:896.976133pt;}
.y2{bottom:898.308133pt;}
.y40{bottom:907.596000pt;}
.y7a{bottom:909.396133pt;}
.y1{bottom:936.252000pt;}
.y3f{bottom:936.636133pt;}
.ha{height:22.095165pt;}
.hf{height:22.118581pt;}
.he{height:22.119114pt;}
.hb{height:29.887969pt;}
.h5{height:30.647691pt;}
.hd{height:31.565016pt;}
.h12{height:31.566669pt;}
.h13{height:31.567736pt;}
.h11{height:33.623906pt;}
.h2{height:35.510581pt;}
.h9{height:36.595240pt;}
.h10{height:37.359844pt;}
.h3{height:39.456146pt;}
.h14{height:39.458094pt;}
.hc{height:44.388350pt;}
.h7{height:46.607173pt;}
.h8{height:52.279480pt;}
.h6{height:66.582525pt;}
.h4{height:69.048379pt;}
.h1{height:990.000000pt;}
.h0{height:990.197333pt;}
.w1{width:725.333333pt;}
.w0{width:725.570667pt;}
.x0{left:0.000000pt;}
.x5{left:52.356000pt;}
.x19{left:55.896307pt;}
.x18{left:56.976040pt;}
.x1b{left:58.140000pt;}
.x1c{left:60.144000pt;}
.x1d{left:68.304000pt;}
.x27{left:73.780251pt;}
.x2b{left:88.188000pt;}
.x4f{left:117.024000pt;}
.x35{left:118.632000pt;}
.x21{left:124.088600pt;}
.x37{left:126.060000pt;}
.x25{left:147.384000pt;}
.x47{left:149.868000pt;}
.x39{left:152.568000pt;}
.x34{left:154.128000pt;}
.x43{left:161.916000pt;}
.x3f{left:164.520000pt;}
.x33{left:166.224000pt;}
.x2d{left:171.012000pt;}
.x49{left:173.940000pt;}
.x7{left:181.188000pt;}
.x50{left:184.308000pt;}
.x8{left:185.532000pt;}
.x13{left:189.000000pt;}
.x14{left:191.568000pt;}
.xd{left:203.508000pt;}
.x2e{left:204.876000pt;}
.x42{left:206.388000pt;}
.x1e{left:211.762293pt;}
.x28{left:212.928000pt;}
.x23{left:214.774133pt;}
.xe{left:216.180000pt;}
.x38{left:217.620000pt;}
.x4{left:231.264000pt;}
.x3d{left:237.888000pt;}
.x52{left:246.648000pt;}
.x3a{left:253.860000pt;}
.x1a{left:265.716000pt;}
.x2a{left:272.880000pt;}
.x31{left:275.004000pt;}
.x2{left:276.024000pt;}
.x29{left:280.044000pt;}
.x4a{left:281.796000pt;}
.x6{left:284.892000pt;}
.x1{left:301.956000pt;}
.x22{left:304.914133pt;}
.x30{left:310.128000pt;}
.x45{left:315.648000pt;}
.x3{left:328.524000pt;}
.x32{left:336.480000pt;}
.x46{left:351.216000pt;}
.x26{left:353.520000pt;}
.x20{left:360.804000pt;}
.x4d{left:362.652000pt;}
.x3c{left:365.544000pt;}
.x9{left:373.212000pt;}
.xf{left:374.796000pt;}
.xa{left:378.024000pt;}
.x10{left:378.960000pt;}
.x15{left:390.156000pt;}
.x16{left:395.064000pt;}
.x4b{left:404.856000pt;}
.x2c{left:413.424000pt;}
.x2f{left:414.408000pt;}
.x40{left:417.588000pt;}
.x48{left:419.568000pt;}
.x4e{left:431.940000pt;}
.x36{left:433.776000pt;}
.x3b{left:468.576000pt;}
.x41{left:470.964000pt;}
.x17{left:476.364000pt;}
.x3e{left:499.656000pt;}
.x44{left:502.800000pt;}
.x24{left:506.957867pt;}
.x51{left:510.120000pt;}
.xb{left:517.728000pt;}
.xc{left:521.664000pt;}
.x11{left:522.672000pt;}
.x12{left:527.016000pt;}
.x4c{left:534.012000pt;}
.x1f{left:569.688533pt;}
}




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