
    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_ddc965dadac1b3d163c65f70.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_a22ef65ebc50213eb58eddd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_626ba18ddd4fc8cff8ef7a84.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_1adfd3bf5ba3e49d2e071bb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_dccddbfdc95f3350bbd71e79.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.301000;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_332e626cf51a9fb791e1c65b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_4441e91984d10f4e735fafbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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_1fb50ccbf1d6a814e2e10568.woff2')format("woff");}.ff8{font-family:ff8;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:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.002100px;}
.ls4{letter-spacing:0.002725px;}
.ls5{letter-spacing:0.004200px;}
.lsd{letter-spacing:0.042359px;}
.lsb{letter-spacing:0.048359px;}
.ls0{letter-spacing:0.049421px;}
.ls8{letter-spacing:1.220383px;}
.ls3{letter-spacing:2.992118px;}
.ls1{letter-spacing:3.015456px;}
.ls2{letter-spacing:3.031421px;}
.lsa{letter-spacing:12.430200px;}
.lse{letter-spacing:14.944200px;}
.lsc{letter-spacing:16.084200px;}
.ls9{letter-spacing:17.410200px;}
.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;}
}
.wsc6{word-spacing:-35.865600px;}
.ws21{word-spacing:-33.713438px;}
.wse3{word-spacing:-28.656389px;}
.ws3{word-spacing:-26.970818px;}
.wsc{word-spacing:-26.899200px;}
.ws8{word-spacing:-24.478146px;}
.ws9{word-spacing:-24.400438px;}
.ws7{word-spacing:-24.005941px;}
.ws1{word-spacing:-23.910300px;}
.wsa7{word-spacing:-23.611362px;}
.ws44{word-spacing:-23.551586px;}
.ws2d{word-spacing:-23.372260px;}
.ws2e{word-spacing:-23.312484px;}
.wsaa{word-spacing:-23.252708px;}
.ws75{word-spacing:-23.192933px;}
.wsb3{word-spacing:-22.774504px;}
.ws5b{word-spacing:-22.714728px;}
.wsac{word-spacing:-22.595177px;}
.ws63{word-spacing:-22.535401px;}
.wsae{word-spacing:-22.475626px;}
.ws99{word-spacing:-22.415850px;}
.ws81{word-spacing:-22.236523px;}
.wsc5{word-spacing:-22.176748px;}
.ws83{word-spacing:-21.997421px;}
.wsb6{word-spacing:-21.877870px;}
.wsc3{word-spacing:-21.818094px;}
.wsc1{word-spacing:-21.638767px;}
.ws95{word-spacing:-21.519216px;}
.ws7d{word-spacing:-21.459440px;}
.ws85{word-spacing:-21.399665px;}
.ws53{word-spacing:-21.339889px;}
.ws7c{word-spacing:-21.280114px;}
.ws66{word-spacing:-21.160562px;}
.ws6b{word-spacing:-21.100787px;}
.wsbd{word-spacing:-21.041011px;}
.wsab{word-spacing:-20.981236px;}
.wsa5{word-spacing:-20.801909px;}
.ws9f{word-spacing:-20.742133px;}
.ws82{word-spacing:-20.562806px;}
.wsa6{word-spacing:-20.443255px;}
.ws69{word-spacing:-20.323704px;}
.ws3d{word-spacing:-20.263928px;}
.ws3b{word-spacing:-20.084602px;}
.wsc2{word-spacing:-19.905275px;}
.wscc{word-spacing:-19.866397px;}
.ws93{word-spacing:-19.845499px;}
.wsb8{word-spacing:-19.725948px;}
.ws115{word-spacing:-19.713970px;}
.ws51{word-spacing:-19.666172px;}
.wsf2{word-spacing:-19.561542px;}
.ws65{word-spacing:-19.486846px;}
.wsf4{word-spacing:-19.459924px;}
.ws64{word-spacing:-19.427070px;}
.wsd4{word-spacing:-19.409114px;}
.ws71{word-spacing:-19.367294px;}
.ws6d{word-spacing:-19.307519px;}
.ws110{word-spacing:-19.307496px;}
.ws72{word-spacing:-19.247743px;}
.ws13{word-spacing:-19.206029px;}
.wsad{word-spacing:-19.187968px;}
.wscb{word-spacing:-19.155068px;}
.wsd6{word-spacing:-19.024025px;}
.wsdf{word-spacing:-19.002641px;}
.wsf1{word-spacing:-18.951832px;}
.ws3f{word-spacing:-18.829314px;}
.ws116{word-spacing:-18.799404px;}
.ws11{word-spacing:-18.775642px;}
.ws37{word-spacing:-18.769538px;}
.wsed{word-spacing:-18.748595px;}
.ws74{word-spacing:-18.709763px;}
.ws48{word-spacing:-18.649987px;}
.wsf3{word-spacing:-18.596167px;}
.ws8f{word-spacing:-18.590212px;}
.ws20{word-spacing:-18.470660px;}
.ws10c{word-spacing:-18.392930px;}
.ws8e{word-spacing:-18.351109px;}
.ws8d{word-spacing:-18.291334px;}
.ws4e{word-spacing:-18.231558px;}
.ws43{word-spacing:-18.171782px;}
.ws59{word-spacing:-18.112007px;}
.wsb9{word-spacing:-18.004531px;}
.ws1c{word-spacing:-17.992456px;}
.ws41{word-spacing:-17.932800px;}
.ws6a{word-spacing:-17.932680px;}
.ws56{word-spacing:-17.872904px;}
.ws49{word-spacing:-17.813129px;}
.ws54{word-spacing:-17.753353px;}
.ws11a{word-spacing:-17.732411px;}
.ws2c{word-spacing:-17.693578px;}
.ws8c{word-spacing:-17.633802px;}
.wsea{word-spacing:-17.529174px;}
.ws91{word-spacing:-17.514251px;}
.wsf0{word-spacing:-17.478365px;}
.wsb5{word-spacing:-17.454475px;}
.ws3e{word-spacing:-17.394700px;}
.wsc8{word-spacing:-17.376746px;}
.wsa0{word-spacing:-17.334924px;}
.ws15{word-spacing:-17.215488px;}
.ws46{word-spacing:-17.215373px;}
.wsbf{word-spacing:-17.155597px;}
.ws103{word-spacing:-17.021082px;}
.ws2b{word-spacing:-16.976270px;}
.ws80{word-spacing:-16.946496px;}
.ws17{word-spacing:-16.892698px;}
.ws98{word-spacing:-16.796944px;}
.ws84{word-spacing:-16.737168px;}
.ws10{word-spacing:-16.677504px;}
.ws3a{word-spacing:-16.677392px;}
.ws16{word-spacing:-16.623706px;}
.ws4f{word-spacing:-16.617617px;}
.wsde{word-spacing:-16.614608px;}
.ws111{word-spacing:-16.563799px;}
.ws6c{word-spacing:-16.557841px;}
.ws34{word-spacing:-16.498066px;}
.ws23{word-spacing:-16.438290px;}
.wsf{word-spacing:-16.408512px;}
.ws62{word-spacing:-16.378514px;}
.ws67{word-spacing:-16.361086px;}
.ws68{word-spacing:-16.318739px;}
.ws4c{word-spacing:-16.258963px;}
.wsff{word-spacing:-16.258944px;}
.wsf5{word-spacing:-16.208135px;}
.ws35{word-spacing:-16.199188px;}
.wscd{word-spacing:-16.157326px;}
.wsca{word-spacing:-16.106516px;}
.ws88{word-spacing:-16.079636px;}
.wse9{word-spacing:-16.055707px;}
.wsd7{word-spacing:-16.004898px;}
.wsd2{word-spacing:-15.954089px;}
.ws11f{word-spacing:-15.852470px;}
.ws3c{word-spacing:-15.840534px;}
.wsfe{word-spacing:-15.801661px;}
.ws10e{word-spacing:-15.750852px;}
.ws61{word-spacing:-15.720983px;}
.ws12{word-spacing:-15.709133px;}
.ws108{word-spacing:-15.700043px;}
.ws1f{word-spacing:-15.661207px;}
.wsd5{word-spacing:-15.649234px;}
.ws73{word-spacing:-15.601432px;}
.wsd1{word-spacing:-15.547615px;}
.ws36{word-spacing:-15.541656px;}
.ws2f{word-spacing:-15.362329px;}
.wse8{word-spacing:-15.344378px;}
.ws4d{word-spacing:-15.183002px;}
.wsb{word-spacing:-15.130718px;}
.ws30{word-spacing:-15.123227px;}
.ws113{word-spacing:-15.090332px;}
.ws2{word-spacing:-15.063489px;}
.ws94{word-spacing:-15.063451px;}
.ws4{word-spacing:-15.015668px;}
.ws6{word-spacing:-15.003676px;}
.wse{word-spacing:-14.955955px;}
.wsef{word-spacing:-14.937905px;}
.ws52{word-spacing:-14.764573px;}
.ws14{word-spacing:-14.740762px;}
.wse1{word-spacing:-14.734668px;}
.ws9e{word-spacing:-14.704798px;}
.wse0{word-spacing:-14.678659px;}
.wscf{word-spacing:-14.582240px;}
.ws31{word-spacing:-14.525471px;}
.wsfd{word-spacing:-14.429813px;}
.ws77{word-spacing:-14.346144px;}
.ws104{word-spacing:-14.277385px;}
.wsd{word-spacing:-14.256576px;}
.ws96{word-spacing:-14.226593px;}
.ws112{word-spacing:-14.175767px;}
.ws40{word-spacing:-14.166817px;}
.wsf6{word-spacing:-14.124958px;}
.ws33{word-spacing:-14.107042px;}
.ws32{word-spacing:-14.047266px;}
.ws102{word-spacing:-14.023339px;}
.wsc4{word-spacing:-13.927715px;}
.ws57{word-spacing:-13.867939px;}
.ws18{word-spacing:-13.718592px;}
.wsfb{word-spacing:-13.718484px;}
.ws97{word-spacing:-13.628837px;}
.wse7{word-spacing:-13.566056px;}
.ws7e{word-spacing:-13.503398px;}
.ws78{word-spacing:-13.449600px;}
.wsc9{word-spacing:-13.413629px;}
.wsb7{word-spacing:-13.389734px;}
.wseb{word-spacing:-13.312010px;}
.ws9d{word-spacing:-13.270183px;}
.ws79{word-spacing:-13.210408px;}
.ws107{word-spacing:-13.210392px;}
.wsa8{word-spacing:-13.150632px;}
.ws4a{word-spacing:-13.090856px;}
.ws11b{word-spacing:-13.057964px;}
.ws24{word-spacing:-13.031081px;}
.ws25{word-spacing:-12.971305px;}
.wsb4{word-spacing:-12.911530px;}
.ws4b{word-spacing:-12.791978px;}
.wsdd{word-spacing:-12.753109px;}
.ws28{word-spacing:-12.672427px;}
.ws86{word-spacing:-12.612652px;}
.ws120{word-spacing:-12.600682px;}
.wsa4{word-spacing:-12.552876px;}
.ws119{word-spacing:-12.549872px;}
.wsaf{word-spacing:-12.493100px;}
.ws7b{word-spacing:-12.433325px;}
.ws7f{word-spacing:-12.427430px;}
.ws9c{word-spacing:-12.373549px;}
.ws118{word-spacing:-12.346636px;}
.wsf8{word-spacing:-12.295826px;}
.ws1d{word-spacing:-12.253998px;}
.ws9b{word-spacing:-12.194222px;}
.wsb2{word-spacing:-12.014896px;}
.ws5{word-spacing:-12.002971px;}
.ws1a{word-spacing:-11.979110px;}
.ws5e{word-spacing:-11.955120px;}
.wsce{word-spacing:-11.940162px;}
.ws42{word-spacing:-11.835569px;}
.wsfc{word-spacing:-11.787734px;}
.ws39{word-spacing:-11.775793px;}
.wsf7{word-spacing:-11.736925px;}
.ws106{word-spacing:-11.686116px;}
.ws5a{word-spacing:-11.596466px;}
.wsa1{word-spacing:-11.536691px;}
.ws70{word-spacing:-11.417140px;}
.wsd0{word-spacing:-11.330452px;}
.ws6e{word-spacing:-11.297588px;}
.wsb0{word-spacing:-11.280906px;}
.ws90{word-spacing:-11.237813px;}
.ws5c{word-spacing:-11.178037px;}
.ws45{word-spacing:-11.118262px;}
.wsdb{word-spacing:-11.112122px;}
.wsdc{word-spacing:-11.076406px;}
.wsa{word-spacing:-11.061504px;}
.ws76{word-spacing:-11.058486px;}
.ws29{word-spacing:-10.998710px;}
.wsa3{word-spacing:-10.759608px;}
.ws87{word-spacing:-10.580281px;}
.ws55{word-spacing:-10.520506px;}
.ws10f{word-spacing:-10.415886px;}
.ws9a{word-spacing:-10.341179px;}
.wsa9{word-spacing:-10.281403px;}
.ws109{word-spacing:-10.272710px;}
.ws10b{word-spacing:-10.263458px;}
.wsd3{word-spacing:-9.907794px;}
.ws101{word-spacing:-9.806176px;}
.ws121{word-spacing:-9.602939px;}
.wsd9{word-spacing:-9.450511px;}
.ws19{word-spacing:-8.966534px;}
.ws10d{word-spacing:-8.739182px;}
.ws1b{word-spacing:-8.607686px;}
.ws58{word-spacing:-8.547911px;}
.ws2a{word-spacing:-8.488135px;}
.ws100{word-spacing:-8.129472px;}
.ws0{word-spacing:-7.986040px;}
.ws7a{word-spacing:-7.950155px;}
.ws38{word-spacing:-7.591501px;}
.ws5f{word-spacing:-7.471950px;}
.ws1e{word-spacing:-7.352399px;}
.ws6f{word-spacing:-7.316582px;}
.ws60{word-spacing:-7.232848px;}
.ws10a{word-spacing:-7.011670px;}
.ws8b{word-spacing:-6.993745px;}
.ws8a{word-spacing:-6.933970px;}
.wsfa{word-spacing:-6.910051px;}
.ws26{word-spacing:-6.814418px;}
.wse2{word-spacing:-6.656005px;}
.ws11c{word-spacing:-6.389209px;}
.ws11e{word-spacing:-6.351150px;}
.ws89{word-spacing:-6.156887px;}
.wsf9{word-spacing:-6.147913px;}
.ws5d{word-spacing:-5.917784px;}
.ws50{word-spacing:-5.798233px;}
.ws117{word-spacing:-4.877683px;}
.wsd8{word-spacing:-4.522019px;}
.ws22{word-spacing:-4.483170px;}
.wse4{word-spacing:-4.446935px;}
.wsa2{word-spacing:-3.885414px;}
.ws11d{word-spacing:-3.150170px;}
.ws114{word-spacing:-2.896124px;}
.ws27{word-spacing:-2.510575px;}
.wsda{word-spacing:-2.005589px;}
.ws92{word-spacing:-1.613941px;}
.ws47{word-spacing:0.000000px;}
.wsee{word-spacing:1.225424px;}
.wsec{word-spacing:1.229484px;}
.wse6{word-spacing:1.230084px;}
.ws105{word-spacing:1.235484px;}
.wsc7{word-spacing:1.236084px;}
.wsc0{word-spacing:8.368584px;}
.wsb1{word-spacing:9.085891px;}
.wse5{word-spacing:11.381261px;}
.wsbe{word-spacing:15.601432px;}
.wsbc{word-spacing:15.780758px;}
.wsbb{word-spacing:71.192740px;}
.wsba{word-spacing:73.763090px;}
._2{margin-left:-8.392507px;}
._35{margin-left:-7.113296px;}
._3{margin-left:-5.260266px;}
._17{margin-left:-4.124516px;}
._7{margin-left:-2.958912px;}
._1{margin-left:-1.727668px;}
._16{width:2.211697px;}
._3b{width:3.732979px;}
._14{width:11.178037px;}
._9{width:12.602639px;}
._38{width:14.405920px;}
._0{width:15.979489px;}
._a{width:17.107891px;}
._11{width:18.112007px;}
._8{width:19.123910px;}
._13{width:20.801909px;}
._5{width:22.283155px;}
._b{width:23.832691px;}
._6{width:25.177651px;}
._15{width:26.241488px;}
._c{width:27.490982px;}
._d{width:29.110717px;}
._12{width:30.276361px;}
._f{width:32.757029px;}
._36{width:34.771451px;}
._10{width:37.190462px;}
._37{width:39.152770px;}
._18{width:40.348530px;}
._19{width:41.783144px;}
._1a{width:52.303650px;}
._4{width:53.742946px;}
._e{width:62.702804px;}
._39{width:64.617424px;}
._3a{width:105.946286px;}
._2a{width:112.062067px;}
._2e{width:813.225442px;}
._2b{width:1063.176576px;}
._2c{width:1073.875106px;}
._2d{width:1119.206880px;}
._27{width:1407.404909px;}
._26{width:1425.318576px;}
._25{width:1443.233443px;}
._2f{width:1477.610621px;}
._28{width:1564.388640px;}
._30{width:1627.117574px;}
._29{width:1642.073530px;}
._1f{width:1744.492506px;}
._32{width:1746.093466px;}
._1c{width:1770.487910px;}
._20{width:1801.249818px;}
._1b{width:1823.594554px;}
._24{width:1849.735354px;}
._1d{width:1852.693066px;}
._31{width:1858.612090px;}
._1e{width:1864.636310px;}
._21{width:1876.579555px;}
._23{width:1885.511290px;}
._22{width:1944.623754px;}
._33{width:1996.120800px;}
._34{width:2023.018800px;}
.fc1{color:rgb(5,98,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:47.820600px;}
.fs7{font-size:50.809200px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs3{font-size:77.708400px;}
.fs2{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y5{bottom:30.130500px;}
.y4{bottom:51.456000px;}
.y3{bottom:66.399000px;}
.y91{bottom:77.709000px;}
.y36{bottom:122.541000px;}
.y156{bottom:138.232500px;}
.y35{bottom:141.370500px;}
.y7f{bottom:147.714000px;}
.y155{bottom:153.922500px;}
.y34{bottom:160.200000px;}
.yf7{bottom:162.100500px;}
.y7e{bottom:166.543500px;}
.y154{bottom:169.614000px;}
.y33{bottom:179.029500px;}
.y126{bottom:179.664000px;}
.yc0{bottom:180.205500px;}
.yf6{bottom:180.930000px;}
.y153{bottom:185.305500px;}
.y7d{bottom:185.373000px;}
.y32{bottom:197.859000px;}
.y125{bottom:198.493500px;}
.y4a{bottom:198.945000px;}
.ybf{bottom:199.035000px;}
.yf5{bottom:199.759500px;}
.y152{bottom:200.997000px;}
.y7c{bottom:204.202500px;}
.y31{bottom:216.688500px;}
.y49{bottom:217.774500px;}
.ybe{bottom:217.864500px;}
.y124{bottom:217.956000px;}
.yf4{bottom:218.589000px;}
.y7b{bottom:223.032000px;}
.y151{bottom:232.380000px;}
.y30{bottom:235.518000px;}
.ydb{bottom:236.187000px;}
.y48{bottom:236.604000px;}
.y123{bottom:236.785500px;}
.yf3{bottom:237.418500px;}
.ybd{bottom:237.870000px;}
.y7a{bottom:241.861500px;}
.y150{bottom:248.070000px;}
.y2f{bottom:254.347500px;}
.yda{bottom:255.016500px;}
.y47{bottom:255.433500px;}
.y122{bottom:255.615000px;}
.ybc{bottom:256.699500px;}
.yf2{bottom:258.150000px;}
.y79{bottom:260.691000px;}
.y14f{bottom:263.761500px;}
.y2e{bottom:273.177000px;}
.yd9{bottom:273.846000px;}
.y121{bottom:274.444500px;}
.ybb{bottom:275.529000px;}
.yf1{bottom:276.979500px;}
.y14e{bottom:279.453000px;}
.y78{bottom:279.520500px;}
.y46{bottom:279.832500px;}
.y2d{bottom:292.006500px;}
.yd8{bottom:292.675500px;}
.y120{bottom:293.274000px;}
.yba{bottom:294.358500px;}
.y14d{bottom:295.144500px;}
.yf0{bottom:295.809000px;}
.y77{bottom:298.350000px;}
.y2c{bottom:310.834500px;}
.y14c{bottom:310.836000px;}
.yd7{bottom:311.505000px;}
.y11f{bottom:312.738000px;}
.yb9{bottom:313.188000px;}
.yef{bottom:314.638500px;}
.y76{bottom:317.179500px;}
.y45{bottom:317.682000px;}
.y14b{bottom:326.526000px;}
.y2b{bottom:329.664000px;}
.yd6{bottom:330.334500px;}
.y11e{bottom:331.567500px;}
.yb8{bottom:332.017500px;}
.yee{bottom:333.468000px;}
.y75{bottom:336.009000px;}
.y44{bottom:336.511500px;}
.y90{bottom:340.590000px;}
.y14a{bottom:342.217500px;}
.y2a{bottom:348.493500px;}
.yd5{bottom:349.164000px;}
.y11d{bottom:350.397000px;}
.yed{bottom:352.297500px;}
.y43{bottom:355.341000px;}
.y149{bottom:357.909000px;}
.y74{bottom:359.320500px;}
.y29{bottom:367.323000px;}
.yd4{bottom:367.993500px;}
.y11c{bottom:369.226500px;}
.yec{bottom:371.125500px;}
.y148{bottom:373.600500px;}
.y42{bottom:374.170500px;}
.yb7{bottom:385.083000px;}
.y28{bottom:386.152500px;}
.yd3{bottom:386.823000px;}
.y147{bottom:389.292000px;}
.yeb{bottom:389.955000px;}
.y41{bottom:393.000000px;}
.y11b{bottom:393.174000px;}
.y73{bottom:396.082500px;}
.y27{bottom:404.982000px;}
.yb6{bottom:405.055500px;}
.yd2{bottom:405.652500px;}
.yea{bottom:408.784500px;}
.y40{bottom:412.915500px;}
.y72{bottom:414.912000px;}
.y146{bottom:420.673500px;}
.y26{bottom:423.811500px;}
.yd1{bottom:424.482000px;}
.yb5{bottom:425.028000px;}
.ye9{bottom:429.516000px;}
.y11a{bottom:430.570500px;}
.y3f{bottom:431.745000px;}
.y71{bottom:433.741500px;}
.y145{bottom:436.365000px;}
.y25{bottom:442.641000px;}
.yd0{bottom:443.980500px;}
.yb4{bottom:445.000500px;}
.ye8{bottom:448.345500px;}
.y119{bottom:449.400000px;}
.y3e{bottom:451.660500px;}
.y144{bottom:452.056500px;}
.y70{bottom:452.571000px;}
.y17b{bottom:458.848500px;}
.y24{bottom:461.470500px;}
.y193{bottom:461.589000px;}
.ycf{bottom:462.810000px;}
.yb3{bottom:464.973000px;}
.ye7{bottom:467.175000px;}
.y143{bottom:467.748000px;}
.y118{bottom:468.229500px;}
.y3d{bottom:470.490000px;}
.y6f{bottom:471.400500px;}
.y17a{bottom:474.538500px;}
.y192{bottom:477.280500px;}
.y23{bottom:480.300000px;}
.yce{bottom:481.639500px;}
.y142{bottom:483.438000px;}
.yb2{bottom:484.947000px;}
.ye6{bottom:486.004500px;}
.y117{bottom:487.693500px;}
.y3c{bottom:489.319500px;}
.y6e{bottom:490.230000px;}
.y191{bottom:492.972000px;}
.y22{bottom:499.129500px;}
.ycd{bottom:500.469000px;}
.ye5{bottom:504.834000px;}
.yb1{bottom:504.919500px;}
.y179{bottom:505.921500px;}
.y116{bottom:506.523000px;}
.y3b{bottom:508.149000px;}
.y190{bottom:508.663500px;}
.y6d{bottom:509.059500px;}
.y141{bottom:514.821000px;}
.y21{bottom:517.959000px;}
.y178{bottom:521.613000px;}
.ye4{bottom:523.663500px;}
.y18f{bottom:524.353500px;}
.ycc{bottom:524.451000px;}
.yb0{bottom:524.892000px;}
.y115{bottom:525.351000px;}
.y3a{bottom:526.978500px;}
.y6c{bottom:527.889000px;}
.y20{bottom:536.788500px;}
.y177{bottom:537.304500px;}
.y140{bottom:538.860000px;}
.y18e{bottom:540.045000px;}
.ye3{bottom:542.493000px;}
.y114{bottom:544.180500px;}
.yaf{bottom:544.864500px;}
.y39{bottom:545.808000px;}
.y6b{bottom:546.718500px;}
.y176{bottom:552.994500px;}
.y1f{bottom:555.618000px;}
.y18d{bottom:555.736500px;}
.ye2{bottom:561.322500px;}
.ycb{bottom:561.883500px;}
.y113{bottom:563.010000px;}
.y38{bottom:564.637500px;}
.yae{bottom:564.837000px;}
.y6a{bottom:565.548000px;}
.y175{bottom:568.686000px;}
.y18c{bottom:571.428000px;}
.y1e{bottom:574.447500px;}
.y13f{bottom:576.498000px;}
.ye1{bottom:580.152000px;}
.yca{bottom:580.713000px;}
.y112{bottom:582.474000px;}
.y69{bottom:584.377500px;}
.y37{bottom:584.554500px;}
.yad{bottom:584.809500px;}
.y18b{bottom:587.119500px;}
.y8f{bottom:597.757500px;}
.ye0{bottom:598.981500px;}
.yc9{bottom:599.542500px;}
.y174{bottom:600.069000px;}
.y13e{bottom:600.685500px;}
.y111{bottom:601.303500px;}
.y18a{bottom:602.809500px;}
.y68{bottom:603.207000px;}
.y1d{bottom:603.384000px;}
.yac{bottom:604.782000px;}
.y173{bottom:615.760500px;}
.y8e{bottom:616.587000px;}
.ydf{bottom:617.811000px;}
.y189{bottom:618.501000px;}
.yc8{bottom:619.042500px;}
.y110{bottom:620.133000px;}
.y67{bottom:622.036500px;}
.yab{bottom:624.754500px;}
.y172{bottom:631.450500px;}
.y188{bottom:634.192500px;}
.y8d{bottom:635.416500px;}
.yde{bottom:636.640500px;}
.yc7{bottom:637.872000px;}
.y13d{bottom:638.323500px;}
.y10f{bottom:638.962500px;}
.y66{bottom:640.866000px;}
.yaa{bottom:644.728500px;}
.y171{bottom:647.142000px;}
.y1c{bottom:647.382000px;}
.y187{bottom:649.884000px;}
.y8c{bottom:654.246000px;}
.ydd{bottom:655.468500px;}
.yc6{bottom:656.700000px;}
.y10e{bottom:657.792000px;}
.y65{bottom:659.695500px;}
.y13c{bottom:662.511000px;}
.y170{bottom:662.833500px;}
.ya9{bottom:664.701000px;}
.y186{bottom:665.575500px;}
.yc5{bottom:675.529500px;}
.ydc{bottom:676.200000px;}
.y1b{bottom:676.357500px;}
.y10d{bottom:676.621500px;}
.y64{bottom:678.525000px;}
.y185{bottom:681.265500px;}
.y8b{bottom:681.708000px;}
.ya8{bottom:684.673500px;}
.y16f{bottom:694.216500px;}
.y1a{bottom:694.873500px;}
.yc4{bottom:695.029500px;}
.y10c{bottom:695.451000px;}
.y184{bottom:696.957000px;}
.y63{bottom:697.354500px;}
.y13b{bottom:700.149000px;}
.y8a{bottom:700.537500px;}
.ya7{bottom:704.646000px;}
.y16e{bottom:709.906500px;}
.y183{bottom:712.648500px;}
.y19{bottom:713.389500px;}
.yc3{bottom:713.859000px;}
.y10b{bottom:714.280500px;}
.y62{bottom:716.184000px;}
.y13a{bottom:718.978500px;}
.y89{bottom:719.367000px;}
.ya6{bottom:724.618500px;}
.y16d{bottom:725.598000px;}
.y182{bottom:728.340000px;}
.y18{bottom:731.905500px;}
.yc2{bottom:732.688500px;}
.y10a{bottom:733.110000px;}
.y61{bottom:735.013500px;}
.y16c{bottom:741.289500px;}
.y139{bottom:743.167500px;}
.y181{bottom:744.031500px;}
.ya5{bottom:744.591000px;}
.y88{bottom:746.829000px;}
.y17{bottom:750.420000px;}
.y109{bottom:752.574000px;}
.y60{bottom:753.843000px;}
.y16b{bottom:756.981000px;}
.y180{bottom:759.721500px;}
.ya4{bottom:764.563500px;}
.y87{bottom:765.658500px;}
.y16{bottom:768.936000px;}
.y108{bottom:771.403500px;}
.y5f{bottom:772.672500px;}
.y17f{bottom:775.413000px;}
.y138{bottom:780.805500px;}
.yc1{bottom:783.573000px;}
.y86{bottom:784.488000px;}
.ya3{bottom:784.536000px;}
.y15{bottom:787.452000px;}
.y16a{bottom:788.362500px;}
.y107{bottom:790.233000px;}
.y17e{bottom:791.104500px;}
.y5e{bottom:791.502000px;}
.y137{bottom:799.635000px;}
.y85{bottom:803.317500px;}
.y169{bottom:804.054000px;}
.ya2{bottom:804.508500px;}
.y14{bottom:805.968000px;}
.y17d{bottom:806.796000px;}
.y106{bottom:809.062500px;}
.y5d{bottom:810.331500px;}
.y136{bottom:818.464500px;}
.y168{bottom:819.745500px;}
.y84{bottom:822.147000px;}
.y17c{bottom:822.487500px;}
.y13{bottom:824.482500px;}
.y105{bottom:827.892000px;}
.y5c{bottom:829.159500px;}
.y167{bottom:835.437000px;}
.y135{bottom:837.294000px;}
.y83{bottom:840.976500px;}
.y12{bottom:842.998500px;}
.ya1{bottom:844.455000px;}
.y104{bottom:846.721500px;}
.y5b{bottom:847.989000px;}
.y166{bottom:851.128500px;}
.y134{bottom:856.122000px;}
.y82{bottom:859.806000px;}
.y11{bottom:861.514500px;}
.ya0{bottom:864.427500px;}
.y103{bottom:865.551000px;}
.y5a{bottom:866.818500px;}
.y133{bottom:874.951500px;}
.y10{bottom:880.030500px;}
.y165{bottom:882.510000px;}
.y102{bottom:884.380500px;}
.y9f{bottom:884.400000px;}
.y59{bottom:885.648000px;}
.y132{bottom:893.781000px;}
.y164{bottom:898.201500px;}
.yf{bottom:898.545000px;}
.y101{bottom:903.210000px;}
.y9e{bottom:904.372500px;}
.y58{bottom:904.477500px;}
.y81{bottom:907.701000px;}
.y131{bottom:912.610500px;}
.y163{bottom:913.893000px;}
.y100{bottom:922.039500px;}
.ye{bottom:923.038500px;}
.y57{bottom:923.307000px;}
.y9d{bottom:924.345000px;}
.y80{bottom:927.876000px;}
.y162{bottom:929.584500px;}
.y130{bottom:936.799500px;}
.yff{bottom:940.867500px;}
.y56{bottom:942.136500px;}
.y9c{bottom:944.317500px;}
.y161{bottom:945.274500px;}
.yd{bottom:956.812500px;}
.yfe{bottom:959.697000px;}
.y55{bottom:960.966000px;}
.y9b{bottom:964.290000px;}
.yc{bottom:973.288500px;}
.y12f{bottom:974.437500px;}
.y160{bottom:976.657500px;}
.yfd{bottom:978.526500px;}
.y54{bottom:979.795500px;}
.y9a{bottom:984.264000px;}
.yb{bottom:989.763000px;}
.y15f{bottom:992.349000px;}
.y12e{bottom:993.267000px;}
.yfc{bottom:997.356000px;}
.y53{bottom:998.625000px;}
.y99{bottom:1004.236500px;}
.y15e{bottom:1008.040500px;}
.ya{bottom:1010.458500px;}
.y12d{bottom:1012.096500px;}
.yfb{bottom:1016.820000px;}
.y52{bottom:1017.454500px;}
.y15d{bottom:1023.732000px;}
.y98{bottom:1024.209000px;}
.y12c{bottom:1030.926000px;}
.yfa{bottom:1035.649500px;}
.y51{bottom:1036.284000px;}
.y9{bottom:1037.659500px;}
.y15c{bottom:1039.422000px;}
.y97{bottom:1044.181500px;}
.y12b{bottom:1049.755500px;}
.yf9{bottom:1054.479000px;}
.y50{bottom:1055.113500px;}
.y96{bottom:1064.154000px;}
.y12a{bottom:1068.585000px;}
.y15b{bottom:1070.805000px;}
.yf8{bottom:1073.308500px;}
.y4f{bottom:1073.943000px;}
.y8{bottom:1077.081000px;}
.y95{bottom:1084.126500px;}
.y15a{bottom:1086.496500px;}
.y129{bottom:1087.414500px;}
.y4e{bottom:1092.772500px;}
.y159{bottom:1102.188000px;}
.y94{bottom:1104.099000px;}
.y7{bottom:1105.326000px;}
.y128{bottom:1106.242500px;}
.y4d{bottom:1111.602000px;}
.y158{bottom:1117.878000px;}
.y127{bottom:1125.072000px;}
.y93{bottom:1127.808000px;}
.y4c{bottom:1130.431500px;}
.y6{bottom:1130.581500px;}
.y157{bottom:1133.569500px;}
.y4b{bottom:1149.261000px;}
.y92{bottom:1150.083000px;}
.y2{bottom:1164.453000px;}
.y1{bottom:1177.006500px;}
.h6{height:25.081775px;}
.h7{height:36.461025px;}
.h3{height:41.504347px;}
.h2{height:41.959775px;}
.hb{height:44.582096px;}
.h8{height:47.204944px;}
.h9{height:48.614700px;}
.ha{height:52.449587px;}
.h4{height:64.819329px;}
.h5{height:68.184568px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:80.697000px;}
.x11{left:82.125000px;}
.x4{left:86.137500px;}
.x5{left:87.631500px;}
.x10{left:110.287500px;}
.x6{left:113.118000px;}
.xb{left:156.411000px;}
.x2{left:159.640500px;}
.xc{left:174.343500px;}
.xa{left:318.201000px;}
.x7{left:459.906000px;}
.x9{left:464.389500px;}
.xe{left:466.257000px;}
.xf{left:488.541000px;}
.x8{left:491.371500px;}
.x1{left:606.592500px;}
.xd{left:803.787000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001867pt;}
.ls4{letter-spacing:0.002422pt;}
.ls5{letter-spacing:0.003733pt;}
.lsd{letter-spacing:0.037652pt;}
.lsb{letter-spacing:0.042986pt;}
.ls0{letter-spacing:0.043930pt;}
.ls8{letter-spacing:1.084785pt;}
.ls3{letter-spacing:2.659661pt;}
.ls1{letter-spacing:2.680405pt;}
.ls2{letter-spacing:2.694596pt;}
.lsa{letter-spacing:11.049067pt;}
.lse{letter-spacing:13.283733pt;}
.lsc{letter-spacing:14.297067pt;}
.ls9{letter-spacing:15.475733pt;}
.wsc6{word-spacing:-31.880533pt;}
.ws21{word-spacing:-29.967501pt;}
.wse3{word-spacing:-25.472346pt;}
.ws3{word-spacing:-23.974061pt;}
.wsc{word-spacing:-23.910400pt;}
.ws8{word-spacing:-21.758352pt;}
.ws9{word-spacing:-21.689278pt;}
.ws7{word-spacing:-21.338614pt;}
.ws1{word-spacing:-21.253600pt;}
.wsa7{word-spacing:-20.987877pt;}
.ws44{word-spacing:-20.934743pt;}
.ws2d{word-spacing:-20.775342pt;}
.ws2e{word-spacing:-20.722208pt;}
.wsaa{word-spacing:-20.669074pt;}
.ws75{word-spacing:-20.615940pt;}
.wsb3{word-spacing:-20.244003pt;}
.ws5b{word-spacing:-20.190869pt;}
.wsac{word-spacing:-20.084602pt;}
.ws63{word-spacing:-20.031468pt;}
.wsae{word-spacing:-19.978334pt;}
.ws99{word-spacing:-19.925200pt;}
.ws81{word-spacing:-19.765798pt;}
.wsc5{word-spacing:-19.712665pt;}
.ws83{word-spacing:-19.553263pt;}
.wsb6{word-spacing:-19.446995pt;}
.wsc3{word-spacing:-19.393861pt;}
.wsc1{word-spacing:-19.234460pt;}
.ws95{word-spacing:-19.128192pt;}
.ws7d{word-spacing:-19.075058pt;}
.ws85{word-spacing:-19.021924pt;}
.ws53{word-spacing:-18.968790pt;}
.ws7c{word-spacing:-18.915657pt;}
.ws66{word-spacing:-18.809389pt;}
.ws6b{word-spacing:-18.756255pt;}
.wsbd{word-spacing:-18.703121pt;}
.wsab{word-spacing:-18.649987pt;}
.wsa5{word-spacing:-18.490586pt;}
.ws9f{word-spacing:-18.437452pt;}
.ws82{word-spacing:-18.278050pt;}
.wsa6{word-spacing:-18.171782pt;}
.ws69{word-spacing:-18.065515pt;}
.ws3d{word-spacing:-18.012381pt;}
.ws3b{word-spacing:-17.852979pt;}
.wsc2{word-spacing:-17.693578pt;}
.wscc{word-spacing:-17.659020pt;}
.ws93{word-spacing:-17.640444pt;}
.wsb8{word-spacing:-17.534176pt;}
.ws115{word-spacing:-17.523529pt;}
.ws51{word-spacing:-17.481042pt;}
.wsf2{word-spacing:-17.388037pt;}
.ws65{word-spacing:-17.321641pt;}
.wsf4{word-spacing:-17.297710pt;}
.ws64{word-spacing:-17.268507pt;}
.wsd4{word-spacing:-17.252546pt;}
.ws71{word-spacing:-17.215373pt;}
.ws6d{word-spacing:-17.162239pt;}
.ws110{word-spacing:-17.162219pt;}
.ws72{word-spacing:-17.109105pt;}
.ws13{word-spacing:-17.072026pt;}
.wsad{word-spacing:-17.055971pt;}
.wscb{word-spacing:-17.026727pt;}
.wsd6{word-spacing:-16.910244pt;}
.wsdf{word-spacing:-16.891236pt;}
.wsf1{word-spacing:-16.846073pt;}
.ws3f{word-spacing:-16.737168pt;}
.ws116{word-spacing:-16.710581pt;}
.ws11{word-spacing:-16.689459pt;}
.ws37{word-spacing:-16.684034pt;}
.wsed{word-spacing:-16.665418pt;}
.ws74{word-spacing:-16.630900pt;}
.ws48{word-spacing:-16.577766pt;}
.wsf3{word-spacing:-16.529926pt;}
.ws8f{word-spacing:-16.524633pt;}
.ws20{word-spacing:-16.418365pt;}
.ws10c{word-spacing:-16.349271pt;}
.ws8e{word-spacing:-16.312097pt;}
.ws8d{word-spacing:-16.258963pt;}
.ws4e{word-spacing:-16.205829pt;}
.ws43{word-spacing:-16.152695pt;}
.ws59{word-spacing:-16.099562pt;}
.wsb9{word-spacing:-16.004028pt;}
.ws1c{word-spacing:-15.993294pt;}
.ws41{word-spacing:-15.940267pt;}
.ws6a{word-spacing:-15.940160pt;}
.ws56{word-spacing:-15.887026pt;}
.ws49{word-spacing:-15.833892pt;}
.ws54{word-spacing:-15.780758pt;}
.ws11a{word-spacing:-15.762143pt;}
.ws2c{word-spacing:-15.727625pt;}
.ws8c{word-spacing:-15.674491pt;}
.wsea{word-spacing:-15.581488pt;}
.ws91{word-spacing:-15.568223pt;}
.wsf0{word-spacing:-15.536324pt;}
.wsb5{word-spacing:-15.515089pt;}
.ws3e{word-spacing:-15.461955pt;}
.wsc8{word-spacing:-15.445997pt;}
.wsa0{word-spacing:-15.408821pt;}
.ws15{word-spacing:-15.302656pt;}
.ws46{word-spacing:-15.302554pt;}
.wsbf{word-spacing:-15.249420pt;}
.ws103{word-spacing:-15.129851pt;}
.ws2b{word-spacing:-15.090018pt;}
.ws80{word-spacing:-15.063552pt;}
.ws17{word-spacing:-15.015731pt;}
.ws98{word-spacing:-14.930617pt;}
.ws84{word-spacing:-14.877483pt;}
.ws10{word-spacing:-14.824448pt;}
.ws3a{word-spacing:-14.824349pt;}
.ws16{word-spacing:-14.776627pt;}
.ws4f{word-spacing:-14.771215pt;}
.wsde{word-spacing:-14.768541pt;}
.ws111{word-spacing:-14.723377pt;}
.ws6c{word-spacing:-14.718081pt;}
.ws34{word-spacing:-14.664947pt;}
.ws23{word-spacing:-14.611813pt;}
.wsf{word-spacing:-14.585344pt;}
.ws62{word-spacing:-14.558679pt;}
.ws67{word-spacing:-14.543187pt;}
.ws68{word-spacing:-14.505546pt;}
.ws4c{word-spacing:-14.452412pt;}
.wsff{word-spacing:-14.452395pt;}
.wsf5{word-spacing:-14.407231pt;}
.ws35{word-spacing:-14.399278pt;}
.wscd{word-spacing:-14.362067pt;}
.wsca{word-spacing:-14.316903pt;}
.ws88{word-spacing:-14.293010pt;}
.wse9{word-spacing:-14.271740pt;}
.wsd7{word-spacing:-14.226576pt;}
.wsd2{word-spacing:-14.181412pt;}
.ws11f{word-spacing:-14.091085pt;}
.ws3c{word-spacing:-14.080475pt;}
.wsfe{word-spacing:-14.045921pt;}
.ws10e{word-spacing:-14.000757pt;}
.ws61{word-spacing:-13.974207pt;}
.ws12{word-spacing:-13.963674pt;}
.ws108{word-spacing:-13.955594pt;}
.ws1f{word-spacing:-13.921073pt;}
.wsd5{word-spacing:-13.910430pt;}
.ws73{word-spacing:-13.867939pt;}
.wsd1{word-spacing:-13.820102pt;}
.ws36{word-spacing:-13.814805pt;}
.ws2f{word-spacing:-13.655404pt;}
.wse8{word-spacing:-13.639447pt;}
.ws4d{word-spacing:-13.496002pt;}
.wsb{word-spacing:-13.449527pt;}
.ws30{word-spacing:-13.442868pt;}
.ws113{word-spacing:-13.413629pt;}
.ws2{word-spacing:-13.389768pt;}
.ws94{word-spacing:-13.389734pt;}
.ws4{word-spacing:-13.347261pt;}
.ws6{word-spacing:-13.336601pt;}
.wse{word-spacing:-13.294182pt;}
.wsef{word-spacing:-13.278138pt;}
.ws52{word-spacing:-13.124065pt;}
.ws14{word-spacing:-13.102899pt;}
.wse1{word-spacing:-13.097483pt;}
.ws9e{word-spacing:-13.070931pt;}
.wse0{word-spacing:-13.047697pt;}
.wscf{word-spacing:-12.961991pt;}
.ws31{word-spacing:-12.911530pt;}
.wsfd{word-spacing:-12.826500pt;}
.ws77{word-spacing:-12.752128pt;}
.ws104{word-spacing:-12.691009pt;}
.wsd{word-spacing:-12.672512pt;}
.ws96{word-spacing:-12.645860pt;}
.ws112{word-spacing:-12.600682pt;}
.ws40{word-spacing:-12.592726pt;}
.wsf6{word-spacing:-12.555518pt;}
.ws33{word-spacing:-12.539593pt;}
.ws32{word-spacing:-12.486459pt;}
.ws102{word-spacing:-12.465190pt;}
.wsc4{word-spacing:-12.380191pt;}
.ws57{word-spacing:-12.327057pt;}
.ws18{word-spacing:-12.194304pt;}
.wsfb{word-spacing:-12.194208pt;}
.ws97{word-spacing:-12.114522pt;}
.wse7{word-spacing:-12.058717pt;}
.ws7e{word-spacing:-12.003021pt;}
.ws78{word-spacing:-11.955200pt;}
.wsc9{word-spacing:-11.923226pt;}
.wsb7{word-spacing:-11.901986pt;}
.wseb{word-spacing:-11.832898pt;}
.ws9d{word-spacing:-11.795718pt;}
.ws79{word-spacing:-11.742585pt;}
.ws107{word-spacing:-11.742571pt;}
.wsa8{word-spacing:-11.689451pt;}
.ws4a{word-spacing:-11.636317pt;}
.ws11b{word-spacing:-11.607079pt;}
.ws24{word-spacing:-11.583183pt;}
.ws25{word-spacing:-11.530049pt;}
.wsb4{word-spacing:-11.476915pt;}
.ws4b{word-spacing:-11.370647pt;}
.wsdd{word-spacing:-11.336097pt;}
.ws28{word-spacing:-11.264380pt;}
.ws86{word-spacing:-11.211246pt;}
.ws120{word-spacing:-11.200606pt;}
.wsa4{word-spacing:-11.158112pt;}
.ws119{word-spacing:-11.155442pt;}
.wsaf{word-spacing:-11.104978pt;}
.ws7b{word-spacing:-11.051844pt;}
.ws7f{word-spacing:-11.046605pt;}
.ws9c{word-spacing:-10.998710pt;}
.ws118{word-spacing:-10.974787pt;}
.wsf8{word-spacing:-10.929623pt;}
.ws1d{word-spacing:-10.892443pt;}
.ws9b{word-spacing:-10.839309pt;}
.wsb2{word-spacing:-10.679907pt;}
.ws5{word-spacing:-10.669307pt;}
.ws1a{word-spacing:-10.648098pt;}
.ws5e{word-spacing:-10.626773pt;}
.wsce{word-spacing:-10.613477pt;}
.ws42{word-spacing:-10.520506pt;}
.wsfc{word-spacing:-10.477986pt;}
.ws39{word-spacing:-10.467372pt;}
.wsf7{word-spacing:-10.432822pt;}
.ws106{word-spacing:-10.387659pt;}
.ws5a{word-spacing:-10.307970pt;}
.wsa1{word-spacing:-10.254836pt;}
.ws70{word-spacing:-10.148569pt;}
.wsd0{word-spacing:-10.071513pt;}
.ws6e{word-spacing:-10.042301pt;}
.wsb0{word-spacing:-10.027472pt;}
.ws90{word-spacing:-9.989167pt;}
.ws5c{word-spacing:-9.936033pt;}
.ws45{word-spacing:-9.882899pt;}
.wsdb{word-spacing:-9.877442pt;}
.wsdc{word-spacing:-9.845694pt;}
.wsa{word-spacing:-9.832448pt;}
.ws76{word-spacing:-9.829765pt;}
.ws29{word-spacing:-9.776631pt;}
.wsa3{word-spacing:-9.564096pt;}
.ws87{word-spacing:-9.404694pt;}
.ws55{word-spacing:-9.351561pt;}
.ws10f{word-spacing:-9.258565pt;}
.ws9a{word-spacing:-9.192159pt;}
.wsa9{word-spacing:-9.139025pt;}
.ws109{word-spacing:-9.131298pt;}
.ws10b{word-spacing:-9.123074pt;}
.wsd3{word-spacing:-8.806928pt;}
.ws101{word-spacing:-8.716601pt;}
.ws121{word-spacing:-8.535946pt;}
.wsd9{word-spacing:-8.400454pt;}
.ws19{word-spacing:-7.970253pt;}
.ws10d{word-spacing:-7.768162pt;}
.ws1b{word-spacing:-7.651277pt;}
.ws58{word-spacing:-7.598143pt;}
.ws2a{word-spacing:-7.545009pt;}
.ws100{word-spacing:-7.226197pt;}
.ws0{word-spacing:-7.098702pt;}
.ws7a{word-spacing:-7.066804pt;}
.ws38{word-spacing:-6.748001pt;}
.ws5f{word-spacing:-6.641733pt;}
.ws1e{word-spacing:-6.535466pt;}
.ws6f{word-spacing:-6.503629pt;}
.ws60{word-spacing:-6.429198pt;}
.ws10a{word-spacing:-6.232595pt;}
.ws8b{word-spacing:-6.216662pt;}
.ws8a{word-spacing:-6.163529pt;}
.wsfa{word-spacing:-6.142268pt;}
.ws26{word-spacing:-6.057261pt;}
.wse2{word-spacing:-5.916449pt;}
.ws11c{word-spacing:-5.679297pt;}
.ws11e{word-spacing:-5.645467pt;}
.ws89{word-spacing:-5.472788pt;}
.wsf9{word-spacing:-5.464812pt;}
.ws5d{word-spacing:-5.260253pt;}
.ws50{word-spacing:-5.153985pt;}
.ws117{word-spacing:-4.335718pt;}
.wsd8{word-spacing:-4.019572pt;}
.ws22{word-spacing:-3.985040pt;}
.wse4{word-spacing:-3.952831pt;}
.wsa2{word-spacing:-3.453701pt;}
.ws11d{word-spacing:-2.800151pt;}
.ws114{word-spacing:-2.574333pt;}
.ws27{word-spacing:-2.231622pt;}
.wsda{word-spacing:-1.782746pt;}
.ws92{word-spacing:-1.434614pt;}
.ws47{word-spacing:0.000000pt;}
.wsee{word-spacing:1.089266pt;}
.wsec{word-spacing:1.092875pt;}
.wse6{word-spacing:1.093408pt;}
.ws105{word-spacing:1.098208pt;}
.wsc7{word-spacing:1.098741pt;}
.wsc0{word-spacing:7.438741pt;}
.wsb1{word-spacing:8.076348pt;}
.wse5{word-spacing:10.116676pt;}
.wsbe{word-spacing:13.867939pt;}
.wsbc{word-spacing:14.027341pt;}
.wsbb{word-spacing:63.282435pt;}
.wsba{word-spacing:65.567191pt;}
._2{margin-left:-7.460006pt;}
._35{margin-left:-6.322930pt;}
._3{margin-left:-4.675792pt;}
._17{margin-left:-3.666237pt;}
._7{margin-left:-2.630144pt;}
._1{margin-left:-1.535705pt;}
._16{width:1.965953pt;}
._3b{width:3.318204pt;}
._14{width:9.936033pt;}
._9{width:11.202346pt;}
._38{width:12.805262pt;}
._0{width:14.203990pt;}
._a{width:15.207014pt;}
._11{width:16.099562pt;}
._8{width:16.999031pt;}
._13{width:18.490586pt;}
._5{width:19.807249pt;}
._b{width:21.184614pt;}
._6{width:22.380134pt;}
._15{width:23.325767pt;}
._c{width:24.436429pt;}
._d{width:25.876193pt;}
._12{width:26.912321pt;}
._f{width:29.117359pt;}
._36{width:30.907957pt;}
._10{width:33.058189pt;}
._37{width:34.802462pt;}
._18{width:35.865360pt;}
._19{width:37.140573pt;}
._1a{width:46.492133pt;}
._4{width:47.771508pt;}
._e{width:55.735826pt;}
._39{width:57.437710pt;}
._3a{width:94.174477pt;}
._2a{width:99.610726pt;}
._2e{width:722.867059pt;}
._2b{width:945.045845pt;}
._2c{width:954.555650pt;}
._2d{width:994.850560pt;}
._27{width:1251.026586pt;}
._26{width:1266.949845pt;}
._25{width:1282.874172pt;}
._2f{width:1313.431663pt;}
._28{width:1390.567680pt;}
._30{width:1446.326733pt;}
._29{width:1459.620915pt;}
._1f{width:1550.660005pt;}
._32{width:1552.083081pt;}
._1c{width:1573.767031pt;}
._20{width:1601.110949pt;}
._1b{width:1620.972937pt;}
._24{width:1644.209203pt;}
._1d{width:1646.838281pt;}
._31{width:1652.099635pt;}
._1e{width:1657.454498pt;}
._21{width:1668.070716pt;}
._23{width:1676.010035pt;}
._22{width:1728.554448pt;}
._33{width:1774.329600pt;}
._34{width:1798.238933pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:42.507200pt;}
.fs7{font-size:45.163733pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs3{font-size:69.074133pt;}
.fs2{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:26.782667pt;}
.y4{bottom:45.738667pt;}
.y3{bottom:59.021333pt;}
.y91{bottom:69.074667pt;}
.y36{bottom:108.925333pt;}
.y156{bottom:122.873333pt;}
.y35{bottom:125.662667pt;}
.y7f{bottom:131.301333pt;}
.y155{bottom:136.820000pt;}
.y34{bottom:142.400000pt;}
.yf7{bottom:144.089333pt;}
.y7e{bottom:148.038667pt;}
.y154{bottom:150.768000pt;}
.y33{bottom:159.137333pt;}
.y126{bottom:159.701333pt;}
.yc0{bottom:160.182667pt;}
.yf6{bottom:160.826667pt;}
.y153{bottom:164.716000pt;}
.y7d{bottom:164.776000pt;}
.y32{bottom:175.874667pt;}
.y125{bottom:176.438667pt;}
.y4a{bottom:176.840000pt;}
.ybf{bottom:176.920000pt;}
.yf5{bottom:177.564000pt;}
.y152{bottom:178.664000pt;}
.y7c{bottom:181.513333pt;}
.y31{bottom:192.612000pt;}
.y49{bottom:193.577333pt;}
.ybe{bottom:193.657333pt;}
.y124{bottom:193.738667pt;}
.yf4{bottom:194.301333pt;}
.y7b{bottom:198.250667pt;}
.y151{bottom:206.560000pt;}
.y30{bottom:209.349333pt;}
.ydb{bottom:209.944000pt;}
.y48{bottom:210.314667pt;}
.y123{bottom:210.476000pt;}
.yf3{bottom:211.038667pt;}
.ybd{bottom:211.440000pt;}
.y7a{bottom:214.988000pt;}
.y150{bottom:220.506667pt;}
.y2f{bottom:226.086667pt;}
.yda{bottom:226.681333pt;}
.y47{bottom:227.052000pt;}
.y122{bottom:227.213333pt;}
.ybc{bottom:228.177333pt;}
.yf2{bottom:229.466667pt;}
.y79{bottom:231.725333pt;}
.y14f{bottom:234.454667pt;}
.y2e{bottom:242.824000pt;}
.yd9{bottom:243.418667pt;}
.y121{bottom:243.950667pt;}
.ybb{bottom:244.914667pt;}
.yf1{bottom:246.204000pt;}
.y14e{bottom:248.402667pt;}
.y78{bottom:248.462667pt;}
.y46{bottom:248.740000pt;}
.y2d{bottom:259.561333pt;}
.yd8{bottom:260.156000pt;}
.y120{bottom:260.688000pt;}
.yba{bottom:261.652000pt;}
.y14d{bottom:262.350667pt;}
.yf0{bottom:262.941333pt;}
.y77{bottom:265.200000pt;}
.y2c{bottom:276.297333pt;}
.y14c{bottom:276.298667pt;}
.yd7{bottom:276.893333pt;}
.y11f{bottom:277.989333pt;}
.yb9{bottom:278.389333pt;}
.yef{bottom:279.678667pt;}
.y76{bottom:281.937333pt;}
.y45{bottom:282.384000pt;}
.y14b{bottom:290.245333pt;}
.y2b{bottom:293.034667pt;}
.yd6{bottom:293.630667pt;}
.y11e{bottom:294.726667pt;}
.yb8{bottom:295.126667pt;}
.yee{bottom:296.416000pt;}
.y75{bottom:298.674667pt;}
.y44{bottom:299.121333pt;}
.y90{bottom:302.746667pt;}
.y14a{bottom:304.193333pt;}
.y2a{bottom:309.772000pt;}
.yd5{bottom:310.368000pt;}
.y11d{bottom:311.464000pt;}
.yed{bottom:313.153333pt;}
.y43{bottom:315.858667pt;}
.y149{bottom:318.141333pt;}
.y74{bottom:319.396000pt;}
.y29{bottom:326.509333pt;}
.yd4{bottom:327.105333pt;}
.y11c{bottom:328.201333pt;}
.yec{bottom:329.889333pt;}
.y148{bottom:332.089333pt;}
.y42{bottom:332.596000pt;}
.yb7{bottom:342.296000pt;}
.y28{bottom:343.246667pt;}
.yd3{bottom:343.842667pt;}
.y147{bottom:346.037333pt;}
.yeb{bottom:346.626667pt;}
.y41{bottom:349.333333pt;}
.y11b{bottom:349.488000pt;}
.y73{bottom:352.073333pt;}
.y27{bottom:359.984000pt;}
.yb6{bottom:360.049333pt;}
.yd2{bottom:360.580000pt;}
.yea{bottom:363.364000pt;}
.y40{bottom:367.036000pt;}
.y72{bottom:368.810667pt;}
.y146{bottom:373.932000pt;}
.y26{bottom:376.721333pt;}
.yd1{bottom:377.317333pt;}
.yb5{bottom:377.802667pt;}
.ye9{bottom:381.792000pt;}
.y11a{bottom:382.729333pt;}
.y3f{bottom:383.773333pt;}
.y71{bottom:385.548000pt;}
.y145{bottom:387.880000pt;}
.y25{bottom:393.458667pt;}
.yd0{bottom:394.649333pt;}
.yb4{bottom:395.556000pt;}
.ye8{bottom:398.529333pt;}
.y119{bottom:399.466667pt;}
.y3e{bottom:401.476000pt;}
.y144{bottom:401.828000pt;}
.y70{bottom:402.285333pt;}
.y17b{bottom:407.865333pt;}
.y24{bottom:410.196000pt;}
.y193{bottom:410.301333pt;}
.ycf{bottom:411.386667pt;}
.yb3{bottom:413.309333pt;}
.ye7{bottom:415.266667pt;}
.y143{bottom:415.776000pt;}
.y118{bottom:416.204000pt;}
.y3d{bottom:418.213333pt;}
.y6f{bottom:419.022667pt;}
.y17a{bottom:421.812000pt;}
.y192{bottom:424.249333pt;}
.y23{bottom:426.933333pt;}
.yce{bottom:428.124000pt;}
.y142{bottom:429.722667pt;}
.yb2{bottom:431.064000pt;}
.ye6{bottom:432.004000pt;}
.y117{bottom:433.505333pt;}
.y3c{bottom:434.950667pt;}
.y6e{bottom:435.760000pt;}
.y191{bottom:438.197333pt;}
.y22{bottom:443.670667pt;}
.ycd{bottom:444.861333pt;}
.ye5{bottom:448.741333pt;}
.yb1{bottom:448.817333pt;}
.y179{bottom:449.708000pt;}
.y116{bottom:450.242667pt;}
.y3b{bottom:451.688000pt;}
.y190{bottom:452.145333pt;}
.y6d{bottom:452.497333pt;}
.y141{bottom:457.618667pt;}
.y21{bottom:460.408000pt;}
.y178{bottom:463.656000pt;}
.ye4{bottom:465.478667pt;}
.y18f{bottom:466.092000pt;}
.ycc{bottom:466.178667pt;}
.yb0{bottom:466.570667pt;}
.y115{bottom:466.978667pt;}
.y3a{bottom:468.425333pt;}
.y6c{bottom:469.234667pt;}
.y20{bottom:477.145333pt;}
.y177{bottom:477.604000pt;}
.y140{bottom:478.986667pt;}
.y18e{bottom:480.040000pt;}
.ye3{bottom:482.216000pt;}
.y114{bottom:483.716000pt;}
.yaf{bottom:484.324000pt;}
.y39{bottom:485.162667pt;}
.y6b{bottom:485.972000pt;}
.y176{bottom:491.550667pt;}
.y1f{bottom:493.882667pt;}
.y18d{bottom:493.988000pt;}
.ye2{bottom:498.953333pt;}
.ycb{bottom:499.452000pt;}
.y113{bottom:500.453333pt;}
.y38{bottom:501.900000pt;}
.yae{bottom:502.077333pt;}
.y6a{bottom:502.709333pt;}
.y175{bottom:505.498667pt;}
.y18c{bottom:507.936000pt;}
.y1e{bottom:510.620000pt;}
.y13f{bottom:512.442667pt;}
.ye1{bottom:515.690667pt;}
.yca{bottom:516.189333pt;}
.y112{bottom:517.754667pt;}
.y69{bottom:519.446667pt;}
.y37{bottom:519.604000pt;}
.yad{bottom:519.830667pt;}
.y18b{bottom:521.884000pt;}
.y8f{bottom:531.340000pt;}
.ye0{bottom:532.428000pt;}
.yc9{bottom:532.926667pt;}
.y174{bottom:533.394667pt;}
.y13e{bottom:533.942667pt;}
.y111{bottom:534.492000pt;}
.y18a{bottom:535.830667pt;}
.y68{bottom:536.184000pt;}
.y1d{bottom:536.341333pt;}
.yac{bottom:537.584000pt;}
.y173{bottom:547.342667pt;}
.y8e{bottom:548.077333pt;}
.ydf{bottom:549.165333pt;}
.y189{bottom:549.778667pt;}
.yc8{bottom:550.260000pt;}
.y110{bottom:551.229333pt;}
.y67{bottom:552.921333pt;}
.yab{bottom:555.337333pt;}
.y172{bottom:561.289333pt;}
.y188{bottom:563.726667pt;}
.y8d{bottom:564.814667pt;}
.yde{bottom:565.902667pt;}
.yc7{bottom:566.997333pt;}
.y13d{bottom:567.398667pt;}
.y10f{bottom:567.966667pt;}
.y66{bottom:569.658667pt;}
.yaa{bottom:573.092000pt;}
.y171{bottom:575.237333pt;}
.y1c{bottom:575.450667pt;}
.y187{bottom:577.674667pt;}
.y8c{bottom:581.552000pt;}
.ydd{bottom:582.638667pt;}
.yc6{bottom:583.733333pt;}
.y10e{bottom:584.704000pt;}
.y65{bottom:586.396000pt;}
.y13c{bottom:588.898667pt;}
.y170{bottom:589.185333pt;}
.ya9{bottom:590.845333pt;}
.y186{bottom:591.622667pt;}
.yc5{bottom:600.470667pt;}
.ydc{bottom:601.066667pt;}
.y1b{bottom:601.206667pt;}
.y10d{bottom:601.441333pt;}
.y64{bottom:603.133333pt;}
.y185{bottom:605.569333pt;}
.y8b{bottom:605.962667pt;}
.ya8{bottom:608.598667pt;}
.y16f{bottom:617.081333pt;}
.y1a{bottom:617.665333pt;}
.yc4{bottom:617.804000pt;}
.y10c{bottom:618.178667pt;}
.y184{bottom:619.517333pt;}
.y63{bottom:619.870667pt;}
.y13b{bottom:622.354667pt;}
.y8a{bottom:622.700000pt;}
.ya7{bottom:626.352000pt;}
.y16e{bottom:631.028000pt;}
.y183{bottom:633.465333pt;}
.y19{bottom:634.124000pt;}
.yc3{bottom:634.541333pt;}
.y10b{bottom:634.916000pt;}
.y62{bottom:636.608000pt;}
.y13a{bottom:639.092000pt;}
.y89{bottom:639.437333pt;}
.ya6{bottom:644.105333pt;}
.y16d{bottom:644.976000pt;}
.y182{bottom:647.413333pt;}
.y18{bottom:650.582667pt;}
.yc2{bottom:651.278667pt;}
.y10a{bottom:651.653333pt;}
.y61{bottom:653.345333pt;}
.y16c{bottom:658.924000pt;}
.y139{bottom:660.593333pt;}
.y181{bottom:661.361333pt;}
.ya5{bottom:661.858667pt;}
.y88{bottom:663.848000pt;}
.y17{bottom:667.040000pt;}
.y109{bottom:668.954667pt;}
.y60{bottom:670.082667pt;}
.y16b{bottom:672.872000pt;}
.y180{bottom:675.308000pt;}
.ya4{bottom:679.612000pt;}
.y87{bottom:680.585333pt;}
.y16{bottom:683.498667pt;}
.y108{bottom:685.692000pt;}
.y5f{bottom:686.820000pt;}
.y17f{bottom:689.256000pt;}
.y138{bottom:694.049333pt;}
.yc1{bottom:696.509333pt;}
.y86{bottom:697.322667pt;}
.ya3{bottom:697.365333pt;}
.y15{bottom:699.957333pt;}
.y16a{bottom:700.766667pt;}
.y107{bottom:702.429333pt;}
.y17e{bottom:703.204000pt;}
.y5e{bottom:703.557333pt;}
.y137{bottom:710.786667pt;}
.y85{bottom:714.060000pt;}
.y169{bottom:714.714667pt;}
.ya2{bottom:715.118667pt;}
.y14{bottom:716.416000pt;}
.y17d{bottom:717.152000pt;}
.y106{bottom:719.166667pt;}
.y5d{bottom:720.294667pt;}
.y136{bottom:727.524000pt;}
.y168{bottom:728.662667pt;}
.y84{bottom:730.797333pt;}
.y17c{bottom:731.100000pt;}
.y13{bottom:732.873333pt;}
.y105{bottom:735.904000pt;}
.y5c{bottom:737.030667pt;}
.y167{bottom:742.610667pt;}
.y135{bottom:744.261333pt;}
.y83{bottom:747.534667pt;}
.y12{bottom:749.332000pt;}
.ya1{bottom:750.626667pt;}
.y104{bottom:752.641333pt;}
.y5b{bottom:753.768000pt;}
.y166{bottom:756.558667pt;}
.y134{bottom:760.997333pt;}
.y82{bottom:764.272000pt;}
.y11{bottom:765.790667pt;}
.ya0{bottom:768.380000pt;}
.y103{bottom:769.378667pt;}
.y5a{bottom:770.505333pt;}
.y133{bottom:777.734667pt;}
.y10{bottom:782.249333pt;}
.y165{bottom:784.453333pt;}
.y102{bottom:786.116000pt;}
.y9f{bottom:786.133333pt;}
.y59{bottom:787.242667pt;}
.y132{bottom:794.472000pt;}
.y164{bottom:798.401333pt;}
.yf{bottom:798.706667pt;}
.y101{bottom:802.853333pt;}
.y9e{bottom:803.886667pt;}
.y58{bottom:803.980000pt;}
.y81{bottom:806.845333pt;}
.y131{bottom:811.209333pt;}
.y163{bottom:812.349333pt;}
.y100{bottom:819.590667pt;}
.ye{bottom:820.478667pt;}
.y57{bottom:820.717333pt;}
.y9d{bottom:821.640000pt;}
.y80{bottom:824.778667pt;}
.y162{bottom:826.297333pt;}
.y130{bottom:832.710667pt;}
.yff{bottom:836.326667pt;}
.y56{bottom:837.454667pt;}
.y9c{bottom:839.393333pt;}
.y161{bottom:840.244000pt;}
.yd{bottom:850.500000pt;}
.yfe{bottom:853.064000pt;}
.y55{bottom:854.192000pt;}
.y9b{bottom:857.146667pt;}
.yc{bottom:865.145333pt;}
.y12f{bottom:866.166667pt;}
.y160{bottom:868.140000pt;}
.yfd{bottom:869.801333pt;}
.y54{bottom:870.929333pt;}
.y9a{bottom:874.901333pt;}
.yb{bottom:879.789333pt;}
.y15f{bottom:882.088000pt;}
.y12e{bottom:882.904000pt;}
.yfc{bottom:886.538667pt;}
.y53{bottom:887.666667pt;}
.y99{bottom:892.654667pt;}
.y15e{bottom:896.036000pt;}
.ya{bottom:898.185333pt;}
.y12d{bottom:899.641333pt;}
.yfb{bottom:903.840000pt;}
.y52{bottom:904.404000pt;}
.y15d{bottom:909.984000pt;}
.y98{bottom:910.408000pt;}
.y12c{bottom:916.378667pt;}
.yfa{bottom:920.577333pt;}
.y51{bottom:921.141333pt;}
.y9{bottom:922.364000pt;}
.y15c{bottom:923.930667pt;}
.y97{bottom:928.161333pt;}
.y12b{bottom:933.116000pt;}
.yf9{bottom:937.314667pt;}
.y50{bottom:937.878667pt;}
.y96{bottom:945.914667pt;}
.y12a{bottom:949.853333pt;}
.y15b{bottom:951.826667pt;}
.yf8{bottom:954.052000pt;}
.y4f{bottom:954.616000pt;}
.y8{bottom:957.405333pt;}
.y95{bottom:963.668000pt;}
.y15a{bottom:965.774667pt;}
.y129{bottom:966.590667pt;}
.y4e{bottom:971.353333pt;}
.y159{bottom:979.722667pt;}
.y94{bottom:981.421333pt;}
.y7{bottom:982.512000pt;}
.y128{bottom:983.326667pt;}
.y4d{bottom:988.090667pt;}
.y158{bottom:993.669333pt;}
.y127{bottom:1000.064000pt;}
.y93{bottom:1002.496000pt;}
.y4c{bottom:1004.828000pt;}
.y6{bottom:1004.961333pt;}
.y157{bottom:1007.617333pt;}
.y4b{bottom:1021.565333pt;}
.y92{bottom:1022.296000pt;}
.y2{bottom:1035.069333pt;}
.y1{bottom:1046.228000pt;}
.h6{height:22.294911pt;}
.h7{height:32.409800pt;}
.h3{height:36.892753pt;}
.h2{height:37.297577pt;}
.hb{height:39.628530pt;}
.h8{height:41.959950pt;}
.h9{height:43.213067pt;}
.ha{height:46.621855pt;}
.h4{height:57.617181pt;}
.h5{height:60.608505pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:71.730667pt;}
.x11{left:73.000000pt;}
.x4{left:76.566667pt;}
.x5{left:77.894667pt;}
.x10{left:98.033333pt;}
.x6{left:100.549333pt;}
.xb{left:139.032000pt;}
.x2{left:141.902667pt;}
.xc{left:154.972000pt;}
.xa{left:282.845333pt;}
.x7{left:408.805333pt;}
.x9{left:412.790667pt;}
.xe{left:414.450667pt;}
.xf{left:434.258667pt;}
.x8{left:436.774667pt;}
.x1{left:539.193333pt;}
.xd{left:714.477333pt;}
}




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