
    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_5056a34b92aa73330fb9106d.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_a76ea815a07c34f009afb7fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.698000;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_73051bc11c6d2581a1a44054.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.803000;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_a3a6f68729be31868fad5f8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_066f8b5d1b3e2491d567e032.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_09a57e6cf424c7f0b71d8c62.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_b26c60136c04b2e8b5156e33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727000;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_cbd42e67f5ded150d7660703.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_686a68bfcaf48d658ce12528.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.446000;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_88ee46f35c3129160e39d7a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_a30708c6c265a4b3a726eb4f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_b3181fedfa8698a1d395f88d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_43ede03ac4bb3fd82703dd36.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_39f28d7ad7c5749efbfcef41.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_998fa9d98ab49791c8856d14.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bcac4771b7d1ecbc4431f042.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c85eceb8043404b00f53a7be.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a956fa4e681a2dc9fd634054.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_72bedf6061516b28c8be4ffc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9205c097ea04b0b11ea51bc2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.745000;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:ff15;src:url('chunks/assets/font_8f51b9b7ea6d7788901066d6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.705000;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);}
.v5{vertical-align:-22.854000px;}
.v4{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.690000px;}
.v2{vertical-align:22.854000px;}
.v1{vertical-align:37.488000px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000538px;}
.ls27{letter-spacing:0.000557px;}
.ls19{letter-spacing:0.000564px;}
.ls26{letter-spacing:0.001002px;}
.ls21{letter-spacing:0.001120px;}
.ls10{letter-spacing:0.002338px;}
.lsb{letter-spacing:0.003254px;}
.lsa{letter-spacing:0.003269px;}
.lsd{letter-spacing:0.004200px;}
.ls3{letter-spacing:2.983842px;}
.ls1a{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.985935px;}
.ls7{letter-spacing:2.989409px;}
.ls23{letter-spacing:2.989559px;}
.ls14{letter-spacing:2.995409px;}
.ls1{letter-spacing:4.264672px;}
.ls1c{letter-spacing:7.842538px;}
.ls20{letter-spacing:8.874538px;}
.lsf{letter-spacing:12.036538px;}
.lse{letter-spacing:12.040200px;}
.ls11{letter-spacing:13.356538px;}
.lsc{letter-spacing:13.728538px;}
.ls4{letter-spacing:14.740672px;}
.ls17{letter-spacing:14.916538px;}
.ls25{letter-spacing:15.355559px;}
.ls12{letter-spacing:16.602538px;}
.ls29{letter-spacing:16.866538px;}
.ls28{letter-spacing:16.870200px;}
.ls16{letter-spacing:17.568538px;}
.ls9{letter-spacing:17.928538px;}
.ls18{letter-spacing:17.978525px;}
.ls2{letter-spacing:18.403842px;}
.ls1f{letter-spacing:18.906538px;}
.ls24{letter-spacing:19.189494px;}
.ls1b{letter-spacing:20.821120px;}
.ls1e{letter-spacing:22.874525px;}
.ls13{letter-spacing:23.064538px;}
.ls5{letter-spacing:25.105842px;}
.ls15{letter-spacing:26.791409px;}
.ls8{letter-spacing:28.224538px;}
.ls22{letter-spacing:108.229559px;}
.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;}
}
.ws22{word-spacing:-16.606328px;}
.ws81{word-spacing:-16.605662px;}
.ws3a{word-spacing:-15.278643px;}
.ws12b{word-spacing:-6.623136px;}
.ws98{word-spacing:-3.243062px;}
.ws97{word-spacing:-3.232384px;}
.ws74{word-spacing:-3.156152px;}
.wsc9{word-spacing:-3.096376px;}
.ws65{word-spacing:-3.036600px;}
.ws100{word-spacing:-2.917049px;}
.ws86{word-spacing:-2.875262px;}
.wsa7{word-spacing:-2.797498px;}
.wsa9{word-spacing:-2.677947px;}
.wsfe{word-spacing:-2.020415px;}
.wsca{word-spacing:-1.900864px;}
.ws102{word-spacing:-1.841088px;}
.wsc0{word-spacing:-1.666398px;}
.wscd{word-spacing:-1.661762px;}
.wscb{word-spacing:-1.601986px;}
.ws5c{word-spacing:-1.482435px;}
.ws12d{word-spacing:-1.422659px;}
.ws9c{word-spacing:-1.362884px;}
.ws51{word-spacing:-1.243332px;}
.ws21{word-spacing:-1.183903px;}
.ws92{word-spacing:-1.183557px;}
.ws23{word-spacing:-1.183306px;}
.ws8{word-spacing:-1.102818px;}
.wsd9{word-spacing:-0.884679px;}
.ws3d{word-spacing:-0.824903px;}
.wsf0{word-spacing:-0.765128px;}
.ws50{word-spacing:-0.645576px;}
.ws35{word-spacing:-0.585801px;}
.ws79{word-spacing:-0.466250px;}
.wsfc{word-spacing:-0.227147px;}
.ws54{word-spacing:-0.167372px;}
.ws8d{word-spacing:-0.107596px;}
.ws10d{word-spacing:-0.086077px;}
.ws70{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053796px;}
.wscc{word-spacing:-0.041843px;}
.ws26{word-spacing:0.000000px;}
.wse9{word-spacing:0.011955px;}
.ws8f{word-spacing:0.071731px;}
.ws2b{word-spacing:0.131506px;}
.ws106{word-spacing:0.191282px;}
.ws138{word-spacing:0.242093px;}
.ws9e{word-spacing:0.310833px;}
.ws95{word-spacing:0.490160px;}
.ws28{word-spacing:0.549936px;}
.wsd5{word-spacing:0.609711px;}
.ws2f{word-spacing:0.669487px;}
.ws69{word-spacing:0.729262px;}
.ws67{word-spacing:0.789038px;}
.wse8{word-spacing:0.814738px;}
.ws6b{word-spacing:0.848814px;}
.ws5a{word-spacing:0.908589px;}
.ws8a{word-spacing:1.028140px;}
.ws104{word-spacing:1.077892px;}
.wsff{word-spacing:1.087916px;}
.wsd1{word-spacing:1.147692px;}
.ws31{word-spacing:1.207467px;}
.ws9{word-spacing:1.264098px;}
.ws32{word-spacing:1.267243px;}
.wsfb{word-spacing:1.279198px;}
.wsf8{word-spacing:1.327018px;}
.ws77{word-spacing:1.328938px;}
.ws76{word-spacing:1.330738px;}
.wsa8{word-spacing:1.386794px;}
.ws66{word-spacing:1.446570px;}
.ws91{word-spacing:1.506345px;}
.ws109{word-spacing:1.566121px;}
.ws96{word-spacing:1.625896px;}
.ws34{word-spacing:1.685672px;}
.ws5d{word-spacing:1.697627px;}
.wsa3{word-spacing:1.745448px;}
.ws11b{word-spacing:1.805223px;}
.wse{word-spacing:1.856285px;}
.ws80{word-spacing:1.876954px;}
.ws4f{word-spacing:1.924774px;}
.ws1d{word-spacing:1.963662px;}
.wsd3{word-spacing:1.984550px;}
.wse7{word-spacing:2.044326px;}
.ws7{word-spacing:2.071038px;}
.ws9d{word-spacing:2.104101px;}
.ws128{word-spacing:2.163877px;}
.wseb{word-spacing:2.223652px;}
.wsd6{word-spacing:2.283428px;}
.ws7a{word-spacing:2.343204px;}
.ws30{word-spacing:2.462755px;}
.wsa4{word-spacing:2.522530px;}
.wsd{word-spacing:2.555256px;}
.ws2e{word-spacing:2.582306px;}
.wsce{word-spacing:2.642082px;}
.ws87{word-spacing:2.701857px;}
.ws59{word-spacing:2.821408px;}
.ws4{word-spacing:2.878086px;}
.ws78{word-spacing:2.881184px;}
.ws3e{word-spacing:2.940960px;}
.wsdc{word-spacing:3.000735px;}
.ws137{word-spacing:3.039610px;}
.wsed{word-spacing:3.060511px;}
.ws1a{word-spacing:3.092840px;}
.ws135{word-spacing:3.093408px;}
.ws1e{word-spacing:3.093431px;}
.ws4c{word-spacing:3.120286px;}
.ws9b{word-spacing:3.180062px;}
.wsc2{word-spacing:3.239838px;}
.ws2a{word-spacing:3.299613px;}
.ws94{word-spacing:3.302369px;}
.wsb0{word-spacing:3.329948px;}
.wsad{word-spacing:3.359389px;}
.ws7c{word-spacing:3.419164px;}
.ws7f{word-spacing:3.478940px;}
.ws7d{word-spacing:3.538716px;}
.wsb5{word-spacing:3.598491px;}
.wsfa{word-spacing:3.651115px;}
.wsc5{word-spacing:3.658267px;}
.ws41{word-spacing:3.718042px;}
.ws68{word-spacing:3.729997px;}
.ws16{word-spacing:3.738822px;}
.ws18{word-spacing:3.738983px;}
.ws17{word-spacing:3.759191px;}
.ws108{word-spacing:3.777818px;}
.ws3b{word-spacing:3.837594px;}
.ws5b{word-spacing:3.849549px;}
.ws1{word-spacing:3.873420px;}
.ws55{word-spacing:3.897369px;}
.wsbd{word-spacing:3.897892px;}
.ws14{word-spacing:3.953791px;}
.ws4a{word-spacing:3.957145px;}
.wsf{word-spacing:4.007802px;}
.ws63{word-spacing:4.016920px;}
.wsdb{word-spacing:4.076696px;}
.ws3{word-spacing:4.115394px;}
.ws61{word-spacing:4.136472px;}
.wsd0{word-spacing:4.196247px;}
.ws33{word-spacing:4.208202px;}
.ws36{word-spacing:4.315798px;}
.ws19{word-spacing:4.330578px;}
.ws49{word-spacing:4.375574px;}
.ws9a{word-spacing:4.435350px;}
.ws6c{word-spacing:4.495125px;}
.wsb{word-spacing:4.545762px;}
.ws10f{word-spacing:4.554901px;}
.wsd7{word-spacing:4.614676px;}
.ws4b{word-spacing:4.674452px;}
.wsc4{word-spacing:4.734228px;}
.ws127{word-spacing:4.746183px;}
.wsa{word-spacing:4.760731px;}
.ws85{word-spacing:4.794003px;}
.ws82{word-spacing:4.839098px;}
.ws52{word-spacing:4.853779px;}
.ws6d{word-spacing:4.913554px;}
.ws133{word-spacing:4.925509px;}
.ws130{word-spacing:4.973330px;}
.wsa5{word-spacing:5.033106px;}
.wsa6{word-spacing:5.092881px;}
.wsc6{word-spacing:5.152657px;}
.ws122{word-spacing:5.164612px;}
.wse1{word-spacing:5.170509px;}
.ws11f{word-spacing:5.212432px;}
.ws7b{word-spacing:5.224387px;}
.ws2c{word-spacing:5.245460px;}
.ws6a{word-spacing:5.272208px;}
.ws11e{word-spacing:5.284163px;}
.ws8c{word-spacing:5.331984px;}
.ws107{word-spacing:5.343939px;}
.ws7e{word-spacing:5.391759px;}
.ws0{word-spacing:5.412396px;}
.wsb7{word-spacing:5.451535px;}
.ws73{word-spacing:5.511310px;}
.ws24{word-spacing:5.511771px;}
.ws12e{word-spacing:5.571086px;}
.ws5e{word-spacing:5.630862px;}
.ws10c{word-spacing:5.642817px;}
.ws10{word-spacing:5.675478px;}
.ws43{word-spacing:5.690637px;}
.ws89{word-spacing:5.750413px;}
.ws27{word-spacing:5.810188px;}
.wsdd{word-spacing:5.822143px;}
.wsa1{word-spacing:5.869964px;}
.ws101{word-spacing:5.881919px;}
.ws93{word-spacing:5.929740px;}
.ws53{word-spacing:5.989515px;}
.ws13a{word-spacing:6.049291px;}
.ws111{word-spacing:6.061246px;}
.ws6e{word-spacing:6.109066px;}
.wsb8{word-spacing:6.121021px;}
.ws29{word-spacing:6.168842px;}
.wsab{word-spacing:6.228618px;}
.ws118{word-spacing:6.348169px;}
.wse3{word-spacing:6.407944px;}
.ws83{word-spacing:6.467720px;}
.wse0{word-spacing:6.479675px;}
.ws5f{word-spacing:6.587271px;}
.wsda{word-spacing:6.766598px;}
.wsa2{word-spacing:6.826374px;}
.ws11a{word-spacing:6.886149px;}
.wsf6{word-spacing:7.005700px;}
.wsba{word-spacing:7.065476px;}
.ws62{word-spacing:7.077431px;}
.ws15{word-spacing:7.181766px;}
.wsaf{word-spacing:7.185027px;}
.wsdf{word-spacing:7.185124px;}
.wsb1{word-spacing:7.244803px;}
.ws57{word-spacing:7.304578px;}
.ws10a{word-spacing:7.424130px;}
.ws139{word-spacing:7.483905px;}
.ws114{word-spacing:7.543681px;}
.wsc8{word-spacing:7.603456px;}
.ws84{word-spacing:7.663232px;}
.ws112{word-spacing:7.675187px;}
.ws13{word-spacing:7.719726px;}
.ws44{word-spacing:7.723008px;}
.wsea{word-spacing:7.842559px;}
.wsc7{word-spacing:7.962110px;}
.ws103{word-spacing:8.021886px;}
.wsb3{word-spacing:8.201212px;}
.ws6f{word-spacing:8.260988px;}
.wsf2{word-spacing:8.320764px;}
.wsbf{word-spacing:8.332719px;}
.wsc{word-spacing:8.365278px;}
.ws90{word-spacing:8.380539px;}
.ws99{word-spacing:8.500090px;}
.wsde{word-spacing:8.512045px;}
.wsb6{word-spacing:8.619642px;}
.ws2d{word-spacing:8.679417px;}
.ws4d{word-spacing:8.739193px;}
.ws121{word-spacing:8.751148px;}
.wsf7{word-spacing:8.918520px;}
.ws124{word-spacing:8.930475px;}
.wsc3{word-spacing:9.012198px;}
.ws46{word-spacing:9.081892px;}
.ws48{word-spacing:9.097846px;}
.ws60{word-spacing:9.109801px;}
.ws5{word-spacing:9.172218px;}
.ws8b{word-spacing:9.217398px;}
.ws3c{word-spacing:9.277173px;}
.ws11d{word-spacing:9.289128px;}
.ws88{word-spacing:9.301315px;}
.wsb9{word-spacing:9.336949px;}
.ws39{word-spacing:9.396724px;}
.ws37{word-spacing:9.417115px;}
.ws132{word-spacing:9.456500px;}
.ws40{word-spacing:9.516276px;}
.wsd2{word-spacing:9.635827px;}
.ws10e{word-spacing:9.695602px;}
.ws20{word-spacing:9.695752px;}
.wsb2{word-spacing:9.707557px;}
.ws6{word-spacing:9.709909px;}
.wsbe{word-spacing:9.713729px;}
.ws10b{word-spacing:9.716462px;}
.wsd4{word-spacing:9.755378px;}
.ws113{word-spacing:9.815154px;}
.ws120{word-spacing:9.892099px;}
.ws12c{word-spacing:9.893875px;}
.ws117{word-spacing:9.912738px;}
.wsa0{word-spacing:9.934705px;}
.ws9f{word-spacing:9.994480px;}
.ws115{word-spacing:10.006435px;}
.wsb4{word-spacing:10.066211px;}
.wsf9{word-spacing:10.114032px;}
.ws71{word-spacing:10.173807px;}
.wse5{word-spacing:10.233583px;}
.ws64{word-spacing:10.247676px;}
.ws75{word-spacing:10.293358px;}
.wsac{word-spacing:10.412910px;}
.ws105{word-spacing:10.532461px;}
.ws11c{word-spacing:10.711788px;}
.wscf{word-spacing:10.771563px;}
.wsd8{word-spacing:10.891114px;}
.wsfd{word-spacing:10.950890px;}
.ws131{word-spacing:10.962845px;}
.ws126{word-spacing:11.130217px;}
.ws4e{word-spacing:11.249768px;}
.wsef{word-spacing:11.309544px;}
.wsec{word-spacing:11.369319px;}
.wsae{word-spacing:11.488870px;}
.ws42{word-spacing:11.548646px;}
.wse2{word-spacing:11.560601px;}
.wsc1{word-spacing:11.567688px;}
.ws110{word-spacing:11.608422px;}
.wsf5{word-spacing:11.727973px;}
.ws38{word-spacing:11.739928px;}
.wsf3{word-spacing:11.787748px;}
.ws125{word-spacing:11.799703px;}
.ws8e{word-spacing:11.907300px;}
.wsf1{word-spacing:12.265953px;}
.wsee{word-spacing:12.385504px;}
.wse6{word-spacing:12.457235px;}
.wse4{word-spacing:12.564831px;}
.ws56{word-spacing:12.624607px;}
.ws12f{word-spacing:12.935440px;}
.wsbc{word-spacing:13.009329px;}
.wsbb{word-spacing:13.011439px;}
.ws116{word-spacing:13.043036px;}
.ws1c{word-spacing:13.099165px;}
.ws134{word-spacing:13.592971px;}
.ws123{word-spacing:13.820119px;}
.wsf4{word-spacing:13.891849px;}
.ws129{word-spacing:14.370054px;}
.ws47{word-spacing:14.979784px;}
.ws119{word-spacing:15.254733px;}
.ws12a{word-spacing:15.314509px;}
.ws45{word-spacing:15.700179px;}
.ws3f{word-spacing:16.133335px;}
.ws25{word-spacing:16.880364px;}
.ws136{word-spacing:19.878509px;}
.ws11{word-spacing:22.110156px;}
.wsaa{word-spacing:22.834279px;}
.ws12{word-spacing:27.082360px;}
.ws58{word-spacing:32.192873px;}
.ws1b{word-spacing:37.914082px;}
.ws1f{word-spacing:96.749510px;}
.ws72{word-spacing:96.750773px;}
._2e{margin-left:-2662.539601px;}
._30{margin-left:-2661.470458px;}
._3a{margin-left:-2659.811679px;}
._8c{margin-left:-2650.066436px;}
._17{margin-left:-2646.728948px;}
._1d{margin-left:-2645.669749px;}
._84{margin-left:-2626.829928px;}
._77{margin-left:-2615.771864px;}
._0{margin-left:-2577.255909px;}
._61{margin-left:-2570.919451px;}
._69{margin-left:-2550.663900px;}
._58{margin-left:-2512.745247px;}
._f{margin-left:-2497.954993px;}
._e{margin-left:-2496.277739px;}
._85{margin-left:-2490.470324px;}
._9{margin-left:-2480.482594px;}
._81{margin-left:-2372.111094px;}
._32{margin-left:-2347.014390px;}
._80{margin-left:-2298.695766px;}
._5b{margin-left:-2253.607114px;}
._50{margin-left:-2250.325434px;}
._91{margin-left:-2111.026731px;}
._34{margin-left:-2098.219914px;}
._45{margin-left:-2084.984940px;}
._65{margin-left:-2048.429728px;}
._4e{margin-left:-2047.076458px;}
._35{margin-left:-2035.593599px;}
._6e{margin-left:-2033.485809px;}
._3d{margin-left:-1965.536542px;}
._79{margin-left:-1948.622309px;}
._8d{margin-left:-1935.214756px;}
._56{margin-left:-1875.692836px;}
._51{margin-left:-1778.820460px;}
._83{margin-left:-1751.180002px;}
._4a{margin-left:-1744.653799px;}
._3e{margin-left:-1717.330333px;}
._4b{margin-left:-1697.472884px;}
._82{margin-left:-1688.286527px;}
._8b{margin-left:-1686.327018px;}
._28{margin-left:-1684.986199px;}
._7e{margin-left:-1682.244461px;}
._6a{margin-left:-1681.220998px;}
._6{margin-left:-1654.322694px;}
._1c{margin-left:-1630.944656px;}
._6d{margin-left:-1559.754635px;}
._76{margin-left:-1530.968345px;}
._6f{margin-left:-1525.678928px;}
._64{margin-left:-1523.103764px;}
._78{margin-left:-1510.084636px;}
._6c{margin-left:-1482.402612px;}
._7{margin-left:-1474.916353px;}
._43{margin-left:-1437.175497px;}
._72{margin-left:-1431.625602px;}
._71{margin-left:-1400.599722px;}
._8e{margin-left:-1366.330356px;}
._41{margin-left:-1347.255940px;}
._7a{margin-left:-1328.784323px;}
._74{margin-left:-1307.062791px;}
._24{margin-left:-1291.041027px;}
._7c{margin-left:-1269.159102px;}
._89{margin-left:-1212.067295px;}
._2a{margin-left:-1206.807062px;}
._31{margin-left:-1205.107205px;}
._87{margin-left:-1168.951320px;}
._52{margin-left:-1159.900515px;}
._88{margin-left:-1142.016401px;}
._73{margin-left:-1140.410815px;}
._2b{margin-left:-1096.369849px;}
._75{margin-left:-1089.802512px;}
._3f{margin-left:-1074.718689px;}
._33{margin-left:-1005.961797px;}
._15{margin-left:-953.613368px;}
._5f{margin-left:-910.507296px;}
._86{margin-left:-896.060176px;}
._66{margin-left:-885.722577px;}
._5a{margin-left:-882.127664px;}
._92{margin-left:-875.221639px;}
._5c{margin-left:-858.546190px;}
._1f{margin-left:-850.560661px;}
._4f{margin-left:-802.365500px;}
._7d{margin-left:-778.078696px;}
._46{margin-left:-774.011536px;}
._16{margin-left:-769.163817px;}
._36{margin-left:-765.589154px;}
._57{margin-left:-715.868511px;}
._47{margin-left:-694.340604px;}
._42{margin-left:-689.151136px;}
._4d{margin-left:-687.199432px;}
._63{margin-left:-678.074098px;}
._59{margin-left:-657.864568px;}
._3c{margin-left:-655.811265px;}
._7b{margin-left:-629.018660px;}
._14{margin-left:-627.237287px;}
._2f{margin-left:-623.257983px;}
._8f{margin-left:-605.542385px;}
._26{margin-left:-604.482376px;}
._5d{margin-left:-592.198071px;}
._67{margin-left:-575.654585px;}
._40{margin-left:-563.830353px;}
._62{margin-left:-560.542204px;}
._8a{margin-left:-526.447350px;}
._7f{margin-left:-522.520054px;}
._5e{margin-left:-517.837225px;}
._54{margin-left:-441.312502px;}
._70{margin-left:-342.529745px;}
._3{margin-left:-33.210990px;}
._90{margin-left:-31.573711px;}
._22{margin-left:-29.158596px;}
._4{margin-left:-7.746840px;}
._5{margin-left:-5.810130px;}
._1a{margin-left:-4.681428px;}
._12{margin-left:-3.201575px;}
._2{margin-left:-1.936710px;}
._c{width:1.452600px;}
._1{width:2.685540px;}
._53{width:3.711992px;}
._18{width:4.891387px;}
._4c{width:8.708044px;}
._19{width:14.730457px;}
._49{width:16.043752px;}
._1e{width:17.059937px;}
._8{width:18.452244px;}
._3b{width:20.024826px;}
._2c{width:21.844049px;}
._b{width:23.508367px;}
._a{width:25.392197px;}
._1b{width:26.612039px;}
._21{width:27.676103px;}
._11{width:28.780860px;}
._10{width:30.127105px;}
._25{width:31.728762px;}
._2d{width:32.780920px;}
._37{width:34.502418px;}
._48{width:35.686033px;}
._13{width:37.711157px;}
._27{width:38.920853px;}
._44{width:39.981999px;}
._39{width:42.046138px;}
._d{width:44.385197px;}
._20{width:45.785479px;}
._55{width:47.378063px;}
._6b{width:48.780615px;}
._23{width:50.510382px;}
._60{width:51.705894px;}
._38{width:52.779925px;}
._68{width:54.886169px;}
._93{width:71.713267px;}
._29{width:96.836850px;}
._9d{width:168.604186px;}
._94{width:170.944986px;}
._9a{width:174.629606px;}
._98{width:187.326029px;}
._9b{width:199.323072px;}
._95{width:201.152218px;}
._97{width:208.146010px;}
._99{width:261.783014px;}
._9c{width:271.574323px;}
._96{width:275.609203px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:29.886000px;}
.fsc{font-size:29.887800px;}
.fs10{font-size:35.865600px;}
.fs4{font-size:35.868000px;}
.fse{font-size:41.842800px;}
.fs7{font-size:41.844000px;}
.fs8{font-size:47.820000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:53.796000px;}
.fsf{font-size:53.798400px;}
.fsb{font-size:59.775600px;}
.fs6{font-size:59.778000px;}
.fs2{font-size:71.730000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:86.076000px;}
.fsd{font-size:86.077200px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:21.253800px;}
.y2d{bottom:42.853800px;}
.y2c{bottom:64.453800px;}
.y26{bottom:117.928500px;}
.y122{bottom:127.558500px;}
.y84{bottom:127.560000px;}
.y87{bottom:131.722500px;}
.y25{bottom:131.778000px;}
.yba{bottom:138.442500px;}
.y83{bottom:149.079000px;}
.y86{bottom:153.241500px;}
.y24{bottom:154.561500px;}
.yb9{bottom:159.961500px;}
.y102{bottom:162.352500px;}
.yd5{bottom:170.598000px;}
.y85{bottom:174.760500px;}
.y23{bottom:176.080500px;}
.ya4{bottom:176.893500px;}
.y82{bottom:180.634500px;}
.yb8{bottom:181.480500px;}
.y101{bottom:183.871500px;}
.yd4{bottom:192.117000px;}
.y5a{bottom:196.279500px;}
.y22{bottom:197.599500px;}
.ya3{bottom:198.414000px;}
.y81{bottom:202.153500px;}
.yb7{bottom:203.001000px;}
.ye0{bottom:212.760000px;}
.yd3{bottom:213.636000px;}
.y100{bottom:217.345500px;}
.y59{bottom:217.798500px;}
.ya2{bottom:219.933000px;}
.y80{bottom:223.672500px;}
.yb6{bottom:224.520000px;}
.y21{bottom:233.917500px;}
.ydf{bottom:234.279000px;}
.yd2{bottom:235.155000px;}
.yff{bottom:238.864500px;}
.y58{bottom:239.319000px;}
.ya1{bottom:241.452000px;}
.yb5{bottom:246.039000px;}
.y7f{bottom:255.228000px;}
.yde{bottom:255.798000px;}
.yd1{bottom:256.674000px;}
.y57{bottom:260.838000px;}
.ya0{bottom:262.971000px;}
.y143{bottom:266.194500px;}
.yb4{bottom:267.558000px;}
.y121{bottom:267.694500px;}
.yfe{bottom:272.340000px;}
.y7e{bottom:276.747000px;}
.ydd{bottom:277.317000px;}
.yd0{bottom:278.194500px;}
.y56{bottom:282.357000px;}
.y9f{bottom:284.490000px;}
.y142{bottom:287.713500px;}
.y20{bottom:288.664500px;}
.yb3{bottom:289.077000px;}
.y120{bottom:289.213500px;}
.yfd{bottom:293.859000px;}
.y7d{bottom:298.266000px;}
.ydc{bottom:298.836000px;}
.ycf{bottom:299.713500px;}
.y55{bottom:303.876000px;}
.y9e{bottom:306.009000px;}
.y1f{bottom:308.389500px;}
.y141{bottom:309.232500px;}
.yb2{bottom:310.596000px;}
.y11f{bottom:310.732500px;}
.ydb{bottom:320.356500px;}
.yce{bottom:321.232500px;}
.y54{bottom:325.395000px;}
.yfc{bottom:327.333000px;}
.y9d{bottom:327.529500px;}
.y7c{bottom:327.903000px;}
.y1e{bottom:328.116000px;}
.yb1{bottom:332.116500px;}
.y140{bottom:340.272000px;}
.yda{bottom:341.875500px;}
.ycd{bottom:342.751500px;}
.y11e{bottom:343.272000px;}
.y53{bottom:346.914000px;}
.yfb{bottom:348.852000px;}
.y9c{bottom:349.048500px;}
.y7b{bottom:349.422000px;}
.yb0{bottom:353.635500px;}
.y13f{bottom:361.791000px;}
.yd9{bottom:363.394500px;}
.ycc{bottom:364.270500px;}
.y11d{bottom:364.791000px;}
.y1d{bottom:365.532000px;}
.y52{bottom:368.434500px;}
.y9b{bottom:370.567500px;}
.y7a{bottom:370.941000px;}
.yaf{bottom:375.154500px;}
.yfa{bottom:382.327500px;}
.y13e{bottom:383.310000px;}
.yd8{bottom:384.913500px;}
.y1c{bottom:385.258500px;}
.ycb{bottom:385.789500px;}
.y51{bottom:389.953500px;}
.y16a{bottom:391.189500px;}
.y9a{bottom:392.086500px;}
.y79{bottom:392.460000px;}
.yae{bottom:396.673500px;}
.y11c{bottom:397.330500px;}
.yf9{bottom:403.846500px;}
.y13d{bottom:404.830500px;}
.y1b{bottom:404.985000px;}
.yd7{bottom:406.432500px;}
.yca{bottom:407.310000px;}
.y50{bottom:411.472500px;}
.y169{bottom:412.708500px;}
.y99{bottom:413.605500px;}
.y78{bottom:413.979000px;}
.yad{bottom:418.192500px;}
.y11b{bottom:418.849500px;}
.y1a{bottom:424.710000px;}
.yc9{bottom:428.829000px;}
.y16e{bottom:431.992500px;}
.y4f{bottom:432.991500px;}
.y168{bottom:434.227500px;}
.y98{bottom:435.124500px;}
.y77{bottom:435.499500px;}
.y13c{bottom:435.868500px;}
.y172{bottom:437.284500px;}
.yf8{bottom:437.320500px;}
.yac{bottom:439.711500px;}
.y11a{bottom:440.368500px;}
.yd6{bottom:442.750500px;}
.y19{bottom:444.436500px;}
.yc8{bottom:450.348000px;}
.y16d{bottom:453.511500px;}
.y4e{bottom:454.510500px;}
.y167{bottom:455.746500px;}
.y97{bottom:456.645000px;}
.y76{bottom:457.018500px;}
.y13b{bottom:457.387500px;}
.y171{bottom:458.805000px;}
.yf7{bottom:458.839500px;}
.yab{bottom:461.232000px;}
.y18{bottom:464.163000px;}
.yc7{bottom:471.867000px;}
.y119{bottom:472.908000px;}
.y16c{bottom:475.030500px;}
.y4d{bottom:476.029500px;}
.y166{bottom:477.265500px;}
.y96{bottom:478.164000px;}
.y75{bottom:478.537500px;}
.y13a{bottom:478.908000px;}
.y170{bottom:480.324000px;}
.yf6{bottom:480.358500px;}
.yaa{bottom:482.751000px;}
.y17{bottom:483.888000px;}
.yc6{bottom:493.386000px;}
.y118{bottom:494.427000px;}
.y16b{bottom:496.549500px;}
.y4c{bottom:497.548500px;}
.y95{bottom:499.683000px;}
.y74{bottom:500.056500px;}
.y139{bottom:500.427000px;}
.y16f{bottom:501.843000px;}
.yf5{bottom:501.879000px;}
.y16{bottom:503.614500px;}
.ya9{bottom:504.270000px;}
.yc5{bottom:514.905000px;}
.y117{bottom:515.946000px;}
.y4b{bottom:519.069000px;}
.y94{bottom:521.202000px;}
.y73{bottom:521.575500px;}
.y15{bottom:523.341000px;}
.ya8{bottom:525.789000px;}
.y138{bottom:531.466500px;}
.yf4{bottom:535.353000px;}
.yc4{bottom:536.425500px;}
.y4a{bottom:540.588000px;}
.y93{bottom:542.721000px;}
.y14{bottom:543.066000px;}
.ya7{bottom:547.308000px;}
.y116{bottom:548.485500px;}
.y137{bottom:552.985500px;}
.yf3{bottom:556.872000px;}
.y72{bottom:557.893500px;}
.yc3{bottom:557.944500px;}
.y49{bottom:562.107000px;}
.y13{bottom:562.792500px;}
.y92{bottom:564.240000px;}
.ya6{bottom:568.827000px;}
.y115{bottom:570.004500px;}
.yc2{bottom:579.463500px;}
.y12{bottom:582.519000px;}
.y48{bottom:583.626000px;}
.y136{bottom:584.023500px;}
.y91{bottom:585.759000px;}
.yf2{bottom:590.346000px;}
.ya5{bottom:590.347500px;}
.y157{bottom:597.972000px;}
.yc1{bottom:600.982500px;}
.y11{bottom:602.244000px;}
.y114{bottom:602.544000px;}
.y47{bottom:605.145000px;}
.y135{bottom:605.544000px;}
.yf1{bottom:611.865000px;}
.y71{bottom:611.866500px;}
.y90{bottom:619.234500px;}
.y156{bottom:619.491000px;}
.y10{bottom:621.970500px;}
.yc0{bottom:622.501500px;}
.y46{bottom:626.664000px;}
.y134{bottom:627.063000px;}
.y70{bottom:633.385500px;}
.y113{bottom:635.082000px;}
.y8f{bottom:640.753500px;}
.yf{bottom:641.697000px;}
.ybf{bottom:644.020500px;}
.yf0{bottom:645.340500px;}
.y45{bottom:648.184500px;}
.y133{bottom:648.582000px;}
.y155{bottom:652.966500px;}
.y6f{bottom:654.904500px;}
.ye{bottom:661.422000px;}
.y8e{bottom:662.272500px;}
.yef{bottom:666.859500px;}
.y112{bottom:667.621500px;}
.y44{bottom:669.703500px;}
.y132{bottom:670.101000px;}
.y154{bottom:674.485500px;}
.y6e{bottom:676.423500px;}
.ybe{bottom:676.465500px;}
.yd{bottom:681.148500px;}
.y111{bottom:689.140500px;}
.y43{bottom:691.222500px;}
.y8d{bottom:695.746500px;}
.y153{bottom:696.004500px;}
.y6d{bottom:697.942500px;}
.yee{bottom:700.333500px;}
.yc{bottom:700.875000px;}
.y131{bottom:701.140500px;}
.ybd{bottom:708.909000px;}
.y42{bottom:712.741500px;}
.y8c{bottom:717.267000px;}
.y152{bottom:717.523500px;}
.y6c{bottom:719.461500px;}
.yb{bottom:720.600000px;}
.y110{bottom:721.680000px;}
.yed{bottom:721.852500px;}
.y130{bottom:722.659500px;}
.ybc{bottom:730.428000px;}
.y41{bottom:734.260500px;}
.y8b{bottom:738.786000px;}
.y151{bottom:739.042500px;}
.ya{bottom:740.326500px;}
.y6b{bottom:740.982000px;}
.y10f{bottom:743.199000px;}
.y12f{bottom:753.699000px;}
.yec{bottom:755.328000px;}
.y40{bottom:755.779500px;}
.y9{bottom:760.051500px;}
.y150{bottom:760.561500px;}
.y6a{bottom:762.501000px;}
.ybb{bottom:766.746000px;}
.y8a{bottom:772.260000px;}
.y12e{bottom:775.218000px;}
.y10e{bottom:775.738500px;}
.yeb{bottom:776.847000px;}
.y3f{bottom:777.300000px;}
.y8{bottom:779.778000px;}
.y69{bottom:784.020000px;}
.y165{bottom:786.430500px;}
.y89{bottom:793.779000px;}
.y14f{bottom:794.037000px;}
.y12d{bottom:796.737000px;}
.y10d{bottom:797.257500px;}
.y3e{bottom:798.819000px;}
.y68{bottom:805.539000px;}
.y7{bottom:807.234000px;}
.y164{bottom:807.517500px;}
.yea{bottom:810.321000px;}
.y14e{bottom:815.556000px;}
.y3d{bottom:820.338000px;}
.y163{bottom:825.270000px;}
.y67{bottom:827.058000px;}
.y12c{bottom:827.776500px;}
.y10c{bottom:829.797000px;}
.y88{bottom:830.097000px;}
.ye9{bottom:831.840000px;}
.y14d{bottom:837.075000px;}
.y3c{bottom:841.857000px;}
.y66{bottom:848.577000px;}
.y12b{bottom:849.295500px;}
.y10b{bottom:851.316000px;}
.y162{bottom:852.886500px;}
.y3b{bottom:863.376000px;}
.ye8{bottom:865.314000px;}
.y65{bottom:870.097500px;}
.y14c{bottom:870.549000px;}
.y6{bottom:878.658000px;}
.y12a{bottom:880.335000px;}
.y161{bottom:880.503000px;}
.y10a{bottom:883.855500px;}
.y3a{bottom:884.895000px;}
.ye7{bottom:886.834500px;}
.y64{bottom:891.616500px;}
.y14b{bottom:892.068000px;}
.y109{bottom:905.374500px;}
.y39{bottom:906.415500px;}
.y160{bottom:908.119500px;}
.ye6{bottom:908.353500px;}
.y129{bottom:911.373000px;}
.y63{bottom:913.135500px;}
.y14a{bottom:913.588500px;}
.y5{bottom:915.082500px;}
.y38{bottom:927.934500px;}
.y128{bottom:932.893500px;}
.y62{bottom:934.654500px;}
.y149{bottom:935.107500px;}
.y15f{bottom:935.734500px;}
.y108{bottom:937.912500px;}
.y4{bottom:940.188000px;}
.ye5{bottom:941.827500px;}
.y37{bottom:949.453500px;}
.y61{bottom:956.173500px;}
.y107{bottom:959.433000px;}
.ye4{bottom:963.346500px;}
.y15e{bottom:963.351000px;}
.y127{bottom:963.931500px;}
.y3{bottom:965.293500px;}
.y148{bottom:968.581500px;}
.y36{bottom:970.972500px;}
.y60{bottom:977.692500px;}
.y126{bottom:985.452000px;}
.y147{bottom:990.100500px;}
.y15d{bottom:990.967500px;}
.y106{bottom:991.971000px;}
.y35{bottom:992.491500px;}
.ye3{bottom:996.820500px;}
.y5f{bottom:999.213000px;}
.y2{bottom:1012.815000px;}
.y105{bottom:1013.490000px;}
.y34{bottom:1014.010500px;}
.y125{bottom:1016.490000px;}
.ye2{bottom:1018.341000px;}
.y15c{bottom:1018.584000px;}
.y5e{bottom:1020.732000px;}
.y146{bottom:1023.574500px;}
.y33{bottom:1035.531000px;}
.y15b{bottom:1036.336500px;}
.y124{bottom:1038.009000px;}
.y5d{bottom:1042.251000px;}
.y145{bottom:1045.095000px;}
.y104{bottom:1046.029500px;}
.ye1{bottom:1051.815000px;}
.y1{bottom:1052.268000px;}
.y32{bottom:1057.050000px;}
.y5c{bottom:1063.770000px;}
.y15a{bottom:1064.551500px;}
.y144{bottom:1066.614000px;}
.y103{bottom:1067.548500px;}
.y123{bottom:1069.048500px;}
.y31{bottom:1078.569000px;}
.y5b{bottom:1085.289000px;}
.y159{bottom:1089.709500px;}
.y30{bottom:1100.088000px;}
.y158{bottom:1111.230000px;}
.y2f{bottom:1121.607000px;}
.y2b{bottom:1128.350700px;}
.y2a{bottom:1203.540000px;}
.y29{bottom:1217.940000px;}
.y28{bottom:1232.340000px;}
.y27{bottom:1246.740000px;}
.h4{height:20.232822px;}
.h17{height:25.249382px;}
.hc{height:25.251072px;}
.hd{height:34.968750px;}
.h6{height:37.657200px;}
.h7{height:40.347000px;}
.h15{height:40.348800px;}
.h13{height:42.799330px;}
.h10{height:44.831700px;}
.ha{height:44.833500px;}
.h16{height:48.103382px;}
.h8{height:48.105072px;}
.h12{height:49.892047px;}
.hb{height:49.892856px;}
.h14{height:49.898047px;}
.h5{height:53.797500px;}
.h9{height:60.253200px;}
.h11{height:60.254040px;}
.h2{height:72.509580px;}
.hf{height:75.093750px;}
.he{height:78.666750px;}
.h3{height:85.260180px;}
.h1{height:1263.750000px;}
.h0{height:1264.110000px;}
.w2{width:633.704550px;}
.w0{width:893.869500px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.xd{left:24.861000px;}
.x3{left:108.645000px;}
.xa{left:127.558500px;}
.xe{left:135.879750px;}
.x1{left:140.911500px;}
.x12{left:142.503000px;}
.xb{left:143.947500px;}
.x10{left:145.824000px;}
.xf{left:149.974500px;}
.x9{left:164.919000px;}
.x6{left:182.184000px;}
.x2{left:194.316000px;}
.x5{left:208.260000px;}
.x4{left:355.497000px;}
.x7{left:371.821500px;}
.x8{left:416.494500px;}
.xc{left:443.199000px;}
.x11{left:449.041500px;}
.x13{left:485.820000px;}
@media print{
.v5{vertical-align:-20.314667pt;}
.v4{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.280000pt;}
.v2{vertical-align:20.314667pt;}
.v1{vertical-align:33.322667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000479pt;}
.ls27{letter-spacing:0.000495pt;}
.ls19{letter-spacing:0.000501pt;}
.ls26{letter-spacing:0.000891pt;}
.ls21{letter-spacing:0.000996pt;}
.ls10{letter-spacing:0.002079pt;}
.lsb{letter-spacing:0.002893pt;}
.lsa{letter-spacing:0.002906pt;}
.lsd{letter-spacing:0.003733pt;}
.ls3{letter-spacing:2.652304pt;}
.ls1a{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.654164pt;}
.ls7{letter-spacing:2.657253pt;}
.ls23{letter-spacing:2.657386pt;}
.ls14{letter-spacing:2.662586pt;}
.ls1{letter-spacing:3.790819pt;}
.ls1c{letter-spacing:6.971145pt;}
.ls20{letter-spacing:7.888479pt;}
.lsf{letter-spacing:10.699145pt;}
.lse{letter-spacing:10.702400pt;}
.ls11{letter-spacing:11.872479pt;}
.lsc{letter-spacing:12.203145pt;}
.ls4{letter-spacing:13.102819pt;}
.ls17{letter-spacing:13.259145pt;}
.ls25{letter-spacing:13.649386pt;}
.ls12{letter-spacing:14.757812pt;}
.ls29{letter-spacing:14.992479pt;}
.ls28{letter-spacing:14.995733pt;}
.ls16{letter-spacing:15.616479pt;}
.ls9{letter-spacing:15.936479pt;}
.ls18{letter-spacing:15.980911pt;}
.ls2{letter-spacing:16.358971pt;}
.ls1f{letter-spacing:16.805812pt;}
.ls24{letter-spacing:17.057328pt;}
.ls1b{letter-spacing:18.507663pt;}
.ls1e{letter-spacing:20.332911pt;}
.ls13{letter-spacing:20.501812pt;}
.ls5{letter-spacing:22.316304pt;}
.ls15{letter-spacing:23.814586pt;}
.ls8{letter-spacing:25.088479pt;}
.ls22{letter-spacing:96.204052pt;}
.ws22{word-spacing:-14.761181pt;}
.ws81{word-spacing:-14.760588pt;}
.ws3a{word-spacing:-13.581016pt;}
.ws12b{word-spacing:-5.887232pt;}
.ws98{word-spacing:-2.882721pt;}
.ws97{word-spacing:-2.873231pt;}
.ws74{word-spacing:-2.805468pt;}
.wsc9{word-spacing:-2.752334pt;}
.ws65{word-spacing:-2.699200pt;}
.ws100{word-spacing:-2.592933pt;}
.ws86{word-spacing:-2.555788pt;}
.wsa7{word-spacing:-2.486665pt;}
.wsa9{word-spacing:-2.380397pt;}
.wsfe{word-spacing:-1.795925pt;}
.wsca{word-spacing:-1.689657pt;}
.ws102{word-spacing:-1.636523pt;}
.wsc0{word-spacing:-1.481242pt;}
.wscd{word-spacing:-1.477121pt;}
.wscb{word-spacing:-1.423988pt;}
.ws5c{word-spacing:-1.317720pt;}
.ws12d{word-spacing:-1.264586pt;}
.ws9c{word-spacing:-1.211452pt;}
.ws51{word-spacing:-1.105184pt;}
.ws21{word-spacing:-1.052358pt;}
.ws92{word-spacing:-1.052051pt;}
.ws23{word-spacing:-1.051827pt;}
.ws8{word-spacing:-0.980283pt;}
.wsd9{word-spacing:-0.786381pt;}
.ws3d{word-spacing:-0.733247pt;}
.wsf0{word-spacing:-0.680113pt;}
.ws50{word-spacing:-0.573846pt;}
.ws35{word-spacing:-0.520712pt;}
.ws79{word-spacing:-0.414444pt;}
.wsfc{word-spacing:-0.201909pt;}
.ws54{word-spacing:-0.148775pt;}
.ws8d{word-spacing:-0.095641pt;}
.ws10d{word-spacing:-0.076513pt;}
.ws70{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047819pt;}
.wscc{word-spacing:-0.037194pt;}
.ws26{word-spacing:0.000000pt;}
.wse9{word-spacing:0.010627pt;}
.ws8f{word-spacing:0.063761pt;}
.ws2b{word-spacing:0.116895pt;}
.ws106{word-spacing:0.170028pt;}
.ws138{word-spacing:0.215194pt;}
.ws9e{word-spacing:0.276296pt;}
.ws95{word-spacing:0.435698pt;}
.ws28{word-spacing:0.488832pt;}
.wsd5{word-spacing:0.541965pt;}
.ws2f{word-spacing:0.595099pt;}
.ws69{word-spacing:0.648233pt;}
.ws67{word-spacing:0.701367pt;}
.wse8{word-spacing:0.724212pt;}
.ws6b{word-spacing:0.754501pt;}
.ws5a{word-spacing:0.807635pt;}
.ws8a{word-spacing:0.913903pt;}
.ws104{word-spacing:0.958126pt;}
.wsff{word-spacing:0.967036pt;}
.wsd1{word-spacing:1.020170pt;}
.ws31{word-spacing:1.073304pt;}
.ws9{word-spacing:1.123643pt;}
.ws32{word-spacing:1.126438pt;}
.wsfb{word-spacing:1.137065pt;}
.wsf8{word-spacing:1.179572pt;}
.ws77{word-spacing:1.181279pt;}
.ws76{word-spacing:1.182879pt;}
.wsa8{word-spacing:1.232706pt;}
.ws66{word-spacing:1.285840pt;}
.ws91{word-spacing:1.338973pt;}
.ws109{word-spacing:1.392107pt;}
.ws96{word-spacing:1.445241pt;}
.ws34{word-spacing:1.498375pt;}
.ws5d{word-spacing:1.509002pt;}
.wsa3{word-spacing:1.551509pt;}
.ws11b{word-spacing:1.604643pt;}
.wse{word-spacing:1.650031pt;}
.ws80{word-spacing:1.668403pt;}
.ws4f{word-spacing:1.710911pt;}
.ws1d{word-spacing:1.745477pt;}
.wsd3{word-spacing:1.764044pt;}
.wse7{word-spacing:1.817178pt;}
.ws7{word-spacing:1.840923pt;}
.ws9d{word-spacing:1.870312pt;}
.ws128{word-spacing:1.923446pt;}
.wseb{word-spacing:1.976580pt;}
.wsd6{word-spacing:2.029714pt;}
.ws7a{word-spacing:2.082848pt;}
.ws30{word-spacing:2.189115pt;}
.wsa4{word-spacing:2.242249pt;}
.wsd{word-spacing:2.271339pt;}
.ws2e{word-spacing:2.295383pt;}
.wsce{word-spacing:2.348517pt;}
.ws87{word-spacing:2.401651pt;}
.ws59{word-spacing:2.507919pt;}
.ws4{word-spacing:2.558299pt;}
.ws78{word-spacing:2.561052pt;}
.ws3e{word-spacing:2.614186pt;}
.wsdc{word-spacing:2.667320pt;}
.ws137{word-spacing:2.701875pt;}
.wsed{word-spacing:2.720454pt;}
.ws1a{word-spacing:2.749191pt;}
.ws135{word-spacing:2.749696pt;}
.ws1e{word-spacing:2.749717pt;}
.ws4c{word-spacing:2.773588pt;}
.ws9b{word-spacing:2.826722pt;}
.wsc2{word-spacing:2.879856pt;}
.ws2a{word-spacing:2.932989pt;}
.ws94{word-spacing:2.935439pt;}
.wsb0{word-spacing:2.959953pt;}
.wsad{word-spacing:2.986123pt;}
.ws7c{word-spacing:3.039257pt;}
.ws7f{word-spacing:3.092391pt;}
.ws7d{word-spacing:3.145525pt;}
.wsb5{word-spacing:3.198659pt;}
.wsfa{word-spacing:3.245436pt;}
.wsc5{word-spacing:3.251793pt;}
.ws41{word-spacing:3.304927pt;}
.ws68{word-spacing:3.315553pt;}
.ws16{word-spacing:3.323397pt;}
.ws18{word-spacing:3.323541pt;}
.ws17{word-spacing:3.341503pt;}
.ws108{word-spacing:3.358060pt;}
.ws3b{word-spacing:3.411194pt;}
.ws5b{word-spacing:3.421821pt;}
.ws1{word-spacing:3.443040pt;}
.ws55{word-spacing:3.464328pt;}
.wsbd{word-spacing:3.464793pt;}
.ws14{word-spacing:3.514481pt;}
.ws4a{word-spacing:3.517462pt;}
.wsf{word-spacing:3.562491pt;}
.ws63{word-spacing:3.570596pt;}
.wsdb{word-spacing:3.623730pt;}
.ws3{word-spacing:3.658128pt;}
.ws61{word-spacing:3.676864pt;}
.wsd0{word-spacing:3.729997pt;}
.ws33{word-spacing:3.740624pt;}
.ws36{word-spacing:3.836265pt;}
.ws19{word-spacing:3.849403pt;}
.ws49{word-spacing:3.889399pt;}
.ws9a{word-spacing:3.942533pt;}
.ws6c{word-spacing:3.995667pt;}
.wsb{word-spacing:4.040677pt;}
.ws10f{word-spacing:4.048801pt;}
.wsd7{word-spacing:4.101935pt;}
.ws4b{word-spacing:4.155068pt;}
.wsc4{word-spacing:4.208202pt;}
.ws127{word-spacing:4.218829pt;}
.wsa{word-spacing:4.231761pt;}
.ws85{word-spacing:4.261336pt;}
.ws82{word-spacing:4.301421pt;}
.ws52{word-spacing:4.314470pt;}
.ws6d{word-spacing:4.367604pt;}
.ws133{word-spacing:4.378231pt;}
.ws130{word-spacing:4.420738pt;}
.wsa5{word-spacing:4.473872pt;}
.wsa6{word-spacing:4.527005pt;}
.wsc6{word-spacing:4.580139pt;}
.ws122{word-spacing:4.590766pt;}
.wse1{word-spacing:4.596008pt;}
.ws11f{word-spacing:4.633273pt;}
.ws7b{word-spacing:4.643900pt;}
.ws2c{word-spacing:4.662631pt;}
.ws6a{word-spacing:4.686407pt;}
.ws11e{word-spacing:4.697034pt;}
.ws8c{word-spacing:4.739541pt;}
.ws107{word-spacing:4.750168pt;}
.ws7e{word-spacing:4.792675pt;}
.ws0{word-spacing:4.811019pt;}
.wsb7{word-spacing:4.845809pt;}
.ws73{word-spacing:4.898943pt;}
.ws24{word-spacing:4.899352pt;}
.ws12e{word-spacing:4.952076pt;}
.ws5e{word-spacing:5.005210pt;}
.ws10c{word-spacing:5.015837pt;}
.ws10{word-spacing:5.044869pt;}
.ws43{word-spacing:5.058344pt;}
.ws89{word-spacing:5.111478pt;}
.ws27{word-spacing:5.164612pt;}
.wsdd{word-spacing:5.175239pt;}
.wsa1{word-spacing:5.217746pt;}
.ws101{word-spacing:5.228372pt;}
.ws93{word-spacing:5.270880pt;}
.ws53{word-spacing:5.324013pt;}
.ws13a{word-spacing:5.377147pt;}
.ws111{word-spacing:5.387774pt;}
.ws6e{word-spacing:5.430281pt;}
.wsb8{word-spacing:5.440908pt;}
.ws29{word-spacing:5.483415pt;}
.wsab{word-spacing:5.536549pt;}
.ws118{word-spacing:5.642817pt;}
.wse3{word-spacing:5.695951pt;}
.ws83{word-spacing:5.749084pt;}
.wse0{word-spacing:5.759711pt;}
.ws5f{word-spacing:5.855352pt;}
.wsda{word-spacing:6.014754pt;}
.wsa2{word-spacing:6.067888pt;}
.ws11a{word-spacing:6.121021pt;}
.wsf6{word-spacing:6.227289pt;}
.wsba{word-spacing:6.280423pt;}
.ws62{word-spacing:6.291050pt;}
.ws15{word-spacing:6.383792pt;}
.wsaf{word-spacing:6.386691pt;}
.wsdf{word-spacing:6.386777pt;}
.wsb1{word-spacing:6.439825pt;}
.ws57{word-spacing:6.492959pt;}
.ws10a{word-spacing:6.599226pt;}
.ws139{word-spacing:6.652360pt;}
.ws114{word-spacing:6.705494pt;}
.wsc8{word-spacing:6.758628pt;}
.ws84{word-spacing:6.811762pt;}
.ws112{word-spacing:6.822388pt;}
.ws13{word-spacing:6.861979pt;}
.ws44{word-spacing:6.864896pt;}
.wsea{word-spacing:6.971163pt;}
.wsc7{word-spacing:7.077431pt;}
.ws103{word-spacing:7.130565pt;}
.wsb3{word-spacing:7.289967pt;}
.ws6f{word-spacing:7.343100pt;}
.wsf2{word-spacing:7.396234pt;}
.wsbf{word-spacing:7.406861pt;}
.wsc{word-spacing:7.435803pt;}
.ws90{word-spacing:7.449368pt;}
.ws99{word-spacing:7.555636pt;}
.wsde{word-spacing:7.566263pt;}
.wsb6{word-spacing:7.661904pt;}
.ws2d{word-spacing:7.715037pt;}
.ws4d{word-spacing:7.768171pt;}
.ws121{word-spacing:7.778798pt;}
.wsf7{word-spacing:7.927573pt;}
.ws124{word-spacing:7.938200pt;}
.wsc3{word-spacing:8.010843pt;}
.ws46{word-spacing:8.072793pt;}
.ws48{word-spacing:8.086975pt;}
.ws60{word-spacing:8.097601pt;}
.ws5{word-spacing:8.153083pt;}
.ws8b{word-spacing:8.193242pt;}
.ws3c{word-spacing:8.246376pt;}
.ws11d{word-spacing:8.257003pt;}
.ws88{word-spacing:8.267836pt;}
.wsb9{word-spacing:8.299510pt;}
.ws39{word-spacing:8.352644pt;}
.ws37{word-spacing:8.370769pt;}
.ws132{word-spacing:8.405778pt;}
.ws40{word-spacing:8.458912pt;}
.wsd2{word-spacing:8.565179pt;}
.ws10e{word-spacing:8.618313pt;}
.ws20{word-spacing:8.618447pt;}
.wsb2{word-spacing:8.628940pt;}
.ws6{word-spacing:8.631030pt;}
.wsbe{word-spacing:8.634426pt;}
.ws10b{word-spacing:8.636855pt;}
.wsd4{word-spacing:8.671447pt;}
.ws113{word-spacing:8.724581pt;}
.ws120{word-spacing:8.792977pt;}
.ws12c{word-spacing:8.794556pt;}
.ws117{word-spacing:8.811323pt;}
.wsa0{word-spacing:8.830849pt;}
.ws9f{word-spacing:8.883983pt;}
.ws115{word-spacing:8.894609pt;}
.wsb4{word-spacing:8.947743pt;}
.wsf9{word-spacing:8.990250pt;}
.ws71{word-spacing:9.043384pt;}
.wse5{word-spacing:9.096518pt;}
.ws64{word-spacing:9.109046pt;}
.ws75{word-spacing:9.149652pt;}
.wsac{word-spacing:9.255920pt;}
.ws105{word-spacing:9.362187pt;}
.ws11c{word-spacing:9.521589pt;}
.wscf{word-spacing:9.574723pt;}
.wsd8{word-spacing:9.680991pt;}
.wsfd{word-spacing:9.734124pt;}
.ws131{word-spacing:9.744751pt;}
.ws126{word-spacing:9.893526pt;}
.ws4e{word-spacing:9.999794pt;}
.wsef{word-spacing:10.052928pt;}
.wsec{word-spacing:10.106061pt;}
.wsae{word-spacing:10.212329pt;}
.ws42{word-spacing:10.265463pt;}
.wse2{word-spacing:10.276090pt;}
.wsc1{word-spacing:10.282389pt;}
.ws110{word-spacing:10.318597pt;}
.wsf5{word-spacing:10.424865pt;}
.ws38{word-spacing:10.435491pt;}
.wsf3{word-spacing:10.477999pt;}
.ws125{word-spacing:10.488625pt;}
.ws8e{word-spacing:10.584266pt;}
.wsf1{word-spacing:10.903069pt;}
.wsee{word-spacing:11.009337pt;}
.wse6{word-spacing:11.073098pt;}
.wse4{word-spacing:11.168739pt;}
.ws56{word-spacing:11.221873pt;}
.ws12f{word-spacing:11.498169pt;}
.wsbc{word-spacing:11.563848pt;}
.wsbb{word-spacing:11.565724pt;}
.ws116{word-spacing:11.593810pt;}
.ws1c{word-spacing:11.643702pt;}
.ws134{word-spacing:12.082641pt;}
.ws123{word-spacing:12.284550pt;}
.wsf4{word-spacing:12.348311pt;}
.ws129{word-spacing:12.773382pt;}
.ws47{word-spacing:13.315364pt;}
.ws119{word-spacing:13.559763pt;}
.ws12a{word-spacing:13.612897pt;}
.ws45{word-spacing:13.955714pt;}
.ws3f{word-spacing:14.340742pt;}
.ws25{word-spacing:15.004768pt;}
.ws136{word-spacing:17.669786pt;}
.ws11{word-spacing:19.653472pt;}
.wsaa{word-spacing:20.297137pt;}
.ws12{word-spacing:24.073209pt;}
.ws58{word-spacing:28.615887pt;}
.ws1b{word-spacing:33.701407pt;}
.ws1f{word-spacing:85.999565pt;}
.ws72{word-spacing:86.000687pt;}
._2e{margin-left:-2366.701868pt;}
._30{margin-left:-2365.751518pt;}
._3a{margin-left:-2364.277048pt;}
._8c{margin-left:-2355.614610pt;}
._17{margin-left:-2352.647954pt;}
._1d{margin-left:-2351.706444pt;}
._84{margin-left:-2334.959936pt;}
._77{margin-left:-2325.130546pt;}
._0{margin-left:-2290.894141pt;}
._61{margin-left:-2285.261734pt;}
._69{margin-left:-2267.256800pt;}
._58{margin-left:-2233.551331pt;}
._f{margin-left:-2220.404438pt;}
._e{margin-left:-2218.913546pt;}
._85{margin-left:-2213.751399pt;}
._9{margin-left:-2204.873417pt;}
._81{margin-left:-2108.543195pt;}
._32{margin-left:-2086.235013pt;}
._80{margin-left:-2043.285126pt;}
._5b{margin-left:-2003.206324pt;}
._50{margin-left:-2000.289274pt;}
._91{margin-left:-1876.468206pt;}
._34{margin-left:-1865.084368pt;}
._45{margin-left:-1853.319947pt;}
._65{margin-left:-1820.826425pt;}
._4e{margin-left:-1819.623518pt;}
._35{margin-left:-1809.416532pt;}
._6e{margin-left:-1807.542941pt;}
._3d{margin-left:-1747.143593pt;}
._79{margin-left:-1732.108719pt;}
._8d{margin-left:-1720.190894pt;}
._56{margin-left:-1667.282521pt;}
._51{margin-left:-1581.173742pt;}
._83{margin-left:-1556.604446pt;}
._4a{margin-left:-1550.803377pt;}
._3e{margin-left:-1526.515852pt;}
._4b{margin-left:-1508.864785pt;}
._82{margin-left:-1500.699135pt;}
._8b{margin-left:-1498.957349pt;}
._28{margin-left:-1497.765510pt;}
._7e{margin-left:-1495.328410pt;}
._6a{margin-left:-1494.418665pt;}
._6{margin-left:-1470.509061pt;}
._1c{margin-left:-1449.728583pt;}
._6d{margin-left:-1386.448564pt;}
._76{margin-left:-1360.860751pt;}
._6f{margin-left:-1356.159047pt;}
._64{margin-left:-1353.870013pt;}
._78{margin-left:-1342.297454pt;}
._6c{margin-left:-1317.691210pt;}
._7{margin-left:-1311.036758pt;}
._43{margin-left:-1277.489331pt;}
._72{margin-left:-1272.556091pt;}
._71{margin-left:-1244.977531pt;}
._8e{margin-left:-1214.515872pt;}
._41{margin-left:-1197.560836pt;}
._7a{margin-left:-1181.141620pt;}
._74{margin-left:-1161.833592pt;}
._24{margin-left:-1147.592024pt;}
._7c{margin-left:-1128.141424pt;}
._89{margin-left:-1077.393151pt;}
._2a{margin-left:-1072.717388pt;}
._31{margin-left:-1071.206405pt;}
._87{margin-left:-1039.067840pt;}
._52{margin-left:-1031.022680pt;}
._88{margin-left:-1015.125690pt;}
._73{margin-left:-1013.698502pt;}
._2b{margin-left:-974.550977pt;}
._75{margin-left:-968.713344pt;}
._3f{margin-left:-955.305501pt;}
._33{margin-left:-894.188264pt;}
._15{margin-left:-847.656327pt;}
._5f{margin-left:-809.339819pt;}
._86{margin-left:-796.497934pt;}
._66{margin-left:-787.308958pt;}
._5a{margin-left:-784.113479pt;}
._92{margin-left:-777.974791pt;}
._5c{margin-left:-763.152169pt;}
._1f{margin-left:-756.053921pt;}
._4f{margin-left:-713.213778pt;}
._7d{margin-left:-691.625508pt;}
._46{margin-left:-688.010254pt;}
._16{margin-left:-683.701171pt;}
._36{margin-left:-680.523692pt;}
._57{margin-left:-636.327566pt;}
._47{margin-left:-617.191648pt;}
._42{margin-left:-612.578788pt;}
._4d{margin-left:-610.843940pt;}
._63{margin-left:-602.732532pt;}
._59{margin-left:-584.768505pt;}
._3c{margin-left:-582.943346pt;}
._7b{margin-left:-559.127698pt;}
._14{margin-left:-557.544255pt;}
._2f{margin-left:-554.007096pt;}
._8f{margin-left:-538.259898pt;}
._26{margin-left:-537.317667pt;}
._5d{margin-left:-526.398285pt;}
._67{margin-left:-511.692964pt;}
._40{margin-left:-501.182536pt;}
._62{margin-left:-498.259737pt;}
._8a{margin-left:-467.953200pt;}
._7f{margin-left:-464.462270pt;}
._5e{margin-left:-460.299755pt;}
._54{margin-left:-392.277779pt;}
._70{margin-left:-304.470884pt;}
._3{margin-left:-29.520880pt;}
._90{margin-left:-28.065521pt;}
._22{margin-left:-25.918752pt;}
._4{margin-left:-6.886080pt;}
._5{margin-left:-5.164560pt;}
._1a{margin-left:-4.161270pt;}
._12{margin-left:-2.845845pt;}
._2{margin-left:-1.721520pt;}
._c{width:1.291200pt;}
._1{width:2.387147pt;}
._53{width:3.299548pt;}
._18{width:4.347900pt;}
._4c{width:7.740483pt;}
._19{width:13.093739pt;}
._49{width:14.261113pt;}
._1e{width:15.164388pt;}
._8{width:16.401994pt;}
._3b{width:17.799845pt;}
._2c{width:19.416933pt;}
._b{width:20.896326pt;}
._a{width:22.570842pt;}
._1b{width:23.655146pt;}
._21{width:24.600980pt;}
._11{width:25.582987pt;}
._10{width:26.779649pt;}
._25{width:28.203344pt;}
._2d{width:29.138595pt;}
._37{width:30.668816pt;}
._48{width:31.720918pt;}
._13{width:33.521028pt;}
._27{width:34.596314pt;}
._44{width:35.539554pt;}
._39{width:37.374345pt;}
._d{width:39.453508pt;}
._20{width:40.698203pt;}
._55{width:42.113834pt;}
._6b{width:43.360546pt;}
._23{width:44.898117pt;}
._60{width:45.960795pt;}
._38{width:46.915489pt;}
._68{width:48.787706pt;}
._93{width:63.745126pt;}
._29{width:86.077200pt;}
._9d{width:149.870387pt;}
._94{width:151.951099pt;}
._9a{width:155.226317pt;}
._98{width:166.512026pt;}
._9b{width:177.176064pt;}
._95{width:178.801971pt;}
._97{width:185.018675pt;}
._99{width:232.696013pt;}
._9c{width:241.399398pt;}
._96{width:244.985958pt;}
.fs1{font-size:26.565333pt;}
.fsc{font-size:26.566933pt;}
.fs10{font-size:31.880533pt;}
.fs4{font-size:31.882667pt;}
.fse{font-size:37.193600pt;}
.fs7{font-size:37.194667pt;}
.fs8{font-size:42.506667pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:47.818667pt;}
.fsf{font-size:47.820800pt;}
.fsb{font-size:53.133867pt;}
.fs6{font-size:53.136000pt;}
.fs2{font-size:63.760000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:76.512000pt;}
.fsd{font-size:76.513067pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:18.892267pt;}
.y2d{bottom:38.092267pt;}
.y2c{bottom:57.292267pt;}
.y26{bottom:104.825333pt;}
.y122{bottom:113.385333pt;}
.y84{bottom:113.386667pt;}
.y87{bottom:117.086667pt;}
.y25{bottom:117.136000pt;}
.yba{bottom:123.060000pt;}
.y83{bottom:132.514667pt;}
.y86{bottom:136.214667pt;}
.y24{bottom:137.388000pt;}
.yb9{bottom:142.188000pt;}
.y102{bottom:144.313333pt;}
.yd5{bottom:151.642667pt;}
.y85{bottom:155.342667pt;}
.y23{bottom:156.516000pt;}
.ya4{bottom:157.238667pt;}
.y82{bottom:160.564000pt;}
.yb8{bottom:161.316000pt;}
.y101{bottom:163.441333pt;}
.yd4{bottom:170.770667pt;}
.y5a{bottom:174.470667pt;}
.y22{bottom:175.644000pt;}
.ya3{bottom:176.368000pt;}
.y81{bottom:179.692000pt;}
.yb7{bottom:180.445333pt;}
.ye0{bottom:189.120000pt;}
.yd3{bottom:189.898667pt;}
.y100{bottom:193.196000pt;}
.y59{bottom:193.598667pt;}
.ya2{bottom:195.496000pt;}
.y80{bottom:198.820000pt;}
.yb6{bottom:199.573333pt;}
.y21{bottom:207.926667pt;}
.ydf{bottom:208.248000pt;}
.yd2{bottom:209.026667pt;}
.yff{bottom:212.324000pt;}
.y58{bottom:212.728000pt;}
.ya1{bottom:214.624000pt;}
.yb5{bottom:218.701333pt;}
.y7f{bottom:226.869333pt;}
.yde{bottom:227.376000pt;}
.yd1{bottom:228.154667pt;}
.y57{bottom:231.856000pt;}
.ya0{bottom:233.752000pt;}
.y143{bottom:236.617333pt;}
.yb4{bottom:237.829333pt;}
.y121{bottom:237.950667pt;}
.yfe{bottom:242.080000pt;}
.y7e{bottom:245.997333pt;}
.ydd{bottom:246.504000pt;}
.yd0{bottom:247.284000pt;}
.y56{bottom:250.984000pt;}
.y9f{bottom:252.880000pt;}
.y142{bottom:255.745333pt;}
.y20{bottom:256.590667pt;}
.yb3{bottom:256.957333pt;}
.y120{bottom:257.078667pt;}
.yfd{bottom:261.208000pt;}
.y7d{bottom:265.125333pt;}
.ydc{bottom:265.632000pt;}
.ycf{bottom:266.412000pt;}
.y55{bottom:270.112000pt;}
.y9e{bottom:272.008000pt;}
.y1f{bottom:274.124000pt;}
.y141{bottom:274.873333pt;}
.yb2{bottom:276.085333pt;}
.y11f{bottom:276.206667pt;}
.ydb{bottom:284.761333pt;}
.yce{bottom:285.540000pt;}
.y54{bottom:289.240000pt;}
.yfc{bottom:290.962667pt;}
.y9d{bottom:291.137333pt;}
.y7c{bottom:291.469333pt;}
.y1e{bottom:291.658667pt;}
.yb1{bottom:295.214667pt;}
.y140{bottom:302.464000pt;}
.yda{bottom:303.889333pt;}
.ycd{bottom:304.668000pt;}
.y11e{bottom:305.130667pt;}
.y53{bottom:308.368000pt;}
.yfb{bottom:310.090667pt;}
.y9c{bottom:310.265333pt;}
.y7b{bottom:310.597333pt;}
.yb0{bottom:314.342667pt;}
.y13f{bottom:321.592000pt;}
.yd9{bottom:323.017333pt;}
.ycc{bottom:323.796000pt;}
.y11d{bottom:324.258667pt;}
.y1d{bottom:324.917333pt;}
.y52{bottom:327.497333pt;}
.y9b{bottom:329.393333pt;}
.y7a{bottom:329.725333pt;}
.yaf{bottom:333.470667pt;}
.yfa{bottom:339.846667pt;}
.y13e{bottom:340.720000pt;}
.yd8{bottom:342.145333pt;}
.y1c{bottom:342.452000pt;}
.ycb{bottom:342.924000pt;}
.y51{bottom:346.625333pt;}
.y16a{bottom:347.724000pt;}
.y9a{bottom:348.521333pt;}
.y79{bottom:348.853333pt;}
.yae{bottom:352.598667pt;}
.y11c{bottom:353.182667pt;}
.yf9{bottom:358.974667pt;}
.y13d{bottom:359.849333pt;}
.y1b{bottom:359.986667pt;}
.yd7{bottom:361.273333pt;}
.yca{bottom:362.053333pt;}
.y50{bottom:365.753333pt;}
.y169{bottom:366.852000pt;}
.y99{bottom:367.649333pt;}
.y78{bottom:367.981333pt;}
.yad{bottom:371.726667pt;}
.y11b{bottom:372.310667pt;}
.y1a{bottom:377.520000pt;}
.yc9{bottom:381.181333pt;}
.y16e{bottom:383.993333pt;}
.y4f{bottom:384.881333pt;}
.y168{bottom:385.980000pt;}
.y98{bottom:386.777333pt;}
.y77{bottom:387.110667pt;}
.y13c{bottom:387.438667pt;}
.y172{bottom:388.697333pt;}
.yf8{bottom:388.729333pt;}
.yac{bottom:390.854667pt;}
.y11a{bottom:391.438667pt;}
.yd6{bottom:393.556000pt;}
.y19{bottom:395.054667pt;}
.yc8{bottom:400.309333pt;}
.y16d{bottom:403.121333pt;}
.y4e{bottom:404.009333pt;}
.y167{bottom:405.108000pt;}
.y97{bottom:405.906667pt;}
.y76{bottom:406.238667pt;}
.y13b{bottom:406.566667pt;}
.y171{bottom:407.826667pt;}
.yf7{bottom:407.857333pt;}
.yab{bottom:409.984000pt;}
.y18{bottom:412.589333pt;}
.yc7{bottom:419.437333pt;}
.y119{bottom:420.362667pt;}
.y16c{bottom:422.249333pt;}
.y4d{bottom:423.137333pt;}
.y166{bottom:424.236000pt;}
.y96{bottom:425.034667pt;}
.y75{bottom:425.366667pt;}
.y13a{bottom:425.696000pt;}
.y170{bottom:426.954667pt;}
.yf6{bottom:426.985333pt;}
.yaa{bottom:429.112000pt;}
.y17{bottom:430.122667pt;}
.yc6{bottom:438.565333pt;}
.y118{bottom:439.490667pt;}
.y16b{bottom:441.377333pt;}
.y4c{bottom:442.265333pt;}
.y95{bottom:444.162667pt;}
.y74{bottom:444.494667pt;}
.y139{bottom:444.824000pt;}
.y16f{bottom:446.082667pt;}
.yf5{bottom:446.114667pt;}
.y16{bottom:447.657333pt;}
.ya9{bottom:448.240000pt;}
.yc5{bottom:457.693333pt;}
.y117{bottom:458.618667pt;}
.y4b{bottom:461.394667pt;}
.y94{bottom:463.290667pt;}
.y73{bottom:463.622667pt;}
.y15{bottom:465.192000pt;}
.ya8{bottom:467.368000pt;}
.y138{bottom:472.414667pt;}
.yf4{bottom:475.869333pt;}
.yc4{bottom:476.822667pt;}
.y4a{bottom:480.522667pt;}
.y93{bottom:482.418667pt;}
.y14{bottom:482.725333pt;}
.ya7{bottom:486.496000pt;}
.y116{bottom:487.542667pt;}
.y137{bottom:491.542667pt;}
.yf3{bottom:494.997333pt;}
.y72{bottom:495.905333pt;}
.yc3{bottom:495.950667pt;}
.y49{bottom:499.650667pt;}
.y13{bottom:500.260000pt;}
.y92{bottom:501.546667pt;}
.ya6{bottom:505.624000pt;}
.y115{bottom:506.670667pt;}
.yc2{bottom:515.078667pt;}
.y12{bottom:517.794667pt;}
.y48{bottom:518.778667pt;}
.y136{bottom:519.132000pt;}
.y91{bottom:520.674667pt;}
.yf2{bottom:524.752000pt;}
.ya5{bottom:524.753333pt;}
.y157{bottom:531.530667pt;}
.yc1{bottom:534.206667pt;}
.y11{bottom:535.328000pt;}
.y114{bottom:535.594667pt;}
.y47{bottom:537.906667pt;}
.y135{bottom:538.261333pt;}
.yf1{bottom:543.880000pt;}
.y71{bottom:543.881333pt;}
.y90{bottom:550.430667pt;}
.y156{bottom:550.658667pt;}
.y10{bottom:552.862667pt;}
.yc0{bottom:553.334667pt;}
.y46{bottom:557.034667pt;}
.y134{bottom:557.389333pt;}
.y70{bottom:563.009333pt;}
.y113{bottom:564.517333pt;}
.y8f{bottom:569.558667pt;}
.yf{bottom:570.397333pt;}
.ybf{bottom:572.462667pt;}
.yf0{bottom:573.636000pt;}
.y45{bottom:576.164000pt;}
.y133{bottom:576.517333pt;}
.y155{bottom:580.414667pt;}
.y6f{bottom:582.137333pt;}
.ye{bottom:587.930667pt;}
.y8e{bottom:588.686667pt;}
.yef{bottom:592.764000pt;}
.y112{bottom:593.441333pt;}
.y44{bottom:595.292000pt;}
.y132{bottom:595.645333pt;}
.y154{bottom:599.542667pt;}
.y6e{bottom:601.265333pt;}
.ybe{bottom:601.302667pt;}
.yd{bottom:605.465333pt;}
.y111{bottom:612.569333pt;}
.y43{bottom:614.420000pt;}
.y8d{bottom:618.441333pt;}
.y153{bottom:618.670667pt;}
.y6d{bottom:620.393333pt;}
.yee{bottom:622.518667pt;}
.yc{bottom:623.000000pt;}
.y131{bottom:623.236000pt;}
.ybd{bottom:630.141333pt;}
.y42{bottom:633.548000pt;}
.y8c{bottom:637.570667pt;}
.y152{bottom:637.798667pt;}
.y6c{bottom:639.521333pt;}
.yb{bottom:640.533333pt;}
.y110{bottom:641.493333pt;}
.yed{bottom:641.646667pt;}
.y130{bottom:642.364000pt;}
.ybc{bottom:649.269333pt;}
.y41{bottom:652.676000pt;}
.y8b{bottom:656.698667pt;}
.y151{bottom:656.926667pt;}
.ya{bottom:658.068000pt;}
.y6b{bottom:658.650667pt;}
.y10f{bottom:660.621333pt;}
.y12f{bottom:669.954667pt;}
.yec{bottom:671.402667pt;}
.y40{bottom:671.804000pt;}
.y9{bottom:675.601333pt;}
.y150{bottom:676.054667pt;}
.y6a{bottom:677.778667pt;}
.ybb{bottom:681.552000pt;}
.y8a{bottom:686.453333pt;}
.y12e{bottom:689.082667pt;}
.y10e{bottom:689.545333pt;}
.yeb{bottom:690.530667pt;}
.y3f{bottom:690.933333pt;}
.y8{bottom:693.136000pt;}
.y69{bottom:696.906667pt;}
.y165{bottom:699.049333pt;}
.y89{bottom:705.581333pt;}
.y14f{bottom:705.810667pt;}
.y12d{bottom:708.210667pt;}
.y10d{bottom:708.673333pt;}
.y3e{bottom:710.061333pt;}
.y68{bottom:716.034667pt;}
.y7{bottom:717.541333pt;}
.y164{bottom:717.793333pt;}
.yea{bottom:720.285333pt;}
.y14e{bottom:724.938667pt;}
.y3d{bottom:729.189333pt;}
.y163{bottom:733.573333pt;}
.y67{bottom:735.162667pt;}
.y12c{bottom:735.801333pt;}
.y10c{bottom:737.597333pt;}
.y88{bottom:737.864000pt;}
.ye9{bottom:739.413333pt;}
.y14d{bottom:744.066667pt;}
.y3c{bottom:748.317333pt;}
.y66{bottom:754.290667pt;}
.y12b{bottom:754.929333pt;}
.y10b{bottom:756.725333pt;}
.y162{bottom:758.121333pt;}
.y3b{bottom:767.445333pt;}
.ye8{bottom:769.168000pt;}
.y65{bottom:773.420000pt;}
.y14c{bottom:773.821333pt;}
.y6{bottom:781.029333pt;}
.y12a{bottom:782.520000pt;}
.y161{bottom:782.669333pt;}
.y10a{bottom:785.649333pt;}
.y3a{bottom:786.573333pt;}
.ye7{bottom:788.297333pt;}
.y64{bottom:792.548000pt;}
.y14b{bottom:792.949333pt;}
.y109{bottom:804.777333pt;}
.y39{bottom:805.702667pt;}
.y160{bottom:807.217333pt;}
.ye6{bottom:807.425333pt;}
.y129{bottom:810.109333pt;}
.y63{bottom:811.676000pt;}
.y14a{bottom:812.078667pt;}
.y5{bottom:813.406667pt;}
.y38{bottom:824.830667pt;}
.y128{bottom:829.238667pt;}
.y62{bottom:830.804000pt;}
.y149{bottom:831.206667pt;}
.y15f{bottom:831.764000pt;}
.y108{bottom:833.700000pt;}
.y4{bottom:835.722667pt;}
.ye5{bottom:837.180000pt;}
.y37{bottom:843.958667pt;}
.y61{bottom:849.932000pt;}
.y107{bottom:852.829333pt;}
.ye4{bottom:856.308000pt;}
.y15e{bottom:856.312000pt;}
.y127{bottom:856.828000pt;}
.y3{bottom:858.038667pt;}
.y148{bottom:860.961333pt;}
.y36{bottom:863.086667pt;}
.y60{bottom:869.060000pt;}
.y126{bottom:875.957333pt;}
.y147{bottom:880.089333pt;}
.y15d{bottom:880.860000pt;}
.y106{bottom:881.752000pt;}
.y35{bottom:882.214667pt;}
.ye3{bottom:886.062667pt;}
.y5f{bottom:888.189333pt;}
.y2{bottom:900.280000pt;}
.y105{bottom:900.880000pt;}
.y34{bottom:901.342667pt;}
.y125{bottom:903.546667pt;}
.ye2{bottom:905.192000pt;}
.y15c{bottom:905.408000pt;}
.y5e{bottom:907.317333pt;}
.y146{bottom:909.844000pt;}
.y33{bottom:920.472000pt;}
.y15b{bottom:921.188000pt;}
.y124{bottom:922.674667pt;}
.y5d{bottom:926.445333pt;}
.y145{bottom:928.973333pt;}
.y104{bottom:929.804000pt;}
.ye1{bottom:934.946667pt;}
.y1{bottom:935.349333pt;}
.y32{bottom:939.600000pt;}
.y5c{bottom:945.573333pt;}
.y15a{bottom:946.268000pt;}
.y144{bottom:948.101333pt;}
.y103{bottom:948.932000pt;}
.y123{bottom:950.265333pt;}
.y31{bottom:958.728000pt;}
.y5b{bottom:964.701333pt;}
.y159{bottom:968.630667pt;}
.y30{bottom:977.856000pt;}
.y158{bottom:987.760000pt;}
.y2f{bottom:996.984000pt;}
.y2b{bottom:1002.978400pt;}
.y2a{bottom:1069.813333pt;}
.y29{bottom:1082.613333pt;}
.y28{bottom:1095.413333pt;}
.y27{bottom:1108.213333pt;}
.h4{height:17.984731pt;}
.h17{height:22.443895pt;}
.hc{height:22.445397pt;}
.hd{height:31.083333pt;}
.h6{height:33.473067pt;}
.h7{height:35.864000pt;}
.h15{height:35.865600pt;}
.h13{height:38.043849pt;}
.h10{height:39.850400pt;}
.ha{height:39.852000pt;}
.h16{height:42.758562pt;}
.h8{height:42.760064pt;}
.h12{height:44.348486pt;}
.hb{height:44.349205pt;}
.h14{height:44.353820pt;}
.h5{height:47.820000pt;}
.h9{height:53.558400pt;}
.h11{height:53.559147pt;}
.h2{height:64.452960pt;}
.hf{height:66.750000pt;}
.he{height:69.926000pt;}
.h3{height:75.786827pt;}
.h1{height:1123.333333pt;}
.h0{height:1123.653333pt;}
.w2{width:563.292933pt;}
.w0{width:794.550667pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.xd{left:22.098667pt;}
.x3{left:96.573333pt;}
.xa{left:113.385333pt;}
.xe{left:120.782000pt;}
.x1{left:125.254667pt;}
.x12{left:126.669333pt;}
.xb{left:127.953333pt;}
.x10{left:129.621333pt;}
.xf{left:133.310667pt;}
.x9{left:146.594667pt;}
.x6{left:161.941333pt;}
.x2{left:172.725333pt;}
.x5{left:185.120000pt;}
.x4{left:315.997333pt;}
.x7{left:330.508000pt;}
.x8{left:370.217333pt;}
.xc{left:393.954667pt;}
.x11{left:399.148000pt;}
.x13{left:431.840000pt;}
}




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