
    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_84b42a84cda015d059f66d9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_64ea4de2d95b2f102b4c579b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_89a7d6d352fe8b34c43b26a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_e2e1fb27215cb14aa1362efd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_ed391d4f12adfd6a99372009.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.346191;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_8ba0d812d36a86db57f8f676.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_33d637ef78eac54f27c7d9f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.810000;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_53f586c61ba0206429215a51.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_d15cf8ec9e19ef54f4fce353.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;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_aa1caf2135b72978f81205b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ece0d6bd3d256ac0d62d9c81.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5c4e3ab45eccf0e147219464.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6b36dc561aff5b6177a113b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-16.878000px;}
.v5{vertical-align:-4.566000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.672000px;}
.v8{vertical-align:8.340000px;}
.v1{vertical-align:16.872000px;}
.v3{vertical-align:21.690000px;}
.v7{vertical-align:26.070000px;}
.v4{vertical-align:27.828000px;}
.v6{vertical-align:54.726000px;}
.ls3{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000141px;}
.ls1b{letter-spacing:0.006141px;}
.ls6{letter-spacing:0.045527px;}
.ls19{letter-spacing:0.295956px;}
.ls10{letter-spacing:0.464387px;}
.ls14{letter-spacing:0.665660px;}
.ls22{letter-spacing:0.669527px;}
.ls24{letter-spacing:0.834017px;}
.ls1c{letter-spacing:1.716621px;}
.ls13{letter-spacing:1.959527px;}
.lsf{letter-spacing:2.144023px;}
.ls7{letter-spacing:2.360735px;}
.ls0{letter-spacing:2.371801px;}
.ls5{letter-spacing:2.371909px;}
.ls9{letter-spacing:2.385746px;}
.ls1f{letter-spacing:2.387660px;}
.ls21{letter-spacing:2.389613px;}
.ls1{letter-spacing:2.391030px;}
.ls12{letter-spacing:2.391487px;}
.lsb{letter-spacing:2.391527px;}
.ls4{letter-spacing:2.391746px;}
.lsc{letter-spacing:2.393660px;}
.ls8{letter-spacing:2.393740px;}
.ls20{letter-spacing:2.395613px;}
.ls26{letter-spacing:2.914050px;}
.ls17{letter-spacing:2.964877px;}
.ls18{letter-spacing:2.987675px;}
.lse{letter-spacing:2.988780px;}
.ls1e{letter-spacing:16.917056px;}
.lsa{letter-spacing:19.723200px;}
.ls2{letter-spacing:19.727674px;}
.ls15{letter-spacing:19.728532px;}
.ls1a{letter-spacing:19.908532px;}
.ls25{letter-spacing:32.112141px;}
.ls11{letter-spacing:35.462525px;}
.ls23{letter-spacing:38.116050px;}
.ls16{letter-spacing:162.588532px;}
.lsd{letter-spacing:182.027674px;}
.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;}
}
.ws1{word-spacing:-35.865435px;}
.ws5{word-spacing:-14.943900px;}
.wscf{word-spacing:-14.920027px;}
.ws59{word-spacing:-11.955150px;}
.ws19{word-spacing:-11.955135px;}
.ws6e{word-spacing:-11.936059px;}
.ws3c{word-spacing:-11.935951px;}
.ws3b{word-spacing:-9.564150px;}
.wsbe{word-spacing:-4.961375px;}
.wsf4{word-spacing:-4.016930px;}
.ws70{word-spacing:-3.969110px;}
.wsed{word-spacing:-2.391030px;}
.ws25{word-spacing:-0.597901px;}
.wsd6{word-spacing:-0.573847px;}
.ws26{word-spacing:-0.537901px;}
.wse3{word-spacing:-0.478205px;}
.ws17{word-spacing:-0.430200px;}
.wsf7{word-spacing:-0.418429px;}
.wsbb{word-spacing:-0.298878px;}
.ws81{word-spacing:-0.239102px;}
.ws1c{word-spacing:-0.179101px;}
.ws6{word-spacing:-0.053798px;}
.wsda{word-spacing:-0.047821px;}
.ws7b{word-spacing:-0.019487px;}
.wsc9{word-spacing:-0.015830px;}
.ws6a{word-spacing:-0.009830px;}
.wsea{word-spacing:-0.009591px;}
.ws4b{word-spacing:0.000000px;}
.wsf2{word-spacing:0.011081px;}
.wse8{word-spacing:0.013934px;}
.wse9{word-spacing:0.018002px;}
.ws7d{word-spacing:0.019597px;}
.wsa0{word-spacing:0.059776px;}
.ws107{word-spacing:0.095641px;}
.ws22{word-spacing:0.179099px;}
.ws113{word-spacing:0.286924px;}
.ws11b{word-spacing:0.382565px;}
.ws50{word-spacing:0.478205px;}
.ws112{word-spacing:0.621668px;}
.ws54{word-spacing:0.657532px;}
.wsb6{word-spacing:0.777083px;}
.ws11d{word-spacing:1.052053px;}
.wsb0{word-spacing:1.135736px;}
.ws68{word-spacing:1.494390px;}
.ws9a{word-spacing:1.724392px;}
.ws98{word-spacing:1.728050px;}
.ws9c{word-spacing:1.733492px;}
.ws90{word-spacing:1.853044px;}
.ws5b{word-spacing:2.092146px;}
.ws103{word-spacing:2.104106px;}
.ws8{word-spacing:2.205600px;}
.wsd3{word-spacing:2.247568px;}
.ws74{word-spacing:2.271473px;}
.wsee{word-spacing:2.390410px;}
.ws3a{word-spacing:2.390860px;}
.wsf5{word-spacing:2.391024px;}
.ws35{word-spacing:2.630099px;}
.ws77{word-spacing:2.630126px;}
.ws119{word-spacing:2.630133px;}
.ws12a{word-spacing:2.677954px;}
.ws1f{word-spacing:2.690099px;}
.wsc0{word-spacing:2.749678px;}
.wsdc{word-spacing:2.809453px;}
.wsc2{word-spacing:2.869229px;}
.ws8c{word-spacing:2.988780px;}
.wse2{word-spacing:3.108331px;}
.wsb8{word-spacing:3.168107px;}
.ws2b{word-spacing:3.227699px;}
.ws111{word-spacing:3.299621px;}
.ws84{word-spacing:3.347434px;}
.ws118{word-spacing:3.395263px;}
.wse5{word-spacing:3.407209px;}
.wsd4{word-spacing:3.586545px;}
.wsb4{word-spacing:3.646312px;}
.wsd{word-spacing:3.819600px;}
.wsf6{word-spacing:3.825638px;}
.ws109{word-spacing:3.921289px;}
.wsc{word-spacing:3.927000px;}
.ws14{word-spacing:3.927600px;}
.wsbd{word-spacing:4.184292px;}
.wsc8{word-spacing:4.303843px;}
.ws10c{word-spacing:4.303854px;}
.wsa8{word-spacing:4.423394px;}
.ws10{word-spacing:4.572600px;}
.ws9d{word-spacing:4.722272px;}
.ws6d{word-spacing:4.732956px;}
.ws7c{word-spacing:4.732992px;}
.wsa{word-spacing:4.734000px;}
.wsf1{word-spacing:4.740368px;}
.ws6b{word-spacing:4.743818px;}
.wsf0{word-spacing:4.744529px;}
.wsec{word-spacing:4.748900px;}
.wscb{word-spacing:4.752593px;}
.ws6c{word-spacing:4.759618px;}
.wseb{word-spacing:4.759921px;}
.wsca{word-spacing:4.760074px;}
.wsef{word-spacing:4.770493px;}
.ws116{word-spacing:4.780955px;}
.ws2e{word-spacing:4.781859px;}
.ws69{word-spacing:4.782060px;}
.ws3f{word-spacing:4.782459px;}
.wse7{word-spacing:4.789082px;}
.wsc4{word-spacing:4.961375px;}
.ws61{word-spacing:5.021150px;}
.wsc1{word-spacing:5.140702px;}
.ws1d{word-spacing:5.260498px;}
.ws10f{word-spacing:5.355907px;}
.ws39{word-spacing:5.439899px;}
.ws79{word-spacing:5.618906px;}
.wsfd{word-spacing:5.678682px;}
.ws31{word-spacing:5.678699px;}
.ws101{word-spacing:5.738472px;}
.ws21{word-spacing:5.738698px;}
.wsaf{word-spacing:5.858009px;}
.ws1a{word-spacing:5.858098px;}
.ws23{word-spacing:5.917499px;}
.wsf8{word-spacing:5.917784px;}
.wsd5{word-spacing:5.929754px;}
.ws4{word-spacing:5.977498px;}
.ws52{word-spacing:5.977560px;}
.ws75{word-spacing:6.156887px;}
.wsd9{word-spacing:6.207904px;}
.wsdb{word-spacing:6.216678px;}
.ws24{word-spacing:6.276299px;}
.ws56{word-spacing:6.276438px;}
.ws108{word-spacing:6.312319px;}
.ws72{word-spacing:6.395989px;}
.ws9f{word-spacing:6.455765px;}
.wsfc{word-spacing:6.515540px;}
.ws10a{word-spacing:6.551422px;}
.ws2{word-spacing:6.575259px;}
.ws122{word-spacing:6.599243px;}
.ws15{word-spacing:6.724799px;}
.ws89{word-spacing:6.754643px;}
.ws87{word-spacing:6.874194px;}
.wsb2{word-spacing:6.933970px;}
.ws85{word-spacing:6.993745px;}
.wsc3{word-spacing:7.173072px;}
.ws78{word-spacing:7.292623px;}
.ws9{word-spacing:7.370400px;}
.ws38{word-spacing:7.531498px;}
.wsab{word-spacing:7.591501px;}
.wse{word-spacing:7.693200px;}
.ws1e{word-spacing:7.710898px;}
.wsb1{word-spacing:7.770828px;}
.ws51{word-spacing:7.830604px;}
.ws57{word-spacing:7.890379px;}
.ws129{word-spacing:7.890399px;}
.wsdd{word-spacing:8.009930px;}
.wsc7{word-spacing:8.129482px;}
.ws73{word-spacing:8.189257px;}
.ws5f{word-spacing:8.249033px;}
.ws66{word-spacing:8.368584px;}
.wse6{word-spacing:8.428360px;}
.wsff{word-spacing:8.512067px;}
.ws1b{word-spacing:8.547898px;}
.ws105{word-spacing:8.559887px;}
.wsb7{word-spacing:8.667462px;}
.wsa1{word-spacing:8.727238px;}
.wsfb{word-spacing:8.906564px;}
.ws64{word-spacing:9.026116px;}
.ws44{word-spacing:9.264898px;}
.wsba{word-spacing:9.265218px;}
.wsa7{word-spacing:9.324994px;}
.ws11f{word-spacing:9.564120px;}
.ws11{word-spacing:9.576000px;}
.ws41{word-spacing:9.743698px;}
.ws2f{word-spacing:9.803098px;}
.ws60{word-spacing:9.803198px;}
.ws2d{word-spacing:9.898658px;}
.ws12{word-spacing:10.167600px;}
.ws2a{word-spacing:10.221898px;}
.ws123{word-spacing:10.233608px;}
.ws20{word-spacing:10.341298px;}
.ws114{word-spacing:10.424891px;}
.wsb{word-spacing:10.436999px;}
.ws7a{word-spacing:10.460730px;}
.wse4{word-spacing:10.520506px;}
.ws11c{word-spacing:10.568353px;}
.ws5c{word-spacing:10.580281px;}
.wsae{word-spacing:10.699832px;}
.ws13{word-spacing:10.759799px;}
.wsb9{word-spacing:10.819384px;}
.ws83{word-spacing:10.938935px;}
.ws82{word-spacing:10.998710px;}
.ws88{word-spacing:11.178037px;}
.wsaa{word-spacing:11.237813px;}
.ws128{word-spacing:11.237841px;}
.wsa5{word-spacing:11.297588px;}
.wsdf{word-spacing:11.417140px;}
.ws8b{word-spacing:11.476915px;}
.ws5e{word-spacing:11.536691px;}
.wsf9{word-spacing:11.656242px;}
.ws67{word-spacing:11.835569px;}
.wsd0{word-spacing:11.895344px;}
.wsb5{word-spacing:11.955120px;}
.wsf{word-spacing:11.997000px;}
.ws34{word-spacing:12.014698px;}
.ws63{word-spacing:12.014896px;}
.ws100{word-spacing:12.194253px;}
.ws62{word-spacing:12.492152px;}
.wsfe{word-spacing:12.493100px;}
.ws86{word-spacing:12.612652px;}
.wsa4{word-spacing:12.732203px;}
.wsd1{word-spacing:12.851754px;}
.ws37{word-spacing:12.911698px;}
.ws11e{word-spacing:12.959383px;}
.ws16{word-spacing:12.965602px;}
.ws8a{word-spacing:12.971305px;}
.ws10b{word-spacing:13.055024px;}
.ws104{word-spacing:13.389768px;}
.ws5d{word-spacing:13.628837px;}
.ws33{word-spacing:13.688698px;}
.ws65{word-spacing:13.748388px;}
.ws102{word-spacing:14.011436px;}
.ws0{word-spacing:14.346157px;}
.wse1{word-spacing:14.405920px;}
.wsfa{word-spacing:14.465695px;}
.ws11a{word-spacing:14.537462px;}
.ws12b{word-spacing:14.585283px;}
.wsd2{word-spacing:14.645022px;}
.wsa6{word-spacing:14.764573px;}
.ws36{word-spacing:14.824498px;}
.ws30{word-spacing:15.362098px;}
.ws4f{word-spacing:15.376304px;}
.ws71{word-spacing:15.601432px;}
.ws8e{word-spacing:15.720983px;}
.ws115{word-spacing:15.876439px;}
.ws8f{word-spacing:15.900310px;}
.wsa9{word-spacing:15.960085px;}
.ws32{word-spacing:16.199098px;}
.ws99{word-spacing:16.607984px;}
.ws9b{word-spacing:16.609424px;}
.ws97{word-spacing:16.612064px;}
.ws117{word-spacing:16.689389px;}
.ws121{word-spacing:16.785031px;}
.ws28{word-spacing:16.856698px;}
.wsd7{word-spacing:16.880672px;}
.wsde{word-spacing:17.036046px;}
.ws106{word-spacing:17.502340px;}
.wsc6{word-spacing:17.514251px;}
.wsad{word-spacing:17.633802px;}
.wsbc{word-spacing:17.693578px;}
.ws29{word-spacing:17.693698px;}
.ws58{word-spacing:17.932680px;}
.ws10d{word-spacing:17.932725px;}
.ws18{word-spacing:17.933098px;}
.ws8d{word-spacing:17.992456px;}
.ws2c{word-spacing:18.028055px;}
.wsc5{word-spacing:18.050561px;}
.ws7{word-spacing:18.076199px;}
.wsd8{word-spacing:18.108010px;}
.ws95{word-spacing:18.112007px;}
.ws42{word-spacing:18.410698px;}
.ws4a{word-spacing:18.470697px;}
.wse0{word-spacing:18.590212px;}
.wsbf{word-spacing:18.709763px;}
.ws43{word-spacing:19.008898px;}
.ws110{word-spacing:19.128240px;}
.wsac{word-spacing:19.367294px;}
.ws4d{word-spacing:19.427070px;}
.ws9e{word-spacing:19.607984px;}
.ws76{word-spacing:19.965050px;}
.ws10e{word-spacing:20.132473px;}
.ws49{word-spacing:20.264098px;}
.ws53{word-spacing:20.562806px;}
.ws3{word-spacing:20.861623px;}
.ws5a{word-spacing:20.861684px;}
.ws126{word-spacing:21.232346px;}
.ws120{word-spacing:21.471449px;}
.wsb3{word-spacing:21.820784px;}
.wsa3{word-spacing:22.116972px;}
.ws124{word-spacing:22.140938px;}
.ws92{word-spacing:23.073382px;}
.ws91{word-spacing:23.133157px;}
.ws55{word-spacing:23.252708px;}
.ws47{word-spacing:23.432097px;}
.ws46{word-spacing:23.491497px;}
.ws45{word-spacing:25.225497px;}
.ws27{word-spacing:25.823097px;}
.ws48{word-spacing:26.241297px;}
.ws4c{word-spacing:26.420815px;}
.wsa2{word-spacing:29.828024px;}
.ws127{word-spacing:30.892108px;}
.ws125{word-spacing:31.561596px;}
.ws94{word-spacing:32.993984px;}
.ws96{word-spacing:32.998064px;}
.ws4e{word-spacing:34.359584px;}
.ws93{word-spacing:38.002544px;}
.ws7e{word-spacing:59.775750px;}
.ws6f{word-spacing:89.567984px;}
.ws40{word-spacing:90.332829px;}
.wscc{word-spacing:97.640226px;}
.ws3e{word-spacing:102.240425px;}
.wsce{word-spacing:114.960722px;}
.wscd{word-spacing:115.008543px;}
.ws7f{word-spacing:118.642909px;}
.ws80{word-spacing:142.553209px;}
.wsf3{word-spacing:156.947209px;}
.ws3d{word-spacing:292.279275px;}
._1{margin-left:-15.923998px;}
._2{margin-left:-7.173599px;}
._0{margin-left:-5.738399px;}
._b{margin-left:-4.447198px;}
._6{margin-left:-2.958600px;}
._3{margin-left:-1.434600px;}
._9{width:1.990000px;}
._5{width:3.984552px;}
._7{width:8.732401px;}
._a{width:9.922199px;}
._8{width:11.943600px;}
._e{width:13.271400px;}
._f{width:15.422105px;}
._19{width:16.546209px;}
._21{width:18.351109px;}
._23{width:21.100787px;}
._20{width:22.744324px;}
._22{width:24.627547px;}
._1f{width:26.928573px;}
._2a{width:28.405436px;}
._4{width:29.888131px;}
._3f{width:32.087623px;}
._24{width:71.013591px;}
._25{width:72.448209px;}
._d{width:102.287964px;}
._c{width:114.195560px;}
._12{width:116.031244px;}
._27{width:126.389565px;}
._1a{width:130.502417px;}
._36{width:144.944239px;}
._11{width:146.212257px;}
._14{width:149.630657px;}
._28{width:154.173614px;}
._10{width:158.460811px;}
._32{width:168.902359px;}
._39{width:171.436851px;}
._29{width:172.536725px;}
._16{width:173.540957px;}
._37{width:179.422891px;}
._18{width:183.344462px;}
._2d{width:194.008174px;}
._26{width:196.447025px;}
._1c{width:197.451257px;}
._3c{width:199.316261px;}
._35{width:203.381012px;}
._3d{width:204.959092px;}
._2f{width:219.926939px;}
._2b{width:221.935405px;}
._1e{width:224.422058px;}
._3b{width:227.195671px;}
._3a{width:231.164780px;}
._3e{width:242.354801px;}
._2e{width:244.506728px;}
._31{width:249.766994px;}
._33{width:251.153791px;}
._34{width:255.075080px;}
._38{width:266.312921px;}
._2c{width:281.663334px;}
._1b{width:294.431715px;}
._30{width:295.531308px;}
._17{width:322.884691px;}
._13{width:349.425124px;}
._15{width:373.335424px;}
._1d{width:376.252463px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,255,0);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs5{font-size:38.256600px;}
.fsa{font-size:41.842800px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:47.820540px;}
.fs9{font-size:47.820600px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753340px;}
.fs0{font-size:143.461740px;}
.y0{bottom:0.000000px;}
.y57{bottom:32.862000px;}
.y56{bottom:112.098015px;}
.y30{bottom:113.332500px;}
.y2f{bottom:126.783000px;}
.yaf{bottom:131.265000px;}
.y55{bottom:131.266500px;}
.yf5{bottom:132.333000px;}
.y2e{bottom:140.232000px;}
.y137{bottom:140.449500px;}
.y54{bottom:149.199000px;}
.yf4{bottom:150.267000px;}
.y136{bottom:153.898500px;}
.y53{bottom:167.131500px;}
.y135{bottom:167.349000px;}
.yf3{bottom:168.199500px;}
.y2d{bottom:171.232500px;}
.ydb{bottom:172.380000px;}
.y134{bottom:181.015500px;}
.y52{bottom:185.064000px;}
.yf2{bottom:186.132000px;}
.y2c{bottom:189.165000px;}
.y133{bottom:194.464500px;}
.y51{bottom:202.996500px;}
.yf1{bottom:204.064500px;}
.y2b{bottom:207.097500px;}
.y132{bottom:207.915000px;}
.y50{bottom:220.929000px;}
.yda{bottom:221.244000px;}
.y131{bottom:221.581500px;}
.yf0{bottom:223.065000px;}
.y2a{bottom:225.030000px;}
.y130{bottom:235.030500px;}
.yd9{bottom:235.276500px;}
.yae{bottom:238.861500px;}
.y4f{bottom:238.863000px;}
.yef{bottom:240.997500px;}
.y29{bottom:242.962500px;}
.y12f{bottom:248.697000px;}
.yd8{bottom:249.309000px;}
.y4e{bottom:256.795500px;}
.yee{bottom:258.931500px;}
.y28{bottom:261.310500px;}
.y12e{bottom:262.147500px;}
.yd7{bottom:263.341500px;}
.yad{bottom:274.728000px;}
.y12d{bottom:275.814000px;}
.yed{bottom:276.864000px;}
.yd6{bottom:277.374000px;}
.y86{bottom:277.572000px;}
.y27{bottom:279.243000px;}
.y12c{bottom:289.263000px;}
.yd5{bottom:291.406500px;}
.y85{bottom:291.607500px;}
.yac{bottom:292.660500px;}
.yec{bottom:294.796500px;}
.y15e{bottom:295.264500px;}
.y4d{bottom:296.392500px;}
.y26{bottom:297.175500px;}
.y12b{bottom:302.929500px;}
.yd4{bottom:304.855500px;}
.y84{bottom:305.056500px;}
.y15d{bottom:308.713500px;}
.y4c{bottom:309.507000px;}
.yeb{bottom:312.729000px;}
.y25{bottom:315.108000px;}
.y12a{bottom:316.380000px;}
.yab{bottom:316.471500px;}
.y83{bottom:318.507000px;}
.y15c{bottom:322.164000px;}
.y4b{bottom:322.957500px;}
.yd3{bottom:324.667500px;}
.yea{bottom:330.661500px;}
.y82{bottom:331.956000px;}
.y24{bottom:333.040500px;}
.y15b{bottom:335.613000px;}
.y4a{bottom:336.406500px;}
.yd2{bottom:338.116500px;}
.y129{bottom:340.917000px;}
.y81{bottom:345.405000px;}
.yaa{bottom:347.334000px;}
.y15a{bottom:349.063500px;}
.ye9{bottom:349.662000px;}
.y49{bottom:349.857000px;}
.y23{bottom:350.974500px;}
.y80{bottom:358.855500px;}
.y159{bottom:362.512500px;}
.y48{bottom:363.306000px;}
.ya9{bottom:365.266500px;}
.ye8{bottom:367.596000px;}
.y22{bottom:368.907000px;}
.yd1{bottom:369.649500px;}
.y128{bottom:372.259500px;}
.y7f{bottom:372.304500px;}
.y158{bottom:375.961500px;}
.y47{bottom:376.755000px;}
.yd0{bottom:383.098500px;}
.ya8{bottom:383.199000px;}
.ye7{bottom:385.528500px;}
.y7e{bottom:385.755000px;}
.y21{bottom:386.839500px;}
.y157{bottom:389.412000px;}
.y127{bottom:390.192000px;}
.y46{bottom:390.205500px;}
.y7d{bottom:399.204000px;}
.ya7{bottom:401.131500px;}
.y156{bottom:402.861000px;}
.ye6{bottom:403.461000px;}
.y45{bottom:403.654500px;}
.y20{bottom:404.772000px;}
.y126{bottom:408.124500px;}
.y7c{bottom:412.653000px;}
.y155{bottom:416.310000px;}
.y44{bottom:417.103500px;}
.ya6{bottom:419.064000px;}
.ycf{bottom:419.749500px;}
.ye5{bottom:421.393500px;}
.y1f{bottom:422.704500px;}
.y125{bottom:426.057000px;}
.y7b{bottom:426.103500px;}
.y154{bottom:429.760500px;}
.y43{bottom:430.554000px;}
.ya5{bottom:436.996500px;}
.yce{bottom:437.682000px;}
.ye4{bottom:439.326000px;}
.y1e{bottom:440.637000px;}
.y153{bottom:443.209500px;}
.y42{bottom:444.003000px;}
.y79{bottom:445.681500px;}
.y7a{bottom:445.914000px;}
.y124{bottom:451.042500px;}
.ya4{bottom:454.930500px;}
.ycd{bottom:455.616000px;}
.y152{bottom:456.660000px;}
.ye3{bottom:457.258500px;}
.y41{bottom:457.453500px;}
.y1d{bottom:458.571000px;}
.y78{bottom:459.130500px;}
.y151{bottom:470.109000px;}
.ya3{bottom:472.863000px;}
.ycc{bottom:473.548500px;}
.y1c{bottom:476.503500px;}
.y40{bottom:478.710000px;}
.y123{bottom:482.385000px;}
.y150{bottom:483.558000px;}
.y77{bottom:488.923500px;}
.ya2{bottom:490.795500px;}
.ycb{bottom:491.481000px;}
.y1b{bottom:494.436000px;}
.y14f{bottom:497.008500px;}
.y122{bottom:500.317500px;}
.y76{bottom:502.374000px;}
.ye2{bottom:506.002500px;}
.ya1{bottom:509.062500px;}
.yca{bottom:509.413500px;}
.y14e{bottom:510.457500px;}
.y3f{bottom:511.248000px;}
.y121{bottom:518.251500px;}
.ye1{bottom:519.453000px;}
.y1a{bottom:519.562500px;}
.y14d{bottom:523.906500px;}
.y3e{bottom:524.697000px;}
.ya0{bottom:526.995000px;}
.yc9{bottom:527.346000px;}
.ye0{bottom:532.902000px;}
.y120{bottom:536.184000px;}
.y14c{bottom:537.357000px;}
.y75{bottom:539.299500px;}
.y9f{bottom:544.927500px;}
.yc8{bottom:545.370000px;}
.y14b{bottom:550.806000px;}
.y11f{bottom:554.508000px;}
.y19{bottom:555.259500px;}
.y74{bottom:557.232000px;}
.y3d{bottom:561.345000px;}
.y9e{bottom:562.861500px;}
.yc7{bottom:563.302500px;}
.y14a{bottom:564.255000px;}
.y18{bottom:570.204000px;}
.y11e{bottom:572.440500px;}
.y73{bottom:575.164500px;}
.y149{bottom:577.705500px;}
.y3c{bottom:579.277500px;}
.y9d{bottom:580.794000px;}
.yc6{bottom:581.235000px;}
.y17{bottom:585.562500px;}
.y11d{bottom:590.373000px;}
.y148{bottom:591.154500px;}
.y72{bottom:593.097000px;}
.y3b{bottom:597.210000px;}
.y9c{bottom:598.726500px;}
.yc5{bottom:599.167500px;}
.y16{bottom:600.505500px;}
.y147{bottom:604.605000px;}
.y11c{bottom:608.305500px;}
.y71{bottom:611.031000px;}
.y3a{bottom:615.142500px;}
.y15{bottom:615.450000px;}
.y9b{bottom:616.993500px;}
.yc4{bottom:617.190000px;}
.y146{bottom:618.054000px;}
.y11b{bottom:626.238000px;}
.y70{bottom:628.963500px;}
.y14{bottom:630.394500px;}
.y145{bottom:631.503000px;}
.y39{bottom:633.075000px;}
.y9a{bottom:634.926000px;}
.yc3{bottom:635.124000px;}
.y144{bottom:643.285500px;}
.y11a{bottom:644.170500px;}
.y143{bottom:644.953500px;}
.y13{bottom:645.337500px;}
.y38{bottom:651.007500px;}
.y6f{bottom:652.279500px;}
.y99{bottom:652.858500px;}
.yc2{bottom:653.056500px;}
.y142{bottom:658.402500px;}
.y12{bottom:660.282000px;}
.y119{bottom:662.104500px;}
.y37{bottom:668.941500px;}
.y98{bottom:670.792500px;}
.yc1{bottom:670.989000px;}
.y141{bottom:671.851500px;}
.y11{bottom:675.226500px;}
.y118{bottom:680.427000px;}
.y6e{bottom:681.942000px;}
.y140{bottom:685.302000px;}
.y36{bottom:686.874000px;}
.y97{bottom:688.725000px;}
.yc0{bottom:688.921500px;}
.y10{bottom:690.169500px;}
.y117{bottom:698.361000px;}
.y13f{bottom:698.751000px;}
.y6d{bottom:699.874500px;}
.y35{bottom:704.806500px;}
.yf{bottom:705.114000px;}
.y96{bottom:706.657500px;}
.ybf{bottom:706.854000px;}
.y13e{bottom:712.201500px;}
.y116{bottom:716.293500px;}
.y6c{bottom:717.807000px;}
.ye{bottom:720.058500px;}
.y34{bottom:722.739000px;}
.ybe{bottom:724.878000px;}
.y95{bottom:724.924500px;}
.y13d{bottom:725.650500px;}
.y115{bottom:732.141000px;}
.y114{bottom:734.226000px;}
.yd{bottom:735.001500px;}
.y6b{bottom:735.739500px;}
.y13c{bottom:739.099500px;}
.y33{bottom:740.979000px;}
.ybd{bottom:742.810500px;}
.y94{bottom:742.857000px;}
.yc{bottom:749.946000px;}
.y113{bottom:752.158500px;}
.y13b{bottom:752.550000px;}
.y6a{bottom:753.672000px;}
.y32{bottom:758.911500px;}
.ybc{bottom:760.743000px;}
.y93{bottom:760.789500px;}
.yb{bottom:764.890500px;}
.y13a{bottom:765.999000px;}
.y112{bottom:770.482500px;}
.y69{bottom:771.604500px;}
.y31{bottom:776.845500px;}
.ybb{bottom:778.675500px;}
.y92{bottom:778.722000px;}
.y139{bottom:779.448000px;}
.ya{bottom:779.833500px;}
.y111{bottom:788.415000px;}
.y68{bottom:789.538500px;}
.ydf{bottom:790.744500px;}
.y138{bottom:792.898500px;}
.y9{bottom:794.778000px;}
.yba{bottom:796.608000px;}
.y91{bottom:796.656000px;}
.yde{bottom:804.193500px;}
.y110{bottom:806.347500px;}
.y67{bottom:807.471000px;}
.yb9{bottom:814.540500px;}
.y90{bottom:814.588500px;}
.ydd{bottom:817.642500px;}
.y66{bottom:825.403500px;}
.ydc{bottom:831.093000px;}
.yb8{bottom:832.474500px;}
.y65{bottom:848.719500px;}
.yb7{bottom:850.407000px;}
.y8f{bottom:853.674000px;}
.y10f{bottom:859.996500px;}
.y8e{bottom:866.790000px;}
.yb6{bottom:868.339500px;}
.y64{bottom:872.518500px;}
.y10e{bottom:873.447000px;}
.y8{bottom:876.198000px;}
.y8d{bottom:880.240500px;}
.yb5{bottom:886.272000px;}
.y10d{bottom:886.896000px;}
.y8c{bottom:893.689500px;}
.y7{bottom:894.691500px;}
.y10c{bottom:900.345000px;}
.y63{bottom:902.181000px;}
.yb4{bottom:904.204500px;}
.y8b{bottom:907.138500px;}
.y6{bottom:913.185000px;}
.y10b{bottom:913.795500px;}
.y62{bottom:920.113500px;}
.yb3{bottom:922.138500px;}
.y10a{bottom:927.244500px;}
.y8a{bottom:928.396500px;}
.y5{bottom:931.677000px;}
.y61{bottom:938.046000px;}
.y109{bottom:940.693500px;}
.yb2{bottom:945.319500px;}
.y4{bottom:950.392500px;}
.y108{bottom:954.144000px;}
.y60{bottom:955.978500px;}
.y89{bottom:959.218500px;}
.y107{bottom:967.593000px;}
.y88{bottom:972.667500px;}
.y5f{bottom:973.912500px;}
.yb1{bottom:974.104500px;}
.y106{bottom:981.043500px;}
.y5e{bottom:991.845000px;}
.yb0{bottom:992.038500px;}
.y105{bottom:994.492500px;}
.y3{bottom:997.465500px;}
.y5d{bottom:1009.777500px;}
.y87{bottom:1009.971000px;}
.yfc{bottom:1014.154500px;}
.y104{bottom:1014.303000px;}
.y101{bottom:1014.387000px;}
.yf9{bottom:1020.795000px;}
.yfe{bottom:1021.027500px;}
.yfb{bottom:1027.603500px;}
.y103{bottom:1027.753500px;}
.y100{bottom:1027.836000px;}
.y5c{bottom:1027.903500px;}
.yf8{bottom:1034.244000px;}
.yfd{bottom:1034.478000px;}
.y2{bottom:1039.309500px;}
.yfa{bottom:1041.052500px;}
.y102{bottom:1041.202500px;}
.yff{bottom:1041.286500px;}
.y5b{bottom:1045.836000px;}
.y5a{bottom:1063.768500px;}
.yf7{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y59{bottom:1081.701000px;}
.yf6{bottom:1086.184500px;}
.y58{bottom:1099.635000px;}
.ha{height:24.675533px;}
.h7{height:32.900532px;}
.he{height:32.900573px;}
.h18{height:33.140573px;}
.h17{height:35.865450px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h19{height:39.572573px;}
.h3{height:40.826735px;}
.h14{height:41.117146px;}
.h13{height:41.123146px;}
.h4{height:41.125613px;}
.h15{height:41.425613px;}
.h8{height:41.547533px;}
.h9{height:41.553533px;}
.hc{height:43.804688px;}
.h2{height:45.238298px;}
.h16{height:49.465613px;}
.h11{height:49.473619px;}
.hb{height:49.898438px;}
.hd{height:50.477846px;}
.h10{height:50.483846px;}
.h12{height:58.970573px;}
.hf{height:87.626573px;}
.h1{height:98.701677px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:26.400015px;}
.x17{left:73.446000px;}
.x34{left:77.868000px;}
.x5{left:79.656000px;}
.x2{left:84.727500px;}
.x16{left:88.390500px;}
.x6{left:99.232500px;}
.x21{left:100.398750px;}
.x2f{left:101.869500px;}
.x31{left:104.416500px;}
.x30{left:110.023500px;}
.x9{left:127.297500px;}
.x2e{left:129.213000px;}
.x25{left:130.774500px;}
.x1{left:133.969500px;}
.x24{left:136.570500px;}
.x27{left:141.831000px;}
.x36{left:145.821000px;}
.x32{left:147.495000px;}
.x8{left:148.659000px;}
.x47{left:150.688500px;}
.x4{left:151.941000px;}
.x37{left:157.998000px;}
.x4a{left:196.570500px;}
.x18{left:203.430000px;}
.x39{left:213.289500px;}
.x22{left:217.611000px;}
.x2c{left:218.611500px;}
.x4c{left:219.897000px;}
.x2d{left:234.637500px;}
.x38{left:235.890000px;}
.x23{left:236.962500px;}
.x7{left:239.689500px;}
.x35{left:304.482000px;}
.x3b{left:311.703000px;}
.x3a{left:315.528000px;}
.x4b{left:333.265500px;}
.xb{left:334.623000px;}
.x26{left:351.804000px;}
.xc{left:354.199500px;}
.x3{left:370.018500px;}
.xf{left:372.633000px;}
.x3d{left:374.728500px;}
.x3c{left:397.240500px;}
.xa{left:399.502500px;}
.xe{left:403.626000px;}
.x48{left:417.574500px;}
.x49{left:427.848000px;}
.x33{left:433.888500px;}
.x19{left:467.967000px;}
.x3f{left:469.567500px;}
.x3e{left:470.901000px;}
.x4d{left:473.944500px;}
.x1a{left:482.910000px;}
.xd{left:494.656500px;}
.x2b{left:513.181500px;}
.x4e{left:523.201500px;}
.x4f{left:531.234000px;}
.x29{left:533.991000px;}
.x41{left:543.838500px;}
.x40{left:553.300500px;}
.x1d{left:562.606500px;}
.x1f{left:570.240000px;}
.x1e{left:573.229500px;}
.x1c{left:582.175500px;}
.x11{left:589.588500px;}
.x43{left:607.110000px;}
.x12{left:609.165000px;}
.x42{left:614.325000px;}
.x28{left:629.493000px;}
.x1b{left:633.474000px;}
.x2a{left:639.261000px;}
.x15{left:650.433000px;}
.x14{left:658.591500px;}
.x10{left:677.596500px;}
.x44{left:708.793500px;}
.x46{left:714.705000px;}
.x45{left:716.038500px;}
.x13{left:749.622000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v5{vertical-align:-4.058667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.930667pt;}
.v8{vertical-align:7.413333pt;}
.v1{vertical-align:14.997333pt;}
.v3{vertical-align:19.280000pt;}
.v7{vertical-align:23.173333pt;}
.v4{vertical-align:24.736000pt;}
.v6{vertical-align:48.645333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000125pt;}
.ls1b{letter-spacing:0.005459pt;}
.ls6{letter-spacing:0.040468pt;}
.ls19{letter-spacing:0.263072pt;}
.ls10{letter-spacing:0.412788pt;}
.ls14{letter-spacing:0.591698pt;}
.ls22{letter-spacing:0.595135pt;}
.ls24{letter-spacing:0.741348pt;}
.ls1c{letter-spacing:1.525885pt;}
.ls13{letter-spacing:1.741802pt;}
.lsf{letter-spacing:1.905799pt;}
.ls7{letter-spacing:2.098431pt;}
.ls0{letter-spacing:2.108267pt;}
.ls5{letter-spacing:2.108364pt;}
.ls9{letter-spacing:2.120663pt;}
.ls1f{letter-spacing:2.122364pt;}
.ls21{letter-spacing:2.124101pt;}
.ls1{letter-spacing:2.125360pt;}
.ls12{letter-spacing:2.125766pt;}
.lsb{letter-spacing:2.125802pt;}
.ls4{letter-spacing:2.125997pt;}
.lsc{letter-spacing:2.127698pt;}
.ls8{letter-spacing:2.127769pt;}
.ls20{letter-spacing:2.129434pt;}
.ls26{letter-spacing:2.590267pt;}
.ls17{letter-spacing:2.635446pt;}
.ls18{letter-spacing:2.655711pt;}
.lse{letter-spacing:2.656693pt;}
.ls1e{letter-spacing:15.037383pt;}
.lsa{letter-spacing:17.531733pt;}
.ls2{letter-spacing:17.535710pt;}
.ls15{letter-spacing:17.536473pt;}
.ls1a{letter-spacing:17.696473pt;}
.ls25{letter-spacing:28.544125pt;}
.ls11{letter-spacing:31.522245pt;}
.ls23{letter-spacing:33.880933pt;}
.ls16{letter-spacing:144.523139pt;}
.lsd{letter-spacing:161.802377pt;}
.ws1{word-spacing:-31.880387pt;}
.ws5{word-spacing:-13.283467pt;}
.wscf{word-spacing:-13.262246pt;}
.ws59{word-spacing:-10.626800pt;}
.ws19{word-spacing:-10.626787pt;}
.ws6e{word-spacing:-10.609830pt;}
.ws3c{word-spacing:-10.609734pt;}
.ws3b{word-spacing:-8.501467pt;}
.wsbe{word-spacing:-4.410111pt;}
.wsf4{word-spacing:-3.570605pt;}
.ws70{word-spacing:-3.528098pt;}
.wsed{word-spacing:-2.125360pt;}
.ws25{word-spacing:-0.531468pt;}
.wsd6{word-spacing:-0.510086pt;}
.ws26{word-spacing:-0.478134pt;}
.wse3{word-spacing:-0.425071pt;}
.ws17{word-spacing:-0.382400pt;}
.wsf7{word-spacing:-0.371937pt;}
.wsbb{word-spacing:-0.265669pt;}
.ws81{word-spacing:-0.212535pt;}
.ws1c{word-spacing:-0.159201pt;}
.ws6{word-spacing:-0.047821pt;}
.wsda{word-spacing:-0.042507pt;}
.ws7b{word-spacing:-0.017322pt;}
.wsc9{word-spacing:-0.014071pt;}
.ws6a{word-spacing:-0.008738pt;}
.wsea{word-spacing:-0.008525pt;}
.ws4b{word-spacing:0.000000pt;}
.wsf2{word-spacing:0.009850pt;}
.wse8{word-spacing:0.012386pt;}
.wse9{word-spacing:0.016002pt;}
.ws7d{word-spacing:0.017420pt;}
.wsa0{word-spacing:0.053134pt;}
.ws107{word-spacing:0.085014pt;}
.ws22{word-spacing:0.159199pt;}
.ws113{word-spacing:0.255043pt;}
.ws11b{word-spacing:0.340058pt;}
.ws50{word-spacing:0.425071pt;}
.ws112{word-spacing:0.552594pt;}
.ws54{word-spacing:0.584473pt;}
.wsb6{word-spacing:0.690740pt;}
.ws11d{word-spacing:0.935158pt;}
.wsb0{word-spacing:1.009543pt;}
.ws68{word-spacing:1.328347pt;}
.ws9a{word-spacing:1.532793pt;}
.ws98{word-spacing:1.536045pt;}
.ws9c{word-spacing:1.540882pt;}
.ws90{word-spacing:1.647150pt;}
.ws5b{word-spacing:1.859685pt;}
.ws103{word-spacing:1.870317pt;}
.ws8{word-spacing:1.960533pt;}
.wsd3{word-spacing:1.997838pt;}
.ws74{word-spacing:2.019087pt;}
.wsee{word-spacing:2.124809pt;}
.ws3a{word-spacing:2.125209pt;}
.wsf5{word-spacing:2.125355pt;}
.ws35{word-spacing:2.337866pt;}
.ws77{word-spacing:2.337890pt;}
.ws119{word-spacing:2.337896pt;}
.ws12a{word-spacing:2.380403pt;}
.ws1f{word-spacing:2.391199pt;}
.wsc0{word-spacing:2.444158pt;}
.wsdc{word-spacing:2.497292pt;}
.wsc2{word-spacing:2.550426pt;}
.ws8c{word-spacing:2.656693pt;}
.wse2{word-spacing:2.762961pt;}
.wsb8{word-spacing:2.816095pt;}
.ws2b{word-spacing:2.869066pt;}
.ws111{word-spacing:2.932997pt;}
.ws84{word-spacing:2.975497pt;}
.ws118{word-spacing:3.018011pt;}
.wse5{word-spacing:3.028630pt;}
.wsd4{word-spacing:3.188040pt;}
.wsb4{word-spacing:3.241166pt;}
.wsd{word-spacing:3.395200pt;}
.wsf6{word-spacing:3.400567pt;}
.ws109{word-spacing:3.485590pt;}
.wsc{word-spacing:3.490666pt;}
.ws14{word-spacing:3.491200pt;}
.wsbd{word-spacing:3.719371pt;}
.wsc8{word-spacing:3.825638pt;}
.ws10c{word-spacing:3.825648pt;}
.wsa8{word-spacing:3.931906pt;}
.ws10{word-spacing:4.064533pt;}
.ws9d{word-spacing:4.197575pt;}
.ws6d{word-spacing:4.207072pt;}
.ws7c{word-spacing:4.207104pt;}
.wsa{word-spacing:4.208000pt;}
.wsf1{word-spacing:4.213661pt;}
.ws6b{word-spacing:4.216727pt;}
.wsf0{word-spacing:4.217359pt;}
.wsec{word-spacing:4.221244pt;}
.wscb{word-spacing:4.224527pt;}
.ws6c{word-spacing:4.230772pt;}
.wseb{word-spacing:4.231041pt;}
.wsca{word-spacing:4.231177pt;}
.wsef{word-spacing:4.240438pt;}
.ws116{word-spacing:4.249738pt;}
.ws2e{word-spacing:4.250542pt;}
.ws69{word-spacing:4.250720pt;}
.ws3f{word-spacing:4.251075pt;}
.wse7{word-spacing:4.256962pt;}
.wsc4{word-spacing:4.410111pt;}
.ws61{word-spacing:4.463245pt;}
.wsc1{word-spacing:4.569513pt;}
.ws1d{word-spacing:4.675999pt;}
.ws10f{word-spacing:4.760806pt;}
.ws39{word-spacing:4.835466pt;}
.ws79{word-spacing:4.994583pt;}
.wsfd{word-spacing:5.047717pt;}
.ws31{word-spacing:5.047732pt;}
.ws101{word-spacing:5.100864pt;}
.ws21{word-spacing:5.101065pt;}
.wsaf{word-spacing:5.207119pt;}
.ws1a{word-spacing:5.207199pt;}
.ws23{word-spacing:5.259999pt;}
.wsf8{word-spacing:5.260253pt;}
.wsd5{word-spacing:5.270893pt;}
.ws4{word-spacing:5.313332pt;}
.ws52{word-spacing:5.313387pt;}
.ws75{word-spacing:5.472788pt;}
.wsd9{word-spacing:5.518137pt;}
.wsdb{word-spacing:5.525936pt;}
.ws24{word-spacing:5.578932pt;}
.ws56{word-spacing:5.579056pt;}
.ws108{word-spacing:5.610950pt;}
.ws72{word-spacing:5.685324pt;}
.ws9f{word-spacing:5.738458pt;}
.wsfc{word-spacing:5.791591pt;}
.ws10a{word-spacing:5.823486pt;}
.ws2{word-spacing:5.844675pt;}
.ws122{word-spacing:5.865994pt;}
.ws15{word-spacing:5.977600pt;}
.ws89{word-spacing:6.004127pt;}
.ws87{word-spacing:6.110395pt;}
.wsb2{word-spacing:6.163529pt;}
.ws85{word-spacing:6.216662pt;}
.wsc3{word-spacing:6.376064pt;}
.ws78{word-spacing:6.482332pt;}
.ws9{word-spacing:6.551466pt;}
.ws38{word-spacing:6.694665pt;}
.wsab{word-spacing:6.748001pt;}
.wse{word-spacing:6.838400pt;}
.ws1e{word-spacing:6.854132pt;}
.wsb1{word-spacing:6.907403pt;}
.ws51{word-spacing:6.960537pt;}
.ws57{word-spacing:7.013670pt;}
.ws129{word-spacing:7.013688pt;}
.wsdd{word-spacing:7.119938pt;}
.wsc7{word-spacing:7.226206pt;}
.ws73{word-spacing:7.279340pt;}
.ws5f{word-spacing:7.332474pt;}
.ws66{word-spacing:7.438741pt;}
.wse6{word-spacing:7.491875pt;}
.wsff{word-spacing:7.566282pt;}
.ws1b{word-spacing:7.598132pt;}
.ws105{word-spacing:7.608789pt;}
.wsb7{word-spacing:7.704411pt;}
.wsa1{word-spacing:7.757545pt;}
.wsfb{word-spacing:7.916946pt;}
.ws64{word-spacing:8.023214pt;}
.ws44{word-spacing:8.235465pt;}
.wsba{word-spacing:8.235749pt;}
.wsa7{word-spacing:8.288883pt;}
.ws11f{word-spacing:8.501440pt;}
.ws11{word-spacing:8.512000pt;}
.ws41{word-spacing:8.661065pt;}
.ws2f{word-spacing:8.713865pt;}
.ws60{word-spacing:8.713954pt;}
.ws2d{word-spacing:8.798807pt;}
.ws12{word-spacing:9.037866pt;}
.ws2a{word-spacing:9.086132pt;}
.ws123{word-spacing:9.096541pt;}
.ws20{word-spacing:9.192265pt;}
.ws114{word-spacing:9.266570pt;}
.wsb{word-spacing:9.277333pt;}
.ws7a{word-spacing:9.298427pt;}
.wse4{word-spacing:9.351561pt;}
.ws11c{word-spacing:9.394091pt;}
.ws5c{word-spacing:9.404694pt;}
.wsae{word-spacing:9.510962pt;}
.ws13{word-spacing:9.564266pt;}
.wsb9{word-spacing:9.617230pt;}
.ws83{word-spacing:9.723498pt;}
.ws82{word-spacing:9.776631pt;}
.ws88{word-spacing:9.936033pt;}
.wsaa{word-spacing:9.989167pt;}
.ws128{word-spacing:9.989192pt;}
.wsa5{word-spacing:10.042301pt;}
.wsdf{word-spacing:10.148569pt;}
.ws8b{word-spacing:10.201702pt;}
.ws5e{word-spacing:10.254836pt;}
.wsf9{word-spacing:10.361104pt;}
.ws67{word-spacing:10.520506pt;}
.wsd0{word-spacing:10.573639pt;}
.wsb5{word-spacing:10.626773pt;}
.wsf{word-spacing:10.664000pt;}
.ws34{word-spacing:10.679732pt;}
.ws63{word-spacing:10.679907pt;}
.ws100{word-spacing:10.839336pt;}
.ws62{word-spacing:11.104135pt;}
.wsfe{word-spacing:11.104978pt;}
.ws86{word-spacing:11.211246pt;}
.wsa4{word-spacing:11.317514pt;}
.wsd1{word-spacing:11.423781pt;}
.ws37{word-spacing:11.477065pt;}
.ws11e{word-spacing:11.519451pt;}
.ws16{word-spacing:11.524979pt;}
.ws8a{word-spacing:11.530049pt;}
.ws10b{word-spacing:11.604466pt;}
.ws104{word-spacing:11.902016pt;}
.ws5d{word-spacing:12.114522pt;}
.ws33{word-spacing:12.167731pt;}
.ws65{word-spacing:12.220789pt;}
.ws102{word-spacing:12.454610pt;}
.ws0{word-spacing:12.752139pt;}
.wse1{word-spacing:12.805262pt;}
.wsfa{word-spacing:12.858396pt;}
.ws11a{word-spacing:12.922189pt;}
.ws12b{word-spacing:12.964696pt;}
.wsd2{word-spacing:13.017797pt;}
.wsa6{word-spacing:13.124065pt;}
.ws36{word-spacing:13.177331pt;}
.ws30{word-spacing:13.655198pt;}
.ws4f{word-spacing:13.667826pt;}
.ws71{word-spacing:13.867939pt;}
.ws8e{word-spacing:13.974207pt;}
.ws115{word-spacing:14.112390pt;}
.ws8f{word-spacing:14.133609pt;}
.wsa9{word-spacing:14.186742pt;}
.ws32{word-spacing:14.399198pt;}
.ws99{word-spacing:14.762653pt;}
.ws9b{word-spacing:14.763933pt;}
.ws97{word-spacing:14.766279pt;}
.ws117{word-spacing:14.835013pt;}
.ws121{word-spacing:14.920027pt;}
.ws28{word-spacing:14.983731pt;}
.wsd7{word-spacing:15.005042pt;}
.wsde{word-spacing:15.143152pt;}
.ws106{word-spacing:15.557635pt;}
.wsc6{word-spacing:15.568223pt;}
.wsad{word-spacing:15.674491pt;}
.wsbc{word-spacing:15.727625pt;}
.ws29{word-spacing:15.727731pt;}
.ws58{word-spacing:15.940160pt;}
.ws10d{word-spacing:15.940200pt;}
.ws18{word-spacing:15.940531pt;}
.ws8d{word-spacing:15.993294pt;}
.ws2c{word-spacing:16.024938pt;}
.wsc5{word-spacing:16.044943pt;}
.ws7{word-spacing:16.067733pt;}
.wsd8{word-spacing:16.096009pt;}
.ws95{word-spacing:16.099562pt;}
.ws42{word-spacing:16.365065pt;}
.ws4a{word-spacing:16.418398pt;}
.wse0{word-spacing:16.524633pt;}
.wsbf{word-spacing:16.630900pt;}
.ws43{word-spacing:16.896798pt;}
.ws110{word-spacing:17.002880pt;}
.wsac{word-spacing:17.215373pt;}
.ws4d{word-spacing:17.268507pt;}
.ws9e{word-spacing:17.429319pt;}
.ws76{word-spacing:17.746711pt;}
.ws10e{word-spacing:17.895531pt;}
.ws49{word-spacing:18.012531pt;}
.ws53{word-spacing:18.278050pt;}
.ws3{word-spacing:18.543665pt;}
.ws5a{word-spacing:18.543719pt;}
.ws126{word-spacing:18.873197pt;}
.ws120{word-spacing:19.085733pt;}
.wsb3{word-spacing:19.396253pt;}
.wsa3{word-spacing:19.659531pt;}
.ws124{word-spacing:19.680834pt;}
.ws92{word-spacing:20.509673pt;}
.ws91{word-spacing:20.562806pt;}
.ws55{word-spacing:20.669074pt;}
.ws47{word-spacing:20.828531pt;}
.ws46{word-spacing:20.881331pt;}
.ws45{word-spacing:22.422664pt;}
.ws27{word-spacing:22.953864pt;}
.ws48{word-spacing:23.325597pt;}
.ws4c{word-spacing:23.485169pt;}
.wsa2{word-spacing:26.513799pt;}
.ws127{word-spacing:27.459651pt;}
.ws125{word-spacing:28.054752pt;}
.ws94{word-spacing:29.327986pt;}
.ws96{word-spacing:29.331613pt;}
.ws4e{word-spacing:30.541853pt;}
.ws93{word-spacing:33.780039pt;}
.ws7e{word-spacing:53.134000pt;}
.ws6f{word-spacing:79.615986pt;}
.ws40{word-spacing:80.295848pt;}
.wscc{word-spacing:86.791312pt;}
.ws3e{word-spacing:90.880378pt;}
.wsce{word-spacing:102.187309pt;}
.wscd{word-spacing:102.229816pt;}
.ws7f{word-spacing:105.460363pt;}
.ws80{word-spacing:126.713963pt;}
.wsf3{word-spacing:139.508630pt;}
.ws3d{word-spacing:259.803800pt;}
._1{margin-left:-14.154665pt;}
._2{margin-left:-6.376533pt;}
._0{margin-left:-5.100799pt;}
._b{margin-left:-3.953065pt;}
._6{margin-left:-2.629867pt;}
._3{margin-left:-1.275200pt;}
._9{width:1.768889pt;}
._5{width:3.541824pt;}
._7{width:7.762134pt;}
._a{width:8.819733pt;}
._8{width:10.616533pt;}
._e{width:11.796800pt;}
._f{width:13.708538pt;}
._19{width:14.707741pt;}
._21{width:16.312097pt;}
._23{width:18.756255pt;}
._20{width:20.217177pt;}
._22{width:21.891153pt;}
._1f{width:23.936509pt;}
._2a{width:25.249277pt;}
._4{width:26.567228pt;}
._3f{width:28.522331pt;}
._24{width:63.123192pt;}
._25{width:64.398408pt;}
._d{width:90.922635pt;}
._c{width:101.507165pt;}
._12{width:103.138883pt;}
._27{width:112.346280pt;}
._1a{width:116.002149pt;}
._36{width:128.839323pt;}
._11{width:129.966451pt;}
._14{width:133.005029pt;}
._28{width:137.043213pt;}
._10{width:140.854054pt;}
._32{width:150.135430pt;}
._39{width:152.388312pt;}
._29{width:153.365978pt;}
._16{width:154.258629pt;}
._37{width:159.487014pt;}
._18{width:162.972855pt;}
._2d{width:172.451710pt;}
._26{width:174.619578pt;}
._1c{width:175.512229pt;}
._3c{width:177.170010pt;}
._35{width:180.783122pt;}
._3d{width:182.185859pt;}
._2f{width:195.490613pt;}
._2b{width:197.275915pt;}
._1e{width:199.486274pt;}
._3b{width:201.951707pt;}
._3a{width:205.479805pt;}
._3e{width:215.426490pt;}
._2e{width:217.339314pt;}
._31{width:222.015106pt;}
._33{width:223.247814pt;}
._34{width:226.733405pt;}
._38{width:236.722597pt;}
._2c{width:250.367408pt;}
._1b{width:261.717080pt;}
._30{width:262.694496pt;}
._17{width:287.008614pt;}
._13{width:310.600110pt;}
._15{width:331.853710pt;}
._1d{width:334.446634pt;}
.fsb{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:34.005867pt;}
.fsa{font-size:37.193600pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.507147pt;}
.fs9{font-size:42.507200pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447413pt;}
.fs0{font-size:127.521547pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:29.210667pt;}
.y56{bottom:99.642680pt;}
.y30{bottom:100.740000pt;}
.y2f{bottom:112.696000pt;}
.yaf{bottom:116.680000pt;}
.y55{bottom:116.681333pt;}
.yf5{bottom:117.629333pt;}
.y2e{bottom:124.650667pt;}
.y137{bottom:124.844000pt;}
.y54{bottom:132.621333pt;}
.yf4{bottom:133.570667pt;}
.y136{bottom:136.798667pt;}
.y53{bottom:148.561333pt;}
.y135{bottom:148.754667pt;}
.yf3{bottom:149.510667pt;}
.y2d{bottom:152.206667pt;}
.ydb{bottom:153.226667pt;}
.y134{bottom:160.902667pt;}
.y52{bottom:164.501333pt;}
.yf2{bottom:165.450667pt;}
.y2c{bottom:168.146667pt;}
.y133{bottom:172.857333pt;}
.y51{bottom:180.441333pt;}
.yf1{bottom:181.390667pt;}
.y2b{bottom:184.086667pt;}
.y132{bottom:184.813333pt;}
.y50{bottom:196.381333pt;}
.yda{bottom:196.661333pt;}
.y131{bottom:196.961333pt;}
.yf0{bottom:198.280000pt;}
.y2a{bottom:200.026667pt;}
.y130{bottom:208.916000pt;}
.yd9{bottom:209.134667pt;}
.yae{bottom:212.321333pt;}
.y4f{bottom:212.322667pt;}
.yef{bottom:214.220000pt;}
.y29{bottom:215.966667pt;}
.y12f{bottom:221.064000pt;}
.yd8{bottom:221.608000pt;}
.y4e{bottom:228.262667pt;}
.yee{bottom:230.161333pt;}
.y28{bottom:232.276000pt;}
.y12e{bottom:233.020000pt;}
.yd7{bottom:234.081333pt;}
.yad{bottom:244.202667pt;}
.y12d{bottom:245.168000pt;}
.yed{bottom:246.101333pt;}
.yd6{bottom:246.554667pt;}
.y86{bottom:246.730667pt;}
.y27{bottom:248.216000pt;}
.y12c{bottom:257.122667pt;}
.yd5{bottom:259.028000pt;}
.y85{bottom:259.206667pt;}
.yac{bottom:260.142667pt;}
.yec{bottom:262.041333pt;}
.y15e{bottom:262.457333pt;}
.y4d{bottom:263.460000pt;}
.y26{bottom:264.156000pt;}
.y12b{bottom:269.270667pt;}
.yd4{bottom:270.982667pt;}
.y84{bottom:271.161333pt;}
.y15d{bottom:274.412000pt;}
.y4c{bottom:275.117333pt;}
.yeb{bottom:277.981333pt;}
.y25{bottom:280.096000pt;}
.y12a{bottom:281.226667pt;}
.yab{bottom:281.308000pt;}
.y83{bottom:283.117333pt;}
.y15c{bottom:286.368000pt;}
.y4b{bottom:287.073333pt;}
.yd3{bottom:288.593333pt;}
.yea{bottom:293.921333pt;}
.y82{bottom:295.072000pt;}
.y24{bottom:296.036000pt;}
.y15b{bottom:298.322667pt;}
.y4a{bottom:299.028000pt;}
.yd2{bottom:300.548000pt;}
.y129{bottom:303.037333pt;}
.y81{bottom:307.026667pt;}
.yaa{bottom:308.741333pt;}
.y15a{bottom:310.278667pt;}
.ye9{bottom:310.810667pt;}
.y49{bottom:310.984000pt;}
.y23{bottom:311.977333pt;}
.y80{bottom:318.982667pt;}
.y159{bottom:322.233333pt;}
.y48{bottom:322.938667pt;}
.ya9{bottom:324.681333pt;}
.ye8{bottom:326.752000pt;}
.y22{bottom:327.917333pt;}
.yd1{bottom:328.577333pt;}
.y128{bottom:330.897333pt;}
.y7f{bottom:330.937333pt;}
.y158{bottom:334.188000pt;}
.y47{bottom:334.893333pt;}
.yd0{bottom:340.532000pt;}
.ya8{bottom:340.621333pt;}
.ye7{bottom:342.692000pt;}
.y7e{bottom:342.893333pt;}
.y21{bottom:343.857333pt;}
.y157{bottom:346.144000pt;}
.y127{bottom:346.837333pt;}
.y46{bottom:346.849333pt;}
.y7d{bottom:354.848000pt;}
.ya7{bottom:356.561333pt;}
.y156{bottom:358.098667pt;}
.ye6{bottom:358.632000pt;}
.y45{bottom:358.804000pt;}
.y20{bottom:359.797333pt;}
.y126{bottom:362.777333pt;}
.y7c{bottom:366.802667pt;}
.y155{bottom:370.053333pt;}
.y44{bottom:370.758667pt;}
.ya6{bottom:372.501333pt;}
.ycf{bottom:373.110667pt;}
.ye5{bottom:374.572000pt;}
.y1f{bottom:375.737333pt;}
.y125{bottom:378.717333pt;}
.y7b{bottom:378.758667pt;}
.y154{bottom:382.009333pt;}
.y43{bottom:382.714667pt;}
.ya5{bottom:388.441333pt;}
.yce{bottom:389.050667pt;}
.ye4{bottom:390.512000pt;}
.y1e{bottom:391.677333pt;}
.y153{bottom:393.964000pt;}
.y42{bottom:394.669333pt;}
.y79{bottom:396.161333pt;}
.y7a{bottom:396.368000pt;}
.y124{bottom:400.926667pt;}
.ya4{bottom:404.382667pt;}
.ycd{bottom:404.992000pt;}
.y152{bottom:405.920000pt;}
.ye3{bottom:406.452000pt;}
.y41{bottom:406.625333pt;}
.y1d{bottom:407.618667pt;}
.y78{bottom:408.116000pt;}
.y151{bottom:417.874667pt;}
.ya3{bottom:420.322667pt;}
.ycc{bottom:420.932000pt;}
.y1c{bottom:423.558667pt;}
.y40{bottom:425.520000pt;}
.y123{bottom:428.786667pt;}
.y150{bottom:429.829333pt;}
.y77{bottom:434.598667pt;}
.ya2{bottom:436.262667pt;}
.ycb{bottom:436.872000pt;}
.y1b{bottom:439.498667pt;}
.y14f{bottom:441.785333pt;}
.y122{bottom:444.726667pt;}
.y76{bottom:446.554667pt;}
.ye2{bottom:449.780000pt;}
.ya1{bottom:452.500000pt;}
.yca{bottom:452.812000pt;}
.y14e{bottom:453.740000pt;}
.y3f{bottom:454.442667pt;}
.y121{bottom:460.668000pt;}
.ye1{bottom:461.736000pt;}
.y1a{bottom:461.833333pt;}
.y14d{bottom:465.694667pt;}
.y3e{bottom:466.397333pt;}
.ya0{bottom:468.440000pt;}
.yc9{bottom:468.752000pt;}
.ye0{bottom:473.690667pt;}
.y120{bottom:476.608000pt;}
.y14c{bottom:477.650667pt;}
.y75{bottom:479.377333pt;}
.y9f{bottom:484.380000pt;}
.yc8{bottom:484.773333pt;}
.y14b{bottom:489.605333pt;}
.y11f{bottom:492.896000pt;}
.y19{bottom:493.564000pt;}
.y74{bottom:495.317333pt;}
.y3d{bottom:498.973333pt;}
.y9e{bottom:500.321333pt;}
.yc7{bottom:500.713333pt;}
.y14a{bottom:501.560000pt;}
.y18{bottom:506.848000pt;}
.y11e{bottom:508.836000pt;}
.y73{bottom:511.257333pt;}
.y149{bottom:513.516000pt;}
.y3c{bottom:514.913333pt;}
.y9d{bottom:516.261333pt;}
.yc6{bottom:516.653333pt;}
.y17{bottom:520.500000pt;}
.y11d{bottom:524.776000pt;}
.y148{bottom:525.470667pt;}
.y72{bottom:527.197333pt;}
.y3b{bottom:530.853333pt;}
.y9c{bottom:532.201333pt;}
.yc5{bottom:532.593333pt;}
.y16{bottom:533.782667pt;}
.y147{bottom:537.426667pt;}
.y11c{bottom:540.716000pt;}
.y71{bottom:543.138667pt;}
.y3a{bottom:546.793333pt;}
.y15{bottom:547.066667pt;}
.y9b{bottom:548.438667pt;}
.yc4{bottom:548.613333pt;}
.y146{bottom:549.381333pt;}
.y11b{bottom:556.656000pt;}
.y70{bottom:559.078667pt;}
.y14{bottom:560.350667pt;}
.y145{bottom:561.336000pt;}
.y39{bottom:562.733333pt;}
.y9a{bottom:564.378667pt;}
.yc3{bottom:564.554667pt;}
.y144{bottom:571.809333pt;}
.y11a{bottom:572.596000pt;}
.y143{bottom:573.292000pt;}
.y13{bottom:573.633333pt;}
.y38{bottom:578.673333pt;}
.y6f{bottom:579.804000pt;}
.y99{bottom:580.318667pt;}
.yc2{bottom:580.494667pt;}
.y142{bottom:585.246667pt;}
.y12{bottom:586.917333pt;}
.y119{bottom:588.537333pt;}
.y37{bottom:594.614667pt;}
.y98{bottom:596.260000pt;}
.yc1{bottom:596.434667pt;}
.y141{bottom:597.201333pt;}
.y11{bottom:600.201333pt;}
.y118{bottom:604.824000pt;}
.y6e{bottom:606.170667pt;}
.y140{bottom:609.157333pt;}
.y36{bottom:610.554667pt;}
.y97{bottom:612.200000pt;}
.yc0{bottom:612.374667pt;}
.y10{bottom:613.484000pt;}
.y117{bottom:620.765333pt;}
.y13f{bottom:621.112000pt;}
.y6d{bottom:622.110667pt;}
.y35{bottom:626.494667pt;}
.yf{bottom:626.768000pt;}
.y96{bottom:628.140000pt;}
.ybf{bottom:628.314667pt;}
.y13e{bottom:633.068000pt;}
.y116{bottom:636.705333pt;}
.y6c{bottom:638.050667pt;}
.ye{bottom:640.052000pt;}
.y34{bottom:642.434667pt;}
.ybe{bottom:644.336000pt;}
.y95{bottom:644.377333pt;}
.y13d{bottom:645.022667pt;}
.y115{bottom:650.792000pt;}
.y114{bottom:652.645333pt;}
.yd{bottom:653.334667pt;}
.y6b{bottom:653.990667pt;}
.y13c{bottom:656.977333pt;}
.y33{bottom:658.648000pt;}
.ybd{bottom:660.276000pt;}
.y94{bottom:660.317333pt;}
.yc{bottom:666.618667pt;}
.y113{bottom:668.585333pt;}
.y13b{bottom:668.933333pt;}
.y6a{bottom:669.930667pt;}
.y32{bottom:674.588000pt;}
.ybc{bottom:676.216000pt;}
.y93{bottom:676.257333pt;}
.yb{bottom:679.902667pt;}
.y13a{bottom:680.888000pt;}
.y112{bottom:684.873333pt;}
.y69{bottom:685.870667pt;}
.y31{bottom:690.529333pt;}
.ybb{bottom:692.156000pt;}
.y92{bottom:692.197333pt;}
.y139{bottom:692.842667pt;}
.ya{bottom:693.185333pt;}
.y111{bottom:700.813333pt;}
.y68{bottom:701.812000pt;}
.ydf{bottom:702.884000pt;}
.y138{bottom:704.798667pt;}
.y9{bottom:706.469333pt;}
.yba{bottom:708.096000pt;}
.y91{bottom:708.138667pt;}
.yde{bottom:714.838667pt;}
.y110{bottom:716.753333pt;}
.y67{bottom:717.752000pt;}
.yb9{bottom:724.036000pt;}
.y90{bottom:724.078667pt;}
.ydd{bottom:726.793333pt;}
.y66{bottom:733.692000pt;}
.ydc{bottom:738.749333pt;}
.yb8{bottom:739.977333pt;}
.y65{bottom:754.417333pt;}
.yb7{bottom:755.917333pt;}
.y8f{bottom:758.821333pt;}
.y10f{bottom:764.441333pt;}
.y8e{bottom:770.480000pt;}
.yb6{bottom:771.857333pt;}
.y64{bottom:775.572000pt;}
.y10e{bottom:776.397333pt;}
.y8{bottom:778.842667pt;}
.y8d{bottom:782.436000pt;}
.yb5{bottom:787.797333pt;}
.y10d{bottom:788.352000pt;}
.y8c{bottom:794.390667pt;}
.y7{bottom:795.281333pt;}
.y10c{bottom:800.306667pt;}
.y63{bottom:801.938667pt;}
.yb4{bottom:803.737333pt;}
.y8b{bottom:806.345333pt;}
.y6{bottom:811.720000pt;}
.y10b{bottom:812.262667pt;}
.y62{bottom:817.878667pt;}
.yb3{bottom:819.678667pt;}
.y10a{bottom:824.217333pt;}
.y8a{bottom:825.241333pt;}
.y5{bottom:828.157333pt;}
.y61{bottom:833.818667pt;}
.y109{bottom:836.172000pt;}
.yb2{bottom:840.284000pt;}
.y4{bottom:844.793333pt;}
.y108{bottom:848.128000pt;}
.y60{bottom:849.758667pt;}
.y89{bottom:852.638667pt;}
.y107{bottom:860.082667pt;}
.y88{bottom:864.593333pt;}
.y5f{bottom:865.700000pt;}
.yb1{bottom:865.870667pt;}
.y106{bottom:872.038667pt;}
.y5e{bottom:881.640000pt;}
.yb0{bottom:881.812000pt;}
.y105{bottom:883.993333pt;}
.y3{bottom:886.636000pt;}
.y5d{bottom:897.580000pt;}
.y87{bottom:897.752000pt;}
.yfc{bottom:901.470667pt;}
.y104{bottom:901.602667pt;}
.y101{bottom:901.677333pt;}
.yf9{bottom:907.373333pt;}
.yfe{bottom:907.580000pt;}
.yfb{bottom:913.425333pt;}
.y103{bottom:913.558667pt;}
.y100{bottom:913.632000pt;}
.y5c{bottom:913.692000pt;}
.yf8{bottom:919.328000pt;}
.yfd{bottom:919.536000pt;}
.y2{bottom:923.830667pt;}
.yfa{bottom:925.380000pt;}
.y102{bottom:925.513333pt;}
.yff{bottom:925.588000pt;}
.y5b{bottom:929.632000pt;}
.y5a{bottom:945.572000pt;}
.yf7{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y59{bottom:961.512000pt;}
.yf6{bottom:965.497333pt;}
.y58{bottom:977.453333pt;}
.ha{height:21.933807pt;}
.h7{height:29.244917pt;}
.he{height:29.244954pt;}
.h18{height:29.458287pt;}
.h17{height:31.880400pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h19{height:35.175620pt;}
.h3{height:36.290431pt;}
.h14{height:36.548574pt;}
.h13{height:36.553907pt;}
.h4{height:36.556100pt;}
.h15{height:36.822767pt;}
.h8{height:36.931140pt;}
.h9{height:36.936474pt;}
.hc{height:38.937500pt;}
.h2{height:40.211820pt;}
.h16{height:43.969434pt;}
.h11{height:43.976550pt;}
.hb{height:44.354167pt;}
.hd{height:44.869197pt;}
.h10{height:44.874530pt;}
.h12{height:52.418287pt;}
.hf{height:77.890287pt;}
.h1{height:87.734824pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:23.466680pt;}
.x17{left:65.285333pt;}
.x34{left:69.216000pt;}
.x5{left:70.805333pt;}
.x2{left:75.313333pt;}
.x16{left:78.569333pt;}
.x6{left:88.206667pt;}
.x21{left:89.243333pt;}
.x2f{left:90.550667pt;}
.x31{left:92.814667pt;}
.x30{left:97.798667pt;}
.x9{left:113.153333pt;}
.x2e{left:114.856000pt;}
.x25{left:116.244000pt;}
.x1{left:119.084000pt;}
.x24{left:121.396000pt;}
.x27{left:126.072000pt;}
.x36{left:129.618667pt;}
.x32{left:131.106667pt;}
.x8{left:132.141333pt;}
.x47{left:133.945333pt;}
.x4{left:135.058667pt;}
.x37{left:140.442667pt;}
.x4a{left:174.729333pt;}
.x18{left:180.826667pt;}
.x39{left:189.590667pt;}
.x22{left:193.432000pt;}
.x2c{left:194.321333pt;}
.x4c{left:195.464000pt;}
.x2d{left:208.566667pt;}
.x38{left:209.680000pt;}
.x23{left:210.633333pt;}
.x7{left:213.057333pt;}
.x35{left:270.650667pt;}
.x3b{left:277.069333pt;}
.x3a{left:280.469333pt;}
.x4b{left:296.236000pt;}
.xb{left:297.442667pt;}
.x26{left:312.714667pt;}
.xc{left:314.844000pt;}
.x3{left:328.905333pt;}
.xf{left:331.229333pt;}
.x3d{left:333.092000pt;}
.x3c{left:353.102667pt;}
.xa{left:355.113333pt;}
.xe{left:358.778667pt;}
.x48{left:371.177333pt;}
.x49{left:380.309333pt;}
.x33{left:385.678667pt;}
.x19{left:415.970667pt;}
.x3f{left:417.393333pt;}
.x3e{left:418.578667pt;}
.x4d{left:421.284000pt;}
.x1a{left:429.253333pt;}
.xd{left:439.694667pt;}
.x2b{left:456.161333pt;}
.x4e{left:465.068000pt;}
.x4f{left:472.208000pt;}
.x29{left:474.658667pt;}
.x41{left:483.412000pt;}
.x40{left:491.822667pt;}
.x1d{left:500.094667pt;}
.x1f{left:506.880000pt;}
.x1e{left:509.537333pt;}
.x1c{left:517.489333pt;}
.x11{left:524.078667pt;}
.x43{left:539.653333pt;}
.x12{left:541.480000pt;}
.x42{left:546.066667pt;}
.x28{left:559.549333pt;}
.x1b{left:563.088000pt;}
.x2a{left:568.232000pt;}
.x15{left:578.162667pt;}
.x14{left:585.414667pt;}
.x10{left:602.308000pt;}
.x44{left:630.038667pt;}
.x46{left:635.293333pt;}
.x45{left:636.478667pt;}
.x13{left:666.330667pt;}
}




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