
    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_a2c05587431c3babdc5816e3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.934200;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_5c73c1d58ccdca34d1a221b0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_8baec671fc2157ae8d6e9a7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.738000;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_0ec6858e94e1cdc5a3a2e0d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916000;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_14ab256c50e9ca71777c885c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913413;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_3665462ae766c9eb7da26e4c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_89a6fade183803dc6835f50f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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_2127e8e51eb6b020c1635307.woff')format("woff");}.ff8{font-family:ff8;line-height:1.102000;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_1470612f14ac43b511cb97e0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.103000;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_6c904e59868843ea6208646e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_25de58f2549bf667506c4efe.woff')format("woff");}.ffb{font-family:ffb;line-height:1.102000;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_1ece467d838b0395fdec0716.woff')format("woff");}.ffc{font-family:ffc;line-height:1.102000;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_cc34e1ef24ea8197b5b9d420.woff')format("woff");}.ffd{font-family:ffd;line-height:0.925000;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_dfa7ac417a22e7f167e8440b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.963000;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_28472845824e9f1e35f2bc52.woff')format("woff");}.fff{font-family:fff;line-height:0.964511;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_bd37b799f3d833d22d1e87a5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.718000;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_229ce56892e9b357d49575cd.woff')format("woff");}.ff11{font-family:ff11;line-height:1.094048;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_8fe9e7b94e3e48e88c15134d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.714000;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_259358c3aa1ce9ed03ba3650.woff')format("woff");}.ff13{font-family:ff13;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.591600px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-2.430000px;}
.ls13{letter-spacing:-2.040000px;}
.ls9{letter-spacing:-1.188000px;}
.lsb{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.594000px;}
.ls1{letter-spacing:-0.462000px;}
.lsc{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.330000px;}
.ls4{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.198000px;}
.lse{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.594000px;}
.ls8{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.702000px;}
.ls10{letter-spacing:0.918000px;}
.ls7{letter-spacing:0.990000px;}
.ls11{letter-spacing:1.188000px;}
.lsf{letter-spacing:3.888000px;}
.ls2{letter-spacing:73.854000px;}
.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;}
}
.ws88{word-spacing:-24.000000px;}
.ws43{word-spacing:-20.952000px;}
.ws3{word-spacing:-14.400000px;}
.ws4f{word-spacing:-13.794000px;}
.ws2a{word-spacing:-13.200000px;}
.wsb{word-spacing:-12.804000px;}
.ws3c{word-spacing:-12.606000px;}
.ws69{word-spacing:-12.408000px;}
.ws18{word-spacing:-12.342000px;}
.ws2{word-spacing:-12.000000px;}
.ws91{word-spacing:-11.718000px;}
.ws50{word-spacing:-11.640000px;}
.ws8a{word-spacing:-11.580000px;}
.ws39{word-spacing:-10.800000px;}
.ws3b{word-spacing:-10.584000px;}
.ws4{word-spacing:-10.476000px;}
.ws0{word-spacing:-9.600000px;}
.ws1{word-spacing:-8.400000px;}
.ws99{word-spacing:-6.534000px;}
.ws9a{word-spacing:-5.886000px;}
.ws9b{word-spacing:-5.184000px;}
.ws45{word-spacing:-5.148000px;}
.ws44{word-spacing:-5.016000px;}
.ws80{word-spacing:-4.554000px;}
.ws2d{word-spacing:-4.158000px;}
.ws2c{word-spacing:-3.960000px;}
.ws7{word-spacing:-3.672000px;}
.ws13{word-spacing:-3.630000px;}
.ws7c{word-spacing:-3.564000px;}
.ws77{word-spacing:-3.300000px;}
.ws21{word-spacing:-2.970000px;}
.ws40{word-spacing:-2.838000px;}
.ws54{word-spacing:-2.706000px;}
.ws52{word-spacing:-2.508000px;}
.ws27{word-spacing:-2.376000px;}
.ws6b{word-spacing:-2.310000px;}
.ws6c{word-spacing:-2.244000px;}
.ws97{word-spacing:-2.220000px;}
.ws35{word-spacing:-2.046000px;}
.ws2f{word-spacing:-1.980000px;}
.ws9{word-spacing:-1.944000px;}
.ws30{word-spacing:-1.914000px;}
.ws31{word-spacing:-1.848000px;}
.ws8d{word-spacing:-1.800000px;}
.wsf{word-spacing:-1.716000px;}
.ws98{word-spacing:-1.620000px;}
.ws89{word-spacing:-1.560000px;}
.ws1a{word-spacing:-1.518000px;}
.ws19{word-spacing:-1.452000px;}
.ws6{word-spacing:-1.404000px;}
.ws5c{word-spacing:-1.254000px;}
.ws5b{word-spacing:-1.188000px;}
.ws22{word-spacing:-1.056000px;}
.ws56{word-spacing:-0.990000px;}
.ws51{word-spacing:-0.924000px;}
.ws2b{word-spacing:-0.858000px;}
.ws3e{word-spacing:-0.792000px;}
.ws7b{word-spacing:-0.726000px;}
.ws5a{word-spacing:-0.660000px;}
.ws8b{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.594000px;}
.ws5e{word-spacing:-0.396000px;}
.ws94{word-spacing:-0.360000px;}
.ws6d{word-spacing:-0.330000px;}
.ws7a{word-spacing:-0.264000px;}
.ws8c{word-spacing:-0.240000px;}
.ws5{word-spacing:0.000000px;}
.ws57{word-spacing:0.132000px;}
.ws3f{word-spacing:0.198000px;}
.ws62{word-spacing:0.330000px;}
.ws48{word-spacing:0.462000px;}
.ws7f{word-spacing:0.594000px;}
.ws6a{word-spacing:0.660000px;}
.ws6e{word-spacing:0.858000px;}
.ws46{word-spacing:0.924000px;}
.ws72{word-spacing:0.990000px;}
.ws8{word-spacing:1.026000px;}
.ws1b{word-spacing:1.056000px;}
.ws55{word-spacing:1.122000px;}
.ws5d{word-spacing:1.188000px;}
.ws23{word-spacing:1.320000px;}
.ws24{word-spacing:1.386000px;}
.ws4c{word-spacing:1.584000px;}
.ws70{word-spacing:1.650000px;}
.wsd{word-spacing:1.782000px;}
.ws17{word-spacing:1.980000px;}
.ws16{word-spacing:2.046000px;}
.ws87{word-spacing:2.112000px;}
.ws7e{word-spacing:2.244000px;}
.ws10{word-spacing:2.310000px;}
.ws3d{word-spacing:2.430000px;}
.ws59{word-spacing:2.508000px;}
.wse{word-spacing:2.838000px;}
.ws68{word-spacing:3.036000px;}
.ws67{word-spacing:3.102000px;}
.ws37{word-spacing:3.234000px;}
.ws93{word-spacing:3.240000px;}
.ws1c{word-spacing:3.300000px;}
.ws1d{word-spacing:3.366000px;}
.ws78{word-spacing:3.960000px;}
.ws65{word-spacing:4.026000px;}
.ws63{word-spacing:4.092000px;}
.ws66{word-spacing:4.158000px;}
.ws12{word-spacing:4.224000px;}
.ws11{word-spacing:4.290000px;}
.ws32{word-spacing:4.356000px;}
.ws20{word-spacing:4.422000px;}
.ws71{word-spacing:4.686000px;}
.ws49{word-spacing:4.884000px;}
.ws4a{word-spacing:4.950000px;}
.ws1e{word-spacing:5.016000px;}
.ws96{word-spacing:5.040000px;}
.ws4b{word-spacing:5.082000px;}
.ws81{word-spacing:5.148000px;}
.ws95{word-spacing:5.160000px;}
.ws53{word-spacing:5.214000px;}
.ws1f{word-spacing:5.280000px;}
.ws82{word-spacing:5.742000px;}
.ws90{word-spacing:5.880000px;}
.ws34{word-spacing:5.940000px;}
.ws33{word-spacing:6.072000px;}
.ws74{word-spacing:6.468000px;}
.ws73{word-spacing:6.666000px;}
.ws79{word-spacing:6.864000px;}
.ws64{word-spacing:7.062000px;}
.ws86{word-spacing:7.194000px;}
.ws85{word-spacing:7.392000px;}
.ws5f{word-spacing:7.590000px;}
.ws60{word-spacing:7.854000px;}
.ws58{word-spacing:7.986000px;}
.ws41{word-spacing:8.514000px;}
.ws6f{word-spacing:8.646000px;}
.ws2e{word-spacing:8.712000px;}
.ws42{word-spacing:8.778000px;}
.ws61{word-spacing:8.976000px;}
.ws76{word-spacing:9.108000px;}
.ws47{word-spacing:9.570000px;}
.ws4d{word-spacing:9.702000px;}
.ws4e{word-spacing:10.032000px;}
.ws8e{word-spacing:10.200000px;}
.ws75{word-spacing:10.230000px;}
.ws8f{word-spacing:10.500000px;}
.ws25{word-spacing:11.286000px;}
.ws26{word-spacing:11.616000px;}
.ws7d{word-spacing:11.682000px;}
.ws84{word-spacing:12.012000px;}
.ws15{word-spacing:13.002000px;}
.ws14{word-spacing:13.398000px;}
.ws83{word-spacing:14.982000px;}
.ws28{word-spacing:15.576000px;}
.ws29{word-spacing:16.104000px;}
.ws36{word-spacing:24.486000px;}
.wsc{word-spacing:36.000000px;}
.ws92{word-spacing:52.849200px;}
.ws3a{word-spacing:987.822000px;}
.ws38{word-spacing:1220.184000px;}
._b{margin-left:-58.410000px;}
._1c{margin-left:-24.000000px;}
._17{margin-left:-20.952000px;}
._11{margin-left:-8.656200px;}
._14{margin-left:-6.049200px;}
._2{margin-left:-4.950000px;}
._7{margin-left:-3.911400px;}
._1{margin-left:-2.860200px;}
._0{margin-left:-1.092000px;}
._3{width:1.803600px;}
._4{width:2.887800px;}
._5{width:4.266000px;}
._6{width:5.368800px;}
._8{width:7.356000px;}
._a{width:8.824200px;}
._16{width:9.889800px;}
._9{width:10.916400px;}
._1a{width:12.166800px;}
._1d{width:13.585200px;}
._e{width:14.922000px;}
._d{width:16.084200px;}
._18{width:17.245800px;}
._f{width:19.496400px;}
._10{width:20.605800px;}
._19{width:23.713800px;}
._15{width:32.400000px;}
._1b{width:36.000000px;}
._c{width:73.854000px;}
._12{width:573.180000px;}
._13{width:814.104000px;}
.fc5{color:rgb(68,65,65);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc6{color:rgb(238,76,168);}
.fc1{color:rgb(123,121,121);}
.fc3{color:rgb(214,218,1);}
.fc0{color:rgb(233,17,141);}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:40.541100px;}
.y5{bottom:55.545600px;}
.y7{bottom:61.919250px;}
.y4{bottom:70.550100px;}
.y3{bottom:85.554600px;}
.y2{bottom:100.559100px;}
.y1{bottom:115.559100px;}
.y1d9{bottom:157.322850px;}
.y152{bottom:157.492950px;}
.y19e{bottom:158.930400px;}
.y17a{bottom:160.436400px;}
.y133{bottom:165.240900px;}
.ye9{bottom:166.723500px;}
.y1ae{bottom:169.535400px;}
.y112{bottom:170.937750px;}
.y151{bottom:175.244850px;}
.yb7{bottom:175.778850px;}
.y19d{bottom:179.934900px;}
.y179{bottom:181.440900px;}
.y132{bottom:182.992950px;}
.yd5{bottom:182.995500px;}
.y1e{bottom:183.122100px;}
.yfc{bottom:183.190050px;}
.y1d8{bottom:187.222650px;}
.ye8{bottom:187.728000px;}
.y111{bottom:188.689800px;}
.y1ad{bottom:189.035400px;}
.yb6{bottom:196.783350px;}
.y19c{bottom:200.939400px;}
.y1d{bottom:201.117600px;}
.yd4{bottom:204.000000px;}
.yfb{bottom:204.194550px;}
.y1d0{bottom:205.535400px;}
.ye7{bottom:208.732500px;}
.y44{bottom:211.875150px;}
.yb5{bottom:217.787850px;}
.y1c{bottom:219.113100px;}
.y19b{bottom:221.943900px;}
.y178{bottom:223.433400px;}
.yd3{bottom:225.004500px;}
.y1cf{bottom:225.035400px;}
.yfa{bottom:225.199050px;}
.y1ac{bottom:228.035400px;}
.y43{bottom:232.879650px;}
.y6b{bottom:236.924400px;}
.y1b{bottom:237.108600px;}
.yb4{bottom:238.792350px;}
.y177{bottom:244.437900px;}
.y1ce{bottom:244.535400px;}
.yd2{bottom:246.009000px;}
.yf9{bottom:246.203550px;}
.ye6{bottom:250.725000px;}
.y42{bottom:253.884150px;}
.y1a{bottom:255.104100px;}
.y6a{bottom:257.928900px;}
.yb3{bottom:259.796850px;}
.y19a{bottom:263.936400px;}
.y8d{bottom:263.953950px;}
.y176{bottom:265.442400px;}
.yd1{bottom:267.013500px;}
.y1ab{bottom:267.035400px;}
.yf8{bottom:267.208050px;}
.y1d7{bottom:271.355400px;}
.ye5{bottom:271.729500px;}
.y19{bottom:273.099600px;}
.y41{bottom:274.888650px;}
.y69{bottom:278.933400px;}
.yb2{bottom:280.801350px;}
.y1cd{bottom:283.535400px;}
.y199{bottom:284.940900px;}
.y8c{bottom:284.958450px;}
.y175{bottom:286.446900px;}
.yd0{bottom:288.018000px;}
.y1d6{bottom:289.350900px;}
.y18{bottom:291.095100px;}
.ye4{bottom:292.734000px;}
.y40{bottom:295.893150px;}
.y68{bottom:299.937900px;}
.yb1{bottom:301.805850px;}
.y198{bottom:305.945400px;}
.y8b{bottom:305.962950px;}
.y1d5{bottom:307.346400px;}
.y174{bottom:307.451400px;}
.y1aa{bottom:307.535400px;}
.y17{bottom:309.090600px;}
.yf7{bottom:309.200550px;}
.y3f{bottom:316.897650px;}
.y67{bottom:320.942400px;}
.y1cc{bottom:322.535400px;}
.yb0{bottom:322.810350px;}
.y197{bottom:326.949900px;}
.y8a{bottom:326.967450px;}
.y16{bottom:327.086100px;}
.y173{bottom:328.455900px;}
.ycf{bottom:330.010500px;}
.yf6{bottom:330.205050px;}
.ye3{bottom:334.726500px;}
.y3e{bottom:337.902150px;}
.y66{bottom:341.946900px;}
.yaf{bottom:343.814850px;}
.y196{bottom:347.954400px;}
.y89{bottom:347.971950px;}
.y15{bottom:349.338150px;}
.y172{bottom:349.460400px;}
.yce{bottom:351.015000px;}
.yf5{bottom:351.209550px;}
.ye2{bottom:355.731000px;}
.y3d{bottom:358.906650px;}
.y1cb{bottom:361.535400px;}
.y65{bottom:362.951400px;}
.yae{bottom:364.819350px;}
.y195{bottom:368.958900px;}
.y88{bottom:368.976450px;}
.ycd{bottom:372.019500px;}
.yf4{bottom:372.214050px;}
.y150{bottom:373.535400px;}
.ye1{bottom:376.735500px;}
.y3c{bottom:379.911150px;}
.y1ca{bottom:381.035400px;}
.y131{bottom:381.283500px;}
.y110{bottom:382.728300px;}
.y64{bottom:383.955900px;}
.y1a9{bottom:385.535400px;}
.yad{bottom:385.823850px;}
.y87{bottom:389.980950px;}
.y171{bottom:391.452900px;}
.ycc{bottom:393.024000px;}
.yf3{bottom:393.218550px;}
.ye0{bottom:397.740000px;}
.y3b{bottom:400.915650px;}
.y14{bottom:403.938150px;}
.y63{bottom:404.960400px;}
.yac{bottom:406.828350px;}
.y194{bottom:410.951400px;}
.y86{bottom:410.985450px;}
.y170{bottom:412.457400px;}
.ycb{bottom:414.028500px;}
.yf2{bottom:414.223050px;}
.y1c9{bottom:420.035400px;}
.y3a{bottom:421.920150px;}
.y13{bottom:424.938150px;}
.y62{bottom:425.964900px;}
.y130{bottom:427.449900px;}
.y1a8{bottom:427.535400px;}
.y193{bottom:431.955900px;}
.y85{bottom:431.989950px;}
.y16f{bottom:433.461900px;}
.yf1{bottom:435.227550px;}
.y14f{bottom:436.461900px;}
.y1c8{bottom:439.535400px;}
.ydf{bottom:439.743000px;}
.y39{bottom:442.924650px;}
.y10f{bottom:445.689300px;}
.y12{bottom:445.938150px;}
.y61{bottom:446.969400px;}
.y12f{bottom:448.454400px;}
.yab{bottom:448.820850px;}
.y192{bottom:452.960400px;}
.y84{bottom:452.994450px;}
.y16e{bottom:454.466400px;}
.yca{bottom:456.021000px;}
.y14e{bottom:457.466400px;}
.y38{bottom:463.929150px;}
.y10e{bottom:466.693800px;}
.y11{bottom:466.938150px;}
.y60{bottom:467.973900px;}
.y12e{bottom:469.458900px;}
.yde{bottom:469.740000px;}
.y191{bottom:473.964900px;}
.y83{bottom:473.998950px;}
.y16d{bottom:475.470900px;}
.yc9{bottom:477.025500px;}
.yf0{bottom:477.220050px;}
.y14d{bottom:478.470900px;}
.y1c7{bottom:478.535400px;}
.y10d{bottom:487.698300px;}
.y5f{bottom:488.978400px;}
.y12d{bottom:490.463400px;}
.y190{bottom:494.969400px;}
.yc8{bottom:498.030000px;}
.y1c6{bottom:498.035400px;}
.yef{bottom:498.224550px;}
.y14c{bottom:499.475400px;}
.y1a7{bottom:505.535400px;}
.y37{bottom:505.921650px;}
.y10{bottom:506.238150px;}
.y10c{bottom:508.702800px;}
.y12c{bottom:511.467900px;}
.yaa{bottom:511.821750px;}
.y18f{bottom:515.973900px;}
.y82{bottom:515.991450px;}
.y16c{bottom:517.463400px;}
.yc7{bottom:519.034500px;}
.yee{bottom:519.229050px;}
.y36{bottom:526.926150px;}
.yf{bottom:527.238150px;}
.y10b{bottom:529.707300px;}
.y5e{bottom:530.970900px;}
.y18e{bottom:536.978400px;}
.y81{bottom:536.995950px;}
.y1c5{bottom:537.035400px;}
.y16b{bottom:538.467900px;}
.ya9{bottom:538.479300px;}
.y14b{bottom:541.467900px;}
.ydd{bottom:541.740900px;}
.y1a6{bottom:547.535400px;}
.y35{bottom:547.930650px;}
.ye{bottom:548.238150px;}
.y10a{bottom:550.711800px;}
.y12b{bottom:553.460400px;}
.ya8{bottom:554.976300px;}
.y18d{bottom:557.982900px;}
.y80{bottom:558.000450px;}
.y16a{bottom:559.472400px;}
.ydc{bottom:559.492950px;}
.yc6{bottom:561.034500px;}
.yed{bottom:561.229050px;}
.y14a{bottom:562.472400px;}
.y34{bottom:568.935150px;}
.yd{bottom:569.238150px;}
.ya7{bottom:571.473300px;}
.y5d{bottom:572.963400px;}
.y12a{bottom:574.464900px;}
.y1c4{bottom:576.035400px;}
.y18c{bottom:578.987400px;}
.y7f{bottom:579.004950px;}
.y169{bottom:580.476900px;}
.y149{bottom:583.476900px;}
.y1a5{bottom:583.535400px;}
.ya6{bottom:587.970300px;}
.y33{bottom:589.939650px;}
.y109{bottom:592.704300px;}
.y5c{bottom:593.967900px;}
.y129{bottom:595.469400px;}
.y1c3{bottom:595.535400px;}
.y18b{bottom:599.991900px;}
.y7e{bottom:600.009450px;}
.y168{bottom:601.481400px;}
.ya5{bottom:604.467300px;}
.y148{bottom:604.481400px;}
.y32{bottom:610.944150px;}
.y108{bottom:613.708800px;}
.y5b{bottom:614.972400px;}
.y1c2{bottom:615.035400px;}
.y128{bottom:616.473900px;}
.yc{bottom:617.042100px;}
.ya4{bottom:620.964300px;}
.y18a{bottom:620.996400px;}
.y7d{bottom:621.013950px;}
.yec{bottom:621.229050px;}
.y167{bottom:622.485900px;}
.y147{bottom:625.485900px;}
.y1d4{bottom:634.535400px;}
.y107{bottom:634.713300px;}
.ya3{bottom:637.461300px;}
.y127{bottom:637.478400px;}
.yeb{bottom:638.981100px;}
.yc5{bottom:642.012000px;}
.y7c{bottom:642.018450px;}
.y31{bottom:652.944150px;}
.yb{bottom:653.042100px;}
.ya2{bottom:653.958300px;}
.y1c1{bottom:654.035400px;}
.y106{bottom:655.717800px;}
.y5a{bottom:656.964900px;}
.y126{bottom:658.482900px;}
.y1a4{bottom:661.535400px;}
.y189{bottom:662.988900px;}
.yc4{bottom:663.016500px;}
.y7b{bottom:663.022950px;}
.y166{bottom:664.478400px;}
.y146{bottom:667.478400px;}
.ya1{bottom:670.455300px;}
.y1c0{bottom:673.535400px;}
.y59{bottom:677.969400px;}
.y125{bottom:679.487400px;}
.y188{bottom:683.993400px;}
.yc3{bottom:684.021000px;}
.y165{bottom:685.482900px;}
.ya0{bottom:686.952300px;}
.y145{bottom:688.482900px;}
.ya{bottom:697.545900px;}
.y105{bottom:697.710300px;}
.y58{bottom:698.973900px;}
.y124{bottom:700.491900px;}
.y9f{bottom:703.449300px;}
.y1a3{bottom:703.535400px;}
.y187{bottom:704.997900px;}
.y7a{bottom:705.015450px;}
.yc2{bottom:705.025500px;}
.y164{bottom:706.487400px;}
.y144{bottom:709.487400px;}
.y1bf{bottom:712.535400px;}
.y104{bottom:718.714800px;}
.y57{bottom:719.978400px;}
.y123{bottom:721.496400px;}
.y186{bottom:726.002400px;}
.y79{bottom:726.019950px;}
.yc1{bottom:726.030000px;}
.y143{bottom:730.491900px;}
.y1be{bottom:732.035400px;}
.y9e{bottom:733.959300px;}
.y103{bottom:739.719300px;}
.y56{bottom:740.982900px;}
.y122{bottom:742.500900px;}
.y9{bottom:742.545900px;}
.y185{bottom:747.006900px;}
.y78{bottom:747.024450px;}
.yc0{bottom:747.034500px;}
.y163{bottom:748.479900px;}
.y9d{bottom:750.456300px;}
.y142{bottom:751.496400px;}
.y1d3{bottom:751.535400px;}
.y102{bottom:760.723800px;}
.y55{bottom:761.987400px;}
.ydb{bottom:762.035400px;}
.y9c{bottom:766.953300px;}
.y184{bottom:768.011400px;}
.y77{bottom:768.028950px;}
.y162{bottom:769.484400px;}
.y1bd{bottom:771.035400px;}
.y141{bottom:772.500900px;}
.y30{bottom:773.983500px;}
.y1a2{bottom:781.535400px;}
.y101{bottom:781.728300px;}
.y54{bottom:782.991900px;}
.y9b{bottom:783.450300px;}
.y121{bottom:784.493400px;}
.y8{bottom:787.545900px;}
.y183{bottom:789.015900px;}
.y76{bottom:789.033450px;}
.ybf{bottom:789.034500px;}
.y161{bottom:790.488900px;}
.y1bc{bottom:790.535400px;}
.y2f{bottom:791.983500px;}
.y140{bottom:793.505400px;}
.y9a{bottom:799.947300px;}
.y120{bottom:805.497900px;}
.y182{bottom:810.020400px;}
.y1bb{bottom:810.035400px;}
.y160{bottom:811.493400px;}
.y13f{bottom:814.509900px;}
.y1a1{bottom:823.535400px;}
.y100{bottom:823.728300px;}
.y53{bottom:824.984400px;}
.yda{bottom:825.000900px;}
.y11f{bottom:826.502400px;}
.y1ba{bottom:829.535400px;}
.y2e{bottom:830.124000px;}
.y99{bottom:830.457300px;}
.y181{bottom:831.024900px;}
.y75{bottom:831.025950px;}
.y15f{bottom:832.497900px;}
.y13e{bottom:835.514400px;}
.y52{bottom:845.988900px;}
.yd9{bottom:846.005400px;}
.y11e{bottom:847.506900px;}
.y2d{bottom:848.119500px;}
.y1d2{bottom:849.035400px;}
.y74{bottom:852.030450px;}
.y15e{bottom:853.502400px;}
.y98{bottom:860.967300px;}
.y2c{bottom:866.115000px;}
.y51{bottom:866.993400px;}
.ybe{bottom:867.009900px;}
.yea{bottom:867.035400px;}
.y11d{bottom:868.511400px;}
.y1b9{bottom:868.535400px;}
.y180{bottom:873.017400px;}
.y73{bottom:873.034950px;}
.y15d{bottom:874.506900px;}
.y97{bottom:877.464300px;}
.y13d{bottom:877.506900px;}
.y2b{bottom:884.110500px;}
.y50{bottom:887.997900px;}
.ybd{bottom:888.014400px;}
.y1b8{bottom:888.035400px;}
.y11c{bottom:889.515900px;}
.y17f{bottom:894.021900px;}
.y15c{bottom:895.511400px;}
.yff{bottom:895.729200px;}
.y13c{bottom:898.511400px;}
.y1a0{bottom:901.535400px;}
.y2a{bottom:902.106000px;}
.y1b7{bottom:907.535400px;}
.y96{bottom:907.974300px;}
.ybc{bottom:909.018900px;}
.y11b{bottom:910.520400px;}
.yfe{bottom:913.481100px;}
.y17e{bottom:915.026400px;}
.y72{bottom:915.034950px;}
.y15b{bottom:916.515900px;}
.y13b{bottom:919.515900px;}
.y29{bottom:920.101500px;}
.y4f{bottom:929.990400px;}
.yd8{bottom:930.006900px;}
.ybb{bottom:930.023400px;}
.y17d{bottom:936.030900px;}
.y28{bottom:938.097000px;}
.y95{bottom:938.484300px;}
.y13a{bottom:940.520400px;}
.y19f{bottom:943.535400px;}
.y1b6{bottom:946.535400px;}
.y4e{bottom:950.994900px;}
.yd7{bottom:951.011400px;}
.yba{bottom:951.027900px;}
.y11a{bottom:952.512900px;}
.y94{bottom:954.981300px;}
.y27{bottom:956.092500px;}
.y17c{bottom:957.035400px;}
.y15a{bottom:958.508400px;}
.y139{bottom:961.524900px;}
.y1b5{bottom:966.035400px;}
.y4d{bottom:971.999400px;}
.yd6{bottom:972.015900px;}
.yb9{bottom:972.032400px;}
.y119{bottom:973.517400px;}
.y26{bottom:974.088000px;}
.y159{bottom:979.512900px;}
.y138{bottom:982.529400px;}
.y93{bottom:985.491300px;}
.y1b4{bottom:985.535400px;}
.y25{bottom:992.083500px;}
.y4c{bottom:993.003900px;}
.y71{bottom:993.020400px;}
.yb8{bottom:993.036900px;}
.y118{bottom:994.521900px;}
.y17b{bottom:999.035400px;}
.y158{bottom:1000.517400px;}
.y137{bottom:1003.533900px;}
.y1d1{bottom:1005.035400px;}
.y4b{bottom:1014.008400px;}
.y70{bottom:1014.024900px;}
.y24{bottom:1014.335400px;}
.y117{bottom:1015.526400px;}
.y92{bottom:1016.001300px;}
.y157{bottom:1021.521900px;}
.y1b3{bottom:1024.535400px;}
.y4a{bottom:1035.012900px;}
.y6f{bottom:1035.029400px;}
.y116{bottom:1036.530900px;}
.y156{bottom:1042.526400px;}
.y1b2{bottom:1044.035400px;}
.y136{bottom:1045.526400px;}
.y91{bottom:1046.511300px;}
.y49{bottom:1056.017400px;}
.y6e{bottom:1056.033900px;}
.y115{bottom:1057.535400px;}
.y155{bottom:1063.530900px;}
.y1b1{bottom:1063.535400px;}
.y135{bottom:1066.530900px;}
.y23{bottom:1068.935400px;}
.y90{bottom:1077.021300px;}
.y48{bottom:1077.021900px;}
.y6d{bottom:1077.038400px;}
.y1b0{bottom:1083.035400px;}
.y154{bottom:1084.535400px;}
.y22{bottom:1086.935400px;}
.y134{bottom:1087.535400px;}
.y47{bottom:1098.026400px;}
.y6c{bottom:1098.042900px;}
.y114{bottom:1099.538400px;}
.y8f{bottom:1107.531300px;}
.y46{bottom:1119.030900px;}
.y1af{bottom:1122.035400px;}
.y21{bottom:1125.039900px;}
.y153{bottom:1126.535400px;}
.y113{bottom:1129.535400px;}
.y8e{bottom:1135.535400px;}
.y45{bottom:1140.035400px;}
.yfd{bottom:1141.535400px;}
.y20{bottom:1143.035400px;}
.y1f{bottom:1198.796700px;}
.h3{height:31.920000px;}
.h2{height:35.040000px;}
.hb{height:37.548000px;}
.h12{height:38.556000px;}
.he{height:39.042000px;}
.h4{height:41.040000px;}
.hf{height:41.202000px;}
.h10{height:42.912000px;}
.h14{height:43.800000px;}
.h15{height:45.600000px;}
.ha{height:48.276000px;}
.h9{height:52.560000px;}
.h8{height:53.640000px;}
.h7{height:54.780000px;}
.hd{height:59.004000px;}
.h13{height:78.084000px;}
.h6{height:85.200000px;}
.hc{height:87.600000px;}
.h11{height:96.012000px;}
.h5{height:109.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:91.789500px;}
.x3{left:97.245300px;}
.x5{left:126.107850px;}
.x1b{left:127.564350px;}
.x1a{left:135.859350px;}
.xf{left:137.689350px;}
.x6{left:144.571350px;}
.x4{left:147.755850px;}
.x1c{left:239.260050px;}
.x17{left:256.409250px;}
.x10{left:305.788950px;}
.x15{left:314.466000px;}
.xc{left:317.443800px;}
.x19{left:340.198650px;}
.x13{left:358.835700px;}
.x7{left:364.036200px;}
.x8{left:371.631000px;}
.xb{left:398.956650px;}
.xa{left:401.911500px;}
.x16{left:433.396950px;}
.x18{left:443.453250px;}
.x14{left:444.881850px;}
.x11{left:446.447700px;}
.xd{left:468.774600px;}
.xe{left:692.027700px;}
.x2{left:783.481800px;}
.x12{left:785.108400px;}
@media print{
.v1{vertical-align:-16.525867pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-2.160000pt;}
.ls13{letter-spacing:-1.813333pt;}
.ls9{letter-spacing:-1.056000pt;}
.lsb{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.528000pt;}
.ls1{letter-spacing:-0.410667pt;}
.lsc{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.176000pt;}
.lse{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.624000pt;}
.ls10{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.880000pt;}
.ls11{letter-spacing:1.056000pt;}
.lsf{letter-spacing:3.456000pt;}
.ls2{letter-spacing:65.648000pt;}
.ws88{word-spacing:-21.333333pt;}
.ws43{word-spacing:-18.624000pt;}
.ws3{word-spacing:-12.800000pt;}
.ws4f{word-spacing:-12.261333pt;}
.ws2a{word-spacing:-11.733333pt;}
.wsb{word-spacing:-11.381333pt;}
.ws3c{word-spacing:-11.205333pt;}
.ws69{word-spacing:-11.029333pt;}
.ws18{word-spacing:-10.970667pt;}
.ws2{word-spacing:-10.666667pt;}
.ws91{word-spacing:-10.416000pt;}
.ws50{word-spacing:-10.346667pt;}
.ws8a{word-spacing:-10.293333pt;}
.ws39{word-spacing:-9.600000pt;}
.ws3b{word-spacing:-9.408000pt;}
.ws4{word-spacing:-9.312000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1{word-spacing:-7.466667pt;}
.ws99{word-spacing:-5.808000pt;}
.ws9a{word-spacing:-5.232000pt;}
.ws9b{word-spacing:-4.608000pt;}
.ws45{word-spacing:-4.576000pt;}
.ws44{word-spacing:-4.458667pt;}
.ws80{word-spacing:-4.048000pt;}
.ws2d{word-spacing:-3.696000pt;}
.ws2c{word-spacing:-3.520000pt;}
.ws7{word-spacing:-3.264000pt;}
.ws13{word-spacing:-3.226667pt;}
.ws7c{word-spacing:-3.168000pt;}
.ws77{word-spacing:-2.933333pt;}
.ws21{word-spacing:-2.640000pt;}
.ws40{word-spacing:-2.522667pt;}
.ws54{word-spacing:-2.405333pt;}
.ws52{word-spacing:-2.229333pt;}
.ws27{word-spacing:-2.112000pt;}
.ws6b{word-spacing:-2.053333pt;}
.ws6c{word-spacing:-1.994667pt;}
.ws97{word-spacing:-1.973333pt;}
.ws35{word-spacing:-1.818667pt;}
.ws2f{word-spacing:-1.760000pt;}
.ws9{word-spacing:-1.728000pt;}
.ws30{word-spacing:-1.701333pt;}
.ws31{word-spacing:-1.642667pt;}
.ws8d{word-spacing:-1.600000pt;}
.wsf{word-spacing:-1.525333pt;}
.ws98{word-spacing:-1.440000pt;}
.ws89{word-spacing:-1.386667pt;}
.ws1a{word-spacing:-1.349333pt;}
.ws19{word-spacing:-1.290667pt;}
.ws6{word-spacing:-1.248000pt;}
.ws5c{word-spacing:-1.114667pt;}
.ws5b{word-spacing:-1.056000pt;}
.ws22{word-spacing:-0.938667pt;}
.ws56{word-spacing:-0.880000pt;}
.ws51{word-spacing:-0.821333pt;}
.ws2b{word-spacing:-0.762667pt;}
.ws3e{word-spacing:-0.704000pt;}
.ws7b{word-spacing:-0.645333pt;}
.ws5a{word-spacing:-0.586667pt;}
.ws8b{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.528000pt;}
.ws5e{word-spacing:-0.352000pt;}
.ws94{word-spacing:-0.320000pt;}
.ws6d{word-spacing:-0.293333pt;}
.ws7a{word-spacing:-0.234667pt;}
.ws8c{word-spacing:-0.213333pt;}
.ws5{word-spacing:0.000000pt;}
.ws57{word-spacing:0.117333pt;}
.ws3f{word-spacing:0.176000pt;}
.ws62{word-spacing:0.293333pt;}
.ws48{word-spacing:0.410667pt;}
.ws7f{word-spacing:0.528000pt;}
.ws6a{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.762667pt;}
.ws46{word-spacing:0.821333pt;}
.ws72{word-spacing:0.880000pt;}
.ws8{word-spacing:0.912000pt;}
.ws1b{word-spacing:0.938667pt;}
.ws55{word-spacing:0.997333pt;}
.ws5d{word-spacing:1.056000pt;}
.ws23{word-spacing:1.173333pt;}
.ws24{word-spacing:1.232000pt;}
.ws4c{word-spacing:1.408000pt;}
.ws70{word-spacing:1.466667pt;}
.wsd{word-spacing:1.584000pt;}
.ws17{word-spacing:1.760000pt;}
.ws16{word-spacing:1.818667pt;}
.ws87{word-spacing:1.877333pt;}
.ws7e{word-spacing:1.994667pt;}
.ws10{word-spacing:2.053333pt;}
.ws3d{word-spacing:2.160000pt;}
.ws59{word-spacing:2.229333pt;}
.wse{word-spacing:2.522667pt;}
.ws68{word-spacing:2.698667pt;}
.ws67{word-spacing:2.757333pt;}
.ws37{word-spacing:2.874667pt;}
.ws93{word-spacing:2.880000pt;}
.ws1c{word-spacing:2.933333pt;}
.ws1d{word-spacing:2.992000pt;}
.ws78{word-spacing:3.520000pt;}
.ws65{word-spacing:3.578667pt;}
.ws63{word-spacing:3.637333pt;}
.ws66{word-spacing:3.696000pt;}
.ws12{word-spacing:3.754667pt;}
.ws11{word-spacing:3.813333pt;}
.ws32{word-spacing:3.872000pt;}
.ws20{word-spacing:3.930667pt;}
.ws71{word-spacing:4.165333pt;}
.ws49{word-spacing:4.341333pt;}
.ws4a{word-spacing:4.400000pt;}
.ws1e{word-spacing:4.458667pt;}
.ws96{word-spacing:4.480000pt;}
.ws4b{word-spacing:4.517333pt;}
.ws81{word-spacing:4.576000pt;}
.ws95{word-spacing:4.586667pt;}
.ws53{word-spacing:4.634667pt;}
.ws1f{word-spacing:4.693333pt;}
.ws82{word-spacing:5.104000pt;}
.ws90{word-spacing:5.226667pt;}
.ws34{word-spacing:5.280000pt;}
.ws33{word-spacing:5.397333pt;}
.ws74{word-spacing:5.749333pt;}
.ws73{word-spacing:5.925333pt;}
.ws79{word-spacing:6.101333pt;}
.ws64{word-spacing:6.277333pt;}
.ws86{word-spacing:6.394667pt;}
.ws85{word-spacing:6.570667pt;}
.ws5f{word-spacing:6.746667pt;}
.ws60{word-spacing:6.981333pt;}
.ws58{word-spacing:7.098667pt;}
.ws41{word-spacing:7.568000pt;}
.ws6f{word-spacing:7.685333pt;}
.ws2e{word-spacing:7.744000pt;}
.ws42{word-spacing:7.802667pt;}
.ws61{word-spacing:7.978667pt;}
.ws76{word-spacing:8.096000pt;}
.ws47{word-spacing:8.506667pt;}
.ws4d{word-spacing:8.624000pt;}
.ws4e{word-spacing:8.917333pt;}
.ws8e{word-spacing:9.066667pt;}
.ws75{word-spacing:9.093333pt;}
.ws8f{word-spacing:9.333333pt;}
.ws25{word-spacing:10.032000pt;}
.ws26{word-spacing:10.325333pt;}
.ws7d{word-spacing:10.384000pt;}
.ws84{word-spacing:10.677333pt;}
.ws15{word-spacing:11.557333pt;}
.ws14{word-spacing:11.909333pt;}
.ws83{word-spacing:13.317333pt;}
.ws28{word-spacing:13.845333pt;}
.ws29{word-spacing:14.314667pt;}
.ws36{word-spacing:21.765333pt;}
.wsc{word-spacing:32.000000pt;}
.ws92{word-spacing:46.977067pt;}
.ws3a{word-spacing:878.064000pt;}
.ws38{word-spacing:1084.608000pt;}
._b{margin-left:-51.920000pt;}
._1c{margin-left:-21.333333pt;}
._17{margin-left:-18.624000pt;}
._11{margin-left:-7.694400pt;}
._14{margin-left:-5.377067pt;}
._2{margin-left:-4.400000pt;}
._7{margin-left:-3.476800pt;}
._1{margin-left:-2.542400pt;}
._0{margin-left:-0.970667pt;}
._3{width:1.603200pt;}
._4{width:2.566933pt;}
._5{width:3.792000pt;}
._6{width:4.772267pt;}
._8{width:6.538667pt;}
._a{width:7.843733pt;}
._16{width:8.790933pt;}
._9{width:9.703467pt;}
._1a{width:10.814933pt;}
._1d{width:12.075733pt;}
._e{width:13.264000pt;}
._d{width:14.297067pt;}
._18{width:15.329600pt;}
._f{width:17.330133pt;}
._10{width:18.316267pt;}
._19{width:21.078933pt;}
._15{width:28.800000pt;}
._1b{width:32.000000pt;}
._c{width:65.648000pt;}
._12{width:509.493333pt;}
._13{width:723.648000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:36.036533pt;}
.y5{bottom:49.373867pt;}
.y7{bottom:55.039333pt;}
.y4{bottom:62.711200pt;}
.y3{bottom:76.048533pt;}
.y2{bottom:89.385867pt;}
.y1{bottom:102.719200pt;}
.y1d9{bottom:139.842533pt;}
.y152{bottom:139.993733pt;}
.y19e{bottom:141.271467pt;}
.y17a{bottom:142.610133pt;}
.y133{bottom:146.880800pt;}
.ye9{bottom:148.198667pt;}
.y1ae{bottom:150.698133pt;}
.y112{bottom:151.944667pt;}
.y151{bottom:155.773200pt;}
.yb7{bottom:156.247867pt;}
.y19d{bottom:159.942133pt;}
.y179{bottom:161.280800pt;}
.y132{bottom:162.660400pt;}
.yd5{bottom:162.662667pt;}
.y1e{bottom:162.775200pt;}
.yfc{bottom:162.835600pt;}
.y1d8{bottom:166.420133pt;}
.ye8{bottom:166.869333pt;}
.y111{bottom:167.724267pt;}
.y1ad{bottom:168.031467pt;}
.yb6{bottom:174.918533pt;}
.y19c{bottom:178.612800pt;}
.y1d{bottom:178.771200pt;}
.yd4{bottom:181.333333pt;}
.yfb{bottom:181.506267pt;}
.y1d0{bottom:182.698133pt;}
.ye7{bottom:185.540000pt;}
.y44{bottom:188.333467pt;}
.yb5{bottom:193.589200pt;}
.y1c{bottom:194.767200pt;}
.y19b{bottom:197.283467pt;}
.y178{bottom:198.607467pt;}
.yd3{bottom:200.004000pt;}
.y1cf{bottom:200.031467pt;}
.yfa{bottom:200.176933pt;}
.y1ac{bottom:202.698133pt;}
.y43{bottom:207.004133pt;}
.y6b{bottom:210.599467pt;}
.y1b{bottom:210.763200pt;}
.yb4{bottom:212.259867pt;}
.y177{bottom:217.278133pt;}
.y1ce{bottom:217.364800pt;}
.yd2{bottom:218.674667pt;}
.yf9{bottom:218.847600pt;}
.ye6{bottom:222.866667pt;}
.y42{bottom:225.674800pt;}
.y1a{bottom:226.759200pt;}
.y6a{bottom:229.270133pt;}
.yb3{bottom:230.930533pt;}
.y19a{bottom:234.610133pt;}
.y8d{bottom:234.625733pt;}
.y176{bottom:235.948800pt;}
.yd1{bottom:237.345333pt;}
.y1ab{bottom:237.364800pt;}
.yf8{bottom:237.518267pt;}
.y1d7{bottom:241.204800pt;}
.ye5{bottom:241.537333pt;}
.y19{bottom:242.755200pt;}
.y41{bottom:244.345467pt;}
.y69{bottom:247.940800pt;}
.yb2{bottom:249.601200pt;}
.y1cd{bottom:252.031467pt;}
.y199{bottom:253.280800pt;}
.y8c{bottom:253.296400pt;}
.y175{bottom:254.619467pt;}
.yd0{bottom:256.016000pt;}
.y1d6{bottom:257.200800pt;}
.y18{bottom:258.751200pt;}
.ye4{bottom:260.208000pt;}
.y40{bottom:263.016133pt;}
.y68{bottom:266.611467pt;}
.yb1{bottom:268.271867pt;}
.y198{bottom:271.951467pt;}
.y8b{bottom:271.967067pt;}
.y1d5{bottom:273.196800pt;}
.y174{bottom:273.290133pt;}
.y1aa{bottom:273.364800pt;}
.y17{bottom:274.747200pt;}
.yf7{bottom:274.844933pt;}
.y3f{bottom:281.686800pt;}
.y67{bottom:285.282133pt;}
.y1cc{bottom:286.698133pt;}
.yb0{bottom:286.942533pt;}
.y197{bottom:290.622133pt;}
.y8a{bottom:290.637733pt;}
.y16{bottom:290.743200pt;}
.y173{bottom:291.960800pt;}
.ycf{bottom:293.342667pt;}
.yf6{bottom:293.515600pt;}
.ye3{bottom:297.534667pt;}
.y3e{bottom:300.357467pt;}
.y66{bottom:303.952800pt;}
.yaf{bottom:305.613200pt;}
.y196{bottom:309.292800pt;}
.y89{bottom:309.308400pt;}
.y15{bottom:310.522800pt;}
.y172{bottom:310.631467pt;}
.yce{bottom:312.013333pt;}
.yf5{bottom:312.186267pt;}
.ye2{bottom:316.205333pt;}
.y3d{bottom:319.028133pt;}
.y1cb{bottom:321.364800pt;}
.y65{bottom:322.623467pt;}
.yae{bottom:324.283867pt;}
.y195{bottom:327.963467pt;}
.y88{bottom:327.979067pt;}
.ycd{bottom:330.684000pt;}
.yf4{bottom:330.856933pt;}
.y150{bottom:332.031467pt;}
.ye1{bottom:334.876000pt;}
.y3c{bottom:337.698800pt;}
.y1ca{bottom:338.698133pt;}
.y131{bottom:338.918667pt;}
.y110{bottom:340.202933pt;}
.y64{bottom:341.294133pt;}
.y1a9{bottom:342.698133pt;}
.yad{bottom:342.954533pt;}
.y87{bottom:346.649733pt;}
.y171{bottom:347.958133pt;}
.ycc{bottom:349.354667pt;}
.yf3{bottom:349.527600pt;}
.ye0{bottom:353.546667pt;}
.y3b{bottom:356.369467pt;}
.y14{bottom:359.056133pt;}
.y63{bottom:359.964800pt;}
.yac{bottom:361.625200pt;}
.y194{bottom:365.290133pt;}
.y86{bottom:365.320400pt;}
.y170{bottom:366.628800pt;}
.ycb{bottom:368.025333pt;}
.yf2{bottom:368.198267pt;}
.y1c9{bottom:373.364800pt;}
.y3a{bottom:375.040133pt;}
.y13{bottom:377.722800pt;}
.y62{bottom:378.635467pt;}
.y130{bottom:379.955467pt;}
.y1a8{bottom:380.031467pt;}
.y193{bottom:383.960800pt;}
.y85{bottom:383.991067pt;}
.y16f{bottom:385.299467pt;}
.yf1{bottom:386.868933pt;}
.y14f{bottom:387.966133pt;}
.y1c8{bottom:390.698133pt;}
.ydf{bottom:390.882667pt;}
.y39{bottom:393.710800pt;}
.y10f{bottom:396.168267pt;}
.y12{bottom:396.389467pt;}
.y61{bottom:397.306133pt;}
.y12f{bottom:398.626133pt;}
.yab{bottom:398.951867pt;}
.y192{bottom:402.631467pt;}
.y84{bottom:402.661733pt;}
.y16e{bottom:403.970133pt;}
.yca{bottom:405.352000pt;}
.y14e{bottom:406.636800pt;}
.y38{bottom:412.381467pt;}
.y10e{bottom:414.838933pt;}
.y11{bottom:415.056133pt;}
.y60{bottom:415.976800pt;}
.y12e{bottom:417.296800pt;}
.yde{bottom:417.546667pt;}
.y191{bottom:421.302133pt;}
.y83{bottom:421.332400pt;}
.y16d{bottom:422.640800pt;}
.yc9{bottom:424.022667pt;}
.yf0{bottom:424.195600pt;}
.y14d{bottom:425.307467pt;}
.y1c7{bottom:425.364800pt;}
.y10d{bottom:433.509600pt;}
.y5f{bottom:434.647467pt;}
.y12d{bottom:435.967467pt;}
.y190{bottom:439.972800pt;}
.yc8{bottom:442.693333pt;}
.y1c6{bottom:442.698133pt;}
.yef{bottom:442.866267pt;}
.y14c{bottom:443.978133pt;}
.y1a7{bottom:449.364800pt;}
.y37{bottom:449.708133pt;}
.y10{bottom:449.989467pt;}
.y10c{bottom:452.180267pt;}
.y12c{bottom:454.638133pt;}
.yaa{bottom:454.952667pt;}
.y18f{bottom:458.643467pt;}
.y82{bottom:458.659067pt;}
.y16c{bottom:459.967467pt;}
.yc7{bottom:461.364000pt;}
.yee{bottom:461.536933pt;}
.y36{bottom:468.378800pt;}
.yf{bottom:468.656133pt;}
.y10b{bottom:470.850933pt;}
.y5e{bottom:471.974133pt;}
.y18e{bottom:477.314133pt;}
.y81{bottom:477.329733pt;}
.y1c5{bottom:477.364800pt;}
.y16b{bottom:478.638133pt;}
.ya9{bottom:478.648267pt;}
.y14b{bottom:481.304800pt;}
.ydd{bottom:481.547467pt;}
.y1a6{bottom:486.698133pt;}
.y35{bottom:487.049467pt;}
.ye{bottom:487.322800pt;}
.y10a{bottom:489.521600pt;}
.y12b{bottom:491.964800pt;}
.ya8{bottom:493.312267pt;}
.y18d{bottom:495.984800pt;}
.y80{bottom:496.000400pt;}
.y16a{bottom:497.308800pt;}
.ydc{bottom:497.327067pt;}
.yc6{bottom:498.697333pt;}
.yed{bottom:498.870267pt;}
.y14a{bottom:499.975467pt;}
.y34{bottom:505.720133pt;}
.yd{bottom:505.989467pt;}
.ya7{bottom:507.976267pt;}
.y5d{bottom:509.300800pt;}
.y12a{bottom:510.635467pt;}
.y1c4{bottom:512.031467pt;}
.y18c{bottom:514.655467pt;}
.y7f{bottom:514.671067pt;}
.y169{bottom:515.979467pt;}
.y149{bottom:518.646133pt;}
.y1a5{bottom:518.698133pt;}
.ya6{bottom:522.640267pt;}
.y33{bottom:524.390800pt;}
.y109{bottom:526.848267pt;}
.y5c{bottom:527.971467pt;}
.y129{bottom:529.306133pt;}
.y1c3{bottom:529.364800pt;}
.y18b{bottom:533.326133pt;}
.y7e{bottom:533.341733pt;}
.y168{bottom:534.650133pt;}
.ya5{bottom:537.304267pt;}
.y148{bottom:537.316800pt;}
.y32{bottom:543.061467pt;}
.y108{bottom:545.518933pt;}
.y5b{bottom:546.642133pt;}
.y1c2{bottom:546.698133pt;}
.y128{bottom:547.976800pt;}
.yc{bottom:548.481867pt;}
.ya4{bottom:551.968267pt;}
.y18a{bottom:551.996800pt;}
.y7d{bottom:552.012400pt;}
.yec{bottom:552.203600pt;}
.y167{bottom:553.320800pt;}
.y147{bottom:555.987467pt;}
.y1d4{bottom:564.031467pt;}
.y107{bottom:564.189600pt;}
.ya3{bottom:566.632267pt;}
.y127{bottom:566.647467pt;}
.yeb{bottom:567.983200pt;}
.yc5{bottom:570.677333pt;}
.y7c{bottom:570.683067pt;}
.y31{bottom:580.394800pt;}
.yb{bottom:580.481867pt;}
.ya2{bottom:581.296267pt;}
.y1c1{bottom:581.364800pt;}
.y106{bottom:582.860267pt;}
.y5a{bottom:583.968800pt;}
.y126{bottom:585.318133pt;}
.y1a4{bottom:588.031467pt;}
.y189{bottom:589.323467pt;}
.yc4{bottom:589.348000pt;}
.y7b{bottom:589.353733pt;}
.y166{bottom:590.647467pt;}
.y146{bottom:593.314133pt;}
.ya1{bottom:595.960267pt;}
.y1c0{bottom:598.698133pt;}
.y59{bottom:602.639467pt;}
.y125{bottom:603.988800pt;}
.y188{bottom:607.994133pt;}
.yc3{bottom:608.018667pt;}
.y165{bottom:609.318133pt;}
.ya0{bottom:610.624267pt;}
.y145{bottom:611.984800pt;}
.ya{bottom:620.040800pt;}
.y105{bottom:620.186933pt;}
.y58{bottom:621.310133pt;}
.y124{bottom:622.659467pt;}
.y9f{bottom:625.288267pt;}
.y1a3{bottom:625.364800pt;}
.y187{bottom:626.664800pt;}
.y7a{bottom:626.680400pt;}
.yc2{bottom:626.689333pt;}
.y164{bottom:627.988800pt;}
.y144{bottom:630.655467pt;}
.y1bf{bottom:633.364800pt;}
.y104{bottom:638.857600pt;}
.y57{bottom:639.980800pt;}
.y123{bottom:641.330133pt;}
.y186{bottom:645.335467pt;}
.y79{bottom:645.351067pt;}
.yc1{bottom:645.360000pt;}
.y143{bottom:649.326133pt;}
.y1be{bottom:650.698133pt;}
.y9e{bottom:652.408267pt;}
.y103{bottom:657.528267pt;}
.y56{bottom:658.651467pt;}
.y122{bottom:660.000800pt;}
.y9{bottom:660.040800pt;}
.y185{bottom:664.006133pt;}
.y78{bottom:664.021733pt;}
.yc0{bottom:664.030667pt;}
.y163{bottom:665.315467pt;}
.y9d{bottom:667.072267pt;}
.y142{bottom:667.996800pt;}
.y1d3{bottom:668.031467pt;}
.y102{bottom:676.198933pt;}
.y55{bottom:677.322133pt;}
.ydb{bottom:677.364800pt;}
.y9c{bottom:681.736267pt;}
.y184{bottom:682.676800pt;}
.y77{bottom:682.692400pt;}
.y162{bottom:683.986133pt;}
.y1bd{bottom:685.364800pt;}
.y141{bottom:686.667467pt;}
.y30{bottom:687.985333pt;}
.y1a2{bottom:694.698133pt;}
.y101{bottom:694.869600pt;}
.y54{bottom:695.992800pt;}
.y9b{bottom:696.400267pt;}
.y121{bottom:697.327467pt;}
.y8{bottom:700.040800pt;}
.y183{bottom:701.347467pt;}
.y76{bottom:701.363067pt;}
.ybf{bottom:701.364000pt;}
.y161{bottom:702.656800pt;}
.y1bc{bottom:702.698133pt;}
.y2f{bottom:703.985333pt;}
.y140{bottom:705.338133pt;}
.y9a{bottom:711.064267pt;}
.y120{bottom:715.998133pt;}
.y182{bottom:720.018133pt;}
.y1bb{bottom:720.031467pt;}
.y160{bottom:721.327467pt;}
.y13f{bottom:724.008800pt;}
.y1a1{bottom:732.031467pt;}
.y100{bottom:732.202933pt;}
.y53{bottom:733.319467pt;}
.yda{bottom:733.334133pt;}
.y11f{bottom:734.668800pt;}
.y1ba{bottom:737.364800pt;}
.y2e{bottom:737.888000pt;}
.y99{bottom:738.184267pt;}
.y181{bottom:738.688800pt;}
.y75{bottom:738.689733pt;}
.y15f{bottom:739.998133pt;}
.y13e{bottom:742.679467pt;}
.y52{bottom:751.990133pt;}
.yd9{bottom:752.004800pt;}
.y11e{bottom:753.339467pt;}
.y2d{bottom:753.884000pt;}
.y1d2{bottom:754.698133pt;}
.y74{bottom:757.360400pt;}
.y15e{bottom:758.668800pt;}
.y98{bottom:765.304267pt;}
.y2c{bottom:769.880000pt;}
.y51{bottom:770.660800pt;}
.ybe{bottom:770.675467pt;}
.yea{bottom:770.698133pt;}
.y11d{bottom:772.010133pt;}
.y1b9{bottom:772.031467pt;}
.y180{bottom:776.015467pt;}
.y73{bottom:776.031067pt;}
.y15d{bottom:777.339467pt;}
.y97{bottom:779.968267pt;}
.y13d{bottom:780.006133pt;}
.y2b{bottom:785.876000pt;}
.y50{bottom:789.331467pt;}
.ybd{bottom:789.346133pt;}
.y1b8{bottom:789.364800pt;}
.y11c{bottom:790.680800pt;}
.y17f{bottom:794.686133pt;}
.y15c{bottom:796.010133pt;}
.yff{bottom:796.203733pt;}
.y13c{bottom:798.676800pt;}
.y1a0{bottom:801.364800pt;}
.y2a{bottom:801.872000pt;}
.y1b7{bottom:806.698133pt;}
.y96{bottom:807.088267pt;}
.ybc{bottom:808.016800pt;}
.y11b{bottom:809.351467pt;}
.yfe{bottom:811.983200pt;}
.y17e{bottom:813.356800pt;}
.y72{bottom:813.364400pt;}
.y15b{bottom:814.680800pt;}
.y13b{bottom:817.347467pt;}
.y29{bottom:817.868000pt;}
.y4f{bottom:826.658133pt;}
.yd8{bottom:826.672800pt;}
.ybb{bottom:826.687467pt;}
.y17d{bottom:832.027467pt;}
.y28{bottom:833.864000pt;}
.y95{bottom:834.208267pt;}
.y13a{bottom:836.018133pt;}
.y19f{bottom:838.698133pt;}
.y1b6{bottom:841.364800pt;}
.y4e{bottom:845.328800pt;}
.yd7{bottom:845.343467pt;}
.yba{bottom:845.358133pt;}
.y11a{bottom:846.678133pt;}
.y94{bottom:848.872267pt;}
.y27{bottom:849.860000pt;}
.y17c{bottom:850.698133pt;}
.y15a{bottom:852.007467pt;}
.y139{bottom:854.688800pt;}
.y1b5{bottom:858.698133pt;}
.y4d{bottom:863.999467pt;}
.yd6{bottom:864.014133pt;}
.yb9{bottom:864.028800pt;}
.y119{bottom:865.348800pt;}
.y26{bottom:865.856000pt;}
.y159{bottom:870.678133pt;}
.y138{bottom:873.359467pt;}
.y93{bottom:875.992267pt;}
.y1b4{bottom:876.031467pt;}
.y25{bottom:881.852000pt;}
.y4c{bottom:882.670133pt;}
.y71{bottom:882.684800pt;}
.yb8{bottom:882.699467pt;}
.y118{bottom:884.019467pt;}
.y17b{bottom:888.031467pt;}
.y158{bottom:889.348800pt;}
.y137{bottom:892.030133pt;}
.y1d1{bottom:893.364800pt;}
.y4b{bottom:901.340800pt;}
.y70{bottom:901.355467pt;}
.y24{bottom:901.631467pt;}
.y117{bottom:902.690133pt;}
.y92{bottom:903.112267pt;}
.y157{bottom:908.019467pt;}
.y1b3{bottom:910.698133pt;}
.y4a{bottom:920.011467pt;}
.y6f{bottom:920.026133pt;}
.y116{bottom:921.360800pt;}
.y156{bottom:926.690133pt;}
.y1b2{bottom:928.031467pt;}
.y136{bottom:929.356800pt;}
.y91{bottom:930.232267pt;}
.y49{bottom:938.682133pt;}
.y6e{bottom:938.696800pt;}
.y115{bottom:940.031467pt;}
.y155{bottom:945.360800pt;}
.y1b1{bottom:945.364800pt;}
.y135{bottom:948.027467pt;}
.y23{bottom:950.164800pt;}
.y90{bottom:957.352267pt;}
.y48{bottom:957.352800pt;}
.y6d{bottom:957.367467pt;}
.y1b0{bottom:962.698133pt;}
.y154{bottom:964.031467pt;}
.y22{bottom:966.164800pt;}
.y134{bottom:966.698133pt;}
.y47{bottom:976.023467pt;}
.y6c{bottom:976.038133pt;}
.y114{bottom:977.367467pt;}
.y8f{bottom:984.472267pt;}
.y46{bottom:994.694133pt;}
.y1af{bottom:997.364800pt;}
.y21{bottom:1000.035467pt;}
.y153{bottom:1001.364800pt;}
.y113{bottom:1004.031467pt;}
.y8e{bottom:1009.364800pt;}
.y45{bottom:1013.364800pt;}
.yfd{bottom:1014.698133pt;}
.y20{bottom:1016.031467pt;}
.y1f{bottom:1065.597067pt;}
.h3{height:28.373333pt;}
.h2{height:31.146667pt;}
.hb{height:33.376000pt;}
.h12{height:34.272000pt;}
.he{height:34.704000pt;}
.h4{height:36.480000pt;}
.hf{height:36.624000pt;}
.h10{height:38.144000pt;}
.h14{height:38.933333pt;}
.h15{height:40.533333pt;}
.ha{height:42.912000pt;}
.h9{height:46.720000pt;}
.h8{height:47.680000pt;}
.h7{height:48.693333pt;}
.hd{height:52.448000pt;}
.h13{height:69.408000pt;}
.h6{height:75.733333pt;}
.hc{height:77.866667pt;}
.h11{height:85.344000pt;}
.h5{height:97.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:81.590667pt;}
.x3{left:86.440267pt;}
.x5{left:112.095867pt;}
.x1b{left:113.390533pt;}
.x1a{left:120.763867pt;}
.xf{left:122.390533pt;}
.x6{left:128.507867pt;}
.x4{left:131.338533pt;}
.x1c{left:212.675600pt;}
.x17{left:227.919333pt;}
.x10{left:271.812400pt;}
.x15{left:279.525333pt;}
.xc{left:282.172267pt;}
.x19{left:302.398800pt;}
.x13{left:318.965067pt;}
.x7{left:323.587733pt;}
.x8{left:330.338667pt;}
.xb{left:354.628133pt;}
.xa{left:357.254667pt;}
.x16{left:385.241733pt;}
.x18{left:394.180667pt;}
.x14{left:395.450533pt;}
.x11{left:396.842400pt;}
.xd{left:416.688533pt;}
.xe{left:615.135733pt;}
.x2{left:696.428267pt;}
.x12{left:697.874133pt;}
}




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