
    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_b0840ad0cdecb16e257bd1ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_737e6c228633a00e67269273.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b149211730308c79050d5e9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706000;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_aab34509c71f166973ce3c31.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1b94b2a487419bc254c540f1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f17fd7ebad564b92f2213b33.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57c0b8a3b4e34595a04c7f11.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8d3820c49629203314381f99.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_516902246ea011db5eff547e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9b6bc351d4112426280296d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_d19c4b4f39ebd2cf6f01ff7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.981934;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_c0df2bff8836f2cd7407f7fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;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_4cd8902de84cf17ca82cb3f9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_85079ce45be6cfe1938a134c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;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_8598be9d317bf1189aba69e6.woff2')format("woff");}.fff{font-family:fff;line-height:0.936523;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_975436a05b086d24453d08cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918945;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_7b2ac44b2b3c67f82ad6a37c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;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_c4d5127a3ee3370f1d7a5927.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.881836;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);}
.v2{vertical-align:-17.364000px;}
.v4{vertical-align:-4.500135px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.394934px;}
.v1{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000466px;}
.lsa{letter-spacing:0.001657px;}
.ls9{letter-spacing:0.001838px;}
.ls6{letter-spacing:1.078118px;}
.ls3{letter-spacing:2.987447px;}
.ls4{letter-spacing:2.992118px;}
.ls2{letter-spacing:19.904383px;}
.ls7{letter-spacing:21.173447px;}
.ls5{letter-spacing:22.889447px;}
.ls0{letter-spacing:29.887800px;}
.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;}
}
.ws1a{word-spacing:-31.515269px;}
.ws18{word-spacing:-31.163782px;}
.ws2{word-spacing:-28.921872px;}
.ws11{word-spacing:-24.101616px;}
.ws4{word-spacing:-20.084736px;}
.ws55{word-spacing:-17.127156px;}
.ws2f{word-spacing:-16.737168px;}
.wsb7{word-spacing:-13.389768px;}
.ws1c{word-spacing:-12.402414px;}
.ws1b{word-spacing:-12.401831px;}
.ws17{word-spacing:-12.401248px;}
.ws2c{word-spacing:-3.526760px;}
.ws2b{word-spacing:-3.466985px;}
.ws79{word-spacing:-3.347434px;}
.wsd6{word-spacing:-3.287658px;}
.wse1{word-spacing:-2.749678px;}
.ws62{word-spacing:-2.689902px;}
.wsb5{word-spacing:-2.450800px;}
.wsd7{word-spacing:-2.331248px;}
.ws4e{word-spacing:-2.092146px;}
.ws4f{word-spacing:-2.048432px;}
.wsbf{word-spacing:-1.853044px;}
.wsc4{word-spacing:-1.613941px;}
.wsd9{word-spacing:-1.554166px;}
.wsba{word-spacing:-1.315063px;}
.ws32{word-spacing:-1.075961px;}
.wsb3{word-spacing:-0.777083px;}
.wsd8{word-spacing:-0.418429px;}
.ws73{word-spacing:-0.298878px;}
.wsdf{word-spacing:-0.239102px;}
.ws93{word-spacing:-0.119551px;}
.wsb2{word-spacing:-0.059776px;}
.wsa9{word-spacing:-0.049501px;}
.wsab{word-spacing:-0.030001px;}
.ws19{word-spacing:0.000000px;}
.ws42{word-spacing:0.191282px;}
.ws58{word-spacing:0.298878px;}
.wsa6{word-spacing:0.358654px;}
.wsa1{word-spacing:0.418429px;}
.wsde{word-spacing:0.436360px;}
.ws60{word-spacing:0.597756px;}
.ws53{word-spacing:0.956410px;}
.wsbe{word-spacing:1.434614px;}
.ws25{word-spacing:1.554166px;}
.wsa4{word-spacing:1.793268px;}
.ws4a{word-spacing:1.853044px;}
.ws48{word-spacing:1.865003px;}
.ws9f{word-spacing:2.092146px;}
.wse5{word-spacing:2.151922px;}
.ws1{word-spacing:2.169140px;}
.ws0{word-spacing:2.272433px;}
.wsd3{word-spacing:2.343209px;}
.wsaf{word-spacing:2.450800px;}
.wsc6{word-spacing:2.570351px;}
.ws4b{word-spacing:2.689902px;}
.ws4c{word-spacing:2.749678px;}
.ws72{word-spacing:2.809453px;}
.ws30{word-spacing:3.108331px;}
.ws27{word-spacing:3.168107px;}
.ws44{word-spacing:3.172565px;}
.ws26{word-spacing:3.227882px;}
.ws43{word-spacing:3.287658px;}
.ws3{word-spacing:3.299635px;}
.ws10{word-spacing:3.389299px;}
.ws92{word-spacing:3.407209px;}
.ws49{word-spacing:3.538724px;}
.ws54{word-spacing:3.586536px;}
.wsb9{word-spacing:3.646312px;}
.ws57{word-spacing:4.004965px;}
.wse6{word-spacing:4.006720px;}
.ws75{word-spacing:4.184292px;}
.ws74{word-spacing:4.244068px;}
.ws77{word-spacing:4.363619px;}
.ws31{word-spacing:4.483170px;}
.ws51{word-spacing:4.542946px;}
.wscd{word-spacing:4.662497px;}
.ws50{word-spacing:4.722272px;}
.ws5a{word-spacing:4.782048px;}
.wscf{word-spacing:4.841824px;}
.ws76{word-spacing:4.901599px;}
.wsa8{word-spacing:4.961375px;}
.wsd2{word-spacing:5.068984px;}
.wsae{word-spacing:5.080926px;}
.wsc7{word-spacing:5.140702px;}
.wsdd{word-spacing:5.200477px;}
.wsbb{word-spacing:5.260253px;}
.ws33{word-spacing:5.439580px;}
.ws24{word-spacing:5.618906px;}
.wsbc{word-spacing:5.678682px;}
.wsac{word-spacing:5.977560px;}
.ws1f{word-spacing:6.097111px;}
.wsb8{word-spacing:6.503602px;}
.ws4d{word-spacing:6.742733px;}
.ws21{word-spacing:6.814464px;}
.wsa2{word-spacing:7.113296px;}
.wsc5{word-spacing:7.232848px;}
.ws2d{word-spacing:7.292623px;}
.wsd0{word-spacing:7.352399px;}
.wsb6{word-spacing:7.364372px;}
.wsb{word-spacing:7.370381px;}
.ws22{word-spacing:7.770828px;}
.wsce{word-spacing:8.091257px;}
.ws56{word-spacing:8.129482px;}
.wsbd{word-spacing:8.154114px;}
.ws59{word-spacing:8.189257px;}
.wsf{word-spacing:8.231155px;}
.ws6e{word-spacing:8.428360px;}
.ws7b{word-spacing:8.547911px;}
.wsc9{word-spacing:8.607686px;}
.ws23{word-spacing:8.787013px;}
.ws2e{word-spacing:8.846789px;}
.wsa3{word-spacing:8.966340px;}
.wsc8{word-spacing:9.026116px;}
.wsd4{word-spacing:9.384769px;}
.ws41{word-spacing:9.659761px;}
.ws45{word-spacing:9.743423px;}
.wse4{word-spacing:9.803198px;}
.ws71{word-spacing:9.862974px;}
.wsb0{word-spacing:9.982525px;}
.ws52{word-spacing:10.341179px;}
.wsad{word-spacing:10.460730px;}
.wscc{word-spacing:10.580281px;}
.wsb4{word-spacing:10.699832px;}
.wsd{word-spacing:10.867277px;}
.wsc3{word-spacing:11.297588px;}
.wsc2{word-spacing:11.365237px;}
.wsd1{word-spacing:11.476915px;}
.wsdc{word-spacing:11.835569px;}
.wse{word-spacing:11.943245px;}
.ws28{word-spacing:11.955120px;}
.ws70{word-spacing:12.672427px;}
.ws78{word-spacing:12.911530px;}
.wsd5{word-spacing:12.971305px;}
.ws13{word-spacing:13.150632px;}
.wsc1{word-spacing:13.412110px;}
.wsc0{word-spacing:13.412114px;}
.wse0{word-spacing:13.449510px;}
.wsa{word-spacing:13.557197px;}
.wse3{word-spacing:14.346144px;}
.ws91{word-spacing:14.465695px;}
.ws3e{word-spacing:14.585246px;}
.ws3d{word-spacing:14.645022px;}
.ws9{word-spacing:14.955955px;}
.ws2a{word-spacing:16.258963px;}
.ws40{word-spacing:16.976313px;}
.ws16{word-spacing:17.506835px;}
.wsca{word-spacing:18.530436px;}
.wsc{word-spacing:19.044634px;}
.ws7{word-spacing:19.313626px;}
.wsda{word-spacing:19.367294px;}
.ws3f{word-spacing:20.228114px;}
.ws8{word-spacing:21.573158px;}
.wscb{word-spacing:22.356074px;}
.wse2{word-spacing:22.415850px;}
.ws90{word-spacing:22.654952px;}
.ws5{word-spacing:22.702925px;}
.ws6{word-spacing:23.617498px;}
.wsdb{word-spacing:24.926425px;}
.ws8f{word-spacing:25.285079px;}
.ws46{word-spacing:29.529146px;}
.wsaa{word-spacing:31.848769px;}
.ws29{word-spacing:34.251419px;}
.ws5b{word-spacing:39.690998px;}
.wsb1{word-spacing:48.891717px;}
.ws6f{word-spacing:54.933776px;}
.ws5e{word-spacing:54.993552px;}
.ws94{word-spacing:108.911143px;}
.wsa5{word-spacing:138.141412px;}
.ws7a{word-spacing:139.576026px;}
.ws86{word-spacing:164.384586px;}
.ws87{word-spacing:182.197715px;}
.ws6c{word-spacing:196.908949px;}
.ws84{word-spacing:197.619820px;}
.ws63{word-spacing:205.809514px;}
.ws85{word-spacing:215.612275px;}
.ws8d{word-spacing:222.247367px;}
.ws81{word-spacing:226.192556px;}
.ws5c{word-spacing:227.152050px;}
.ws8e{word-spacing:238.625881px;}
.ws8c{word-spacing:249.026836px;}
.ws5d{word-spacing:260.560610px;}
.ws82{word-spacing:270.785154px;}
.ws83{word-spacing:272.219768px;}
.ws88{word-spacing:272.578422px;}
.ws7f{word-spacing:287.641873px;}
.ws80{word-spacing:305.634329px;}
.ws8b{word-spacing:317.589449px;}
.ws8a{word-spacing:329.006588px;}
.ws7e{word-spacing:330.261876px;}
.ws89{word-spacing:332.181035px;}
.ws65{word-spacing:338.098916px;}
.ws7c{word-spacing:360.747432px;}
.ws5f{word-spacing:365.110835px;}
.ws6d{word-spacing:382.625738px;}
.ws68{word-spacing:386.278050px;}
.ws95{word-spacing:402.890573px;}
.ws9b{word-spacing:402.896573px;}
.ws67{word-spacing:426.566804px;}
.ws9e{word-spacing:450.112294px;}
.ws9a{word-spacing:483.706181px;}
.ws69{word-spacing:492.559067px;}
.ws98{word-spacing:502.063290px;}
.ws99{word-spacing:508.698382px;}
.ws96{word-spacing:520.294848px;}
.ws9d{word-spacing:526.983715px;}
.ws6b{word-spacing:531.233880px;}
.ws97{word-spacing:538.287304px;}
.ws9c{word-spacing:538.580182px;}
.ws7d{word-spacing:545.281049px;}
.ws66{word-spacing:545.819126px;}
.ws64{word-spacing:549.638765px;}
.ws61{word-spacing:564.221544px;}
.ws6a{word-spacing:567.577445px;}
.wsa7{word-spacing:628.364647px;}
.ws37{word-spacing:797.649146px;}
.ws47{word-spacing:834.411140px;}
.ws34{word-spacing:857.125868px;}
.ws3c{word-spacing:860.831956px;}
.ws3b{word-spacing:862.565448px;}
.ws36{word-spacing:887.372322px;}
.ws35{word-spacing:920.727107px;}
.wsa0{word-spacing:933.997290px;}
.ws38{word-spacing:960.418105px;}
.ws3a{word-spacing:987.137798px;}
.ws39{word-spacing:1000.407982px;}
.ws1e{word-spacing:1407.902447px;}
.ws12{word-spacing:1632.183528px;}
.ws20{word-spacing:1653.998592px;}
.ws1d{word-spacing:1663.204034px;}
.ws14{word-spacing:1747.849314px;}
.ws15{word-spacing:1789.811785px;}
._16{margin-left:-34.789399px;}
._68{margin-left:-32.801374px;}
._12{margin-left:-31.501741px;}
._10{margin-left:-29.887800px;}
._13{margin-left:-10.102076px;}
._0{margin-left:-7.953515px;}
._1f{margin-left:-5.770156px;}
._5{margin-left:-4.572864px;}
._1{margin-left:-2.685602px;}
._2{margin-left:-1.116151px;}
._3{width:1.865011px;}
._1c{width:2.892790px;}
._11{width:5.575547px;}
._22{width:15.207706px;}
._1e{width:17.334924px;}
._96{width:18.410885px;}
._d{width:19.905275px;}
._19{width:21.024744px;}
._30{width:22.140930px;}
._9{width:23.456102px;}
._1d{width:25.105752px;}
._a{width:27.020412px;}
._b{width:28.907674px;}
._ad{width:29.975798px;}
._8{width:31.203072px;}
._24{width:33.044019px;}
._14{width:34.402464px;}
._23{width:37.084891px;}
._95{width:38.168531px;}
._ab{width:39.420343px;}
._18{width:42.570560px;}
._e{width:43.779269px;}
._aa{width:45.070802px;}
._66{width:48.059582px;}
._c{width:50.355302px;}
._1b{width:52.224289px;}
._ae{width:53.251213px;}
._92{width:54.678407px;}
._7{width:58.788036px;}
._21{width:62.764380px;}
._15{width:64.046653px;}
._1a{width:65.255370px;}
._70{width:71.190899px;}
._6{width:72.305050px;}
._ac{width:75.257480px;}
._50{width:77.760689px;}
._55{width:82.124308px;}
._4{width:86.005709px;}
._4a{width:89.237604px;}
._9e{width:92.104218px;}
._f{width:94.048380px;}
._4e{width:95.872696px;}
._4c{width:101.073173px;}
._43{width:107.469162px;}
._41{width:112.669639px;}
._54{width:114.164029px;}
._4f{width:119.005853px;}
._51{width:122.293511px;}
._47{width:125.461618px;}
._45{width:130.662095px;}
._3f{width:132.455363px;}
._48{width:135.683245px;}
._3d{width:137.655840px;}
._49{width:138.970903px;}
._8d{width:140.346968px;}
._4b{width:142.318337px;}
._4d{width:145.605995px;}
._81{width:147.107752px;}
._40{width:153.914803px;}
._42{width:157.202461px;}
._52{width:160.609670px;}
._53{width:163.897328px;}
._44{width:171.907259px;}
._46{width:175.194917px;}
._3c{width:178.901004px;}
._3e{width:182.188662px;}
._36{width:195.243304px;}
._90{width:203.315452px;}
._85{width:204.365384px;}
._35{width:236.488468px;}
._37{width:239.776126px;}
._80{width:249.900022px;}
._71{width:252.660024px;}
._69{width:278.106559px;}
._82{width:293.380768px;}
._7e{width:297.092855px;}
._34{width:319.420786px;}
._32{width:324.621263px;}
._57{width:338.286314px;}
._6b{width:349.365074px;}
._6a{width:350.969435px;}
._93{width:356.620000px;}
._7f{width:362.700878px;}
._31{width:365.866427px;}
._33{width:369.154085px;}
._98{width:377.998696px;}
._56{width:379.531478px;}
._7d{width:381.711220px;}
._58{width:382.819136px;}
._7a{width:393.844817px;}
._89{width:396.492671px;}
._8e{width:398.129788px;}
._83{width:401.381692px;}
._2e{width:407.828898px;}
._86{width:411.643717px;}
._88{width:415.469356px;}
._87{width:416.517497px;}
._a9{width:418.064682px;}
._8b{width:422.109390px;}
._91{width:445.871856px;}
._2d{width:449.074062px;}
._2f{width:452.361720px;}
._94{width:460.456217px;}
._3b{width:462.463796px;}
._9d{width:466.357672px;}
._39{width:467.664274px;}
._7b{width:481.759439px;}
._78{width:482.974536px;}
._79{width:485.274282px;}
._72{width:500.457284px;}
._38{width:508.909438px;}
._3a{width:512.197096px;}
._75{width:516.501030px;}
._9a{width:518.800458px;}
._9b{width:525.435550px;}
._5a{width:528.814712px;}
._6e{width:537.956171px;}
._9c{width:543.726883px;}
._7c{width:550.453571px;}
._99{width:555.024472px;}
._8a{width:556.186061px;}
._62{width:557.208122px;}
._97{width:562.018217px;}
._8f{width:566.259914px;}
._9f{width:567.393024px;}
._77{width:572.769455px;}
._84{width:581.773493px;}
._74{width:593.029084px;}
._61{width:598.453286px;}
._63{width:601.740944px;}
._6f{width:606.004688px;}
._76{width:609.531449px;}
._73{width:613.457053px;}
._26{width:636.769446px;}
._8c{width:638.349288px;}
._6c{width:641.970014px;}
._6d{width:644.440399px;}
._5b{width:658.192672px;}
._59{width:682.879994px;}
._5f{width:686.586082px;}
._a0{width:721.734134px;}
._5e{width:727.831246px;}
._60{width:731.118904px;}
._65{width:766.087630px;}
._5c{width:778.640506px;}
._a3{width:781.366298px;}
._2a{width:786.291782px;}
._29{width:787.965499px;}
._64{width:797.529595px;}
._67{width:803.351006px;}
._20{width:804.571314px;}
._25{width:821.081182px;}
._2c{width:824.428615px;}
._2b{width:826.162108px;}
._27{width:857.723624px;}
._5d{width:867.467047px;}
._28{width:890.958858px;}
._a8{width:898.291672px;}
._a7{width:932.192054px;}
._a2{width:957.369550px;}
._a4{width:968.966016px;}
._a6{width:975.660883px;}
._a5{width:986.958472px;}
._a1{width:993.952217px;}
._17{width:1357.607282px;}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.000900px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:38.382328px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:49.501485px;}
.fs2{font-size:53.798400px;}
.fs9{font-size:54.028885px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y18d{bottom:4.089966px;}
.y18f{bottom:5.215002px;}
.y18b{bottom:5.622239px;}
.y18c{bottom:6.747273px;}
.y18e{bottom:11.221040px;}
.y59{bottom:12.555778px;}
.ybc{bottom:17.701440px;}
.y5b{bottom:42.370909px;}
.ybe{bottom:59.669431px;}
.y5a{bottom:72.186040px;}
.ybd{bottom:101.637422px;}
.ybf{bottom:111.767368px;}
.y1f{bottom:134.047500px;}
.y1a5{bottom:178.879500px;}
.y84{bottom:178.882500px;}
.yba{bottom:184.725000px;}
.y140{bottom:186.310500px;}
.y14f{bottom:189.223500px;}
.y11a{bottom:190.575000px;}
.yfb{bottom:190.867500px;}
.y1e{bottom:192.526500px;}
.y13b{bottom:194.091000px;}
.y1a4{bottom:197.416500px;}
.y83{bottom:197.419500px;}
.y183{bottom:198.405000px;}
.yb0{bottom:204.243000px;}
.y13f{bottom:204.244500px;}
.y14e{bottom:207.156000px;}
.y163{bottom:207.814500px;}
.y119{bottom:208.507500px;}
.y60{bottom:208.611000px;}
.yfa{bottom:208.800000px;}
.y1d{bottom:210.459000px;}
.y1c4{bottom:211.594500px;}
.yb9{bottom:211.624500px;}
.y1a3{bottom:211.978500px;}
.y13a{bottom:212.023500px;}
.y182{bottom:216.337500px;}
.y184{bottom:216.339000px;}
.yaf{bottom:222.177000px;}
.y1a2{bottom:222.289500px;}
.y5f{bottom:222.807000px;}
.y14d{bottom:225.088500px;}
.y162{bottom:225.747000px;}
.y1c3{bottom:225.790500px;}
.yf9{bottom:226.732500px;}
.y1c{bottom:228.391500px;}
.yb8{bottom:229.557000px;}
.y139{bottom:229.956000px;}
.y181{bottom:234.271500px;}
.y5e{bottom:237.004500px;}
.yae{bottom:240.109500px;}
.y1a1{bottom:240.826500px;}
.y14c{bottom:243.022500px;}
.y161{bottom:243.679500px;}
.y1c2{bottom:244.327500px;}
.yf8{bottom:244.666500px;}
.y1b{bottom:246.324000px;}
.yb7{bottom:247.489500px;}
.y138{bottom:247.888500px;}
.y82{bottom:249.777000px;}
.y180{bottom:252.204000px;}
.y5d{bottom:255.541500px;}
.y3e{bottom:255.898500px;}
.yad{bottom:258.042000px;}
.y14b{bottom:260.955000px;}
.y160{bottom:261.612000px;}
.yf7{bottom:262.599000px;}
.y1a0{bottom:262.987500px;}
.y1c1{bottom:264.069000px;}
.yb6{bottom:265.422000px;}
.y137{bottom:265.822500px;}
.y81{bottom:267.709500px;}
.y17f{bottom:270.136500px;}
.y118{bottom:271.134000px;}
.y3d{bottom:273.831000px;}
.yac{bottom:275.974500px;}
.y5c{bottom:278.032500px;}
.y14a{bottom:278.887500px;}
.y1a{bottom:279.201000px;}
.y15f{bottom:279.544500px;}
.yf6{bottom:280.531500px;}
.y19f{bottom:280.920000px;}
.y1c0{bottom:282.001500px;}
.yb5{bottom:283.354500px;}
.y80{bottom:285.643500px;}
.y17e{bottom:288.069000px;}
.y117{bottom:289.066500px;}
.y136{bottom:291.265500px;}
.y3c{bottom:291.765000px;}
.yab{bottom:293.907000px;}
.y149{bottom:296.820000px;}
.y15e{bottom:297.477000px;}
.yf5{bottom:298.464000px;}
.y19e{bottom:298.852500px;}
.y1bf{bottom:299.934000px;}
.y7f{bottom:303.576000px;}
.y116{bottom:306.999000px;}
.y3b{bottom:309.697500px;}
.y58{bottom:310.908810px;}
.yb4{bottom:310.948500px;}
.yaa{bottom:311.839500px;}
.y13e{bottom:311.841000px;}
.y19{bottom:312.078000px;}
.y17d{bottom:313.512000px;}
.y15d{bottom:315.411000px;}
.yf4{bottom:316.396500px;}
.y7e{bottom:321.508500px;}
.yd4{bottom:322.084500px;}
.y148{bottom:322.263000px;}
.y1be{bottom:323.715000px;}
.y115{bottom:324.931500px;}
.y135{bottom:327.297000px;}
.ya9{bottom:329.773500px;}
.y18{bottom:330.010500px;}
.y19d{bottom:331.599000px;}
.y15c{bottom:333.343500px;}
.yf3{bottom:334.329000px;}
.y7d{bottom:339.441000px;}
.y3a{bottom:342.444000px;}
.y114{bottom:342.865500px;}
.y134{bottom:345.229500px;}
.yd3{bottom:347.527500px;}
.ya8{bottom:347.706000px;}
.y15b{bottom:351.276000px;}
.yf2{bottom:352.263000px;}
.y17c{bottom:352.458000px;}
.yb3{bottom:352.803000px;}
.y7c{bottom:357.373500px;}
.y113{bottom:360.798000px;}
.y147{bottom:361.866000px;}
.y17{bottom:362.887500px;}
.y133{bottom:363.162000px;}
.ya7{bottom:365.638500px;}
.y15a{bottom:369.208500px;}
.yf1{bottom:370.195500px;}
.yb2{bottom:370.735500px;}
.y1bd{bottom:373.156500px;}
.y7b{bottom:375.306000px;}
.y146{bottom:379.800000px;}
.y19c{bottom:380.899500px;}
.y132{bottom:381.094500px;}
.ya6{bottom:383.571000px;}
.y17b{bottom:386.022000px;}
.yd2{bottom:387.132000px;}
.y159{bottom:387.141000px;}
.yf0{bottom:388.128000px;}
.y112{bottom:388.392000px;}
.y1bc{bottom:391.089000px;}
.y39{bottom:391.885500px;}
.y7a{bottom:393.240000px;}
.y145{bottom:397.732500px;}
.yb1{bottom:398.329500px;}
.y19b{bottom:398.832000px;}
.ya5{bottom:401.503500px;}
.yd1{bottom:405.064500px;}
.y158{bottom:405.075000px;}
.yef{bottom:406.060500px;}
.y1bb{bottom:409.021500px;}
.y38{bottom:409.818000px;}
.y79{bottom:411.172500px;}
.y16{bottom:412.329000px;}
.y144{bottom:415.665000px;}
.ya4{bottom:419.436000px;}
.y13d{bottom:419.437500px;}
.y57{bottom:421.732500px;}
.y157{bottom:423.007500px;}
.yee{bottom:423.993000px;}
.y37{bottom:427.752000px;}
.y15{bottom:428.767500px;}
.y78{bottom:429.105000px;}
.y1d7{bottom:429.937500px;}
.y143{bottom:433.597500px;}
.y19a{bottom:434.367000px;}
.ya3{bottom:437.370000px;}
.y131{bottom:438.664500px;}
.y17a{bottom:440.005500px;}
.y156{bottom:440.940000px;}
.y111{bottom:441.678000px;}
.y1ba{bottom:441.769500px;}
.yed{bottom:441.925500px;}
.y14{bottom:445.206000px;}
.y77{bottom:447.037500px;}
.y1d6{bottom:447.870000px;}
.y56{bottom:448.632000px;}
.y142{bottom:451.530000px;}
.y36{bottom:454.650000px;}
.ya2{bottom:455.302500px;}
.y130{bottom:456.598500px;}
.y179{bottom:457.938000px;}
.y155{bottom:458.872500px;}
.y110{bottom:459.610500px;}
.y13{bottom:461.644500px;}
.yd0{bottom:462.634500px;}
.y76{bottom:464.970000px;}
.y1d5{bottom:465.802500px;}
.y55{bottom:466.564500px;}
.y199{bottom:467.243617px;}
.yec{bottom:467.368500px;}
.y141{bottom:469.462500px;}
.y35{bottom:472.584000px;}
.ya1{bottom:473.235000px;}
.y12f{bottom:474.531000px;}
.y178{bottom:475.872000px;}
.y154{bottom:476.805000px;}
.y10f{bottom:477.543000px;}
.y12{bottom:478.083000px;}
.ycf{bottom:480.567000px;}
.y75{bottom:482.902500px;}
.y1d4{bottom:483.736500px;}
.y54{bottom:484.497000px;}
.y34{bottom:490.516500px;}
.ya0{bottom:491.167500px;}
.y1b9{bottom:491.211000px;}
.y12e{bottom:492.463500px;}
.y177{bottom:493.804500px;}
.y11{bottom:494.521500px;}
.y153{bottom:494.737500px;}
.y10e{bottom:495.475500px;}
.yce{bottom:498.499500px;}
.y74{bottom:500.836500px;}
.y1d3{bottom:501.669000px;}
.y53{bottom:502.429500px;}
.yeb{bottom:506.973000px;}
.y33{bottom:508.449000px;}
.y9f{bottom:509.100000px;}
.y1b8{bottom:509.143500px;}
.y12d{bottom:510.396000px;}
.y198{bottom:510.426000px;}
.y10{bottom:510.960000px;}
.y176{bottom:511.737000px;}
.y152{bottom:512.671500px;}
.y10d{bottom:513.408000px;}
.ycd{bottom:516.432000px;}
.y73{bottom:518.769000px;}
.y1d2{bottom:519.601500px;}
.yea{bottom:524.905500px;}
.y9e{bottom:527.032500px;}
.y13c{bottom:527.034000px;}
.y1b7{bottom:527.076000px;}
.yf{bottom:527.398500px;}
.y12c{bottom:528.328500px;}
.y197{bottom:528.358500px;}
.y175{bottom:529.669500px;}
.y10c{bottom:531.342000px;}
.ycc{bottom:534.366000px;}
.y32{bottom:535.348500px;}
.y72{bottom:536.701500px;}
.y1d1{bottom:537.534000px;}
.y151{bottom:538.113000px;}
.y52{bottom:538.294500px;}
.ye{bottom:543.837000px;}
.y9d{bottom:544.966500px;}
.y1b6{bottom:545.008500px;}
.y12b{bottom:546.261000px;}
.y196{bottom:546.292500px;}
.y174{bottom:547.602000px;}
.y10b{bottom:549.274500px;}
.ycb{bottom:552.298500px;}
.y31{bottom:553.281000px;}
.y71{bottom:554.634000px;}
.y1d0{bottom:555.466500px;}
.y51{bottom:556.228500px;}
.yd{bottom:560.275500px;}
.y9c{bottom:562.899000px;}
.y1b5{bottom:562.942500px;}
.y12a{bottom:564.195000px;}
.y195{bottom:564.225000px;}
.y173{bottom:565.534500px;}
.y10a{bottom:567.207000px;}
.y70{bottom:572.566500px;}
.y1cf{bottom:573.400500px;}
.y50{bottom:574.161000px;}
.yc{bottom:576.714000px;}
.y150{bottom:577.059000px;}
.yca{bottom:577.741500px;}
.y30{bottom:580.180500px;}
.y9b{bottom:580.831500px;}
.y1b4{bottom:580.875000px;}
.ye9{bottom:582.475500px;}
.y172{bottom:583.468500px;}
.y109{bottom:585.139500px;}
.y129{bottom:589.636500px;}
.y6f{bottom:590.499000px;}
.y1ce{bottom:591.333000px;}
.y194{bottom:591.819000px;}
.yb{bottom:593.151000px;}
.y2f{bottom:598.113000px;}
.y9a{bottom:598.764000px;}
.ye8{bottom:600.408000px;}
.y171{bottom:601.401000px;}
.y108{bottom:603.072000px;}
.y6e{bottom:608.433000px;}
.y1cd{bottom:609.265500px;}
.y4f{bottom:610.026000px;}
.y1b3{bottom:613.621500px;}
.y2e{bottom:616.045500px;}
.yc9{bottom:616.507500px;}
.y99{bottom:616.696500px;}
.ya{bottom:617.809500px;}
.ye7{bottom:618.340500px;}
.y170{bottom:619.333500px;}
.y107{bottom:621.004500px;}
.y6d{bottom:626.365500px;}
.y1cc{bottom:627.198000px;}
.y4e{bottom:627.958500px;}
.y128{bottom:628.584000px;}
.y193{bottom:633.531000px;}
.y2d{bottom:633.978000px;}
.y98{bottom:634.630500px;}
.ye6{bottom:636.273000px;}
.y16f{bottom:637.266000px;}
.y106{bottom:638.938500px;}
.y6c{bottom:644.298000px;}
.y1cb{bottom:645.130500px;}
.y4d{bottom:645.891000px;}
.yc8{bottom:650.071500px;}
.y192{bottom:651.463500px;}
.y2c{bottom:651.910500px;}
.y97{bottom:652.563000px;}
.ye5{bottom:654.207000px;}
.y16e{bottom:655.198500px;}
.y9{bottom:656.664000px;}
.y105{bottom:656.871000px;}
.y127{bottom:659.233500px;}
.y6b{bottom:662.230500px;}
.y1b2{bottom:663.063000px;}
.y191{bottom:669.396000px;}
.y2b{bottom:669.843000px;}
.y96{bottom:670.495500px;}
.ye4{bottom:672.139500px;}
.y16d{bottom:673.131000px;}
.y104{bottom:674.803500px;}
.yc7{bottom:676.971000px;}
.y126{bottom:677.166000px;}
.y6a{bottom:680.163000px;}
.y1b1{bottom:680.997000px;}
.y4c{bottom:681.757500px;}
.y95{bottom:688.428000px;}
.ye3{bottom:690.072000px;}
.y16c{bottom:691.065000px;}
.y103{bottom:692.736000px;}
.yc6{bottom:694.903500px;}
.y125{bottom:695.098500px;}
.y2a{bottom:697.437000px;}
.y69{bottom:698.095500px;}
.y1b0{bottom:698.929500px;}
.y4b{bottom:699.690000px;}
.y8{bottom:700.270500px;}
.y190{bottom:704.932500px;}
.y94{bottom:706.360500px;}
.ye2{bottom:708.004500px;}
.y102{bottom:710.668500px;}
.yc5{bottom:712.836000px;}
.y124{bottom:713.031000px;}
.y68{bottom:716.029500px;}
.y16b{bottom:716.506500px;}
.y1af{bottom:716.862000px;}
.y7{bottom:721.191000px;}
.y93{bottom:724.293000px;}
.ye1{bottom:725.937000px;}
.y4a{bottom:726.589500px;}
.y101{bottom:728.601000px;}
.y29{bottom:733.173000px;}
.y67{bottom:733.962000px;}
.y1ae{bottom:734.794500px;}
.y18a{bottom:737.809734px;}
.yc4{bottom:739.735500px;}
.y123{bottom:740.625000px;}
.y6{bottom:742.113000px;}
.y92{bottom:742.227000px;}
.ye0{bottom:743.869500px;}
.y100{bottom:746.535000px;}
.y16a{bottom:752.539500px;}
.y1ad{bottom:752.727000px;}
.yc3{bottom:757.668000px;}
.y66{bottom:759.405000px;}
.y91{bottom:760.159500px;}
.ydf{bottom:761.803500px;}
.y5{bottom:763.035000px;}
.yff{bottom:764.467500px;}
.y1ac{bottom:770.659500px;}
.yc2{bottom:775.600500px;}
.y90{bottom:778.092000px;}
.yde{bottom:779.736000px;}
.y49{bottom:780.573000px;}
.y189{bottom:780.991500px;}
.y122{bottom:782.479500px;}
.y28{bottom:782.614500px;}
.y169{bottom:783.189000px;}
.y1ca{bottom:788.593500px;}
.yfe{bottom:789.910500px;}
.yc1{bottom:793.534500px;}
.y8f{bottom:796.024500px;}
.y1ab{bottom:797.559000px;}
.ydd{bottom:797.668500px;}
.y65{bottom:798.351000px;}
.y48{bottom:798.505500px;}
.y188{bottom:798.924000px;}
.y121{bottom:800.412000px;}
.y168{bottom:801.121500px;}
.y1c9{bottom:806.526000px;}
.y8e{bottom:813.957000px;}
.y27{bottom:815.491500px;}
.ydc{bottom:815.601000px;}
.y47{bottom:816.438000px;}
.y167{bottom:819.054000px;}
.y4{bottom:824.458500px;}
.y64{bottom:825.945000px;}
.y187{bottom:826.518000px;}
.y120{bottom:827.311500px;}
.yfd{bottom:829.513500px;}
.y8d{bottom:831.889500px;}
.y1aa{bottom:833.424000px;}
.ydb{bottom:833.533500px;}
.y46{bottom:834.370500px;}
.y166{bottom:836.988000px;}
.yc0{bottom:841.444500px;}
.y1c8{bottom:842.391000px;}
.y11f{bottom:845.244000px;}
.yfc{bottom:847.446000px;}
.y26{bottom:848.368500px;}
.y8c{bottom:849.823500px;}
.y1a9{bottom:851.358000px;}
.yda{bottom:851.466000px;}
.y45{bottom:852.303000px;}
.y165{bottom:854.920500px;}
.y3{bottom:857.335500px;}
.y1c7{bottom:860.323500px;}
.y8b{bottom:867.756000px;}
.y63{bottom:867.799500px;}
.y186{bottom:868.230000px;}
.y1a8{bottom:869.290500px;}
.yd9{bottom:869.400000px;}
.y44{bottom:870.237000px;}
.y11e{bottom:872.143500px;}
.ybb{bottom:874.320533px;}
.y1c6{bottom:878.256000px;}
.y25{bottom:881.245500px;}
.y164{bottom:882.514500px;}
.y8a{bottom:885.688500px;}
.y62{bottom:885.732000px;}
.y185{bottom:886.162500px;}
.y1a7{bottom:887.223000px;}
.yd8{bottom:887.332500px;}
.y43{bottom:888.169500px;}
.y11d{bottom:890.076000px;}
.y2{bottom:890.211000px;}
.y1c5{bottom:896.190000px;}
.y89{bottom:903.621000px;}
.y1a6{bottom:905.155500px;}
.yd7{bottom:905.265000px;}
.y42{bottom:906.102000px;}
.y24{bottom:914.122500px;}
.y61{bottom:918.478500px;}
.y88{bottom:921.553500px;}
.y1{bottom:923.088000px;}
.y41{bottom:924.034500px;}
.yd6{bottom:930.708000px;}
.y23{bottom:932.055000px;}
.y11c{bottom:937.986000px;}
.y87{bottom:939.486000px;}
.y40{bottom:949.477500px;}
.y22{bottom:949.987500px;}
.y11b{bottom:955.920000px;}
.y86{bottom:957.420000px;}
.y21{bottom:967.920000px;}
.yd5{bottom:970.311000px;}
.y85{bottom:982.861500px;}
.y20{bottom:985.852500px;}
.y3f{bottom:988.243500px;}
.h14{height:22.266293px;}
.h12{height:22.500675px;}
.hd{height:24.209280px;}
.hc{height:29.161574px;}
.h15{height:34.902414px;}
.he{height:35.865450px;}
.h13{height:37.609527px;}
.h3{height:37.658880px;}
.h4{height:40.348800px;}
.h10{height:41.049289px;}
.ha{height:41.484266px;}
.h6{height:41.842920px;}
.h7{height:44.831700px;}
.h11{height:44.837700px;}
.h9{height:49.898047px;}
.h16{height:49.904047px;}
.h8{height:50.211840px;}
.h2{height:53.798400px;}
.h5{height:60.254040px;}
.h1{height:77.366008px;}
.hb{height:89.812290px;}
.hf{height:126.477225px;}
.h0{height:1188.000000px;}
.w3{width:69.752093px;}
.w2{width:515.563650px;}
.w1{width:515.563680px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x36{left:3.726674px;}
.x39{left:7.822501px;}
.x13{left:20.532885px;}
.x23{left:34.240420px;}
.x14{left:39.507124px;}
.x22{left:47.504387px;}
.x37{left:52.589469px;}
.x15{left:79.362398px;}
.x24{left:97.426233px;}
.x17{left:132.225137px;}
.x16{left:141.006581px;}
.x10{left:198.904500px;}
.xd{left:200.652000px;}
.x4{left:203.935500px;}
.x12{left:208.498500px;}
.x1e{left:215.946000px;}
.x3b{left:220.303500px;}
.x3c{left:221.574000px;}
.xe{left:223.068000px;}
.x2{left:226.428000px;}
.x8{left:227.569500px;}
.xc{left:238.012500px;}
.x29{left:241.897500px;}
.x1a{left:249.027177px;}
.x5{left:250.075500px;}
.x1{left:252.909000px;}
.xb{left:258.187500px;}
.x19{left:271.464181px;}
.x34{left:272.704500px;}
.x7{left:280.005000px;}
.x2d{left:281.910000px;}
.x31{left:285.862500px;}
.x3{left:288.222000px;}
.x18{left:296.356990px;}
.x30{left:302.599500px;}
.x28{left:305.200500px;}
.x2b{left:308.130000px;}
.x38{left:310.443000px;}
.x32{left:312.060000px;}
.x3a{left:315.726000px;}
.x11{left:321.421500px;}
.x6{left:323.241000px;}
.x27{left:326.697000px;}
.x25{left:334.469202px;}
.x2e{left:335.739000px;}
.x1d{left:342.180000px;}
.x2c{left:353.799000px;}
.x2a{left:359.992500px;}
.x26{left:407.124968px;}
.x9{left:417.441000px;}
.x35{left:423.559967px;}
.x1c{left:425.588027px;}
.xa{left:427.999500px;}
.x1b{left:430.231828px;}
.x21{left:450.964500px;}
.xf{left:454.699500px;}
.x20{left:465.654000px;}
.x1f{left:467.403000px;}
.x33{left:556.311000px;}
.x2f{left:600.777000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v4{vertical-align:-4.000120pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.906608pt;}
.v1{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000414pt;}
.lsa{letter-spacing:0.001473pt;}
.ls9{letter-spacing:0.001634pt;}
.ls6{letter-spacing:0.958327pt;}
.ls3{letter-spacing:2.655508pt;}
.ls4{letter-spacing:2.659661pt;}
.ls2{letter-spacing:17.692785pt;}
.ls7{letter-spacing:18.820842pt;}
.ls5{letter-spacing:20.346175pt;}
.ls0{letter-spacing:26.566933pt;}
.ws1a{word-spacing:-28.013572pt;}
.ws18{word-spacing:-27.701139pt;}
.ws2{word-spacing:-25.708331pt;}
.ws11{word-spacing:-21.423659pt;}
.ws4{word-spacing:-17.853099pt;}
.ws55{word-spacing:-15.224139pt;}
.ws2f{word-spacing:-14.877483pt;}
.wsb7{word-spacing:-11.902016pt;}
.ws1c{word-spacing:-11.024368pt;}
.ws1b{word-spacing:-11.023850pt;}
.ws17{word-spacing:-11.023331pt;}
.ws2c{word-spacing:-3.134898pt;}
.ws2b{word-spacing:-3.081764pt;}
.ws79{word-spacing:-2.975497pt;}
.wsd6{word-spacing:-2.922363pt;}
.wse1{word-spacing:-2.444158pt;}
.ws62{word-spacing:-2.391024pt;}
.wsb5{word-spacing:-2.178489pt;}
.wsd7{word-spacing:-2.072221pt;}
.ws4e{word-spacing:-1.859685pt;}
.ws4f{word-spacing:-1.820829pt;}
.wsbf{word-spacing:-1.647150pt;}
.wsc4{word-spacing:-1.434614pt;}
.wsd9{word-spacing:-1.381481pt;}
.wsba{word-spacing:-1.168945pt;}
.ws32{word-spacing:-0.956410pt;}
.wsb3{word-spacing:-0.690740pt;}
.wsd8{word-spacing:-0.371937pt;}
.ws73{word-spacing:-0.265669pt;}
.wsdf{word-spacing:-0.212535pt;}
.ws93{word-spacing:-0.106268pt;}
.wsb2{word-spacing:-0.053134pt;}
.wsa9{word-spacing:-0.044001pt;}
.wsab{word-spacing:-0.026667pt;}
.ws19{word-spacing:0.000000pt;}
.ws42{word-spacing:0.170029pt;}
.ws58{word-spacing:0.265669pt;}
.wsa6{word-spacing:0.318803pt;}
.wsa1{word-spacing:0.371937pt;}
.wsde{word-spacing:0.387875pt;}
.ws60{word-spacing:0.531339pt;}
.ws53{word-spacing:0.850142pt;}
.wsbe{word-spacing:1.275213pt;}
.ws25{word-spacing:1.381481pt;}
.wsa4{word-spacing:1.594016pt;}
.ws4a{word-spacing:1.647150pt;}
.ws48{word-spacing:1.657781pt;}
.ws9f{word-spacing:1.859685pt;}
.wse5{word-spacing:1.912819pt;}
.ws1{word-spacing:1.928125pt;}
.ws0{word-spacing:2.019940pt;}
.wsd3{word-spacing:2.082853pt;}
.wsaf{word-spacing:2.178489pt;}
.wsc6{word-spacing:2.284756pt;}
.ws4b{word-spacing:2.391024pt;}
.ws4c{word-spacing:2.444158pt;}
.ws72{word-spacing:2.497292pt;}
.ws30{word-spacing:2.762961pt;}
.ws27{word-spacing:2.816095pt;}
.ws44{word-spacing:2.820058pt;}
.ws26{word-spacing:2.869229pt;}
.ws43{word-spacing:2.922363pt;}
.ws3{word-spacing:2.933009pt;}
.ws10{word-spacing:3.012710pt;}
.ws92{word-spacing:3.028630pt;}
.ws49{word-spacing:3.145533pt;}
.ws54{word-spacing:3.188032pt;}
.wsb9{word-spacing:3.241166pt;}
.ws57{word-spacing:3.559969pt;}
.wse6{word-spacing:3.561529pt;}
.ws75{word-spacing:3.719371pt;}
.ws74{word-spacing:3.772505pt;}
.ws77{word-spacing:3.878772pt;}
.ws31{word-spacing:3.985040pt;}
.ws51{word-spacing:4.038174pt;}
.wscd{word-spacing:4.144442pt;}
.ws50{word-spacing:4.197575pt;}
.ws5a{word-spacing:4.250709pt;}
.wscf{word-spacing:4.303843pt;}
.ws76{word-spacing:4.356977pt;}
.wsa8{word-spacing:4.410111pt;}
.wsd2{word-spacing:4.505763pt;}
.wsae{word-spacing:4.516379pt;}
.wsc7{word-spacing:4.569513pt;}
.wsdd{word-spacing:4.622646pt;}
.wsbb{word-spacing:4.675780pt;}
.ws33{word-spacing:4.835182pt;}
.ws24{word-spacing:4.994583pt;}
.wsbc{word-spacing:5.047717pt;}
.wsac{word-spacing:5.313387pt;}
.ws1f{word-spacing:5.419654pt;}
.wsb8{word-spacing:5.780979pt;}
.ws4d{word-spacing:5.993540pt;}
.ws21{word-spacing:6.057301pt;}
.wsa2{word-spacing:6.322930pt;}
.wsc5{word-spacing:6.429198pt;}
.ws2d{word-spacing:6.482332pt;}
.wsd0{word-spacing:6.535466pt;}
.wsb6{word-spacing:6.546109pt;}
.wsb{word-spacing:6.551450pt;}
.ws22{word-spacing:6.907403pt;}
.wsce{word-spacing:7.192228pt;}
.ws56{word-spacing:7.226206pt;}
.wsbd{word-spacing:7.248101pt;}
.ws59{word-spacing:7.279340pt;}
.wsf{word-spacing:7.316582pt;}
.ws6e{word-spacing:7.491875pt;}
.ws7b{word-spacing:7.598143pt;}
.wsc9{word-spacing:7.651277pt;}
.ws23{word-spacing:7.810678pt;}
.ws2e{word-spacing:7.863812pt;}
.wsa3{word-spacing:7.970080pt;}
.wsc8{word-spacing:8.023214pt;}
.wsd4{word-spacing:8.342017pt;}
.ws41{word-spacing:8.586454pt;}
.ws45{word-spacing:8.660820pt;}
.wse4{word-spacing:8.713954pt;}
.ws71{word-spacing:8.767088pt;}
.wsb0{word-spacing:8.873356pt;}
.ws52{word-spacing:9.192159pt;}
.wsad{word-spacing:9.298427pt;}
.wscc{word-spacing:9.404694pt;}
.wsb4{word-spacing:9.510962pt;}
.wsd{word-spacing:9.659802pt;}
.wsc3{word-spacing:10.042301pt;}
.wsc2{word-spacing:10.102433pt;}
.wsd1{word-spacing:10.201702pt;}
.wsdc{word-spacing:10.520506pt;}
.wse{word-spacing:10.616218pt;}
.ws28{word-spacing:10.626773pt;}
.ws70{word-spacing:11.264380pt;}
.ws78{word-spacing:11.476915pt;}
.wsd5{word-spacing:11.530049pt;}
.ws13{word-spacing:11.689451pt;}
.wsc1{word-spacing:11.921875pt;}
.wsc0{word-spacing:11.921879pt;}
.wse0{word-spacing:11.955120pt;}
.wsa{word-spacing:12.050842pt;}
.wse3{word-spacing:12.752128pt;}
.ws91{word-spacing:12.858396pt;}
.ws3e{word-spacing:12.964663pt;}
.ws3d{word-spacing:13.017797pt;}
.ws9{word-spacing:13.294182pt;}
.ws2a{word-spacing:14.452412pt;}
.ws40{word-spacing:15.090056pt;}
.ws16{word-spacing:15.561631pt;}
.wsca{word-spacing:16.471499pt;}
.wsc{word-spacing:16.928563pt;}
.ws7{word-spacing:17.167667pt;}
.wsda{word-spacing:17.215373pt;}
.ws3f{word-spacing:17.980546pt;}
.ws8{word-spacing:19.176141pt;}
.wscb{word-spacing:19.872066pt;}
.wse2{word-spacing:19.925200pt;}
.ws90{word-spacing:20.137735pt;}
.ws5{word-spacing:20.180378pt;}
.ws6{word-spacing:20.993331pt;}
.wsdb{word-spacing:22.156822pt;}
.ws8f{word-spacing:22.475626pt;}
.ws46{word-spacing:26.248130pt;}
.wsaa{word-spacing:28.310017pt;}
.ws29{word-spacing:30.445706pt;}
.ws5b{word-spacing:35.280887pt;}
.wsb1{word-spacing:43.459304pt;}
.ws6f{word-spacing:48.830023pt;}
.ws5e{word-spacing:48.883157pt;}
.ws94{word-spacing:96.809905pt;}
.wsa5{word-spacing:122.792366pt;}
.ws7a{word-spacing:124.067579pt;}
.ws86{word-spacing:146.119632pt;}
.ws87{word-spacing:161.953524pt;}
.ws6c{word-spacing:175.030177pt;}
.ws84{word-spacing:175.662062pt;}
.ws63{word-spacing:182.941790pt;}
.ws85{word-spacing:191.655356pt;}
.ws8d{word-spacing:197.553215pt;}
.ws81{word-spacing:201.060050pt;}
.ws5c{word-spacing:201.912933pt;}
.ws8e{word-spacing:212.111894pt;}
.ws8c{word-spacing:221.357187pt;}
.ws5d{word-spacing:231.609431pt;}
.ws82{word-spacing:240.697915pt;}
.ws83{word-spacing:241.973127pt;}
.ws88{word-spacing:242.291931pt;}
.ws7f{word-spacing:255.681665pt;}
.ws80{word-spacing:271.674959pt;}
.ws8b{word-spacing:282.301732pt;}
.ws8a{word-spacing:292.450301pt;}
.ws7e{word-spacing:293.566112pt;}
.ws89{word-spacing:295.272031pt;}
.ws65{word-spacing:300.532370pt;}
.ws7c{word-spacing:320.664384pt;}
.ws5f{word-spacing:324.542964pt;}
.ws6d{word-spacing:340.111767pt;}
.ws68{word-spacing:343.358267pt;}
.ws95{word-spacing:358.124954pt;}
.ws9b{word-spacing:358.130287pt;}
.ws67{word-spacing:379.170493pt;}
.ws9e{word-spacing:400.099817pt;}
.ws9a{word-spacing:429.961050pt;}
.ws69{word-spacing:437.830282pt;}
.ws98{word-spacing:446.278480pt;}
.ws99{word-spacing:452.176339pt;}
.ws96{word-spacing:462.484309pt;}
.ws9d{word-spacing:468.429969pt;}
.ws6b{word-spacing:472.207893pt;}
.ws97{word-spacing:478.477603pt;}
.ws9c{word-spacing:478.737939pt;}
.ws7d{word-spacing:484.694266pt;}
.ws66{word-spacing:485.172557pt;}
.ws64{word-spacing:488.567791pt;}
.ws61{word-spacing:501.530261pt;}
.ws6a{word-spacing:504.513284pt;}
.wsa7{word-spacing:558.546353pt;}
.ws37{word-spacing:709.021463pt;}
.ws47{word-spacing:741.698791pt;}
.ws34{word-spacing:761.889661pt;}
.ws3c{word-spacing:765.183961pt;}
.ws3b{word-spacing:766.724843pt;}
.ws36{word-spacing:788.775397pt;}
.ws35{word-spacing:818.424095pt;}
.wsa0{word-spacing:830.219813pt;}
.ws38{word-spacing:853.704982pt;}
.ws3a{word-spacing:877.455821pt;}
.ws39{word-spacing:889.251539pt;}
.ws1e{word-spacing:1251.468842pt;}
.ws12{word-spacing:1450.829803pt;}
.ws20{word-spacing:1470.220971pt;}
.ws1d{word-spacing:1478.403586pt;}
.ws14{word-spacing:1553.643835pt;}
.ws15{word-spacing:1590.943809pt;}
._16{margin-left:-30.923910pt;}
._68{margin-left:-29.156777pt;}
._12{margin-left:-28.001548pt;}
._10{margin-left:-26.566933pt;}
._13{margin-left:-8.979623pt;}
._0{margin-left:-7.069791pt;}
._1f{margin-left:-5.129027pt;}
._5{margin-left:-4.064768pt;}
._1{margin-left:-2.387202pt;}
._2{margin-left:-0.992134pt;}
._3{width:1.657788pt;}
._1c{width:2.571369pt;}
._11{width:4.956042pt;}
._22{width:13.517961pt;}
._1e{width:15.408821pt;}
._96{width:16.365231pt;}
._d{width:17.693578pt;}
._19{width:18.688661pt;}
._30{width:19.680827pt;}
._9{width:20.849869pt;}
._1d{width:22.316224pt;}
._a{width:24.018144pt;}
._b{width:25.695710pt;}
._ad{width:26.645154pt;}
._8{width:27.736064pt;}
._24{width:29.372461pt;}
._14{width:30.579968pt;}
._23{width:32.964348pt;}
._95{width:33.927583pt;}
._ab{width:35.040305pt;}
._18{width:37.840498pt;}
._e{width:38.914906pt;}
._aa{width:40.062935pt;}
._66{width:42.719629pt;}
._c{width:44.760269pt;}
._1b{width:46.421590pt;}
._ae{width:47.334412pt;}
._92{width:48.603028pt;}
._7{width:52.256032pt;}
._21{width:55.790560pt;}
._15{width:56.930358pt;}
._1a{width:58.004773pt;}
._70{width:63.280799pt;}
._6{width:64.271155pt;}
._ac{width:66.895538pt;}
._50{width:69.120612pt;}
._55{width:72.999385pt;}
._4{width:76.449519pt;}
._4a{width:79.322315pt;}
._9e{width:81.870416pt;}
._f{width:83.598560pt;}
._4e{width:85.220174pt;}
._4c{width:89.842820pt;}
._43{width:95.528144pt;}
._41{width:100.150790pt;}
._54{width:101.479137pt;}
._4f{width:105.782980pt;}
._51{width:108.705343pt;}
._47{width:111.521438pt;}
._45{width:116.144084pt;}
._3f{width:117.738100pt;}
._48{width:120.607329pt;}
._3d{width:122.360747pt;}
._49{width:123.529692pt;}
._8d{width:124.752861pt;}
._4b{width:126.505188pt;}
._4d{width:129.427551pt;}
._81{width:130.762446pt;}
._40{width:136.813158pt;}
._42{width:139.735521pt;}
._52{width:142.764151pt;}
._53{width:145.686514pt;}
._44{width:152.806452pt;}
._46{width:155.728815pt;}
._3c{width:159.023115pt;}
._3e{width:161.945477pt;}
._36{width:173.549603pt;}
._90{width:180.724846pt;}
._85{width:181.658119pt;}
._35{width:210.211971pt;}
._37{width:213.134334pt;}
._80{width:222.133353pt;}
._71{width:224.586688pt;}
._69{width:247.205830pt;}
._82{width:260.782905pt;}
._7e{width:264.082538pt;}
._34{width:283.929587pt;}
._32{width:288.552234pt;}
._57{width:300.698946pt;}
._6b{width:310.546733pt;}
._6a{width:311.972831pt;}
._93{width:316.995555pt;}
._7f{width:322.400781pt;}
._31{width:325.214602pt;}
._33{width:328.136964pt;}
._98{width:335.998841pt;}
._56{width:337.361314pt;}
._7d{width:339.298862pt;}
._58{width:340.283677pt;}
._7a{width:350.084282pt;}
._89{width:352.437930pt;}
._8e{width:353.893145pt;}
._83{width:356.783726pt;}
._2e{width:362.514576pt;}
._86{width:365.905526pt;}
._88{width:369.306094pt;}
._87{width:370.237775pt;}
._a9{width:371.613051pt;}
._8b{width:375.208347pt;}
._91{width:396.330539pt;}
._2d{width:399.176944pt;}
._2f{width:402.099307pt;}
._94{width:409.294415pt;}
._3b{width:411.078930pt;}
._9d{width:414.540153pt;}
._39{width:415.701577pt;}
._7b{width:428.230612pt;}
._78{width:429.310699pt;}
._79{width:431.354917pt;}
._72{width:444.850919pt;}
._38{width:452.363945pt;}
._3a{width:455.286307pt;}
._75{width:459.112027pt;}
._9a{width:461.155963pt;}
._9b{width:467.053822pt;}
._5a{width:470.057522pt;}
._6e{width:478.183263pt;}
._9c{width:483.312785pt;}
._7c{width:489.292063pt;}
._99{width:493.355086pt;}
._8a{width:494.387610pt;}
._62{width:495.296109pt;}
._97{width:499.571748pt;}
._8f{width:503.342146pt;}
._9f{width:504.349355pt;}
._77{width:509.128404pt;}
._84{width:517.131994pt;}
._74{width:527.136963pt;}
._61{width:531.958477pt;}
._63{width:534.880839pt;}
._6f{width:538.670834pt;}
._76{width:541.805732pt;}
._73{width:545.295158pt;}
._26{width:566.017285pt;}
._8c{width:567.421589pt;}
._6c{width:570.640013pt;}
._6d{width:572.835910pt;}
._5b{width:585.060153pt;}
._59{width:607.004439pt;}
._5f{width:610.298739pt;}
._a0{width:641.541453pt;}
._5e{width:646.961107pt;}
._60{width:649.883470pt;}
._65{width:680.966782pt;}
._5c{width:692.124894pt;}
._a3{width:694.547821pt;}
._2a{width:698.926029pt;}
._29{width:700.413777pt;}
._64{width:708.915196pt;}
._67{width:714.089783pt;}
._20{width:715.174501pt;}
._25{width:729.849939pt;}
._2c{width:732.825436pt;}
._2b{width:734.366318pt;}
._27{width:762.420999pt;}
._5d{width:771.081820pt;}
._28{width:791.963429pt;}
._a8{width:798.481486pt;}
._a7{width:828.615159pt;}
._a2{width:850.995155pt;}
._a4{width:861.303125pt;}
._a6{width:867.254118pt;}
._a5{width:877.296419pt;}
._a1{width:883.513082pt;}
._17{width:1206.762029pt;}
.fsb{font-size:26.667467pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:34.117625pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:44.001320pt;}
.fs2{font-size:47.820800pt;}
.fs9{font-size:48.025675pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y18d{bottom:3.635525pt;}
.y18f{bottom:4.635558pt;}
.y18b{bottom:4.997546pt;}
.y18c{bottom:5.997576pt;}
.y18e{bottom:9.974258pt;}
.y59{bottom:11.160692pt;}
.ybc{bottom:15.734613pt;}
.y5b{bottom:37.663030pt;}
.ybe{bottom:53.039494pt;}
.y5a{bottom:64.165369pt;}
.ybd{bottom:90.344375pt;}
.ybf{bottom:99.348771pt;}
.y1f{bottom:119.153333pt;}
.y1a5{bottom:159.004000pt;}
.y84{bottom:159.006667pt;}
.yba{bottom:164.200000pt;}
.y140{bottom:165.609333pt;}
.y14f{bottom:168.198667pt;}
.y11a{bottom:169.400000pt;}
.yfb{bottom:169.660000pt;}
.y1e{bottom:171.134667pt;}
.y13b{bottom:172.525333pt;}
.y1a4{bottom:175.481333pt;}
.y83{bottom:175.484000pt;}
.y183{bottom:176.360000pt;}
.yb0{bottom:181.549333pt;}
.y13f{bottom:181.550667pt;}
.y14e{bottom:184.138667pt;}
.y163{bottom:184.724000pt;}
.y119{bottom:185.340000pt;}
.y60{bottom:185.432000pt;}
.yfa{bottom:185.600000pt;}
.y1d{bottom:187.074667pt;}
.y1c4{bottom:188.084000pt;}
.yb9{bottom:188.110667pt;}
.y1a3{bottom:188.425333pt;}
.y13a{bottom:188.465333pt;}
.y182{bottom:192.300000pt;}
.y184{bottom:192.301333pt;}
.yaf{bottom:197.490667pt;}
.y1a2{bottom:197.590667pt;}
.y5f{bottom:198.050667pt;}
.y14d{bottom:200.078667pt;}
.y162{bottom:200.664000pt;}
.y1c3{bottom:200.702667pt;}
.yf9{bottom:201.540000pt;}
.y1c{bottom:203.014667pt;}
.yb8{bottom:204.050667pt;}
.y139{bottom:204.405333pt;}
.y181{bottom:208.241333pt;}
.y5e{bottom:210.670667pt;}
.yae{bottom:213.430667pt;}
.y1a1{bottom:214.068000pt;}
.y14c{bottom:216.020000pt;}
.y161{bottom:216.604000pt;}
.y1c2{bottom:217.180000pt;}
.yf8{bottom:217.481333pt;}
.y1b{bottom:218.954667pt;}
.yb7{bottom:219.990667pt;}
.y138{bottom:220.345333pt;}
.y82{bottom:222.024000pt;}
.y180{bottom:224.181333pt;}
.y5d{bottom:227.148000pt;}
.y3e{bottom:227.465333pt;}
.yad{bottom:229.370667pt;}
.y14b{bottom:231.960000pt;}
.y160{bottom:232.544000pt;}
.yf7{bottom:233.421333pt;}
.y1a0{bottom:233.766667pt;}
.y1c1{bottom:234.728000pt;}
.yb6{bottom:235.930667pt;}
.y137{bottom:236.286667pt;}
.y81{bottom:237.964000pt;}
.y17f{bottom:240.121333pt;}
.y118{bottom:241.008000pt;}
.y3d{bottom:243.405333pt;}
.yac{bottom:245.310667pt;}
.y5c{bottom:247.140000pt;}
.y14a{bottom:247.900000pt;}
.y1a{bottom:248.178667pt;}
.y15f{bottom:248.484000pt;}
.yf6{bottom:249.361333pt;}
.y19f{bottom:249.706667pt;}
.y1c0{bottom:250.668000pt;}
.yb5{bottom:251.870667pt;}
.y80{bottom:253.905333pt;}
.y17e{bottom:256.061333pt;}
.y117{bottom:256.948000pt;}
.y136{bottom:258.902667pt;}
.y3c{bottom:259.346667pt;}
.yab{bottom:261.250667pt;}
.y149{bottom:263.840000pt;}
.y15e{bottom:264.424000pt;}
.yf5{bottom:265.301333pt;}
.y19e{bottom:265.646667pt;}
.y1bf{bottom:266.608000pt;}
.y7f{bottom:269.845333pt;}
.y116{bottom:272.888000pt;}
.y3b{bottom:275.286667pt;}
.y58{bottom:276.363387pt;}
.yb4{bottom:276.398667pt;}
.yaa{bottom:277.190667pt;}
.y13e{bottom:277.192000pt;}
.y19{bottom:277.402667pt;}
.y17d{bottom:278.677333pt;}
.y15d{bottom:280.365333pt;}
.yf4{bottom:281.241333pt;}
.y7e{bottom:285.785333pt;}
.yd4{bottom:286.297333pt;}
.y148{bottom:286.456000pt;}
.y1be{bottom:287.746667pt;}
.y115{bottom:288.828000pt;}
.y135{bottom:290.930667pt;}
.ya9{bottom:293.132000pt;}
.y18{bottom:293.342667pt;}
.y19d{bottom:294.754667pt;}
.y15c{bottom:296.305333pt;}
.yf3{bottom:297.181333pt;}
.y7d{bottom:301.725333pt;}
.y3a{bottom:304.394667pt;}
.y114{bottom:304.769333pt;}
.y134{bottom:306.870667pt;}
.yd3{bottom:308.913333pt;}
.ya8{bottom:309.072000pt;}
.y15b{bottom:312.245333pt;}
.yf2{bottom:313.122667pt;}
.y17c{bottom:313.296000pt;}
.yb3{bottom:313.602667pt;}
.y7c{bottom:317.665333pt;}
.y113{bottom:320.709333pt;}
.y147{bottom:321.658667pt;}
.y17{bottom:322.566667pt;}
.y133{bottom:322.810667pt;}
.ya7{bottom:325.012000pt;}
.y15a{bottom:328.185333pt;}
.yf1{bottom:329.062667pt;}
.yb2{bottom:329.542667pt;}
.y1bd{bottom:331.694667pt;}
.y7b{bottom:333.605333pt;}
.y146{bottom:337.600000pt;}
.y19c{bottom:338.577333pt;}
.y132{bottom:338.750667pt;}
.ya6{bottom:340.952000pt;}
.y17b{bottom:343.130667pt;}
.yd2{bottom:344.117333pt;}
.y159{bottom:344.125333pt;}
.yf0{bottom:345.002667pt;}
.y112{bottom:345.237333pt;}
.y1bc{bottom:347.634667pt;}
.y39{bottom:348.342667pt;}
.y7a{bottom:349.546667pt;}
.y145{bottom:353.540000pt;}
.yb1{bottom:354.070667pt;}
.y19b{bottom:354.517333pt;}
.ya5{bottom:356.892000pt;}
.yd1{bottom:360.057333pt;}
.y158{bottom:360.066667pt;}
.yef{bottom:360.942667pt;}
.y1bb{bottom:363.574667pt;}
.y38{bottom:364.282667pt;}
.y79{bottom:365.486667pt;}
.y16{bottom:366.514667pt;}
.y144{bottom:369.480000pt;}
.ya4{bottom:372.832000pt;}
.y13d{bottom:372.833333pt;}
.y57{bottom:374.873333pt;}
.y157{bottom:376.006667pt;}
.yee{bottom:376.882667pt;}
.y37{bottom:380.224000pt;}
.y15{bottom:381.126667pt;}
.y78{bottom:381.426667pt;}
.y1d7{bottom:382.166667pt;}
.y143{bottom:385.420000pt;}
.y19a{bottom:386.104000pt;}
.ya3{bottom:388.773333pt;}
.y131{bottom:389.924000pt;}
.y17a{bottom:391.116000pt;}
.y156{bottom:391.946667pt;}
.y111{bottom:392.602667pt;}
.y1ba{bottom:392.684000pt;}
.yed{bottom:392.822667pt;}
.y14{bottom:395.738667pt;}
.y77{bottom:397.366667pt;}
.y1d6{bottom:398.106667pt;}
.y56{bottom:398.784000pt;}
.y142{bottom:401.360000pt;}
.y36{bottom:404.133333pt;}
.ya2{bottom:404.713333pt;}
.y130{bottom:405.865333pt;}
.y179{bottom:407.056000pt;}
.y155{bottom:407.886667pt;}
.y110{bottom:408.542667pt;}
.y13{bottom:410.350667pt;}
.yd0{bottom:411.230667pt;}
.y76{bottom:413.306667pt;}
.y1d5{bottom:414.046667pt;}
.y55{bottom:414.724000pt;}
.y199{bottom:415.327660pt;}
.yec{bottom:415.438667pt;}
.y141{bottom:417.300000pt;}
.y35{bottom:420.074667pt;}
.ya1{bottom:420.653333pt;}
.y12f{bottom:421.805333pt;}
.y178{bottom:422.997333pt;}
.y154{bottom:423.826667pt;}
.y10f{bottom:424.482667pt;}
.y12{bottom:424.962667pt;}
.ycf{bottom:427.170667pt;}
.y75{bottom:429.246667pt;}
.y1d4{bottom:429.988000pt;}
.y54{bottom:430.664000pt;}
.y34{bottom:436.014667pt;}
.ya0{bottom:436.593333pt;}
.y1b9{bottom:436.632000pt;}
.y12e{bottom:437.745333pt;}
.y177{bottom:438.937333pt;}
.y11{bottom:439.574667pt;}
.y153{bottom:439.766667pt;}
.y10e{bottom:440.422667pt;}
.yce{bottom:443.110667pt;}
.y74{bottom:445.188000pt;}
.y1d3{bottom:445.928000pt;}
.y53{bottom:446.604000pt;}
.yeb{bottom:450.642667pt;}
.y33{bottom:451.954667pt;}
.y9f{bottom:452.533333pt;}
.y1b8{bottom:452.572000pt;}
.y12d{bottom:453.685333pt;}
.y198{bottom:453.712000pt;}
.y10{bottom:454.186667pt;}
.y176{bottom:454.877333pt;}
.y152{bottom:455.708000pt;}
.y10d{bottom:456.362667pt;}
.ycd{bottom:459.050667pt;}
.y73{bottom:461.128000pt;}
.y1d2{bottom:461.868000pt;}
.yea{bottom:466.582667pt;}
.y9e{bottom:468.473333pt;}
.y13c{bottom:468.474667pt;}
.y1b7{bottom:468.512000pt;}
.yf{bottom:468.798667pt;}
.y12c{bottom:469.625333pt;}
.y197{bottom:469.652000pt;}
.y175{bottom:470.817333pt;}
.y10c{bottom:472.304000pt;}
.ycc{bottom:474.992000pt;}
.y32{bottom:475.865333pt;}
.y72{bottom:477.068000pt;}
.y1d1{bottom:477.808000pt;}
.y151{bottom:478.322667pt;}
.y52{bottom:478.484000pt;}
.ye{bottom:483.410667pt;}
.y9d{bottom:484.414667pt;}
.y1b6{bottom:484.452000pt;}
.y12b{bottom:485.565333pt;}
.y196{bottom:485.593333pt;}
.y174{bottom:486.757333pt;}
.y10b{bottom:488.244000pt;}
.ycb{bottom:490.932000pt;}
.y31{bottom:491.805333pt;}
.y71{bottom:493.008000pt;}
.y1d0{bottom:493.748000pt;}
.y51{bottom:494.425333pt;}
.yd{bottom:498.022667pt;}
.y9c{bottom:500.354667pt;}
.y1b5{bottom:500.393333pt;}
.y12a{bottom:501.506667pt;}
.y195{bottom:501.533333pt;}
.y173{bottom:502.697333pt;}
.y10a{bottom:504.184000pt;}
.y70{bottom:508.948000pt;}
.y1cf{bottom:509.689333pt;}
.y50{bottom:510.365333pt;}
.yc{bottom:512.634667pt;}
.y150{bottom:512.941333pt;}
.yca{bottom:513.548000pt;}
.y30{bottom:515.716000pt;}
.y9b{bottom:516.294667pt;}
.y1b4{bottom:516.333333pt;}
.ye9{bottom:517.756000pt;}
.y172{bottom:518.638667pt;}
.y109{bottom:520.124000pt;}
.y129{bottom:524.121333pt;}
.y6f{bottom:524.888000pt;}
.y1ce{bottom:525.629333pt;}
.y194{bottom:526.061333pt;}
.yb{bottom:527.245333pt;}
.y2f{bottom:531.656000pt;}
.y9a{bottom:532.234667pt;}
.ye8{bottom:533.696000pt;}
.y171{bottom:534.578667pt;}
.y108{bottom:536.064000pt;}
.y6e{bottom:540.829333pt;}
.y1cd{bottom:541.569333pt;}
.y4f{bottom:542.245333pt;}
.y1b3{bottom:545.441333pt;}
.y2e{bottom:547.596000pt;}
.yc9{bottom:548.006667pt;}
.y99{bottom:548.174667pt;}
.ya{bottom:549.164000pt;}
.ye7{bottom:549.636000pt;}
.y170{bottom:550.518667pt;}
.y107{bottom:552.004000pt;}
.y6d{bottom:556.769333pt;}
.y1cc{bottom:557.509333pt;}
.y4e{bottom:558.185333pt;}
.y128{bottom:558.741333pt;}
.y193{bottom:563.138667pt;}
.y2d{bottom:563.536000pt;}
.y98{bottom:564.116000pt;}
.ye6{bottom:565.576000pt;}
.y16f{bottom:566.458667pt;}
.y106{bottom:567.945333pt;}
.y6c{bottom:572.709333pt;}
.y1cb{bottom:573.449333pt;}
.y4d{bottom:574.125333pt;}
.yc8{bottom:577.841333pt;}
.y192{bottom:579.078667pt;}
.y2c{bottom:579.476000pt;}
.y97{bottom:580.056000pt;}
.ye5{bottom:581.517333pt;}
.y16e{bottom:582.398667pt;}
.y9{bottom:583.701333pt;}
.y105{bottom:583.885333pt;}
.y127{bottom:585.985333pt;}
.y6b{bottom:588.649333pt;}
.y1b2{bottom:589.389333pt;}
.y191{bottom:595.018667pt;}
.y2b{bottom:595.416000pt;}
.y96{bottom:595.996000pt;}
.ye4{bottom:597.457333pt;}
.y16d{bottom:598.338667pt;}
.y104{bottom:599.825333pt;}
.yc7{bottom:601.752000pt;}
.y126{bottom:601.925333pt;}
.y6a{bottom:604.589333pt;}
.y1b1{bottom:605.330667pt;}
.y4c{bottom:606.006667pt;}
.y95{bottom:611.936000pt;}
.ye3{bottom:613.397333pt;}
.y16c{bottom:614.280000pt;}
.y103{bottom:615.765333pt;}
.yc6{bottom:617.692000pt;}
.y125{bottom:617.865333pt;}
.y2a{bottom:619.944000pt;}
.y69{bottom:620.529333pt;}
.y1b0{bottom:621.270667pt;}
.y4b{bottom:621.946667pt;}
.y8{bottom:622.462667pt;}
.y190{bottom:626.606667pt;}
.y94{bottom:627.876000pt;}
.ye2{bottom:629.337333pt;}
.y102{bottom:631.705333pt;}
.yc5{bottom:633.632000pt;}
.y124{bottom:633.805333pt;}
.y68{bottom:636.470667pt;}
.y16b{bottom:636.894667pt;}
.y1af{bottom:637.210667pt;}
.y7{bottom:641.058667pt;}
.y93{bottom:643.816000pt;}
.ye1{bottom:645.277333pt;}
.y4a{bottom:645.857333pt;}
.y101{bottom:647.645333pt;}
.y29{bottom:651.709333pt;}
.y67{bottom:652.410667pt;}
.y1ae{bottom:653.150667pt;}
.y18a{bottom:655.830875pt;}
.yc4{bottom:657.542667pt;}
.y123{bottom:658.333333pt;}
.y6{bottom:659.656000pt;}
.y92{bottom:659.757333pt;}
.ye0{bottom:661.217333pt;}
.y100{bottom:663.586667pt;}
.y16a{bottom:668.924000pt;}
.y1ad{bottom:669.090667pt;}
.yc3{bottom:673.482667pt;}
.y66{bottom:675.026667pt;}
.y91{bottom:675.697333pt;}
.ydf{bottom:677.158667pt;}
.y5{bottom:678.253333pt;}
.yff{bottom:679.526667pt;}
.y1ac{bottom:685.030667pt;}
.yc2{bottom:689.422667pt;}
.y90{bottom:691.637333pt;}
.yde{bottom:693.098667pt;}
.y49{bottom:693.842667pt;}
.y189{bottom:694.214667pt;}
.y122{bottom:695.537333pt;}
.y28{bottom:695.657333pt;}
.y169{bottom:696.168000pt;}
.y1ca{bottom:700.972000pt;}
.yfe{bottom:702.142667pt;}
.yc1{bottom:705.364000pt;}
.y8f{bottom:707.577333pt;}
.y1ab{bottom:708.941333pt;}
.ydd{bottom:709.038667pt;}
.y65{bottom:709.645333pt;}
.y48{bottom:709.782667pt;}
.y188{bottom:710.154667pt;}
.y121{bottom:711.477333pt;}
.y168{bottom:712.108000pt;}
.y1c9{bottom:716.912000pt;}
.y8e{bottom:723.517333pt;}
.y27{bottom:724.881333pt;}
.ydc{bottom:724.978667pt;}
.y47{bottom:725.722667pt;}
.y167{bottom:728.048000pt;}
.y4{bottom:732.852000pt;}
.y64{bottom:734.173333pt;}
.y187{bottom:734.682667pt;}
.y120{bottom:735.388000pt;}
.yfd{bottom:737.345333pt;}
.y8d{bottom:739.457333pt;}
.y1aa{bottom:740.821333pt;}
.ydb{bottom:740.918667pt;}
.y46{bottom:741.662667pt;}
.y166{bottom:743.989333pt;}
.yc0{bottom:747.950667pt;}
.y1c8{bottom:748.792000pt;}
.y11f{bottom:751.328000pt;}
.yfc{bottom:753.285333pt;}
.y26{bottom:754.105333pt;}
.y8c{bottom:755.398667pt;}
.y1a9{bottom:756.762667pt;}
.yda{bottom:756.858667pt;}
.y45{bottom:757.602667pt;}
.y165{bottom:759.929333pt;}
.y3{bottom:762.076000pt;}
.y1c7{bottom:764.732000pt;}
.y8b{bottom:771.338667pt;}
.y63{bottom:771.377333pt;}
.y186{bottom:771.760000pt;}
.y1a8{bottom:772.702667pt;}
.yd9{bottom:772.800000pt;}
.y44{bottom:773.544000pt;}
.y11e{bottom:775.238667pt;}
.ybb{bottom:777.173808pt;}
.y1c6{bottom:780.672000pt;}
.y25{bottom:783.329333pt;}
.y164{bottom:784.457333pt;}
.y8a{bottom:787.278667pt;}
.y62{bottom:787.317333pt;}
.y185{bottom:787.700000pt;}
.y1a7{bottom:788.642667pt;}
.yd8{bottom:788.740000pt;}
.y43{bottom:789.484000pt;}
.y11d{bottom:791.178667pt;}
.y2{bottom:791.298667pt;}
.y1c5{bottom:796.613333pt;}
.y89{bottom:803.218667pt;}
.y1a6{bottom:804.582667pt;}
.yd7{bottom:804.680000pt;}
.y42{bottom:805.424000pt;}
.y24{bottom:812.553333pt;}
.y61{bottom:816.425333pt;}
.y88{bottom:819.158667pt;}
.y1{bottom:820.522667pt;}
.y41{bottom:821.364000pt;}
.yd6{bottom:827.296000pt;}
.y23{bottom:828.493333pt;}
.y11c{bottom:833.765333pt;}
.y87{bottom:835.098667pt;}
.y40{bottom:843.980000pt;}
.y22{bottom:844.433333pt;}
.y11b{bottom:849.706667pt;}
.y86{bottom:851.040000pt;}
.y21{bottom:860.373333pt;}
.yd5{bottom:862.498667pt;}
.y85{bottom:873.654667pt;}
.y20{bottom:876.313333pt;}
.y3f{bottom:878.438667pt;}
.h14{height:19.792260pt;}
.h12{height:20.000600pt;}
.hd{height:21.519360pt;}
.hc{height:25.921399pt;}
.h15{height:31.024368pt;}
.he{height:31.880400pt;}
.h13{height:33.430690pt;}
.h3{height:33.474560pt;}
.h4{height:35.865600pt;}
.h10{height:36.488257pt;}
.ha{height:36.874903pt;}
.h6{height:37.193707pt;}
.h7{height:39.850400pt;}
.h11{height:39.855733pt;}
.h9{height:44.353820pt;}
.h16{height:44.359153pt;}
.h8{height:44.632747pt;}
.h2{height:47.820800pt;}
.h5{height:53.559147pt;}
.h1{height:68.769785pt;}
.hb{height:79.833147pt;}
.hf{height:112.424200pt;}
.h0{height:1056.000000pt;}
.w3{width:62.001860pt;}
.w2{width:458.278800pt;}
.w1{width:458.278827pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x36{left:3.312599pt;}
.x39{left:6.953334pt;}
.x13{left:18.251453pt;}
.x23{left:30.435929pt;}
.x14{left:35.117443pt;}
.x22{left:42.226122pt;}
.x37{left:46.746194pt;}
.x15{left:70.544354pt;}
.x24{left:86.601096pt;}
.x17{left:117.533455pt;}
.x16{left:125.339183pt;}
.x10{left:176.804000pt;}
.xd{left:178.357333pt;}
.x4{left:181.276000pt;}
.x12{left:185.332000pt;}
.x1e{left:191.952000pt;}
.x3b{left:195.825333pt;}
.x3c{left:196.954667pt;}
.xe{left:198.282667pt;}
.x2{left:201.269333pt;}
.x8{left:202.284000pt;}
.xc{left:211.566667pt;}
.x29{left:215.020000pt;}
.x1a{left:221.357491pt;}
.x5{left:222.289333pt;}
.x1{left:224.808000pt;}
.xb{left:229.500000pt;}
.x19{left:241.301494pt;}
.x34{left:242.404000pt;}
.x7{left:248.893333pt;}
.x2d{left:250.586667pt;}
.x31{left:254.100000pt;}
.x3{left:256.197333pt;}
.x18{left:263.428435pt;}
.x30{left:268.977333pt;}
.x28{left:271.289333pt;}
.x2b{left:273.893333pt;}
.x38{left:275.949333pt;}
.x32{left:277.386667pt;}
.x3a{left:280.645333pt;}
.x11{left:285.708000pt;}
.x6{left:287.325333pt;}
.x27{left:290.397333pt;}
.x25{left:297.305957pt;}
.x2e{left:298.434667pt;}
.x1d{left:304.160000pt;}
.x2c{left:314.488000pt;}
.x2a{left:319.993333pt;}
.x26{left:361.888860pt;}
.x9{left:371.058667pt;}
.x35{left:376.497748pt;}
.x1c{left:378.300468pt;}
.xa{left:380.444000pt;}
.x1b{left:382.428291pt;}
.x21{left:400.857333pt;}
.xf{left:404.177333pt;}
.x20{left:413.914667pt;}
.x1f{left:415.469333pt;}
.x33{left:494.498667pt;}
.x2f{left:534.024000pt;}
}




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