
    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_881c0849113ebf98c3204f2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f794cc6a85e921ffdb7cc409.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_b18cf3dc376f883034db32b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_eb3ca0e3da29091bbf339540.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_101753e640b4d1e5c345a335.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717000;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_e501f787c9928ca96d984910.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.843000;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_655325a48fc9ca23beed6b04.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962000;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_7c0cf24c46781c21407d8686.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_82fec2d22b348f342102d01b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_730bc85d3ac870d8ce404943.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.ls2{letter-spacing:0.000000px;}
.ls57{letter-spacing:2.521957px;}
.ls54{letter-spacing:2.533250px;}
.ls53{letter-spacing:2.552729px;}
.ls55{letter-spacing:2.553673px;}
.ls56{letter-spacing:2.554801px;}
.ls13{letter-spacing:2.604368px;}
.ls10{letter-spacing:2.616030px;}
.ls14{letter-spacing:2.632991px;}
.lsf{letter-spacing:2.636145px;}
.ls11{letter-spacing:2.637120px;}
.ls12{letter-spacing:2.638285px;}
.ls1c{letter-spacing:2.885656px;}
.ls52{letter-spacing:2.890222px;}
.ls1b{letter-spacing:2.908177px;}
.ls51{letter-spacing:2.912779px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls46{letter-spacing:3.377203px;}
.ls45{letter-spacing:3.403560px;}
.ls2c{letter-spacing:3.433921px;}
.ls39{letter-spacing:3.440414px;}
.lse{letter-spacing:3.453104px;}
.ls2b{letter-spacing:3.460721px;}
.ls38{letter-spacing:3.467265px;}
.lsd{letter-spacing:3.480054px;}
.ls5f{letter-spacing:3.854904px;}
.ls5e{letter-spacing:3.884990px;}
.ls60{letter-spacing:3.885982px;}
.ls43{letter-spacing:5.397759px;}
.ls4c{letter-spacing:5.406927px;}
.ls48{letter-spacing:5.420122px;}
.ls40{letter-spacing:5.421930px;}
.ls4b{letter-spacing:5.455263px;}
.ls47{letter-spacing:5.461798px;}
.ls3f{letter-spacing:5.463621px;}
.ls49{letter-spacing:5.463819px;}
.ls41{letter-spacing:5.465642px;}
.ls42{letter-spacing:5.468056px;}
.ls4a{letter-spacing:5.472767px;}
.ls31{letter-spacing:5.486903px;}
.ls2e{letter-spacing:5.500292px;}
.ls30{letter-spacing:5.535953px;}
.ls2d{letter-spacing:5.542585px;}
.ls2f{letter-spacing:5.544635px;}
.ls26{letter-spacing:5.571166px;}
.ls23{letter-spacing:5.584761px;}
.ls8{letter-spacing:5.610574px;}
.ls25{letter-spacing:5.620970px;}
.ls22{letter-spacing:5.627704px;}
.ls24{letter-spacing:5.629786px;}
.ls5{letter-spacing:5.635698px;}
.ls4{letter-spacing:5.679032px;}
.ls6{letter-spacing:5.681133px;}
.ls7{letter-spacing:5.683642px;}
.ls3{letter-spacing:7.353196px;}
.ls19{letter-spacing:9.912538px;}
.ls17{letter-spacing:10.524538px;}
.ls1a{letter-spacing:11.310538px;}
.ls18{letter-spacing:11.970538px;}
.ls16{letter-spacing:12.022200px;}
.ls29{letter-spacing:12.384538px;}
.ls5c{letter-spacing:12.786538px;}
.ls5a{letter-spacing:13.044538px;}
.ls4f{letter-spacing:13.206538px;}
.lsb{letter-spacing:13.236538px;}
.ls1e{letter-spacing:13.590538px;}
.ls2a{letter-spacing:13.980538px;}
.ls28{letter-spacing:14.032200px;}
.ls34{letter-spacing:14.172538px;}
.ls5d{letter-spacing:14.412538px;}
.ls5b{letter-spacing:14.688538px;}
.ls59{letter-spacing:14.740200px;}
.ls50{letter-spacing:14.868538px;}
.lsc{letter-spacing:14.892538px;}
.ls4e{letter-spacing:14.914200px;}
.lsa{letter-spacing:14.944200px;}
.ls36{letter-spacing:15.246538px;}
.ls58{letter-spacing:15.278408px;}
.ls20{letter-spacing:15.348538px;}
.ls1f{letter-spacing:15.534538px;}
.ls1d{letter-spacing:15.580200px;}
.ls15{letter-spacing:15.782957px;}
.ls3d{letter-spacing:15.876538px;}
.ls35{letter-spacing:16.596538px;}
.ls33{letter-spacing:16.642200px;}
.ls3b{letter-spacing:16.824538px;}
.ls37{letter-spacing:18.516538px;}
.ls21{letter-spacing:18.696538px;}
.ls3e{letter-spacing:19.650538px;}
.ls3c{letter-spacing:21.354538px;}
.ls3a{letter-spacing:21.406200px;}
.ls44{letter-spacing:32.700464px;}
.ls4d{letter-spacing:32.700525px;}
.ls32{letter-spacing:33.184206px;}
.ls27{letter-spacing:33.693824px;}
.ls9{letter-spacing:33.989728px;}
.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;}
}
.ws43{word-spacing:-34.086797px;}
.ws83{word-spacing:-33.778713px;}
.ws93{word-spacing:-33.267811px;}
.wsb0{word-spacing:-32.793851px;}
.wsbd{word-spacing:-32.782912px;}
.wse5{word-spacing:-23.315891px;}
.wsed{word-spacing:-21.519300px;}
.ws67{word-spacing:-15.822721px;}
.wsda{word-spacing:-15.322040px;}
.ws10{word-spacing:-14.943900px;}
.ws4e{word-spacing:-11.058450px;}
.ws41{word-spacing:-5.686247px;}
.ws3f{word-spacing:-5.681133px;}
.ws3d{word-spacing:-5.674842px;}
.ws7e{word-spacing:-5.632498px;}
.ws80{word-spacing:-5.629786px;}
.ws8e{word-spacing:-5.547941px;}
.ws90{word-spacing:-5.544635px;}
.wsae{word-spacing:-5.472993px;}
.wsac{word-spacing:-5.465642px;}
.wsba{word-spacing:-5.463819px;}
.wsaa{word-spacing:-5.462021px;}
.wse3{word-spacing:-3.886584px;}
.ws13{word-spacing:-3.586536px;}
.wsb6{word-spacing:-3.466985px;}
.wsa7{word-spacing:-3.287658px;}
.ws23{word-spacing:-3.168107px;}
.ws29{word-spacing:-3.048556px;}
.ws6a{word-spacing:-2.929004px;}
.ws51{word-spacing:-2.869229px;}
.wse0{word-spacing:-2.749678px;}
.ws62{word-spacing:-2.637891px;}
.ws64{word-spacing:-2.637120px;}
.ws37{word-spacing:-2.630126px;}
.ws35{word-spacing:-2.570351px;}
.wsd7{word-spacing:-2.553673px;}
.wsd5{word-spacing:-2.553520px;}
.wsf9{word-spacing:-2.385040px;}
.ws24{word-spacing:-2.331248px;}
.ws89{word-spacing:-2.271473px;}
.wse{word-spacing:-2.211697px;}
.wsfb{word-spacing:-2.175826px;}
.ws15{word-spacing:-2.151922px;}
.ws8b{word-spacing:-2.032370px;}
.ws3b{word-spacing:-1.853044px;}
.ws12{word-spacing:-1.793268px;}
.ws77{word-spacing:-1.733492px;}
.wsfd{word-spacing:-1.631869px;}
.ws60{word-spacing:-1.613941px;}
.ws5d{word-spacing:-1.494390px;}
.ws9c{word-spacing:-1.374839px;}
.ws1c{word-spacing:-1.315063px;}
.wse1{word-spacing:-1.255288px;}
.ws30{word-spacing:-1.195512px;}
.ws55{word-spacing:-1.135736px;}
.ws52{word-spacing:-1.075961px;}
.ws7b{word-spacing:-1.016185px;}
.ws1f{word-spacing:-0.956410px;}
.ws85{word-spacing:-0.934499px;}
.ws28{word-spacing:-0.896634px;}
.wsa{word-spacing:-0.836858px;}
.ws25{word-spacing:-0.777083px;}
.ws38{word-spacing:-0.717307px;}
.wsf8{word-spacing:-0.543956px;}
.wsa3{word-spacing:-0.537980px;}
.wsde{word-spacing:-0.489853px;}
.wsdd{word-spacing:-0.478205px;}
.ws102{word-spacing:-0.334742px;}
.ws16{word-spacing:-0.298878px;}
.ws5f{word-spacing:-0.239102px;}
.wsdc{word-spacing:-0.235806px;}
.wsbf{word-spacing:-0.179327px;}
.wsc6{word-spacing:-0.119551px;}
.wsc0{word-spacing:-0.061716px;}
.ws7{word-spacing:-0.059776px;}
.ws4f{word-spacing:-0.044234px;}
.wsbb{word-spacing:-0.015729px;}
.wsea{word-spacing:-0.008601px;}
.ws40{word-spacing:-0.004950px;}
.ws81{word-spacing:-0.004905px;}
.ws91{word-spacing:-0.004831px;}
.wsad{word-spacing:-0.004762px;}
.ws65{word-spacing:-0.002298px;}
.wsd8{word-spacing:-0.002225px;}
.ws47{word-spacing:-0.001133px;}
.wse4{word-spacing:-0.000800px;}
.ws0{word-spacing:0.000000px;}
.wsd4{word-spacing:0.006754px;}
.ws61{word-spacing:0.012268px;}
.wsb7{word-spacing:0.014450px;}
.wsa9{word-spacing:0.014455px;}
.ws8d{word-spacing:0.014664px;}
.ws7d{word-spacing:0.014889px;}
.ws3c{word-spacing:0.015025px;}
.wsc{word-spacing:0.059776px;}
.wsa6{word-spacing:0.119551px;}
.wsf5{word-spacing:0.167371px;}
.ws6e{word-spacing:0.179327px;}
.ws2a{word-spacing:0.239102px;}
.wsef{word-spacing:0.292900px;}
.ws86{word-spacing:0.298878px;}
.ws14{word-spacing:0.358654px;}
.ws18{word-spacing:0.382565px;}
.ws103{word-spacing:0.418428px;}
.ws72{word-spacing:0.418429px;}
.ws70{word-spacing:0.537980px;}
.wsf2{word-spacing:0.543956px;}
.ws1d{word-spacing:0.597756px;}
.ws75{word-spacing:0.621786px;}
.wsff{word-spacing:0.627642px;}
.ws76{word-spacing:0.657532px;}
.ws101{word-spacing:0.711328px;}
.wsce{word-spacing:0.717307px;}
.ws32{word-spacing:0.836858px;}
.wsb5{word-spacing:0.896634px;}
.wsf0{word-spacing:0.920542px;}
.wscd{word-spacing:0.956410px;}
.ws34{word-spacing:1.016185px;}
.wsc9{word-spacing:1.075961px;}
.wsf1{word-spacing:1.129756px;}
.ws21{word-spacing:1.424134px;}
.ws22{word-spacing:1.434614px;}
.ws36{word-spacing:1.494390px;}
.wsfc{word-spacing:1.506341px;}
.ws9{word-spacing:1.554166px;}
.wsf3{word-spacing:1.631869px;}
.ws95{word-spacing:1.673717px;}
.ws5e{word-spacing:1.733492px;}
.wsa0{word-spacing:1.793268px;}
.ws69{word-spacing:1.912819px;}
.ws1a{word-spacing:2.032370px;}
.ws73{word-spacing:2.092146px;}
.wsf7{word-spacing:2.133983px;}
.ws9f{word-spacing:2.271473px;}
.ws5c{word-spacing:2.331248px;}
.ws4d{word-spacing:2.450800px;}
.wsd0{word-spacing:2.630126px;}
.wsa2{word-spacing:2.689902px;}
.wsd{word-spacing:2.749678px;}
.wsf6{word-spacing:2.761625px;}
.ws31{word-spacing:2.809453px;}
.ws1e{word-spacing:2.869229px;}
.ws1b{word-spacing:3.048556px;}
.wsfe{word-spacing:3.096367px;}
.ws6c{word-spacing:3.168107px;}
.wsd1{word-spacing:3.227882px;}
.ws6b{word-spacing:3.407209px;}
.ws56{word-spacing:3.466985px;}
.wsfa{word-spacing:3.514795px;}
.ws2f{word-spacing:3.526760px;}
.ws5{word-spacing:3.586536px;}
.ws96{word-spacing:3.646312px;}
.ws6{word-spacing:3.706087px;}
.ws100{word-spacing:3.724009px;}
.ws74{word-spacing:3.765863px;}
.ws104{word-spacing:3.807695px;}
.ws59{word-spacing:3.825638px;}
.ws20{word-spacing:3.885414px;}
.ws27{word-spacing:3.945190px;}
.wsc8{word-spacing:4.004965px;}
.ws97{word-spacing:4.064741px;}
.ws9d{word-spacing:4.184292px;}
.ws9a{word-spacing:4.244068px;}
.wsa1{word-spacing:4.423394px;}
.ws39{word-spacing:4.602721px;}
.wscb{word-spacing:4.662497px;}
.wsa5{word-spacing:4.722272px;}
.ws105{word-spacing:4.770079px;}
.ws3a{word-spacing:4.841824px;}
.ws57{word-spacing:4.901599px;}
.ws19{word-spacing:4.961375px;}
.wsd9{word-spacing:5.066501px;}
.wsd6{word-spacing:5.075707px;}
.ws26{word-spacing:5.080926px;}
.ws66{word-spacing:5.232059px;}
.ws63{word-spacing:5.236273px;}
.ws4b{word-spacing:5.260253px;}
.ws4{word-spacing:5.320028px;}
.wsf4{word-spacing:5.355878px;}
.wsd3{word-spacing:5.379804px;}
.ws88{word-spacing:5.439580px;}
.wsb8{word-spacing:5.468833px;}
.ws78{word-spacing:5.499355px;}
.wsee{word-spacing:5.559131px;}
.ws79{word-spacing:5.618906px;}
.ws5a{word-spacing:5.738458px;}
.wsc5{word-spacing:5.858009px;}
.ws54{word-spacing:5.917784px;}
.wsc7{word-spacing:5.977560px;}
.wsb2{word-spacing:6.037336px;}
.ws6d{word-spacing:6.156887px;}
.wsb{word-spacing:6.216662px;}
.wsc1{word-spacing:6.276438px;}
.ws2e{word-spacing:6.336214px;}
.wsa4{word-spacing:6.455765px;}
.wsca{word-spacing:6.635092px;}
.wsd2{word-spacing:6.754643px;}
.wsb3{word-spacing:6.814418px;}
.wsc2{word-spacing:6.933970px;}
.ws9e{word-spacing:7.053521px;}
.ws6f{word-spacing:7.058850px;}
.ws4c{word-spacing:7.173072px;}
.ws5b{word-spacing:7.232848px;}
.ws58{word-spacing:7.292623px;}
.ws7c{word-spacing:7.412174px;}
.ws3{word-spacing:7.531726px;}
.wscc{word-spacing:7.591501px;}
.wse2{word-spacing:7.717830px;}
.wse9{word-spacing:7.735015px;}
.ws4a{word-spacing:7.770828px;}
.ws2{word-spacing:7.890379px;}
.ws8a{word-spacing:7.950155px;}
.ws8c{word-spacing:8.069706px;}
.ws46{word-spacing:8.189257px;}
.wsc4{word-spacing:8.368584px;}
.ws49{word-spacing:8.547911px;}
.wsb4{word-spacing:8.607686px;}
.wscf{word-spacing:8.727238px;}
.ws99{word-spacing:8.787013px;}
.ws87{word-spacing:8.906564px;}
.ws2d{word-spacing:9.085891px;}
.ws50{word-spacing:9.338850px;}
.ws98{word-spacing:9.623872px;}
.wsbc{word-spacing:10.840243px;}
.wsaf{word-spacing:10.843860px;}
.wsb9{word-spacing:10.848973px;}
.wsab{word-spacing:10.863566px;}
.ws92{word-spacing:11.000584px;}
.ws8f{word-spacing:11.020574px;}
.ws82{word-spacing:11.169523px;}
.ws7f{word-spacing:11.189820px;}
.ws42{word-spacing:11.271396px;}
.ws3e{word-spacing:11.280473px;}
.ws17{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws2c{word-spacing:14.943900px;}
.ws45{word-spacing:16.772534px;}
.ws48{word-spacing:16.778534px;}
.ws71{word-spacing:19.027966px;}
.ws53{word-spacing:19.093966px;}
.ws7a{word-spacing:19.345966px;}
.ws8{word-spacing:20.101966px;}
.ws2b{word-spacing:20.185966px;}
.ws33{word-spacing:21.025966px;}
.ws11{word-spacing:21.519300px;}
.wsa8{word-spacing:21.697966px;}
.ws9b{word-spacing:22.507966px;}
.wsdf{word-spacing:25.591966px;}
.wsc3{word-spacing:27.091966px;}
.wsf{word-spacing:37.003661px;}
.wsdb{word-spacing:48.519795px;}
.ws68{word-spacing:50.105283px;}
.wse6{word-spacing:73.833655px;}
.wsbe{word-spacing:103.812554px;}
.wsb1{word-spacing:103.847193px;}
.ws94{word-spacing:105.348069px;}
.ws84{word-spacing:106.965926px;}
.ws44{word-spacing:107.941523px;}
.wse7{word-spacing:173.237072px;}
.wseb{word-spacing:194.843131px;}
.wse8{word-spacing:704.373073px;}
.wsec{word-spacing:1114.577319px;}
._71{margin-left:-2228.877889px;}
._3e{margin-left:-2169.568556px;}
._12{margin-left:-2154.469637px;}
._15{margin-left:-2153.393676px;}
._d{margin-left:-2137.876330px;}
._4e{margin-left:-2106.252923px;}
._1b{margin-left:-1995.036148px;}
._51{margin-left:-1948.604064px;}
._93{margin-left:-1929.290068px;}
._16{margin-left:-1897.370837px;}
._90{margin-left:-1868.504419px;}
._95{margin-left:-1609.694760px;}
._8e{margin-left:-1387.500474px;}
._96{margin-left:-1292.077699px;}
._5d{margin-left:-1277.298173px;}
._19{margin-left:-1255.683715px;}
._3b{margin-left:-1052.781424px;}
._5c{margin-left:-1031.500906px;}
._91{margin-left:-826.110310px;}
._8f{margin-left:-651.155672px;}
._5e{margin-left:-641.277107px;}
._94{margin-left:-557.646905px;}
._45{margin-left:-261.866150px;}
._69{margin-left:-12.129677px;}
._8{margin-left:-7.113296px;}
._1d{margin-left:-5.783009px;}
._9{margin-left:-4.483170px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._27{width:2.025313px;}
._28{width:3.248940px;}
._68{width:4.453201px;}
._1c{width:5.654279px;}
._92{width:10.544300px;}
._c{width:12.672427px;}
._44{width:13.808164px;}
._e{width:15.679416px;}
._b{width:16.856718px;}
._7{width:18.584269px;}
._14{width:20.024825px;}
._10{width:21.160562px;}
._1a{width:22.535401px;}
._59{width:23.539646px;}
._4{width:24.567771px;}
._23{width:25.882835px;}
._13{width:27.472870px;}
._6{width:28.512961px;}
._26{width:29.708473px;}
._5b{width:31.143088px;}
._73{width:32.517926px;}
._11{width:33.534112px;}
._5{width:34.729624px;}
._a{width:35.865600px;}
._74{width:36.953286px;}
._67{width:38.830235px;}
._3{width:40.228979px;}
._2{width:41.962471px;}
._17{width:43.038600px;}
._72{width:44.592597px;}
._18{width:45.680524px;}
._5a{width:47.402051px;}
._84{width:63.328792px;}
._2e{width:65.395474px;}
._3d{width:69.814075px;}
._87{width:74.602447px;}
._79{width:76.097159px;}
._33{width:78.748054px;}
._89{width:81.578444px;}
._75{width:82.585798px;}
._36{width:84.278713px;}
._29{width:85.284465px;}
._8b{width:86.337538px;}
._7b{width:88.166387px;}
._32{width:90.348176px;}
._37{width:91.986397px;}
._77{width:95.340584px;}
._2c{width:98.417324px;}
._83{width:100.972247px;}
._3c{width:102.161263px;}
._2d{width:104.271731px;}
._78{width:113.740614px;}
._30{width:117.457331px;}
._8c{width:119.653329px;}
._7a{width:120.839826px;}
._80{width:123.611374px;}
._85{width:126.508981px;}
._86{width:127.939038px;}
._88{width:130.748078px;}
._82{width:132.178136px;}
._7d{width:139.239855px;}
._7c{width:143.516446px;}
._8a{width:144.897466px;}
._3a{width:153.589524px;}
._8d{width:156.284813px;}
._7e{width:157.714870px;}
._6f{width:161.401202px;}
._31{width:162.921283px;}
._56{width:164.150399px;}
._7f{width:166.244139px;}
._81{width:169.053180px;}
._39{width:176.106883px;}
._6e{width:177.495215px;}
._38{width:178.840736px;}
._34{width:181.908548px;}
._20{width:183.614212px;}
._35{width:187.815697px;}
._1f{width:189.863458px;}
._55{width:191.873575px;}
._22{width:192.931270px;}
._2f{width:195.094148px;}
._2b{width:201.001297px;}
._62{width:203.081690px;}
._60{width:204.873811px;}
._52{width:206.925786px;}
._1e{width:208.838442px;}
._4a{width:210.103597px;}
._3f{width:211.906253px;}
._63{width:213.050716px;}
._70{width:215.825112px;}
._6c{width:216.867408px;}
._21{width:221.336934px;}
._57{width:222.516531px;}
._4c{width:231.926813px;}
._61{width:233.820155px;}
._43{width:240.425540px;}
._6a{width:243.211858px;}
._48{width:247.597969px;}
._5f{width:249.123951px;}
._42{width:252.810410px;}
._47{width:254.248033px;}
._41{width:259.400524px;}
._49{width:266.401453px;}
._40{width:281.216074px;}
._6d{width:282.807251px;}
._4d{width:288.224668px;}
._25{width:300.753424px;}
._46{width:308.411497px;}
._64{width:316.347439px;}
._6b{width:337.445437px;}
._4b{width:344.430281px;}
._65{width:362.163225px;}
._66{width:373.534020px;}
._54{width:400.988019px;}
._53{width:428.711195px;}
._4f{width:433.669874px;}
._24{width:443.820156px;}
._50{width:487.532448px;}
._58{width:523.135810px;}
._76{width:562.984383px;}
._2a{width:572.619465px;}
._f{width:1111.255096px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs20{font-size:40.858877px;}
.fs23{font-size:41.842800px;}
.fsc{font-size:42.194028px;}
.fs3{font-size:44.233800px;}
.fse{font-size:46.542834px;}
.fs1e{font-size:46.616477px;}
.fs2{font-size:47.820600px;}
.fs1f{font-size:51.073468px;}
.fsb{font-size:52.742403px;}
.fs1a{font-size:54.471011px;}
.fs12{font-size:55.385819px;}
.fs16{font-size:55.490546px;}
.fsa{font-size:55.695218px;}
.fsd{font-size:58.178396px;}
.fs1d{font-size:58.270450px;}
.fs1{font-size:59.775600px;}
.fs22{font-size:62.175866px;}
.fs19{font-size:68.088593px;}
.fs11{font-size:69.232100px;}
.fs15{font-size:69.363008px;}
.fs9{font-size:69.618848px;}
.fs4{font-size:71.731200px;}
.fs21{font-size:77.719637px;}
.fs0{font-size:86.077200px;}
.fs1c{font-size:87.421317px;}
.fs18{font-size:87.450488px;}
.fs14{font-size:88.714386px;}
.fs10{font-size:90.076795px;}
.fs8{font-size:90.898353px;}
.fs1b{font-size:109.276372px;}
.fs17{font-size:109.312835px;}
.fs13{font-size:110.892704px;}
.fsf{font-size:112.595711px;}
.fs7{font-size:113.622656px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y21{bottom:178.879500px;}
.y48{bottom:180.411000px;}
.yf2{bottom:181.653000px;}
.y12a{bottom:182.079000px;}
.yae{bottom:182.425500px;}
.y7c{bottom:182.848500px;}
.y8f{bottom:183.510000px;}
.ycd{bottom:187.287000px;}
.y1a3{bottom:192.328500px;}
.y111{bottom:195.592500px;}
.y64{bottom:196.812000px;}
.y20{bottom:197.415000px;}
.y47{bottom:198.343500px;}
.yf1{bottom:199.585500px;}
.y17a{bottom:199.969500px;}
.y7b{bottom:200.781000px;}
.y8e{bottom:201.442500px;}
.ycc{bottom:205.219500px;}
.y1f{bottom:207.789000px;}
.y129{bottom:210.099000px;}
.yad{bottom:210.445500px;}
.y179{bottom:213.420000px;}
.y110{bottom:213.525000px;}
.y63{bottom:214.744500px;}
.y46{bottom:216.276000px;}
.yf0{bottom:217.519500px;}
.y1a2{bottom:217.734000px;}
.y7a{bottom:218.713500px;}
.ycb{bottom:223.152000px;}
.y1e{bottom:226.326000px;}
.y8d{bottom:229.462500px;}
.y1a1{bottom:231.183000px;}
.y10f{bottom:231.457500px;}
.y62{bottom:232.677000px;}
.y45{bottom:234.208500px;}
.yef{bottom:235.452000px;}
.y178{bottom:238.824000px;}
.y79{bottom:246.733500px;}
.y10e{bottom:249.390000px;}
.yac{bottom:250.234500px;}
.y61{bottom:250.609500px;}
.y160{bottom:251.043000px;}
.y44{bottom:252.142500px;}
.y177{bottom:252.273000px;}
.yee{bottom:253.384500px;}
.y1a0{bottom:256.588500px;}
.yca{bottom:258.370500px;}
.y10d{bottom:267.322500px;}
.y128{bottom:267.756000px;}
.yab{bottom:268.167000px;}
.y13c{bottom:268.542000px;}
.y60{bottom:268.543500px;}
.y15f{bottom:268.975500px;}
.y8c{bottom:269.251500px;}
.y19f{bottom:270.037500px;}
.y43{bottom:270.075000px;}
.yed{bottom:271.317000px;}
.y1d{bottom:271.774500px;}
.y176{bottom:282.684000px;}
.y19e{bottom:283.486500px;}
.y10c{bottom:285.256500px;}
.yaa{bottom:286.099500px;}
.y5f{bottom:286.476000px;}
.y15e{bottom:286.908000px;}
.y8b{bottom:287.184000px;}
.y42{bottom:288.007500px;}
.yec{bottom:289.249500px;}
.y1c{bottom:289.707000px;}
.y10b{bottom:303.189000px;}
.y78{bottom:304.390500px;}
.y5e{bottom:304.408500px;}
.y15d{bottom:304.840500px;}
.y8a{bottom:305.116500px;}
.y41{bottom:305.940000px;}
.y1b{bottom:307.641000px;}
.y19d{bottom:308.892000px;}
.yc9{bottom:311.354165px;}
.y127{bottom:315.478552px;}
.yeb{bottom:317.269500px;}
.y10a{bottom:321.121500px;}
.ya9{bottom:321.318000px;}
.y5d{bottom:322.341000px;}
.y15c{bottom:322.773000px;}
.y89{bottom:323.049000px;}
.y40{bottom:323.872500px;}
.y175{bottom:325.050000px;}
.y1a{bottom:325.573500px;}
.y126{bottom:332.959512px;}
.y109{bottom:339.054000px;}
.y5c{bottom:340.273500px;}
.y3f{bottom:341.805000px;}
.y19{bottom:343.506000px;}
.yc8{bottom:344.621643px;}
.y19c{bottom:347.746500px;}
.y125{bottom:350.440472px;}
.y77{bottom:352.103247px;}
.y15b{bottom:356.173500px;}
.y108{bottom:356.986500px;}
.yea{bottom:357.058500px;}
.y13b{bottom:358.206000px;}
.y5b{bottom:358.207500px;}
.y88{bottom:358.267500px;}
.y3e{bottom:359.739000px;}
.y19b{bottom:361.195500px;}
.y18{bottom:361.438500px;}
.y124{bottom:368.504861px;}
.y76{bottom:369.556590px;}
.ya8{bottom:374.473931px;}
.y107{bottom:374.919000px;}
.ye9{bottom:374.991000px;}
.y174{bottom:375.486000px;}
.y13a{bottom:376.138500px;}
.y5a{bottom:376.140000px;}
.y3d{bottom:377.671500px;}
.yc7{bottom:377.889120px;}
.y19a{bottom:386.601000px;}
.y75{bottom:387.009934px;}
.y17{bottom:389.458500px;}
.y106{bottom:392.853000px;}
.ye8{bottom:392.923500px;}
.y59{bottom:394.072500px;}
.y3c{bottom:395.604000px;}
.y199{bottom:400.050000px;}
.y123{bottom:402.820500px;}
.y74{bottom:405.045786px;}
.y15a{bottom:406.609500px;}
.ya7{bottom:408.252305px;}
.y173{bottom:408.886500px;}
.y105{bottom:410.785500px;}
.ye7{bottom:410.856000px;}
.yc6{bottom:411.159380px;}
.y87{bottom:411.524860px;}
.y58{bottom:412.005000px;}
.y3b{bottom:413.536500px;}
.y122{bottom:420.754500px;}
.y159{bottom:424.542000px;}
.y198{bottom:425.454000px;}
.y16{bottom:425.847000px;}
.y104{bottom:428.718000px;}
.ye6{bottom:428.788500px;}
.y139{bottom:429.937500px;}
.y3a{bottom:431.469000px;}
.y121{bottom:438.687000px;}
.y197{bottom:438.904500px;}
.y73{bottom:439.342500px;}
.y57{bottom:440.025000px;}
.ya6{bottom:442.030680px;}
.y158{bottom:442.474500px;}
.yc5{bottom:444.426858px;}
.y86{bottom:445.611315px;}
.y103{bottom:446.650500px;}
.ye5{bottom:446.722500px;}
.y138{bottom:447.870000px;}
.y196{bottom:452.353500px;}
.y120{bottom:456.619500px;}
.y72{bottom:457.275000px;}
.y172{bottom:459.322500px;}
.y39{bottom:459.489000px;}
.y157{bottom:460.407000px;}
.y102{bottom:464.583000px;}
.ye4{bottom:464.655000px;}
.y137{bottom:465.802500px;}
.y71{bottom:475.209000px;}
.ya5{bottom:476.936412px;}
.y171{bottom:477.255000px;}
.y195{bottom:477.759000px;}
.y156{bottom:478.339500px;}
.yc4{bottom:478.801859px;}
.y85{bottom:479.697769px;}
.y15{bottom:479.737500px;}
.ye3{bottom:482.587500px;}
.y136{bottom:483.735000px;}
.y38{bottom:487.509000px;}
.y194{bottom:491.208000px;}
.y11f{bottom:491.838000px;}
.y70{bottom:493.141500px;}
.y56{bottom:495.694500px;}
.y155{bottom:496.272000px;}
.y14{bottom:497.670000px;}
.ye2{bottom:500.520000px;}
.y135{bottom:501.669000px;}
.y193{bottom:504.657000px;}
.y170{bottom:510.654000px;}
.ya4{bottom:510.714787px;}
.y101{bottom:512.004000px;}
.yc3{bottom:512.072120px;}
.y84{bottom:513.784224px;}
.ye1{bottom:518.452500px;}
.y134{bottom:519.601500px;}
.y37{bottom:523.897500px;}
.y13{bottom:526.078500px;}
.y192{bottom:530.062500px;}
.y6f{bottom:531.423000px;}
.y154{bottom:531.490500px;}
.ye0{bottom:536.385000px;}
.y133{bottom:537.534000px;}
.y191{bottom:543.511500px;}
.y12{bottom:544.011000px;}
.y55{bottom:544.551660px;}
.y11e{bottom:544.661788px;}
.ya3{bottom:545.617694px;}
.yc2{bottom:546.447121px;}
.y83{bottom:547.873530px;}
.ydf{bottom:554.319000px;}
.y132{bottom:555.466500px;}
.y190{bottom:556.962000px;}
.y100{bottom:560.707447px;}
.y16f{bottom:561.090000px;}
.y11{bottom:561.945000px;}
.y54{bottom:565.437105px;}
.yde{bottom:572.251500px;}
.y131{bottom:573.399000px;}
.y36{bottom:574.333500px;}
.y11d{bottom:577.444371px;}
.y153{bottom:578.493302px;}
.y6e{bottom:578.592958px;}
.y16e{bottom:579.022500px;}
.y10{bottom:579.877500px;}
.yff{bottom:581.133820px;}
.y18f{bottom:582.366000px;}
.y82{bottom:583.094774px;}
.y53{bottom:586.322549px;}
.ydd{bottom:590.184000px;}
.y130{bottom:591.333000px;}
.ya2{bottom:591.925500px;}
.y35{bottom:592.266000px;}
.yc1{bottom:592.398000px;}
.y152{bottom:593.815189px;}
.y6d{bottom:594.415520px;}
.y18e{bottom:595.815000px;}
.yf{bottom:597.810000px;}
.yfe{bottom:601.560193px;}
.y52{bottom:607.905049px;}
.ydc{bottom:608.116500px;}
.y151{bottom:609.137076px;}
.y12f{bottom:609.265500px;}
.ya1{bottom:609.858000px;}
.y34{bottom:610.198500px;}
.y11c{bottom:610.226953px;}
.y6c{bottom:610.238082px;}
.yc0{bottom:610.330500px;}
.y16d{bottom:612.423000px;}
.ye{bottom:615.742500px;}
.y81{bottom:617.181229px;}
.yfd{bottom:622.668299px;}
.y150{bottom:624.458962px;}
.ydb{bottom:626.049000px;}
.y6b{bottom:626.060644px;}
.y12e{bottom:627.198000px;}
.ya0{bottom:627.792000px;}
.y33{bottom:628.132500px;}
.ybf{bottom:628.263000px;}
.yd{bottom:633.675000px;}
.y18d{bottom:634.669500px;}
.y14f{bottom:639.780849px;}
.y6a{bottom:641.883206px;}
.y11b{bottom:643.009536px;}
.yda{bottom:643.983000px;}
.y51{bottom:644.218500px;}
.y12d{bottom:645.130500px;}
.y9f{bottom:645.724500px;}
.y32{bottom:646.065000px;}
.ybe{bottom:646.195500px;}
.y18c{bottom:648.120000px;}
.yc{bottom:651.607500px;}
.y80{bottom:652.405324px;}
.y14e{bottom:655.104017px;}
.y69{bottom:657.707092px;}
.yfc{bottom:658.981500px;}
.yd9{bottom:661.915500px;}
.y50{bottom:662.151000px;}
.y16c{bottom:662.859000px;}
.y12c{bottom:663.063000px;}
.y9e{bottom:663.657000px;}
.y31{bottom:663.997500px;}
.ybd{bottom:664.129500px;}
.yb{bottom:669.541500px;}
.y14d{bottom:670.425904px;}
.y18b{bottom:673.524000px;}
.y68{bottom:673.529654px;}
.y11a{bottom:675.792118px;}
.yd8{bottom:679.848000px;}
.y12b{bottom:680.995500px;}
.y9d{bottom:681.589500px;}
.y30{bottom:681.930000px;}
.ybc{bottom:682.062000px;}
.y14c{bottom:685.747790px;}
.y18a{bottom:686.974500px;}
.ya{bottom:687.474000px;}
.y67{bottom:689.880296px;}
.y16b{bottom:696.258000px;}
.y4f{bottom:696.402000px;}
.yd7{bottom:697.780500px;}
.y7f{bottom:698.929500px;}
.y9c{bottom:699.522000px;}
.ybb{bottom:699.994500px;}
.y14b{bottom:701.069677px;}
.y9{bottom:705.406500px;}
.y66{bottom:705.702858px;}
.y119{bottom:708.577443px;}
.y2f{bottom:709.950000px;}
.yfb{bottom:711.809606px;}
.y189{bottom:712.378500px;}
.yd6{bottom:715.713000px;}
.y14a{bottom:716.391564px;}
.y7e{bottom:716.862000px;}
.y9b{bottom:717.456000px;}
.yba{bottom:717.927000px;}
.y65{bottom:722.052177px;}
.y8{bottom:723.339000px;}
.y188{bottom:725.827500px;}
.y149{bottom:731.713450px;}
.yd5{bottom:733.645500px;}
.y7d{bottom:734.794500px;}
.y9a{bottom:735.388500px;}
.yb9{bottom:735.859500px;}
.y7{bottom:741.271500px;}
.y118{bottom:741.360026px;}
.y16a{bottom:743.679000px;}
.yfa{bottom:744.603128px;}
.y148{bottom:747.036619px;}
.y4e{bottom:749.659666px;}
.y187{bottom:751.233000px;}
.yd4{bottom:751.579500px;}
.y2e{bottom:752.727000px;}
.y99{bottom:753.321000px;}
.yb8{bottom:753.792000px;}
.y147{bottom:762.358505px;}
.y186{bottom:764.682000px;}
.y6{bottom:767.758500px;}
.y2d{bottom:770.659500px;}
.y98{bottom:771.253500px;}
.yb7{bottom:771.726000px;}
.y117{bottom:774.142608px;}
.yf9{bottom:777.396649px;}
.y146{bottom:777.680392px;}
.y185{bottom:778.132500px;}
.yd3{bottom:779.598000px;}
.y4d{bottom:783.746121px;}
.y2c{bottom:788.592000px;}
.y97{bottom:789.186000px;}
.yb6{bottom:789.658500px;}
.y145{bottom:793.002279px;}
.y169{bottom:793.346129px;}
.y184{bottom:803.536500px;}
.y2b{bottom:806.526000px;}
.y116{bottom:806.925191px;}
.y96{bottom:807.118500px;}
.yb5{bottom:807.591000px;}
.y144{bottom:808.324165px;}
.yf8{bottom:810.190171px;}
.y168{bottom:816.661787px;}
.y183{bottom:816.987000px;}
.y4c{bottom:817.832575px;}
.y143{bottom:823.646052px;}
.y2a{bottom:824.458500px;}
.y95{bottom:825.052500px;}
.yb4{bottom:825.523500px;}
.y182{bottom:830.436000px;}
.yd2{bottom:837.255000px;}
.y142{bottom:838.969220px;}
.y115{bottom:839.707773px;}
.y167{bottom:840.753657px;}
.y29{bottom:842.391000px;}
.yf7{bottom:842.983692px;}
.y4b{bottom:853.056671px;}
.y141{bottom:854.291107px;}
.y181{bottom:855.840000px;}
.y28{bottom:860.323500px;}
.y166{bottom:864.847478px;}
.y5{bottom:867.796500px;}
.y180{bottom:869.290500px;}
.y140{bottom:869.612993px;}
.y94{bottom:872.472000px;}
.yb3{bottom:872.943000px;}
.y114{bottom:873.584480px;}
.yf6{bottom:875.779956px;}
.y27{bottom:878.256000px;}
.y13f{bottom:885.446250px;}
.yd1{bottom:886.087148px;}
.y4a{bottom:887.143125px;}
.y165{bottom:888.163135px;}
.y4{bottom:890.959500px;}
.y17f{bottom:894.694500px;}
.y26{bottom:896.188500px;}
.y13e{bottom:900.768137px;}
.y113{bottom:906.367062px;}
.yd0{bottom:906.895841px;}
.y17e{bottom:908.145000px;}
.yf5{bottom:909.665224px;}
.y164{bottom:911.478792px;}
.y3{bottom:914.122500px;}
.y13d{bottom:916.600113px;}
.y93{bottom:921.329160px;}
.yb2{bottom:921.761729px;}
.y49{bottom:922.367221px;}
.ycf{bottom:927.704535px;}
.y25{bottom:932.055000px;}
.y17d{bottom:933.549000px;}
.y163{bottom:935.572613px;}
.y112{bottom:940.243769px;}
.y92{bottom:942.214605px;}
.yf4{bottom:942.458745px;}
.yb1{bottom:942.532888px;}
.y17c{bottom:946.998000px;}
.yce{bottom:949.207722px;}
.y24{bottom:949.987500px;}
.y162{bottom:958.888270px;}
.y2{bottom:958.954500px;}
.y91{bottom:963.100049px;}
.yb0{bottom:963.302309px;}
.y23{bottom:967.920000px;}
.y17b{bottom:972.403500px;}
.yf3{bottom:976.346755px;}
.y161{bottom:982.982091px;}
.y90{bottom:984.682549px;}
.yaf{bottom:984.763176px;}
.y1{bottom:985.852500px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h20{height:28.787846px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h1e{height:35.138546px;}
.h12{height:36.286773px;}
.h13{height:40.026736px;}
.h1d{height:40.090070px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hc{height:41.484266px;}
.hf{height:41.961802px;}
.h17{height:41.967802px;}
.hb{height:44.233944px;}
.h1b{height:46.844952px;}
.h16{height:47.631685px;}
.h19{height:47.721750px;}
.h10{height:47.897767px;}
.h7{height:49.637990px;}
.hd{height:52.040387px;}
.h5{height:52.046387px;}
.h14{height:52.128854px;}
.h11{height:52.134854px;}
.h1f{height:53.471111px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h1c{height:75.182144px;}
.h1a{height:75.207231px;}
.h18{height:76.294181px;}
.h15{height:77.465849px;}
.he{height:78.172387px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x16{left:203.948863px;}
.x11{left:205.003789px;}
.xe{left:207.754414px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x8{left:222.172500px;}
.xc{left:225.509023px;}
.x1d{left:229.570078px;}
.x2e{left:233.020500px;}
.x1{left:236.035500px;}
.x2d{left:242.380500px;}
.x24{left:245.370000px;}
.x1f{left:248.686500px;}
.x19{left:251.013000px;}
.x12{left:252.339000px;}
.x20{left:257.864420px;}
.xb{left:260.120104px;}
.x22{left:262.273500px;}
.x1c{left:263.349577px;}
.x2{left:266.614500px;}
.x17{left:267.916500px;}
.xf{left:269.244000px;}
.x2a{left:271.767192px;}
.x2b{left:273.321569px;}
.x2c{left:278.985197px;}
.x10{left:291.218486px;}
.x4{left:293.067000px;}
.x23{left:294.896943px;}
.x5{left:307.503000px;}
.x18{left:318.704051px;}
.x15{left:324.531212px;}
.x29{left:334.783551px;}
.x28{left:345.969618px;}
.x14{left:348.858650px;}
.x27{left:361.527324px;}
.x13{left:364.924738px;}
.x3{left:405.975000px;}
.x1b{left:408.786685px;}
.x21{left:413.347680px;}
.x1a{left:424.915496px;}
.xd{left:426.477970px;}
.x1e{left:445.698764px;}
.x25{left:449.692683px;}
.x26{left:450.964500px;}
.xa{left:454.699500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls57{letter-spacing:2.241740pt;}
.ls54{letter-spacing:2.251778pt;}
.ls53{letter-spacing:2.269093pt;}
.ls55{letter-spacing:2.269932pt;}
.ls56{letter-spacing:2.270934pt;}
.ls13{letter-spacing:2.314993pt;}
.ls10{letter-spacing:2.325360pt;}
.ls14{letter-spacing:2.340436pt;}
.lsf{letter-spacing:2.343240pt;}
.ls11{letter-spacing:2.344107pt;}
.ls12{letter-spacing:2.345142pt;}
.ls1c{letter-spacing:2.565027pt;}
.ls52{letter-spacing:2.569086pt;}
.ls1b{letter-spacing:2.585046pt;}
.ls51{letter-spacing:2.589136pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls46{letter-spacing:3.001958pt;}
.ls45{letter-spacing:3.025387pt;}
.ls2c{letter-spacing:3.052374pt;}
.ls39{letter-spacing:3.058146pt;}
.lse{letter-spacing:3.069425pt;}
.ls2b{letter-spacing:3.076196pt;}
.ls38{letter-spacing:3.082013pt;}
.lsd{letter-spacing:3.093381pt;}
.ls5f{letter-spacing:3.426581pt;}
.ls5e{letter-spacing:3.453324pt;}
.ls60{letter-spacing:3.454206pt;}
.ls43{letter-spacing:4.798008pt;}
.ls4c{letter-spacing:4.806158pt;}
.ls48{letter-spacing:4.817886pt;}
.ls40{letter-spacing:4.819494pt;}
.ls4b{letter-spacing:4.849123pt;}
.ls47{letter-spacing:4.854932pt;}
.ls3f{letter-spacing:4.856552pt;}
.ls49{letter-spacing:4.856728pt;}
.ls41{letter-spacing:4.858348pt;}
.ls42{letter-spacing:4.860494pt;}
.ls4a{letter-spacing:4.864682pt;}
.ls31{letter-spacing:4.877247pt;}
.ls2e{letter-spacing:4.889148pt;}
.ls30{letter-spacing:4.920847pt;}
.ls2d{letter-spacing:4.926742pt;}
.ls2f{letter-spacing:4.928565pt;}
.ls26{letter-spacing:4.952148pt;}
.ls23{letter-spacing:4.964232pt;}
.ls8{letter-spacing:4.987177pt;}
.ls25{letter-spacing:4.996418pt;}
.ls22{letter-spacing:5.002403pt;}
.ls24{letter-spacing:5.004254pt;}
.ls5{letter-spacing:5.009509pt;}
.ls4{letter-spacing:5.048028pt;}
.ls6{letter-spacing:5.049896pt;}
.ls7{letter-spacing:5.052126pt;}
.ls3{letter-spacing:6.536174pt;}
.ls19{letter-spacing:8.811145pt;}
.ls17{letter-spacing:9.355145pt;}
.ls1a{letter-spacing:10.053812pt;}
.ls18{letter-spacing:10.640479pt;}
.ls16{letter-spacing:10.686400pt;}
.ls29{letter-spacing:11.008479pt;}
.ls5c{letter-spacing:11.365812pt;}
.ls5a{letter-spacing:11.595145pt;}
.ls4f{letter-spacing:11.739145pt;}
.lsb{letter-spacing:11.765812pt;}
.ls1e{letter-spacing:12.080479pt;}
.ls2a{letter-spacing:12.427145pt;}
.ls28{letter-spacing:12.473067pt;}
.ls34{letter-spacing:12.597812pt;}
.ls5d{letter-spacing:12.811145pt;}
.ls5b{letter-spacing:13.056479pt;}
.ls59{letter-spacing:13.102400pt;}
.ls50{letter-spacing:13.216479pt;}
.lsc{letter-spacing:13.237812pt;}
.ls4e{letter-spacing:13.257067pt;}
.lsa{letter-spacing:13.283733pt;}
.ls36{letter-spacing:13.552479pt;}
.ls58{letter-spacing:13.580807pt;}
.ls20{letter-spacing:13.643145pt;}
.ls1f{letter-spacing:13.808479pt;}
.ls1d{letter-spacing:13.849067pt;}
.ls15{letter-spacing:14.029295pt;}
.ls3d{letter-spacing:14.112479pt;}
.ls35{letter-spacing:14.752479pt;}
.ls33{letter-spacing:14.793067pt;}
.ls3b{letter-spacing:14.955145pt;}
.ls37{letter-spacing:16.459145pt;}
.ls21{letter-spacing:16.619145pt;}
.ls3e{letter-spacing:17.467145pt;}
.ls3c{letter-spacing:18.981812pt;}
.ls3a{letter-spacing:19.027733pt;}
.ls44{letter-spacing:29.067079pt;}
.ls4d{letter-spacing:29.067133pt;}
.ls32{letter-spacing:29.497072pt;}
.ls27{letter-spacing:29.950066pt;}
.ls9{letter-spacing:30.213092pt;}
.ws43{word-spacing:-30.299375pt;}
.ws83{word-spacing:-30.025523pt;}
.ws93{word-spacing:-29.571388pt;}
.wsb0{word-spacing:-29.150089pt;}
.wsbd{word-spacing:-29.140366pt;}
.wse5{word-spacing:-20.725237pt;}
.wsed{word-spacing:-19.128267pt;}
.ws67{word-spacing:-14.064641pt;}
.wsda{word-spacing:-13.619592pt;}
.ws10{word-spacing:-13.283467pt;}
.ws4e{word-spacing:-9.829733pt;}
.ws41{word-spacing:-5.054442pt;}
.ws3f{word-spacing:-5.049896pt;}
.ws3d{word-spacing:-5.044304pt;}
.ws7e{word-spacing:-5.006665pt;}
.ws80{word-spacing:-5.004254pt;}
.ws8e{word-spacing:-4.931503pt;}
.ws90{word-spacing:-4.928565pt;}
.wsae{word-spacing:-4.864883pt;}
.wsac{word-spacing:-4.858348pt;}
.wsba{word-spacing:-4.856728pt;}
.wsaa{word-spacing:-4.855130pt;}
.wse3{word-spacing:-3.454741pt;}
.ws13{word-spacing:-3.188032pt;}
.wsb6{word-spacing:-3.081764pt;}
.wsa7{word-spacing:-2.922363pt;}
.ws23{word-spacing:-2.816095pt;}
.ws29{word-spacing:-2.709827pt;}
.ws6a{word-spacing:-2.603559pt;}
.ws51{word-spacing:-2.550426pt;}
.wse0{word-spacing:-2.444158pt;}
.ws62{word-spacing:-2.344792pt;}
.ws64{word-spacing:-2.344107pt;}
.ws37{word-spacing:-2.337890pt;}
.ws35{word-spacing:-2.284756pt;}
.wsd7{word-spacing:-2.269932pt;}
.wsd5{word-spacing:-2.269795pt;}
.wsf9{word-spacing:-2.120035pt;}
.ws24{word-spacing:-2.072221pt;}
.ws89{word-spacing:-2.019087pt;}
.wse{word-spacing:-1.965953pt;}
.wsfb{word-spacing:-1.934067pt;}
.ws15{word-spacing:-1.912819pt;}
.ws8b{word-spacing:-1.806551pt;}
.ws3b{word-spacing:-1.647150pt;}
.ws12{word-spacing:-1.594016pt;}
.ws77{word-spacing:-1.540882pt;}
.wsfd{word-spacing:-1.450550pt;}
.ws60{word-spacing:-1.434614pt;}
.ws5d{word-spacing:-1.328347pt;}
.ws9c{word-spacing:-1.222079pt;}
.ws1c{word-spacing:-1.168945pt;}
.wse1{word-spacing:-1.115811pt;}
.ws30{word-spacing:-1.062677pt;}
.ws55{word-spacing:-1.009543pt;}
.ws52{word-spacing:-0.956410pt;}
.ws7b{word-spacing:-0.903276pt;}
.ws1f{word-spacing:-0.850142pt;}
.ws85{word-spacing:-0.830666pt;}
.ws28{word-spacing:-0.797008pt;}
.wsa{word-spacing:-0.743874pt;}
.ws25{word-spacing:-0.690740pt;}
.ws38{word-spacing:-0.637606pt;}
.wsf8{word-spacing:-0.483517pt;}
.wsa3{word-spacing:-0.478205pt;}
.wsde{word-spacing:-0.435425pt;}
.wsdd{word-spacing:-0.425071pt;}
.ws102{word-spacing:-0.297549pt;}
.ws16{word-spacing:-0.265669pt;}
.ws5f{word-spacing:-0.212535pt;}
.wsdc{word-spacing:-0.209605pt;}
.wsbf{word-spacing:-0.159402pt;}
.wsc6{word-spacing:-0.106268pt;}
.wsc0{word-spacing:-0.054859pt;}
.ws7{word-spacing:-0.053134pt;}
.ws4f{word-spacing:-0.039319pt;}
.wsbb{word-spacing:-0.013981pt;}
.wsea{word-spacing:-0.007645pt;}
.ws40{word-spacing:-0.004400pt;}
.ws81{word-spacing:-0.004360pt;}
.ws91{word-spacing:-0.004294pt;}
.wsad{word-spacing:-0.004233pt;}
.ws65{word-spacing:-0.002042pt;}
.wsd8{word-spacing:-0.001978pt;}
.ws47{word-spacing:-0.001007pt;}
.wse4{word-spacing:-0.000711pt;}
.ws0{word-spacing:0.000000pt;}
.wsd4{word-spacing:0.006003pt;}
.ws61{word-spacing:0.010905pt;}
.wsb7{word-spacing:0.012845pt;}
.wsa9{word-spacing:0.012849pt;}
.ws8d{word-spacing:0.013035pt;}
.ws7d{word-spacing:0.013235pt;}
.ws3c{word-spacing:0.013355pt;}
.wsc{word-spacing:0.053134pt;}
.wsa6{word-spacing:0.106268pt;}
.wsf5{word-spacing:0.148774pt;}
.ws6e{word-spacing:0.159402pt;}
.ws2a{word-spacing:0.212535pt;}
.wsef{word-spacing:0.260355pt;}
.ws86{word-spacing:0.265669pt;}
.ws14{word-spacing:0.318803pt;}
.ws18{word-spacing:0.340058pt;}
.ws103{word-spacing:0.371936pt;}
.ws72{word-spacing:0.371937pt;}
.ws70{word-spacing:0.478205pt;}
.wsf2{word-spacing:0.483517pt;}
.ws1d{word-spacing:0.531339pt;}
.ws75{word-spacing:0.552699pt;}
.wsff{word-spacing:0.557904pt;}
.ws76{word-spacing:0.584473pt;}
.ws101{word-spacing:0.632291pt;}
.wsce{word-spacing:0.637606pt;}
.ws32{word-spacing:0.743874pt;}
.wsb5{word-spacing:0.797008pt;}
.wsf0{word-spacing:0.818259pt;}
.wscd{word-spacing:0.850142pt;}
.ws34{word-spacing:0.903276pt;}
.wsc9{word-spacing:0.956410pt;}
.wsf1{word-spacing:1.004227pt;}
.ws21{word-spacing:1.265897pt;}
.ws22{word-spacing:1.275213pt;}
.ws36{word-spacing:1.328347pt;}
.wsfc{word-spacing:1.338970pt;}
.ws9{word-spacing:1.381481pt;}
.wsf3{word-spacing:1.450550pt;}
.ws95{word-spacing:1.487748pt;}
.ws5e{word-spacing:1.540882pt;}
.wsa0{word-spacing:1.594016pt;}
.ws69{word-spacing:1.700284pt;}
.ws1a{word-spacing:1.806551pt;}
.ws73{word-spacing:1.859685pt;}
.wsf7{word-spacing:1.896874pt;}
.ws9f{word-spacing:2.019087pt;}
.ws5c{word-spacing:2.072221pt;}
.ws4d{word-spacing:2.178489pt;}
.wsd0{word-spacing:2.337890pt;}
.wsa2{word-spacing:2.391024pt;}
.wsd{word-spacing:2.444158pt;}
.wsf6{word-spacing:2.454778pt;}
.ws31{word-spacing:2.497292pt;}
.ws1e{word-spacing:2.550426pt;}
.ws1b{word-spacing:2.709827pt;}
.wsfe{word-spacing:2.752326pt;}
.ws6c{word-spacing:2.816095pt;}
.wsd1{word-spacing:2.869229pt;}
.ws6b{word-spacing:3.028630pt;}
.ws56{word-spacing:3.081764pt;}
.wsfa{word-spacing:3.124262pt;}
.ws2f{word-spacing:3.134898pt;}
.ws5{word-spacing:3.188032pt;}
.ws96{word-spacing:3.241166pt;}
.ws6{word-spacing:3.294300pt;}
.ws100{word-spacing:3.310230pt;}
.ws74{word-spacing:3.347434pt;}
.ws104{word-spacing:3.384618pt;}
.ws59{word-spacing:3.400567pt;}
.ws20{word-spacing:3.453701pt;}
.ws27{word-spacing:3.506835pt;}
.wsc8{word-spacing:3.559969pt;}
.ws97{word-spacing:3.613103pt;}
.ws9d{word-spacing:3.719371pt;}
.ws9a{word-spacing:3.772505pt;}
.wsa1{word-spacing:3.931906pt;}
.ws39{word-spacing:4.091308pt;}
.wscb{word-spacing:4.144442pt;}
.wsa5{word-spacing:4.197575pt;}
.ws105{word-spacing:4.240070pt;}
.ws3a{word-spacing:4.303843pt;}
.ws57{word-spacing:4.356977pt;}
.ws19{word-spacing:4.410111pt;}
.wsd9{word-spacing:4.503556pt;}
.wsd6{word-spacing:4.511740pt;}
.ws26{word-spacing:4.516379pt;}
.ws66{word-spacing:4.650720pt;}
.ws63{word-spacing:4.654465pt;}
.ws4b{word-spacing:4.675780pt;}
.ws4{word-spacing:4.728914pt;}
.wsf4{word-spacing:4.760781pt;}
.wsd3{word-spacing:4.782048pt;}
.ws88{word-spacing:4.835182pt;}
.wsb8{word-spacing:4.861185pt;}
.ws78{word-spacing:4.888316pt;}
.wsee{word-spacing:4.941450pt;}
.ws79{word-spacing:4.994583pt;}
.ws5a{word-spacing:5.100851pt;}
.wsc5{word-spacing:5.207119pt;}
.ws54{word-spacing:5.260253pt;}
.wsc7{word-spacing:5.313387pt;}
.wsb2{word-spacing:5.366521pt;}
.ws6d{word-spacing:5.472788pt;}
.wsb{word-spacing:5.525922pt;}
.wsc1{word-spacing:5.579056pt;}
.ws2e{word-spacing:5.632190pt;}
.wsa4{word-spacing:5.738458pt;}
.wsca{word-spacing:5.897859pt;}
.wsd2{word-spacing:6.004127pt;}
.wsb3{word-spacing:6.057261pt;}
.wsc2{word-spacing:6.163529pt;}
.ws9e{word-spacing:6.269796pt;}
.ws6f{word-spacing:6.274533pt;}
.ws4c{word-spacing:6.376064pt;}
.ws5b{word-spacing:6.429198pt;}
.ws58{word-spacing:6.482332pt;}
.ws7c{word-spacing:6.588599pt;}
.ws3{word-spacing:6.694867pt;}
.wscc{word-spacing:6.748001pt;}
.wse2{word-spacing:6.860293pt;}
.wse9{word-spacing:6.875569pt;}
.ws4a{word-spacing:6.907403pt;}
.ws2{word-spacing:7.013670pt;}
.ws8a{word-spacing:7.066804pt;}
.ws8c{word-spacing:7.173072pt;}
.ws46{word-spacing:7.279340pt;}
.wsc4{word-spacing:7.438741pt;}
.ws49{word-spacing:7.598143pt;}
.wsb4{word-spacing:7.651277pt;}
.wscf{word-spacing:7.757545pt;}
.ws99{word-spacing:7.810678pt;}
.ws87{word-spacing:7.916946pt;}
.ws2d{word-spacing:8.076348pt;}
.ws50{word-spacing:8.301200pt;}
.ws98{word-spacing:8.554553pt;}
.wsbc{word-spacing:9.635772pt;}
.wsaf{word-spacing:9.638987pt;}
.wsb9{word-spacing:9.643532pt;}
.wsab{word-spacing:9.656503pt;}
.ws92{word-spacing:9.778297pt;}
.ws8f{word-spacing:9.796066pt;}
.ws82{word-spacing:9.928465pt;}
.ws7f{word-spacing:9.946506pt;}
.ws42{word-spacing:10.019018pt;}
.ws3e{word-spacing:10.027087pt;}
.ws17{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws2c{word-spacing:13.283467pt;}
.ws45{word-spacing:14.908919pt;}
.ws48{word-spacing:14.914253pt;}
.ws71{word-spacing:16.913748pt;}
.ws53{word-spacing:16.972414pt;}
.ws7a{word-spacing:17.196414pt;}
.ws8{word-spacing:17.868414pt;}
.ws2b{word-spacing:17.943081pt;}
.ws33{word-spacing:18.689748pt;}
.ws11{word-spacing:19.128267pt;}
.wsa8{word-spacing:19.287081pt;}
.ws9b{word-spacing:20.007081pt;}
.wsdf{word-spacing:22.748414pt;}
.wsc3{word-spacing:24.081748pt;}
.wsf{word-spacing:32.892143pt;}
.wsdb{word-spacing:43.128706pt;}
.ws68{word-spacing:44.538029pt;}
.wse6{word-spacing:65.629916pt;}
.wsbe{word-spacing:92.277825pt;}
.wsb1{word-spacing:92.308616pt;}
.ws94{word-spacing:93.642728pt;}
.ws84{word-spacing:95.080823pt;}
.ws44{word-spacing:95.948021pt;}
.wse7{word-spacing:153.988508pt;}
.wseb{word-spacing:173.193894pt;}
.wse8{word-spacing:626.109399pt;}
.wsec{word-spacing:990.735395pt;}
._71{margin-left:-1981.224790pt;}
._3e{margin-left:-1928.505383pt;}
._12{margin-left:-1915.084122pt;}
._15{margin-left:-1914.127712pt;}
._d{margin-left:-1900.334515pt;}
._4e{margin-left:-1872.224820pt;}
._1b{margin-left:-1773.365465pt;}
._51{margin-left:-1732.092501pt;}
._93{margin-left:-1714.924505pt;}
._16{margin-left:-1686.551855pt;}
._90{margin-left:-1660.892817pt;}
._95{margin-left:-1430.839787pt;}
._8e{margin-left:-1233.333755pt;}
._96{margin-left:-1148.513510pt;}
._5d{margin-left:-1135.376154pt;}
._19{margin-left:-1116.163302pt;}
._3b{margin-left:-935.805710pt;}
._5c{margin-left:-916.889694pt;}
._91{margin-left:-734.320275pt;}
._8f{margin-left:-578.805042pt;}
._5e{margin-left:-570.024095pt;}
._94{margin-left:-495.686138pt;}
._45{margin-left:-232.769911pt;}
._69{margin-left:-10.781935pt;}
._8{margin-left:-6.322930pt;}
._1d{margin-left:-5.140453pt;}
._9{margin-left:-3.985040pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._27{width:1.800279pt;}
._28{width:2.887947pt;}
._68{width:3.958401pt;}
._1c{width:5.026026pt;}
._92{width:9.372711pt;}
._c{width:11.264380pt;}
._44{width:12.273923pt;}
._e{width:13.937259pt;}
._b{width:14.983749pt;}
._7{width:16.519350pt;}
._14{width:17.799845pt;}
._10{width:18.809389pt;}
._1a{width:20.031467pt;}
._59{width:20.924130pt;}
._4{width:21.838019pt;}
._23{width:23.006964pt;}
._13{width:24.420329pt;}
._6{width:25.344854pt;}
._26{width:26.407532pt;}
._5b{width:27.682745pt;}
._73{width:28.904823pt;}
._11{width:29.808099pt;}
._5{width:30.870777pt;}
._a{width:31.880533pt;}
._74{width:32.847365pt;}
._67{width:34.515764pt;}
._3{width:35.759092pt;}
._2{width:37.299974pt;}
._17{width:38.256533pt;}
._72{width:39.637864pt;}
._18{width:40.604910pt;}
._5a{width:42.135156pt;}
._84{width:56.292259pt;}
._2e{width:58.129310pt;}
._3d{width:62.056956pt;}
._87{width:66.313286pt;}
._79{width:67.641919pt;}
._33{width:69.998270pt;}
._89{width:72.514172pt;}
._75{width:73.409598pt;}
._36{width:74.914412pt;}
._29{width:75.808414pt;}
._8b{width:76.744478pt;}
._7b{width:78.370122pt;}
._32{width:80.309490pt;}
._37{width:81.765687pt;}
._77{width:84.747186pt;}
._2c{width:87.482066pt;}
._83{width:89.753108pt;}
._3c{width:90.810012pt;}
._2d{width:92.685983pt;}
._78{width:101.102768pt;}
._30{width:104.406517pt;}
._8c{width:106.358515pt;}
._7a{width:107.413178pt;}
._80{width:109.876777pt;}
._85{width:112.452427pt;}
._86{width:113.723589pt;}
._88{width:116.220514pt;}
._82{width:117.491676pt;}
._7d{width:123.768760pt;}
._7c{width:127.570174pt;}
._8a{width:128.797748pt;}
._3a{width:136.524021pt;}
._8d{width:138.919833pt;}
._7e{width:140.190995pt;}
._6f{width:143.467735pt;}
._31{width:144.818918pt;}
._56{width:145.911465pt;}
._7f{width:147.772568pt;}
._81{width:150.269493pt;}
._39{width:156.539452pt;}
._6e{width:157.773525pt;}
._38{width:158.969543pt;}
._34{width:161.696487pt;}
._20{width:163.212633pt;}
._35{width:166.947286pt;}
._1f{width:168.767518pt;}
._55{width:170.554289pt;}
._22{width:171.494462pt;}
._2f{width:173.417021pt;}
._2b{width:178.667820pt;}
._62{width:180.517058pt;}
._60{width:182.110054pt;}
._52{width:183.934032pt;}
._1e{width:185.634170pt;}
._4a{width:186.758753pt;}
._3f{width:188.361114pt;}
._63{width:189.378414pt;}
._70{width:191.844544pt;}
._6c{width:192.771029pt;}
._21{width:196.743941pt;}
._57{width:197.792472pt;}
._4c{width:206.157167pt;}
._61{width:207.840137pt;}
._43{width:213.711591pt;}
._6a{width:216.188318pt;}
._48{width:220.087083pt;}
._5f{width:221.443512pt;}
._42{width:224.720364pt;}
._47{width:225.998252pt;}
._41{width:230.578243pt;}
._49{width:236.801291pt;}
._40{width:249.969843pt;}
._6d{width:251.384223pt;}
._4d{width:256.199705pt;}
._25{width:267.336377pt;}
._46{width:274.143553pt;}
._64{width:281.197724pt;}
._6b{width:299.951500pt;}
._4b{width:306.160249pt;}
._65{width:321.922866pt;}
._66{width:332.030240pt;}
._54{width:356.433795pt;}
._53{width:381.076618pt;}
._4f{width:385.484332pt;}
._24{width:394.506806pt;}
._50{width:433.362176pt;}
._58{width:465.009609pt;}
._76{width:500.430562pt;}
._2a{width:508.995080pt;}
._f{width:987.782307pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs20{font-size:36.319002pt;}
.fs23{font-size:37.193600pt;}
.fsc{font-size:37.505803pt;}
.fs3{font-size:39.318933pt;}
.fse{font-size:41.371408pt;}
.fs1e{font-size:41.436869pt;}
.fs2{font-size:42.507200pt;}
.fs1f{font-size:45.398638pt;}
.fsb{font-size:46.882136pt;}
.fs1a{font-size:48.418676pt;}
.fs12{font-size:49.231839pt;}
.fs16{font-size:49.324930pt;}
.fsa{font-size:49.506861pt;}
.fsd{font-size:51.714130pt;}
.fs1d{font-size:51.795956pt;}
.fs1{font-size:53.133867pt;}
.fs22{font-size:55.267436pt;}
.fs19{font-size:60.523194pt;}
.fs11{font-size:61.539644pt;}
.fs15{font-size:61.656008pt;}
.fs9{font-size:61.883420pt;}
.fs4{font-size:63.761067pt;}
.fs21{font-size:69.084122pt;}
.fs0{font-size:76.513067pt;}
.fs1c{font-size:77.707837pt;}
.fs18{font-size:77.733767pt;}
.fs14{font-size:78.857232pt;}
.fs10{font-size:80.068262pt;}
.fs8{font-size:80.798536pt;}
.fs1b{font-size:97.134553pt;}
.fs17{font-size:97.166965pt;}
.fs13{font-size:98.571293pt;}
.fsf{font-size:100.085077pt;}
.fs7{font-size:100.997916pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y21{bottom:159.004000pt;}
.y48{bottom:160.365333pt;}
.yf2{bottom:161.469333pt;}
.y12a{bottom:161.848000pt;}
.yae{bottom:162.156000pt;}
.y7c{bottom:162.532000pt;}
.y8f{bottom:163.120000pt;}
.ycd{bottom:166.477333pt;}
.y1a3{bottom:170.958667pt;}
.y111{bottom:173.860000pt;}
.y64{bottom:174.944000pt;}
.y20{bottom:175.480000pt;}
.y47{bottom:176.305333pt;}
.yf1{bottom:177.409333pt;}
.y17a{bottom:177.750667pt;}
.y7b{bottom:178.472000pt;}
.y8e{bottom:179.060000pt;}
.ycc{bottom:182.417333pt;}
.y1f{bottom:184.701333pt;}
.y129{bottom:186.754667pt;}
.yad{bottom:187.062667pt;}
.y179{bottom:189.706667pt;}
.y110{bottom:189.800000pt;}
.y63{bottom:190.884000pt;}
.y46{bottom:192.245333pt;}
.yf0{bottom:193.350667pt;}
.y1a2{bottom:193.541333pt;}
.y7a{bottom:194.412000pt;}
.ycb{bottom:198.357333pt;}
.y1e{bottom:201.178667pt;}
.y8d{bottom:203.966667pt;}
.y1a1{bottom:205.496000pt;}
.y10f{bottom:205.740000pt;}
.y62{bottom:206.824000pt;}
.y45{bottom:208.185333pt;}
.yef{bottom:209.290667pt;}
.y178{bottom:212.288000pt;}
.y79{bottom:219.318667pt;}
.y10e{bottom:221.680000pt;}
.yac{bottom:222.430667pt;}
.y61{bottom:222.764000pt;}
.y160{bottom:223.149333pt;}
.y44{bottom:224.126667pt;}
.y177{bottom:224.242667pt;}
.yee{bottom:225.230667pt;}
.y1a0{bottom:228.078667pt;}
.yca{bottom:229.662667pt;}
.y10d{bottom:237.620000pt;}
.y128{bottom:238.005333pt;}
.yab{bottom:238.370667pt;}
.y13c{bottom:238.704000pt;}
.y60{bottom:238.705333pt;}
.y15f{bottom:239.089333pt;}
.y8c{bottom:239.334667pt;}
.y19f{bottom:240.033333pt;}
.y43{bottom:240.066667pt;}
.yed{bottom:241.170667pt;}
.y1d{bottom:241.577333pt;}
.y176{bottom:251.274667pt;}
.y19e{bottom:251.988000pt;}
.y10c{bottom:253.561333pt;}
.yaa{bottom:254.310667pt;}
.y5f{bottom:254.645333pt;}
.y15e{bottom:255.029333pt;}
.y8b{bottom:255.274667pt;}
.y42{bottom:256.006667pt;}
.yec{bottom:257.110667pt;}
.y1c{bottom:257.517333pt;}
.y10b{bottom:269.501333pt;}
.y78{bottom:270.569333pt;}
.y5e{bottom:270.585333pt;}
.y15d{bottom:270.969333pt;}
.y8a{bottom:271.214667pt;}
.y41{bottom:271.946667pt;}
.y1b{bottom:273.458667pt;}
.y19d{bottom:274.570667pt;}
.yc9{bottom:276.759258pt;}
.y127{bottom:280.425380pt;}
.yeb{bottom:282.017333pt;}
.y10a{bottom:285.441333pt;}
.ya9{bottom:285.616000pt;}
.y5d{bottom:286.525333pt;}
.y15c{bottom:286.909333pt;}
.y89{bottom:287.154667pt;}
.y40{bottom:287.886667pt;}
.y175{bottom:288.933333pt;}
.y1a{bottom:289.398667pt;}
.y126{bottom:295.964011pt;}
.y109{bottom:301.381333pt;}
.y5c{bottom:302.465333pt;}
.y3f{bottom:303.826667pt;}
.y19{bottom:305.338667pt;}
.yc8{bottom:306.330349pt;}
.y19c{bottom:309.108000pt;}
.y125{bottom:311.502642pt;}
.y77{bottom:312.980664pt;}
.y15b{bottom:316.598667pt;}
.y108{bottom:317.321333pt;}
.yea{bottom:317.385333pt;}
.y13b{bottom:318.405333pt;}
.y5b{bottom:318.406667pt;}
.y88{bottom:318.460000pt;}
.y3e{bottom:319.768000pt;}
.y19b{bottom:321.062667pt;}
.y18{bottom:321.278667pt;}
.y124{bottom:327.559877pt;}
.y76{bottom:328.494747pt;}
.ya8{bottom:332.865716pt;}
.y107{bottom:333.261333pt;}
.ye9{bottom:333.325333pt;}
.y174{bottom:333.765333pt;}
.y13a{bottom:334.345333pt;}
.y5a{bottom:334.346667pt;}
.y3d{bottom:335.708000pt;}
.yc7{bottom:335.901440pt;}
.y19a{bottom:343.645333pt;}
.y75{bottom:344.008830pt;}
.y17{bottom:346.185333pt;}
.y106{bottom:349.202667pt;}
.ye8{bottom:349.265333pt;}
.y59{bottom:350.286667pt;}
.y3c{bottom:351.648000pt;}
.y199{bottom:355.600000pt;}
.y123{bottom:358.062667pt;}
.y74{bottom:360.040698pt;}
.y15a{bottom:361.430667pt;}
.ya7{bottom:362.890938pt;}
.y173{bottom:363.454667pt;}
.y105{bottom:365.142667pt;}
.ye7{bottom:365.205333pt;}
.yc6{bottom:365.475005pt;}
.y87{bottom:365.799876pt;}
.y58{bottom:366.226667pt;}
.y3b{bottom:367.588000pt;}
.y122{bottom:374.004000pt;}
.y159{bottom:377.370667pt;}
.y198{bottom:378.181333pt;}
.y16{bottom:378.530667pt;}
.y104{bottom:381.082667pt;}
.ye6{bottom:381.145333pt;}
.y139{bottom:382.166667pt;}
.y3a{bottom:383.528000pt;}
.y121{bottom:389.944000pt;}
.y197{bottom:390.137333pt;}
.y73{bottom:390.526667pt;}
.y57{bottom:391.133333pt;}
.ya6{bottom:392.916160pt;}
.y158{bottom:393.310667pt;}
.yc5{bottom:395.046096pt;}
.y86{bottom:396.098946pt;}
.y103{bottom:397.022667pt;}
.ye5{bottom:397.086667pt;}
.y138{bottom:398.106667pt;}
.y196{bottom:402.092000pt;}
.y120{bottom:405.884000pt;}
.y72{bottom:406.466667pt;}
.y172{bottom:408.286667pt;}
.y39{bottom:408.434667pt;}
.y157{bottom:409.250667pt;}
.y102{bottom:412.962667pt;}
.ye4{bottom:413.026667pt;}
.y137{bottom:414.046667pt;}
.y71{bottom:422.408000pt;}
.ya5{bottom:423.943478pt;}
.y171{bottom:424.226667pt;}
.y195{bottom:424.674667pt;}
.y156{bottom:425.190667pt;}
.yc4{bottom:425.601653pt;}
.y85{bottom:426.398017pt;}
.y15{bottom:426.433333pt;}
.ye3{bottom:428.966667pt;}
.y136{bottom:429.986667pt;}
.y38{bottom:433.341333pt;}
.y194{bottom:436.629333pt;}
.y11f{bottom:437.189333pt;}
.y70{bottom:438.348000pt;}
.y56{bottom:440.617333pt;}
.y155{bottom:441.130667pt;}
.y14{bottom:442.373333pt;}
.ye2{bottom:444.906667pt;}
.y135{bottom:445.928000pt;}
.y193{bottom:448.584000pt;}
.y170{bottom:453.914667pt;}
.ya4{bottom:453.968699pt;}
.y101{bottom:455.114667pt;}
.yc3{bottom:455.175217pt;}
.y84{bottom:456.697088pt;}
.ye1{bottom:460.846667pt;}
.y134{bottom:461.868000pt;}
.y37{bottom:465.686667pt;}
.y13{bottom:467.625333pt;}
.y192{bottom:471.166667pt;}
.y6f{bottom:472.376000pt;}
.y154{bottom:472.436000pt;}
.ye0{bottom:476.786667pt;}
.y133{bottom:477.808000pt;}
.y191{bottom:483.121333pt;}
.y12{bottom:483.565333pt;}
.y55{bottom:484.045920pt;}
.y11e{bottom:484.143812pt;}
.ya3{bottom:484.993506pt;}
.yc2{bottom:485.730775pt;}
.y83{bottom:486.998693pt;}
.ydf{bottom:492.728000pt;}
.y132{bottom:493.748000pt;}
.y190{bottom:495.077333pt;}
.y100{bottom:498.406620pt;}
.y16f{bottom:498.746667pt;}
.y11{bottom:499.506667pt;}
.y54{bottom:502.610760pt;}
.yde{bottom:508.668000pt;}
.y131{bottom:509.688000pt;}
.y36{bottom:510.518667pt;}
.y11d{bottom:513.283885pt;}
.y153{bottom:514.216269pt;}
.y6e{bottom:514.304852pt;}
.y16e{bottom:514.686667pt;}
.y10{bottom:515.446667pt;}
.yff{bottom:516.563395pt;}
.y18f{bottom:517.658667pt;}
.y82{bottom:518.306466pt;}
.y53{bottom:521.175599pt;}
.ydd{bottom:524.608000pt;}
.y130{bottom:525.629333pt;}
.ya2{bottom:526.156000pt;}
.y35{bottom:526.458667pt;}
.yc1{bottom:526.576000pt;}
.y152{bottom:527.835723pt;}
.y6d{bottom:528.369351pt;}
.y18e{bottom:529.613333pt;}
.yf{bottom:531.386667pt;}
.yfe{bottom:534.720171pt;}
.y52{bottom:540.360044pt;}
.ydc{bottom:540.548000pt;}
.y151{bottom:541.455178pt;}
.y12f{bottom:541.569333pt;}
.ya1{bottom:542.096000pt;}
.y34{bottom:542.398667pt;}
.y11c{bottom:542.423958pt;}
.y6c{bottom:542.433851pt;}
.yc0{bottom:542.516000pt;}
.y16d{bottom:544.376000pt;}
.ye{bottom:547.326667pt;}
.y81{bottom:548.605537pt;}
.yfd{bottom:553.482932pt;}
.y150{bottom:555.074633pt;}
.ydb{bottom:556.488000pt;}
.y6b{bottom:556.498350pt;}
.y12e{bottom:557.509333pt;}
.ya0{bottom:558.037333pt;}
.y33{bottom:558.340000pt;}
.ybf{bottom:558.456000pt;}
.yd{bottom:563.266667pt;}
.y18d{bottom:564.150667pt;}
.y14f{bottom:568.694088pt;}
.y6a{bottom:570.562850pt;}
.y11b{bottom:571.564032pt;}
.yda{bottom:572.429333pt;}
.y51{bottom:572.638667pt;}
.y12d{bottom:573.449333pt;}
.y9f{bottom:573.977333pt;}
.y32{bottom:574.280000pt;}
.ybe{bottom:574.396000pt;}
.y18c{bottom:576.106667pt;}
.yc{bottom:579.206667pt;}
.y80{bottom:579.915844pt;}
.y14e{bottom:582.314682pt;}
.y69{bottom:584.628526pt;}
.yfc{bottom:585.761333pt;}
.yd9{bottom:588.369333pt;}
.y50{bottom:588.578667pt;}
.y16c{bottom:589.208000pt;}
.y12c{bottom:589.389333pt;}
.y9e{bottom:589.917333pt;}
.y31{bottom:590.220000pt;}
.ybd{bottom:590.337333pt;}
.yb{bottom:595.148000pt;}
.y14d{bottom:595.934137pt;}
.y18b{bottom:598.688000pt;}
.y68{bottom:598.693026pt;}
.y11a{bottom:600.704105pt;}
.yd8{bottom:604.309333pt;}
.y12b{bottom:605.329333pt;}
.y9d{bottom:605.857333pt;}
.y30{bottom:606.160000pt;}
.ybc{bottom:606.277333pt;}
.y14c{bottom:609.553591pt;}
.y18a{bottom:610.644000pt;}
.ya{bottom:611.088000pt;}
.y67{bottom:613.226930pt;}
.y16b{bottom:618.896000pt;}
.y4f{bottom:619.024000pt;}
.yd7{bottom:620.249333pt;}
.y7f{bottom:621.270667pt;}
.y9c{bottom:621.797333pt;}
.ybb{bottom:622.217333pt;}
.y14b{bottom:623.173046pt;}
.y9{bottom:627.028000pt;}
.y66{bottom:627.291430pt;}
.y119{bottom:629.846616pt;}
.y2f{bottom:631.066667pt;}
.yfb{bottom:632.719650pt;}
.y189{bottom:633.225333pt;}
.yd6{bottom:636.189333pt;}
.y14a{bottom:636.792501pt;}
.y7e{bottom:637.210667pt;}
.y9b{bottom:637.738667pt;}
.yba{bottom:638.157333pt;}
.y65{bottom:641.824158pt;}
.y8{bottom:642.968000pt;}
.y188{bottom:645.180000pt;}
.y149{bottom:650.411956pt;}
.yd5{bottom:652.129333pt;}
.y7d{bottom:653.150667pt;}
.y9a{bottom:653.678667pt;}
.yb9{bottom:654.097333pt;}
.y7{bottom:658.908000pt;}
.y118{bottom:658.986689pt;}
.y16a{bottom:661.048000pt;}
.yfa{bottom:661.869447pt;}
.y148{bottom:664.032550pt;}
.y4e{bottom:666.364148pt;}
.y187{bottom:667.762667pt;}
.yd4{bottom:668.070667pt;}
.y2e{bottom:669.090667pt;}
.y99{bottom:669.618667pt;}
.yb8{bottom:670.037333pt;}
.y147{bottom:677.652005pt;}
.y186{bottom:679.717333pt;}
.y6{bottom:682.452000pt;}
.y2d{bottom:685.030667pt;}
.y98{bottom:685.558667pt;}
.yb7{bottom:685.978667pt;}
.y117{bottom:688.126763pt;}
.yf9{bottom:691.019244pt;}
.y146{bottom:691.271459pt;}
.y185{bottom:691.673333pt;}
.yd3{bottom:692.976000pt;}
.y4d{bottom:696.663218pt;}
.y2c{bottom:700.970667pt;}
.y97{bottom:701.498667pt;}
.yb6{bottom:701.918667pt;}
.y145{bottom:704.890914pt;}
.y169{bottom:705.196559pt;}
.y184{bottom:714.254667pt;}
.y2b{bottom:716.912000pt;}
.y116{bottom:717.266836pt;}
.y96{bottom:717.438667pt;}
.yb5{bottom:717.858667pt;}
.y144{bottom:718.510369pt;}
.yf8{bottom:720.169041pt;}
.y168{bottom:725.921588pt;}
.y183{bottom:726.210667pt;}
.y4c{bottom:726.962289pt;}
.y143{bottom:732.129824pt;}
.y2a{bottom:732.852000pt;}
.y95{bottom:733.380000pt;}
.yb4{bottom:733.798667pt;}
.y182{bottom:738.165333pt;}
.yd2{bottom:744.226667pt;}
.y142{bottom:745.750418pt;}
.y115{bottom:746.406910pt;}
.y167{bottom:747.336584pt;}
.y29{bottom:748.792000pt;}
.yf7{bottom:749.318837pt;}
.y4b{bottom:758.272596pt;}
.y141{bottom:759.369873pt;}
.y181{bottom:760.746667pt;}
.y28{bottom:764.732000pt;}
.y166{bottom:768.753314pt;}
.y5{bottom:771.374667pt;}
.y180{bottom:772.702667pt;}
.y140{bottom:772.989328pt;}
.y94{bottom:775.530667pt;}
.yb3{bottom:775.949333pt;}
.y114{bottom:776.519538pt;}
.yf6{bottom:778.471072pt;}
.y27{bottom:780.672000pt;}
.y13f{bottom:787.063334pt;}
.yd1{bottom:787.633020pt;}
.y4a{bottom:788.571667pt;}
.y165{bottom:789.478342pt;}
.y4{bottom:791.964000pt;}
.y17f{bottom:795.284000pt;}
.y26{bottom:796.612000pt;}
.y13e{bottom:800.682789pt;}
.y113{bottom:805.659611pt;}
.yd0{bottom:806.129637pt;}
.y17e{bottom:807.240000pt;}
.yf5{bottom:808.591310pt;}
.y164{bottom:810.203371pt;}
.y3{bottom:812.553333pt;}
.y13d{bottom:814.755656pt;}
.y93{bottom:818.959253pt;}
.yb2{bottom:819.343759pt;}
.y49{bottom:819.881974pt;}
.ycf{bottom:824.626253pt;}
.y25{bottom:828.493333pt;}
.y17d{bottom:829.821333pt;}
.y163{bottom:831.620101pt;}
.y112{bottom:835.772239pt;}
.y92{bottom:837.524093pt;}
.yf4{bottom:837.741107pt;}
.yb1{bottom:837.807011pt;}
.y17c{bottom:841.776000pt;}
.yce{bottom:843.740197pt;}
.y24{bottom:844.433333pt;}
.y162{bottom:852.345129pt;}
.y2{bottom:852.404000pt;}
.y91{bottom:856.088933pt;}
.yb0{bottom:856.268719pt;}
.y23{bottom:860.373333pt;}
.y17b{bottom:864.358667pt;}
.yf3{bottom:867.863783pt;}
.y161{bottom:873.761859pt;}
.y90{bottom:875.273377pt;}
.yaf{bottom:875.345046pt;}
.y1{bottom:876.313333pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h20{height:25.589197pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h1e{height:31.234263pt;}
.h12{height:32.254910pt;}
.h13{height:35.579321pt;}
.h1d{height:35.635618pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hc{height:36.874903pt;}
.hf{height:37.299379pt;}
.h17{height:37.304713pt;}
.hb{height:39.319061pt;}
.h1b{height:41.639957pt;}
.h16{height:42.339275pt;}
.h19{height:42.419333pt;}
.h10{height:42.575793pt;}
.h7{height:44.122658pt;}
.hd{height:46.258122pt;}
.h5{height:46.263455pt;}
.h14{height:46.336759pt;}
.h11{height:46.342093pt;}
.h1f{height:47.529876pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h1c{height:66.828572pt;}
.h1a{height:66.850872pt;}
.h18{height:67.817049pt;}
.h15{height:68.858533pt;}
.he{height:69.486567pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x16{left:181.287879pt;}
.x11{left:182.225591pt;}
.xe{left:184.670590pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x8{left:197.486667pt;}
.xc{left:200.452465pt;}
.x1d{left:204.062292pt;}
.x2e{left:207.129333pt;}
.x1{left:209.809333pt;}
.x2d{left:215.449333pt;}
.x24{left:218.106667pt;}
.x1f{left:221.054667pt;}
.x19{left:223.122667pt;}
.x12{left:224.301333pt;}
.x20{left:229.212817pt;}
.xb{left:231.217870pt;}
.x22{left:233.132000pt;}
.x1c{left:234.088513pt;}
.x2{left:236.990667pt;}
.x17{left:238.148000pt;}
.xf{left:239.328000pt;}
.x2a{left:241.570838pt;}
.x2b{left:242.952506pt;}
.x2c{left:247.986842pt;}
.x10{left:258.860877pt;}
.x4{left:260.504000pt;}
.x23{left:262.130616pt;}
.x5{left:273.336000pt;}
.x18{left:283.292490pt;}
.x15{left:288.472189pt;}
.x29{left:297.585379pt;}
.x28{left:307.528549pt;}
.x14{left:310.096578pt;}
.x27{left:321.357621pt;}
.x13{left:324.377545pt;}
.x3{left:360.866667pt;}
.x1b{left:363.365943pt;}
.x21{left:367.420160pt;}
.x1a{left:377.702663pt;}
.xd{left:379.091529pt;}
.x1e{left:396.176679pt;}
.x25{left:399.726829pt;}
.x26{left:400.857333pt;}
.xa{left:404.177333pt;}
}




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