
    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_e91de7fd6a71ffa815620e26.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_083809ab7dda5eb14116e856.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_15c33aed32ca098debb89aa6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3199e0315bbd6242b76fc2cd.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_1b8beaa191fc6947f2c7b570.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8be7b627921ad04a8b7e935b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a44f5357a05a12daa1ceb744.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_99cbbafcd0355dbd4d84fe8b.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_d55281e605063370ad954f55.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_cdc0997b566b58c2ad9d2af5.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f19adcc0c07a5e4314da0c39.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls6{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000583px;}
.ls1{letter-spacing:0.005100px;}
.ls21{letter-spacing:2.391818px;}
.ls1e{letter-spacing:2.402529px;}
.ls1d{letter-spacing:2.421003px;}
.ls1f{letter-spacing:2.421898px;}
.ls20{letter-spacing:2.422968px;}
.ls2{letter-spacing:2.950950px;}
.ls0{letter-spacing:2.956950px;}
.ls26{letter-spacing:2.987100px;}
.ls5{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.990611px;}
.ls24{letter-spacing:3.634495px;}
.ls23{letter-spacing:3.662860px;}
.lse{letter-spacing:4.665294px;}
.lsb{letter-spacing:4.676679px;}
.lsd{letter-spacing:4.707000px;}
.lsa{letter-spacing:4.712639px;}
.lsc{letter-spacing:4.714382px;}
.ls2b{letter-spacing:4.771063px;}
.ls28{letter-spacing:4.792428px;}
.ls27{letter-spacing:4.829278px;}
.ls29{letter-spacing:4.831064px;}
.ls2a{letter-spacing:4.833198px;}
.ls11{letter-spacing:4.878824px;}
.ls10{letter-spacing:4.916901px;}
.ls16{letter-spacing:5.125181px;}
.ls13{letter-spacing:5.137687px;}
.ls34{letter-spacing:5.138904px;}
.ls42{letter-spacing:5.144303px;}
.ls31{letter-spacing:5.151444px;}
.ls40{letter-spacing:5.157671px;}
.ls15{letter-spacing:5.170998px;}
.ls12{letter-spacing:5.177192px;}
.ls14{letter-spacing:5.179107px;}
.ls3d{letter-spacing:5.180767px;}
.ls33{letter-spacing:5.184844px;}
.ls30{letter-spacing:5.191055px;}
.ls32{letter-spacing:5.192975px;}
.ls3c{letter-spacing:5.220603px;}
.ls3e{letter-spacing:5.222534px;}
.ls3f{letter-spacing:5.224841px;}
.ls3a{letter-spacing:5.379931px;}
.ls37{letter-spacing:5.404022px;}
.ls36{letter-spacing:5.445575px;}
.ls38{letter-spacing:5.447590px;}
.ls39{letter-spacing:5.449995px;}
.ls2e{letter-spacing:12.636538px;}
.ls8{letter-spacing:13.230538px;}
.ls18{letter-spacing:13.236538px;}
.ls2f{letter-spacing:14.250538px;}
.ls2d{letter-spacing:14.302200px;}
.ls22{letter-spacing:14.490008px;}
.ls19{letter-spacing:14.892538px;}
.ls9{letter-spacing:14.898538px;}
.ls7{letter-spacing:14.944200px;}
.ls1b{letter-spacing:17.844538px;}
.ls1c{letter-spacing:23.190538px;}
.ls3{letter-spacing:23.236950px;}
.ls1a{letter-spacing:23.242200px;}
.lsf{letter-spacing:28.215206px;}
.ls2c{letter-spacing:28.903840px;}
.ls17{letter-spacing:30.996551px;}
.ls35{letter-spacing:31.079549px;}
.ls41{letter-spacing:31.245974px;}
.ls3b{letter-spacing:32.592459px;}
.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;}
}
.wsa5{word-spacing:-32.685537px;}
.wsb5{word-spacing:-31.335206px;}
.ws92{word-spacing:-31.157852px;}
.ws4a{word-spacing:-31.074645px;}
.ws7f{word-spacing:-28.986384px;}
.ws3d{word-spacing:-28.286292px;}
.wsbc{word-spacing:-21.519300px;}
.ws5{word-spacing:-14.943900px;}
.ws69{word-spacing:-14.531389px;}
.ws4{word-spacing:-11.058450px;}
.wsa2{word-spacing:-5.447590px;}
.wsb3{word-spacing:-5.227236px;}
.wsb1{word-spacing:-5.222534px;}
.wsaf{word-spacing:-5.216751px;}
.ws8d{word-spacing:-5.196072px;}
.ws8f{word-spacing:-5.192975px;}
.ws45{word-spacing:-5.181603px;}
.ws47{word-spacing:-5.179107px;}
.ws7d{word-spacing:-4.837327px;}
.ws7b{word-spacing:-4.831064px;}
.ws79{word-spacing:-4.827629px;}
.ws38{word-spacing:-4.716424px;}
.ws3a{word-spacing:-4.714382px;}
.ws4d{word-spacing:-3.227882px;}
.ws2f{word-spacing:-3.168107px;}
.ws83{word-spacing:-3.048556px;}
.ws97{word-spacing:-2.929004px;}
.ws5e{word-spacing:-2.869229px;}
.ws59{word-spacing:-2.809453px;}
.wsba{word-spacing:-2.749678px;}
.ws2e{word-spacing:-2.510575px;}
.ws67{word-spacing:-2.424078px;}
.ws65{word-spacing:-2.421898px;}
.ws63{word-spacing:-2.419216px;}
.ws74{word-spacing:-2.391024px;}
.wsc6{word-spacing:-2.385040px;}
.ws8b{word-spacing:-2.271473px;}
.wsc8{word-spacing:-2.175826px;}
.ws82{word-spacing:-2.092146px;}
.wsaa{word-spacing:-1.853044px;}
.wsb8{word-spacing:-1.793268px;}
.wsbe{word-spacing:-1.733492px;}
.ws5a{word-spacing:-1.673717px;}
.wsca{word-spacing:-1.590026px;}
.ws21{word-spacing:-1.434614px;}
.ws9a{word-spacing:-1.374839px;}
.ws1f{word-spacing:-1.255288px;}
.ws41{word-spacing:-1.195512px;}
.ws1b{word-spacing:-1.135736px;}
.ws11{word-spacing:-1.075961px;}
.ws35{word-spacing:-0.836858px;}
.ws20{word-spacing:-0.777083px;}
.ws33{word-spacing:-0.657532px;}
.wscf{word-spacing:-0.627642px;}
.wsbb{word-spacing:-0.597756px;}
.wsbd{word-spacing:-0.537980px;}
.ws95{word-spacing:-0.418429px;}
.ws75{word-spacing:-0.358654px;}
.ws24{word-spacing:-0.059776px;}
.wsa3{word-spacing:-0.015682px;}
.wsb2{word-spacing:-0.004550px;}
.ws90{word-spacing:-0.004524px;}
.ws48{word-spacing:-0.004512px;}
.ws7c{word-spacing:-0.004209px;}
.ws3b{word-spacing:-0.004107px;}
.ws66{word-spacing:-0.002110px;}
.ws31{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws62{word-spacing:0.006405px;}
.ws37{word-spacing:0.012468px;}
.ws78{word-spacing:0.012777px;}
.ws44{word-spacing:0.013697px;}
.ws8c{word-spacing:0.013734px;}
.wsae{word-spacing:0.013812px;}
.ws9f{word-spacing:0.014407px;}
.ws9e{word-spacing:0.059776px;}
.ws17{word-spacing:0.119551px;}
.ws5d{word-spacing:0.179327px;}
.ws51{word-spacing:0.239102px;}
.ws9d{word-spacing:0.298878px;}
.wsa8{word-spacing:0.358654px;}
.wsce{word-spacing:0.585799px;}
.ws29{word-spacing:0.657532px;}
.wsc1{word-spacing:0.711328px;}
.ws55{word-spacing:0.777083px;}
.ws15{word-spacing:0.896634px;}
.ws2b{word-spacing:1.016185px;}
.ws42{word-spacing:1.135736px;}
.ws1a{word-spacing:1.147694px;}
.ws12{word-spacing:1.195512px;}
.ws32{word-spacing:1.255288px;}
.ws9b{word-spacing:1.315063px;}
.ws76{word-spacing:1.374839px;}
.wsc3{word-spacing:1.422655px;}
.ws6{word-spacing:1.434614px;}
.ws4e{word-spacing:1.554166px;}
.ws23{word-spacing:1.673717px;}
.wsc0{word-spacing:1.757398px;}
.ws98{word-spacing:1.793268px;}
.ws28{word-spacing:1.912819px;}
.ws43{word-spacing:1.972595px;}
.wsc9{word-spacing:2.008454px;}
.wsb{word-spacing:2.092146px;}
.ws5b{word-spacing:2.151922px;}
.ws5c{word-spacing:2.211697px;}
.ws34{word-spacing:2.391024px;}
.wsc2{word-spacing:2.426882px;}
.ws88{word-spacing:2.450800px;}
.ws77{word-spacing:2.510575px;}
.wsc{word-spacing:2.570351px;}
.ws1d{word-spacing:2.630126px;}
.wscb{word-spacing:2.636096px;}
.ws57{word-spacing:2.689902px;}
.ws94{word-spacing:2.809453px;}
.ws52{word-spacing:2.869229px;}
.ws9c{word-spacing:2.929004px;}
.ws3{word-spacing:3.347434px;}
.wsc7{word-spacing:3.514795px;}
.ws53{word-spacing:3.526760px;}
.ws85{word-spacing:3.586536px;}
.ws87{word-spacing:3.646312px;}
.wscd{word-spacing:3.682166px;}
.wsc4{word-spacing:3.724009px;}
.wsa9{word-spacing:3.765863px;}
.ws61{word-spacing:3.825638px;}
.ws22{word-spacing:3.945190px;}
.ws71{word-spacing:4.004965px;}
.ws6f{word-spacing:4.064741px;}
.ws2d{word-spacing:4.184292px;}
.wsc5{word-spacing:4.393494px;}
.ws50{word-spacing:4.602721px;}
.ws56{word-spacing:4.662497px;}
.ws1c{word-spacing:4.722272px;}
.ws68{word-spacing:4.805058px;}
.ws64{word-spacing:4.813790px;}
.ws26{word-spacing:4.961375px;}
.wsac{word-spacing:5.140702px;}
.ws14{word-spacing:5.320028px;}
.ws8a{word-spacing:5.439580px;}
.wsa0{word-spacing:5.451916px;}
.ws10{word-spacing:5.499355px;}
.ws27{word-spacing:5.559131px;}
.ws89{word-spacing:5.738458px;}
.ws1e{word-spacing:5.917784px;}
.wscc{word-spacing:5.983520px;}
.ws58{word-spacing:6.037336px;}
.ws84{word-spacing:6.156887px;}
.ws73{word-spacing:6.455765px;}
.ws13{word-spacing:6.635092px;}
.ws8{word-spacing:6.814418px;}
.ws4f{word-spacing:6.993745px;}
.wsad{word-spacing:7.053521px;}
.wsbf{word-spacing:7.531726px;}
.ws2{word-spacing:7.591501px;}
.ws2c{word-spacing:7.890379px;}
.ws18{word-spacing:8.129482px;}
.ws30{word-spacing:8.189257px;}
.ws5f{word-spacing:8.280059px;}
.ws60{word-spacing:8.308808px;}
.ws7{word-spacing:8.607686px;}
.ws16{word-spacing:8.667462px;}
.ws6e{word-spacing:8.727238px;}
.ws70{word-spacing:8.787013px;}
.ws9{word-spacing:8.846789px;}
.ws3c{word-spacing:9.353357px;}
.ws39{word-spacing:9.370354px;}
.ws7e{word-spacing:9.584855px;}
.ws7a{word-spacing:9.602272px;}
.wsd{word-spacing:9.623872px;}
.ws54{word-spacing:9.743423px;}
.ws49{word-spacing:10.275375px;}
.ws46{word-spacing:10.294047px;}
.ws91{word-spacing:10.302889px;}
.ws8e{word-spacing:10.321611px;}
.wsb4{word-spacing:10.361534px;}
.wsb0{word-spacing:10.369879px;}
.wsa4{word-spacing:10.808045px;}
.wsa1{word-spacing:10.827685px;}
.ws19{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws3f{word-spacing:16.772534px;}
.wsab{word-spacing:18.349966px;}
.wsb9{word-spacing:18.391966px;}
.ws25{word-spacing:20.185966px;}
.ws2a{word-spacing:20.851966px;}
.ws99{word-spacing:20.965966px;}
.ws36{word-spacing:21.439966px;}
.wsf{word-spacing:21.519300px;}
.ws72{word-spacing:24.199966px;}
.ws86{word-spacing:25.147966px;}
.wsa{word-spacing:29.053966px;}
.wse{word-spacing:37.003661px;}
.ws6a{word-spacing:46.016064px;}
.ws6b{word-spacing:69.612123px;}
.ws3e{word-spacing:89.573258px;}
.ws80{word-spacing:91.790216px;}
.ws4b{word-spacing:98.403041px;}
.ws93{word-spacing:98.666532px;}
.wsb6{word-spacing:99.228154px;}
.wsa6{word-spacing:103.504201px;}
.ws6c{word-spacing:104.198357px;}
.ws96{word-spacing:170.758412px;}
.wsa7{word-spacing:225.349956px;}
.ws81{word-spacing:416.666265px;}
.ws4c{word-spacing:679.000761px;}
.ws40{word-spacing:717.264023px;}
.ws6d{word-spacing:847.142903px;}
.wsb7{word-spacing:859.398761px;}
._44{margin-left:-2170.369543px;}
._45{margin-left:-2169.341393px;}
._c{margin-left:-2153.847976px;}
._9{margin-left:-2138.808834px;}
._67{margin-left:-2119.285309px;}
._6a{margin-left:-1924.465920px;}
._22{margin-left:-1785.833512px;}
._2c{margin-left:-1467.050237px;}
._5b{margin-left:-1301.315999px;}
._13{margin-left:-969.087054px;}
._4f{margin-left:-814.790450px;}
._69{margin-left:-630.871805px;}
._65{margin-left:-626.365439px;}
._68{margin-left:-507.578903px;}
._66{margin-left:-231.918575px;}
._20{margin-left:-9.094790px;}
._21{margin-left:-7.377236px;}
._17{margin-left:-5.559131px;}
._6{margin-left:-4.483170px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._2e{width:1.860022px;}
._18{width:3.696085px;}
._19{width:5.657273px;}
._2d{width:10.640057px;}
._f{width:12.791980px;}
._51{width:14.083134px;}
._d{width:15.679416px;}
._16{width:17.633802px;}
._b{width:19.068415px;}
._2b{width:20.742133px;}
._8{width:21.758318px;}
._2{width:22.893180px;}
._11{width:24.089567px;}
._3{width:25.703508px;}
._29{width:26.994666px;}
._61{width:28.572737px;}
._14{width:29.887800px;}
._15{width:31.776713px;}
._10{width:32.996130px;}
._50{width:34.777459px;}
._7{width:35.865600px;}
._a{width:38.375935px;}
._28{width:39.691873px;}
._12{width:43.038600px;}
._4{width:44.054617px;}
._5{width:45.422986px;}
._2a{width:47.641153px;}
._3b{width:60.311399px;}
._36{width:71.542870px;}
._3f{width:72.688578px;}
._2f{width:78.324184px;}
._3d{width:83.150219px;}
._33{width:84.279310px;}
._38{width:90.385237px;}
._32{width:95.761851px;}
._35{width:101.927531px;}
._34{width:103.061924px;}
._39{width:107.871341px;}
._42{width:110.535429px;}
._31{width:114.353147px;}
._43{width:126.713708px;}
._1f{width:139.074270px;}
._1a{width:152.463115px;}
._4a{width:156.139988px;}
._49{width:161.454159px;}
._3c{width:164.398443px;}
._25{width:167.388752px;}
._57{width:168.575265px;}
._1c{width:175.940737px;}
._40{width:177.086445px;}
._52{width:178.430633px;}
._3e{width:179.439709px;}
._1d{width:186.406665px;}
._37{width:188.617424px;}
._46{width:189.667572px;}
._27{width:192.248468px;}
._56{width:193.801841px;}
._41{width:200.613421px;}
._5d{width:203.304041px;}
._23{width:206.749968px;}
._4d{width:209.764799px;}
._3a{width:213.212284px;}
._5e{width:214.601075px;}
._59{width:216.268268px;}
._54{width:219.766717px;}
._4c{width:225.900552px;}
._55{width:234.203189px;}
._63{width:240.282540px;}
._48{width:250.055872px;}
._62{width:254.859679px;}
._5a{width:260.168066px;}
._26{width:269.935079px;}
._4e{width:272.761873px;}
._4b{width:274.211192px;}
._24{width:276.771501px;}
._64{width:292.896019px;}
._47{width:298.366512px;}
._53{width:317.810092px;}
._60{width:321.298831px;}
._5f{width:327.400131px;}
._58{width:335.154630px;}
._5c{width:348.536778px;}
._1b{width:390.633694px;}
._1e{width:429.951640px;}
._30{width:645.676004px;}
._e{width:1105.899188px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fse{font-size:38.750467px;}
.fs19{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fsd{font-size:48.437962px;}
.fs10{font-size:58.620883px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fsf{font-size:73.275919px;}
.fs8{font-size:75.430302px;}
.fs12{font-size:77.297218px;}
.fsa{font-size:78.690710px;}
.fsc{font-size:82.865927px;}
.fs14{font-size:83.087814px;}
.fs18{font-size:83.560760px;}
.fs0{font-size:86.077200px;}
.fs16{font-size:87.161651px;}
.fs7{font-size:94.287640px;}
.fs11{font-size:96.621280px;}
.fs9{font-size:98.363141px;}
.fsb{font-size:103.582148px;}
.fs13{font-size:103.859507px;}
.fs17{font-size:104.450688px;}
.fs15{font-size:108.951791px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y21{bottom:178.879500px;}
.y87{bottom:183.253500px;}
.ye6{bottom:183.922500px;}
.y46{bottom:184.333500px;}
.yb1{bottom:184.869000px;}
.y20{bottom:197.415000px;}
.y86{bottom:201.186000px;}
.ye5{bottom:201.855000px;}
.y45{bottom:202.267500px;}
.yb0{bottom:202.803000px;}
.y1f{bottom:207.789000px;}
.yfe{bottom:213.351000px;}
.y5f{bottom:218.676000px;}
.y85{bottom:219.118500px;}
.ye4{bottom:219.787500px;}
.y44{bottom:220.200000px;}
.yaf{bottom:220.735500px;}
.y1e{bottom:226.326000px;}
.yc6{bottom:234.147000px;}
.y119{bottom:236.557500px;}
.y5e{bottom:236.608500px;}
.y84{bottom:237.052500px;}
.y43{bottom:238.132500px;}
.yae{bottom:238.668000px;}
.ye3{bottom:247.807500px;}
.y118{bottom:254.490000px;}
.y83{bottom:254.985000px;}
.y42{bottom:256.065000px;}
.yad{bottom:256.600500px;}
.yfd{bottom:266.140790px;}
.y1d{bottom:271.774500px;}
.y5d{bottom:271.827000px;}
.y82{bottom:272.917500px;}
.y41{bottom:273.997500px;}
.yac{bottom:274.533000px;}
.yc5{bottom:285.878217px;}
.ye2{bottom:287.596500px;}
.y1c{bottom:289.707000px;}
.y117{bottom:289.708500px;}
.y81{bottom:290.850000px;}
.y12a{bottom:290.851500px;}
.y40{bottom:291.930000px;}
.yab{bottom:292.467000px;}
.yfc{bottom:298.828733px;}
.ye1{bottom:305.529000px;}
.y1b{bottom:307.641000px;}
.y80{bottom:308.782500px;}
.y129{bottom:308.784000px;}
.yaa{bottom:310.399500px;}
.yc4{bottom:315.389331px;}
.y3f{bottom:319.950000px;}
.y5c{bottom:324.079907px;}
.y1a{bottom:325.573500px;}
.y7f{bottom:326.715000px;}
.y128{bottom:326.716500px;}
.ya9{bottom:328.332000px;}
.yfb{bottom:331.513942px;}
.ye0{bottom:340.747500px;}
.y116{bottom:342.048609px;}
.y19{bottom:343.506000px;}
.y7e{bottom:344.649000px;}
.yc3{bottom:345.880364px;}
.ya8{bottom:346.264500px;}
.y5b{bottom:355.156839px;}
.y3e{bottom:359.739000px;}
.y18{bottom:361.438500px;}
.y7d{bottom:362.581500px;}
.ya7{bottom:364.197000px;}
.yfa{bottom:364.199151px;}
.y115{bottom:373.383501px;}
.y3d{bottom:377.671500px;}
.y127{bottom:378.049500px;}
.y17{bottom:379.371000px;}
.y7c{bottom:380.514000px;}
.ya6{bottom:382.129500px;}
.y5a{bottom:387.265683px;}
.yc2{bottom:387.705000px;}
.ydf{bottom:393.026613px;}
.y3c{bottom:395.604000px;}
.yf9{bottom:396.884360px;}
.y16{bottom:397.303500px;}
.y7b{bottom:398.446500px;}
.ya5{bottom:400.063500px;}
.y148{bottom:404.982000px;}
.yc1{bottom:405.637500px;}
.y114{bottom:405.764200px;}
.y3b{bottom:413.536500px;}
.y15{bottom:415.237500px;}
.y7a{bottom:416.379000px;}
.y59{bottom:418.340016px;}
.y147{bottom:418.431000px;}
.yde{bottom:424.186758px;}
.ya4{bottom:428.082000px;}
.y126{bottom:428.484000px;}
.yf8{bottom:429.569570px;}
.y3a{bottom:431.470500px;}
.y79{bottom:434.313000px;}
.y113{bottom:437.099092px;}
.yc0{bottom:440.856000px;}
.y14{bottom:443.257500px;}
.y146{bottom:443.835000px;}
.y125{bottom:446.418000px;}
.y39{bottom:449.403000px;}
.y58{bottom:450.451459px;}
.y78{bottom:452.245500px;}
.ydd{bottom:455.344298px;}
.y145{bottom:457.285500px;}
.yf7{bottom:462.254779px;}
.y38{bottom:467.335500px;}
.y112{bottom:469.479791px;}
.y77{bottom:470.178000px;}
.y144{bottom:470.734500px;}
.ya3{bottom:475.503000px;}
.y13{bottom:479.646000px;}
.y124{bottom:479.817000px;}
.y37{bottom:485.268000px;}
.ydc{bottom:486.501837px;}
.y76{bottom:488.110500px;}
.ybf{bottom:492.411799px;}
.y57{bottom:494.866500px;}
.yf6{bottom:496.030862px;}
.y143{bottom:496.140000px;}
.y36{bottom:503.200500px;}
.y75{bottom:506.043000px;}
.y142{bottom:509.589000px;}
.y56{bottom:512.799000px;}
.y111{bottom:514.075500px;}
.ydb{bottom:517.659377px;}
.y35{bottom:521.133000px;}
.ybe{bottom:521.397892px;}
.y74{bottom:523.975500px;}
.ya2{bottom:524.726267px;}
.yf5{bottom:528.716071px;}
.y123{bottom:530.253000px;}
.y55{bottom:530.731500px;}
.y110{bottom:532.008000px;}
.y12{bottom:533.562000px;}
.y141{bottom:534.994500px;}
.y34{bottom:539.067000px;}
.y73{bottom:541.909500px;}
.ya1{bottom:546.708822px;}
.y122{bottom:548.185500px;}
.y140{bottom:548.443500px;}
.y54{bottom:548.664000px;}
.yda{bottom:548.816916px;}
.y10f{bottom:549.942000px;}
.ybd{bottom:550.386409px;}
.y11{bottom:551.494500px;}
.y33{bottom:556.999500px;}
.y72{bottom:559.842000px;}
.y13f{bottom:561.892500px;}
.yf4{bottom:562.492154px;}
.y53{bottom:566.596500px;}
.y10e{bottom:567.874500px;}
.ya0{bottom:568.691378px;}
.y32{bottom:574.932000px;}
.y71{bottom:577.774500px;}
.ybc{bottom:579.372502px;}
.y10{bottom:579.903000px;}
.yd9{bottom:581.014343px;}
.y121{bottom:581.586000px;}
.y52{bottom:584.529000px;}
.y10d{bottom:585.807000px;}
.y13e{bottom:587.298000px;}
.y9f{bottom:590.673933px;}
.y31{bottom:592.864500px;}
.y70{bottom:595.707000px;}
.yf{bottom:597.835500px;}
.y13d{bottom:600.747000px;}
.y10c{bottom:603.739500px;}
.yf3{bottom:607.287000px;}
.ybb{bottom:608.358595px;}
.yd8{bottom:612.171883px;}
.y9e{bottom:613.390159px;}
.y6f{bottom:613.639500px;}
.y13c{bottom:614.197500px;}
.ye{bottom:615.768000px;}
.y30{bottom:620.884500px;}
.y10b{bottom:621.672000px;}
.yf2{bottom:625.219500px;}
.y6e{bottom:631.572000px;}
.y51{bottom:631.950000px;}
.y120{bottom:632.020500px;}
.yd{bottom:633.700500px;}
.yba{bottom:637.344688px;}
.y13b{bottom:639.601500px;}
.y10a{bottom:639.604500px;}
.yf1{bottom:643.152000px;}
.yd7{bottom:644.369310px;}
.y2f{bottom:648.904500px;}
.y6d{bottom:649.506000px;}
.y9d{bottom:650.793000px;}
.yc{bottom:651.634500px;}
.y13a{bottom:653.050500px;}
.y109{bottom:657.538500px;}
.yf0{bottom:661.086000px;}
.y11f{bottom:665.421000px;}
.yb9{bottom:666.330781px;}
.y6c{bottom:667.438500px;}
.yb{bottom:669.567000px;}
.y108{bottom:675.471000px;}
.y139{bottom:678.456000px;}
.yef{bottom:679.018500px;}
.y50{bottom:683.682185px;}
.y2e{bottom:685.293000px;}
.y6b{bottom:685.371000px;}
.ya{bottom:687.499500px;}
.yd6{bottom:688.842000px;}
.y138{bottom:691.905000px;}
.y107{bottom:693.403500px;}
.yb8{bottom:695.316874px;}
.yee{bottom:696.951000px;}
.y9c{bottom:697.532092px;}
.y6a{bottom:703.303500px;}
.y9{bottom:705.432000px;}
.yd5{bottom:706.774500px;}
.y106{bottom:711.336000px;}
.y9b{bottom:712.063335px;}
.y4f{bottom:713.190831px;}
.yed{bottom:714.883500px;}
.y11e{bottom:715.857000px;}
.y137{bottom:717.310500px;}
.y69{bottom:721.236000px;}
.y8{bottom:723.364500px;}
.yb7{bottom:724.305392px;}
.yd4{bottom:724.707000px;}
.y9a{bottom:726.595793px;}
.y105{bottom:729.268500px;}
.y136{bottom:730.759500px;}
.yec{bottom:732.816000px;}
.y11d{bottom:733.789500px;}
.y2d{bottom:735.729000px;}
.y68{bottom:739.168500px;}
.y99{bottom:741.127036px;}
.y7{bottom:741.297000px;}
.yd3{bottom:742.639500px;}
.y4e{bottom:743.684333px;}
.y104{bottom:747.202500px;}
.yeb{bottom:750.748500px;}
.y11c{bottom:751.722000px;}
.yb6{bottom:753.291485px;}
.y2c{bottom:753.661500px;}
.y98{bottom:755.658279px;}
.y135{bottom:756.165000px;}
.y67{bottom:757.102500px;}
.yd2{bottom:760.573500px;}
.y6{bottom:767.758500px;}
.yea{bottom:768.682500px;}
.y134{bottom:769.614000px;}
.y11b{bottom:769.654500px;}
.y97{bottom:770.189521px;}
.y2b{bottom:771.594000px;}
.y66{bottom:775.035000px;}
.y103{bottom:775.221000px;}
.yd1{bottom:778.506000px;}
.yb5{bottom:782.277578px;}
.y96{bottom:784.720764px;}
.y4d{bottom:784.860000px;}
.ye9{bottom:786.615000px;}
.y11a{bottom:787.587000px;}
.y2a{bottom:789.526500px;}
.y65{bottom:792.967500px;}
.y133{bottom:795.019500px;}
.yd0{bottom:796.438500px;}
.y95{bottom:799.252007px;}
.ye8{bottom:804.547500px;}
.y29{bottom:807.459000px;}
.y132{bottom:808.468500px;}
.yb4{bottom:812.231086px;}
.y94{bottom:813.784465px;}
.ycf{bottom:814.371000px;}
.y64{bottom:820.987500px;}
.y131{bottom:821.917500px;}
.ye7{bottom:822.480000px;}
.y28{bottom:825.393000px;}
.y93{bottom:828.315708px;}
.y102{bottom:832.296000px;}
.yce{bottom:832.303500px;}
.y4c{bottom:836.185059px;}
.yb3{bottom:841.217179px;}
.y92{bottom:842.846950px;}
.y27{bottom:843.325500px;}
.y130{bottom:847.323000px;}
.ycd{bottom:850.236000px;}
.y91{bottom:857.378193px;}
.y12f{bottom:860.772000px;}
.y4b{bottom:864.471067px;}
.y5{bottom:867.796500px;}
.ycc{bottom:868.170000px;}
.y63{bottom:868.407000px;}
.yb2{bottom:871.170688px;}
.y26{bottom:871.345500px;}
.y90{bottom:871.909436px;}
.y101{bottom:884.028185px;}
.ycb{bottom:886.102500px;}
.y12e{bottom:886.177500px;}
.y8f{bottom:886.440679px;}
.y4{bottom:890.959500px;}
.y4a{bottom:892.757075px;}
.y12d{bottom:899.626500px;}
.y8e{bottom:900.973137px;}
.yca{bottom:904.035000px;}
.y12c{bottom:913.075500px;}
.y100{bottom:913.536831px;}
.y3{bottom:914.122500px;}
.y8d{bottom:915.504380px;}
.y62{bottom:920.138217px;}
.yc9{bottom:921.967500px;}
.y49{bottom:921.987133px;}
.y8c{bottom:930.035622px;}
.y25{bottom:932.055000px;}
.yc8{bottom:939.900000px;}
.y12b{bottom:943.486500px;}
.yff{bottom:944.027864px;}
.y8b{bottom:944.566865px;}
.y61{bottom:949.646863px;}
.y24{bottom:949.987500px;}
.y48{bottom:950.273141px;}
.yc7{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y8a{bottom:959.583090px;}
.y23{bottom:967.920000px;}
.y89{bottom:974.114333px;}
.y47{bottom:979.503199px;}
.y60{bottom:980.140364px;}
.y1{bottom:985.852500px;}
.y88{bottom:989.130558px;}
.hc{height:24.675533px;}
.ha{height:25.787366px;}
.h18{height:28.787846px;}
.h19{height:30.963672px;}
.h3{height:32.804932px;}
.hb{height:32.900573px;}
.h12{height:33.325318px;}
.h2{height:41.125613px;}
.h4{height:41.484266px;}
.he{height:41.961802px;}
.h9{height:49.781453px;}
.h13{height:50.413832px;}
.h7{height:52.040387px;}
.h11{height:52.046387px;}
.h6{height:52.128854px;}
.h5{height:52.134854px;}
.h1{height:59.221114px;}
.h8{height:59.737577px;}
.hd{height:64.869897px;}
.h14{height:66.475441px;}
.hf{height:67.673841px;}
.h10{height:71.264518px;}
.h15{height:71.455341px;}
.h17{height:71.862073px;}
.h16{height:74.958832px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x18{left:203.679798px;}
.x1a{left:205.232389px;}
.xe{left:206.545806px;}
.x24{left:208.122000px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x1{left:220.488000px;}
.x8{left:222.172500px;}
.x11{left:223.312479px;}
.x1f{left:226.190481px;}
.xc{left:234.008432px;}
.x10{left:237.730500px;}
.x1e{left:240.049500px;}
.x14{left:242.709000px;}
.x21{left:246.033000px;}
.x1b{left:251.221882px;}
.xf{left:254.635500px;}
.x23{left:257.617500px;}
.x13{left:259.614000px;}
.xb{left:262.729791px;}
.x2{left:266.614500px;}
.x19{left:282.438873px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x17{left:326.531093px;}
.x16{left:349.478423px;}
.x15{left:364.233317px;}
.x3{left:405.975000px;}
.x22{left:418.431464px;}
.x12{left:443.941541px;}
.x20{left:450.478546px;}
.xa{left:454.699500px;}
.x1d{left:457.574646px;}
.x1c{left:463.801112px;}
.xd{left:486.249590px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000518pt;}
.ls1{letter-spacing:0.004533pt;}
.ls21{letter-spacing:2.126061pt;}
.ls1e{letter-spacing:2.135581pt;}
.ls1d{letter-spacing:2.152002pt;}
.ls1f{letter-spacing:2.152798pt;}
.ls20{letter-spacing:2.153749pt;}
.ls2{letter-spacing:2.623067pt;}
.ls0{letter-spacing:2.628400pt;}
.ls26{letter-spacing:2.655200pt;}
.ls5{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.658321pt;}
.ls24{letter-spacing:3.230662pt;}
.ls23{letter-spacing:3.255876pt;}
.lse{letter-spacing:4.146928pt;}
.lsb{letter-spacing:4.157048pt;}
.lsd{letter-spacing:4.184000pt;}
.lsa{letter-spacing:4.189012pt;}
.lsc{letter-spacing:4.190562pt;}
.ls2b{letter-spacing:4.240945pt;}
.ls28{letter-spacing:4.259936pt;}
.ls27{letter-spacing:4.292691pt;}
.ls29{letter-spacing:4.294279pt;}
.ls2a{letter-spacing:4.296176pt;}
.ls11{letter-spacing:4.336732pt;}
.ls10{letter-spacing:4.370579pt;}
.ls16{letter-spacing:4.555716pt;}
.ls13{letter-spacing:4.566833pt;}
.ls34{letter-spacing:4.567915pt;}
.ls42{letter-spacing:4.572714pt;}
.ls31{letter-spacing:4.579062pt;}
.ls40{letter-spacing:4.584597pt;}
.ls15{letter-spacing:4.596442pt;}
.ls12{letter-spacing:4.601949pt;}
.ls14{letter-spacing:4.603651pt;}
.ls3d{letter-spacing:4.605126pt;}
.ls33{letter-spacing:4.608750pt;}
.ls30{letter-spacing:4.614271pt;}
.ls32{letter-spacing:4.615978pt;}
.ls3c{letter-spacing:4.640536pt;}
.ls3e{letter-spacing:4.642253pt;}
.ls3f{letter-spacing:4.644303pt;}
.ls3a{letter-spacing:4.782161pt;}
.ls37{letter-spacing:4.803575pt;}
.ls36{letter-spacing:4.840511pt;}
.ls38{letter-spacing:4.842302pt;}
.ls39{letter-spacing:4.844440pt;}
.ls2e{letter-spacing:11.232479pt;}
.ls8{letter-spacing:11.760479pt;}
.ls18{letter-spacing:11.765812pt;}
.ls2f{letter-spacing:12.667145pt;}
.ls2d{letter-spacing:12.713067pt;}
.ls22{letter-spacing:12.880007pt;}
.ls19{letter-spacing:13.237812pt;}
.ls9{letter-spacing:13.243145pt;}
.ls7{letter-spacing:13.283733pt;}
.ls1b{letter-spacing:15.861812pt;}
.ls1c{letter-spacing:20.613812pt;}
.ls3{letter-spacing:20.655067pt;}
.ls1a{letter-spacing:20.659733pt;}
.lsf{letter-spacing:25.080183pt;}
.ls2c{letter-spacing:25.692302pt;}
.ls17{letter-spacing:27.552490pt;}
.ls35{letter-spacing:27.626266pt;}
.ls41{letter-spacing:27.774199pt;}
.ls3b{letter-spacing:28.971075pt;}
.wsa5{word-spacing:-29.053811pt;}
.wsb5{word-spacing:-27.853517pt;}
.ws92{word-spacing:-27.695869pt;}
.ws4a{word-spacing:-27.621906pt;}
.ws7f{word-spacing:-25.765675pt;}
.ws3d{word-spacing:-25.143371pt;}
.wsbc{word-spacing:-19.128267pt;}
.ws5{word-spacing:-13.283467pt;}
.ws69{word-spacing:-12.916790pt;}
.ws4{word-spacing:-9.829733pt;}
.wsa2{word-spacing:-4.842302pt;}
.wsb3{word-spacing:-4.646432pt;}
.wsb1{word-spacing:-4.642253pt;}
.wsaf{word-spacing:-4.637112pt;}
.ws8d{word-spacing:-4.618730pt;}
.ws8f{word-spacing:-4.615978pt;}
.ws45{word-spacing:-4.605869pt;}
.ws47{word-spacing:-4.603651pt;}
.ws7d{word-spacing:-4.299846pt;}
.ws7b{word-spacing:-4.294279pt;}
.ws79{word-spacing:-4.291226pt;}
.ws38{word-spacing:-4.192377pt;}
.ws3a{word-spacing:-4.190562pt;}
.ws4d{word-spacing:-2.869229pt;}
.ws2f{word-spacing:-2.816095pt;}
.ws83{word-spacing:-2.709827pt;}
.ws97{word-spacing:-2.603559pt;}
.ws5e{word-spacing:-2.550426pt;}
.ws59{word-spacing:-2.497292pt;}
.wsba{word-spacing:-2.444158pt;}
.ws2e{word-spacing:-2.231622pt;}
.ws67{word-spacing:-2.154736pt;}
.ws65{word-spacing:-2.152798pt;}
.ws63{word-spacing:-2.150414pt;}
.ws74{word-spacing:-2.125355pt;}
.wsc6{word-spacing:-2.120035pt;}
.ws8b{word-spacing:-2.019087pt;}
.wsc8{word-spacing:-1.934067pt;}
.ws82{word-spacing:-1.859685pt;}
.wsaa{word-spacing:-1.647150pt;}
.wsb8{word-spacing:-1.594016pt;}
.wsbe{word-spacing:-1.540882pt;}
.ws5a{word-spacing:-1.487748pt;}
.wsca{word-spacing:-1.413357pt;}
.ws21{word-spacing:-1.275213pt;}
.ws9a{word-spacing:-1.222079pt;}
.ws1f{word-spacing:-1.115811pt;}
.ws41{word-spacing:-1.062677pt;}
.ws1b{word-spacing:-1.009543pt;}
.ws11{word-spacing:-0.956410pt;}
.ws35{word-spacing:-0.743874pt;}
.ws20{word-spacing:-0.690740pt;}
.ws33{word-spacing:-0.584473pt;}
.wscf{word-spacing:-0.557904pt;}
.wsbb{word-spacing:-0.531339pt;}
.wsbd{word-spacing:-0.478205pt;}
.ws95{word-spacing:-0.371937pt;}
.ws75{word-spacing:-0.318803pt;}
.ws24{word-spacing:-0.053134pt;}
.wsa3{word-spacing:-0.013940pt;}
.wsb2{word-spacing:-0.004045pt;}
.ws90{word-spacing:-0.004022pt;}
.ws48{word-spacing:-0.004011pt;}
.ws7c{word-spacing:-0.003741pt;}
.ws3b{word-spacing:-0.003651pt;}
.ws66{word-spacing:-0.001876pt;}
.ws31{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws62{word-spacing:0.005693pt;}
.ws37{word-spacing:0.011083pt;}
.ws78{word-spacing:0.011357pt;}
.ws44{word-spacing:0.012175pt;}
.ws8c{word-spacing:0.012208pt;}
.wsae{word-spacing:0.012277pt;}
.ws9f{word-spacing:0.012806pt;}
.ws9e{word-spacing:0.053134pt;}
.ws17{word-spacing:0.106268pt;}
.ws5d{word-spacing:0.159402pt;}
.ws51{word-spacing:0.212535pt;}
.ws9d{word-spacing:0.265669pt;}
.wsa8{word-spacing:0.318803pt;}
.wsce{word-spacing:0.520710pt;}
.ws29{word-spacing:0.584473pt;}
.wsc1{word-spacing:0.632291pt;}
.ws55{word-spacing:0.690740pt;}
.ws15{word-spacing:0.797008pt;}
.ws2b{word-spacing:0.903276pt;}
.ws42{word-spacing:1.009543pt;}
.ws1a{word-spacing:1.020173pt;}
.ws12{word-spacing:1.062677pt;}
.ws32{word-spacing:1.115811pt;}
.ws9b{word-spacing:1.168945pt;}
.ws76{word-spacing:1.222079pt;}
.wsc3{word-spacing:1.264582pt;}
.ws6{word-spacing:1.275213pt;}
.ws4e{word-spacing:1.381481pt;}
.ws23{word-spacing:1.487748pt;}
.wsc0{word-spacing:1.562131pt;}
.ws98{word-spacing:1.594016pt;}
.ws28{word-spacing:1.700284pt;}
.ws43{word-spacing:1.753418pt;}
.wsc9{word-spacing:1.785293pt;}
.wsb{word-spacing:1.859685pt;}
.ws5b{word-spacing:1.912819pt;}
.ws5c{word-spacing:1.965953pt;}
.ws34{word-spacing:2.125355pt;}
.wsc2{word-spacing:2.157229pt;}
.ws88{word-spacing:2.178489pt;}
.ws77{word-spacing:2.231622pt;}
.wsc{word-spacing:2.284756pt;}
.ws1d{word-spacing:2.337890pt;}
.wscb{word-spacing:2.343197pt;}
.ws57{word-spacing:2.391024pt;}
.ws94{word-spacing:2.497292pt;}
.ws52{word-spacing:2.550426pt;}
.ws9c{word-spacing:2.603559pt;}
.ws3{word-spacing:2.975497pt;}
.wsc7{word-spacing:3.124262pt;}
.ws53{word-spacing:3.134898pt;}
.ws85{word-spacing:3.188032pt;}
.ws87{word-spacing:3.241166pt;}
.wscd{word-spacing:3.273037pt;}
.wsc4{word-spacing:3.310230pt;}
.wsa9{word-spacing:3.347434pt;}
.ws61{word-spacing:3.400567pt;}
.ws22{word-spacing:3.506835pt;}
.ws71{word-spacing:3.559969pt;}
.ws6f{word-spacing:3.613103pt;}
.ws2d{word-spacing:3.719371pt;}
.wsc5{word-spacing:3.905328pt;}
.ws50{word-spacing:4.091308pt;}
.ws56{word-spacing:4.144442pt;}
.ws1c{word-spacing:4.197575pt;}
.ws68{word-spacing:4.271163pt;}
.ws64{word-spacing:4.278924pt;}
.ws26{word-spacing:4.410111pt;}
.wsac{word-spacing:4.569513pt;}
.ws14{word-spacing:4.728914pt;}
.ws8a{word-spacing:4.835182pt;}
.wsa0{word-spacing:4.846147pt;}
.ws10{word-spacing:4.888316pt;}
.ws27{word-spacing:4.941450pt;}
.ws89{word-spacing:5.100851pt;}
.ws1e{word-spacing:5.260253pt;}
.wscc{word-spacing:5.318685pt;}
.ws58{word-spacing:5.366521pt;}
.ws84{word-spacing:5.472788pt;}
.ws73{word-spacing:5.738458pt;}
.ws13{word-spacing:5.897859pt;}
.ws8{word-spacing:6.057261pt;}
.ws4f{word-spacing:6.216662pt;}
.wsad{word-spacing:6.269796pt;}
.wsbf{word-spacing:6.694867pt;}
.ws2{word-spacing:6.748001pt;}
.ws2c{word-spacing:7.013670pt;}
.ws18{word-spacing:7.226206pt;}
.ws30{word-spacing:7.279340pt;}
.ws5f{word-spacing:7.360052pt;}
.ws60{word-spacing:7.385607pt;}
.ws7{word-spacing:7.651277pt;}
.ws16{word-spacing:7.704411pt;}
.ws6e{word-spacing:7.757545pt;}
.ws70{word-spacing:7.810678pt;}
.ws9{word-spacing:7.863812pt;}
.ws3c{word-spacing:8.314095pt;}
.ws39{word-spacing:8.329204pt;}
.ws7e{word-spacing:8.519871pt;}
.ws7a{word-spacing:8.535353pt;}
.wsd{word-spacing:8.554553pt;}
.ws54{word-spacing:8.660820pt;}
.ws49{word-spacing:9.133667pt;}
.ws46{word-spacing:9.150264pt;}
.ws91{word-spacing:9.158124pt;}
.ws8e{word-spacing:9.174765pt;}
.wsb4{word-spacing:9.210253pt;}
.wsb0{word-spacing:9.217670pt;}
.wsa4{word-spacing:9.607151pt;}
.wsa1{word-spacing:9.624609pt;}
.ws19{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws3f{word-spacing:14.908919pt;}
.wsab{word-spacing:16.311081pt;}
.wsb9{word-spacing:16.348414pt;}
.ws25{word-spacing:17.943081pt;}
.ws2a{word-spacing:18.535081pt;}
.ws99{word-spacing:18.636414pt;}
.ws36{word-spacing:19.057748pt;}
.wsf{word-spacing:19.128267pt;}
.ws72{word-spacing:21.511081pt;}
.ws86{word-spacing:22.353748pt;}
.wsa{word-spacing:25.825748pt;}
.wse{word-spacing:32.892143pt;}
.ws6a{word-spacing:40.903168pt;}
.ws6b{word-spacing:61.877443pt;}
.ws3e{word-spacing:79.620674pt;}
.ws80{word-spacing:81.591303pt;}
.ws4b{word-spacing:87.469370pt;}
.ws93{word-spacing:87.703584pt;}
.wsb6{word-spacing:88.202803pt;}
.wsa6{word-spacing:92.003734pt;}
.ws6c{word-spacing:92.620762pt;}
.ws96{word-spacing:151.785256pt;}
.wsa7{word-spacing:200.311072pt;}
.ws81{word-spacing:370.370013pt;}
.ws4c{word-spacing:603.556232pt;}
.ws40{word-spacing:637.568020pt;}
.ws6d{word-spacing:753.015913pt;}
.wsb7{word-spacing:763.910010pt;}
._44{margin-left:-1929.217371pt;}
._45{margin-left:-1928.303460pt;}
._c{margin-left:-1914.531534pt;}
._9{margin-left:-1901.163408pt;}
._67{margin-left:-1883.809164pt;}
._6a{margin-left:-1710.636373pt;}
._22{margin-left:-1587.407566pt;}
._2c{margin-left:-1304.044655pt;}
._5b{margin-left:-1156.725333pt;}
._13{margin-left:-861.410715pt;}
._4f{margin-left:-724.258178pt;}
._69{margin-left:-560.774938pt;}
._65{margin-left:-556.769279pt;}
._68{margin-left:-451.181247pt;}
._66{margin-left:-206.149844pt;}
._20{margin-left:-8.084258pt;}
._21{margin-left:-6.557543pt;}
._17{margin-left:-4.941450pt;}
._6{margin-left:-3.985040pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._2e{width:1.653353pt;}
._18{width:3.285409pt;}
._19{width:5.028687pt;}
._2d{width:9.457828pt;}
._f{width:11.370649pt;}
._51{width:12.518341pt;}
._d{width:13.937259pt;}
._16{width:15.674491pt;}
._b{width:16.949702pt;}
._2b{width:18.437452pt;}
._8{width:19.340727pt;}
._2{width:20.349493pt;}
._11{width:21.412948pt;}
._3{width:22.847563pt;}
._29{width:23.995259pt;}
._61{width:25.397988pt;}
._14{width:26.566933pt;}
._15{width:28.245967pt;}
._10{width:29.329893pt;}
._50{width:30.913297pt;}
._7{width:31.880533pt;}
._a{width:34.111942pt;}
._28{width:35.281665pt;}
._12{width:38.256533pt;}
._4{width:39.159659pt;}
._5{width:40.375987pt;}
._2a{width:42.347692pt;}
._3b{width:53.610133pt;}
._36{width:63.593662pt;}
._3f{width:64.612069pt;}
._2f{width:69.621497pt;}
._3d{width:73.911306pt;}
._33{width:74.914942pt;}
._38{width:80.342433pt;}
._32{width:85.121645pt;}
._35{width:90.602250pt;}
._34{width:91.610599pt;}
._39{width:95.885637pt;}
._42{width:98.253715pt;}
._31{width:101.647242pt;}
._43{width:112.634408pt;}
._1f{width:123.621573pt;}
._1a{width:135.522768pt;}
._4a{width:138.791101pt;}
._49{width:143.514808pt;}
._3c{width:146.131949pt;}
._25{width:148.790002pt;}
._57{width:149.844680pt;}
._1c{width:156.391766pt;}
._40{width:157.410173pt;}
._52{width:158.605008pt;}
._3e{width:159.501963pt;}
._1d{width:165.694813pt;}
._37{width:167.659932pt;}
._46{width:168.593398pt;}
._27{width:170.887527pt;}
._56{width:172.268303pt;}
._41{width:178.323041pt;}
._5d{width:180.714703pt;}
._23{width:183.777750pt;}
._4d{width:186.457599pt;}
._3a{width:189.522030pt;}
._5e{width:190.756511pt;}
._59{width:192.238460pt;}
._54{width:195.348193pt;}
._4c{width:200.800491pt;}
._55{width:208.180612pt;}
._63{width:213.584480pt;}
._48{width:222.271886pt;}
._62{width:226.541936pt;}
._5a{width:231.260503pt;}
._26{width:239.942292pt;}
._4e{width:242.454998pt;}
._4b{width:243.743282pt;}
._24{width:246.019112pt;}
._64{width:260.352017pt;}
._47{width:265.214677pt;}
._53{width:282.497860pt;}
._60{width:285.598960pt;}
._5f{width:291.022338pt;}
._58{width:297.915227pt;}
._5c{width:309.810469pt;}
._1b{width:347.229950pt;}
._1e{width:382.179236pt;}
._30{width:573.934226pt;}
._e{width:983.021501pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fse{font-size:34.444859pt;}
.fs19{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fsd{font-size:43.055966pt;}
.fs10{font-size:52.107451pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fsf{font-size:65.134150pt;}
.fs8{font-size:67.049157pt;}
.fs12{font-size:68.708638pt;}
.fsa{font-size:69.947298pt;}
.fsc{font-size:73.658602pt;}
.fs14{font-size:73.855835pt;}
.fs18{font-size:74.276231pt;}
.fs0{font-size:76.513067pt;}
.fs16{font-size:77.477023pt;}
.fs7{font-size:83.811236pt;}
.fs11{font-size:85.885582pt;}
.fs9{font-size:87.433903pt;}
.fsb{font-size:92.073021pt;}
.fs13{font-size:92.319562pt;}
.fs17{font-size:92.845056pt;}
.fs15{font-size:96.846036pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y21{bottom:159.004000pt;}
.y87{bottom:162.892000pt;}
.ye6{bottom:163.486667pt;}
.y46{bottom:163.852000pt;}
.yb1{bottom:164.328000pt;}
.y20{bottom:175.480000pt;}
.y86{bottom:178.832000pt;}
.ye5{bottom:179.426667pt;}
.y45{bottom:179.793333pt;}
.yb0{bottom:180.269333pt;}
.y1f{bottom:184.701333pt;}
.yfe{bottom:189.645333pt;}
.y5f{bottom:194.378667pt;}
.y85{bottom:194.772000pt;}
.ye4{bottom:195.366667pt;}
.y44{bottom:195.733333pt;}
.yaf{bottom:196.209333pt;}
.y1e{bottom:201.178667pt;}
.yc6{bottom:208.130667pt;}
.y119{bottom:210.273333pt;}
.y5e{bottom:210.318667pt;}
.y84{bottom:210.713333pt;}
.y43{bottom:211.673333pt;}
.yae{bottom:212.149333pt;}
.ye3{bottom:220.273333pt;}
.y118{bottom:226.213333pt;}
.y83{bottom:226.653333pt;}
.y42{bottom:227.613333pt;}
.yad{bottom:228.089333pt;}
.yfd{bottom:236.569591pt;}
.y1d{bottom:241.577333pt;}
.y5d{bottom:241.624000pt;}
.y82{bottom:242.593333pt;}
.y41{bottom:243.553333pt;}
.yac{bottom:244.029333pt;}
.yc5{bottom:254.113970pt;}
.ye2{bottom:255.641333pt;}
.y1c{bottom:257.517333pt;}
.y117{bottom:257.518667pt;}
.y81{bottom:258.533333pt;}
.y12a{bottom:258.534667pt;}
.y40{bottom:259.493333pt;}
.yab{bottom:259.970667pt;}
.yfc{bottom:265.625541pt;}
.ye1{bottom:271.581333pt;}
.y1b{bottom:273.458667pt;}
.y80{bottom:274.473333pt;}
.y129{bottom:274.474667pt;}
.yaa{bottom:275.910667pt;}
.yc4{bottom:280.346072pt;}
.y3f{bottom:284.400000pt;}
.y5c{bottom:288.071029pt;}
.y1a{bottom:289.398667pt;}
.y7f{bottom:290.413333pt;}
.y128{bottom:290.414667pt;}
.ya9{bottom:291.850667pt;}
.yfb{bottom:294.679060pt;}
.ye0{bottom:302.886667pt;}
.y116{bottom:304.043208pt;}
.y19{bottom:305.338667pt;}
.y7e{bottom:306.354667pt;}
.yc3{bottom:307.449213pt;}
.ya8{bottom:307.790667pt;}
.y5b{bottom:315.694968pt;}
.y3e{bottom:319.768000pt;}
.y18{bottom:321.278667pt;}
.y7d{bottom:322.294667pt;}
.ya7{bottom:323.730667pt;}
.yfa{bottom:323.732579pt;}
.y115{bottom:331.896445pt;}
.y3d{bottom:335.708000pt;}
.y127{bottom:336.044000pt;}
.y17{bottom:337.218667pt;}
.y7c{bottom:338.234667pt;}
.ya6{bottom:339.670667pt;}
.y5a{bottom:344.236163pt;}
.yc2{bottom:344.626667pt;}
.ydf{bottom:349.356989pt;}
.y3c{bottom:351.648000pt;}
.yf9{bottom:352.786098pt;}
.y16{bottom:353.158667pt;}
.y7b{bottom:354.174667pt;}
.ya5{bottom:355.612000pt;}
.y148{bottom:359.984000pt;}
.yc1{bottom:360.566667pt;}
.y114{bottom:360.679289pt;}
.y3b{bottom:367.588000pt;}
.y15{bottom:369.100000pt;}
.y7a{bottom:370.114667pt;}
.y59{bottom:371.857792pt;}
.y147{bottom:371.938667pt;}
.yde{bottom:377.054896pt;}
.ya4{bottom:380.517333pt;}
.y126{bottom:380.874667pt;}
.yf8{bottom:381.839617pt;}
.y3a{bottom:383.529333pt;}
.y79{bottom:386.056000pt;}
.y113{bottom:388.532526pt;}
.yc0{bottom:391.872000pt;}
.y14{bottom:394.006667pt;}
.y146{bottom:394.520000pt;}
.y125{bottom:396.816000pt;}
.y39{bottom:399.469333pt;}
.y58{bottom:400.401297pt;}
.y78{bottom:401.996000pt;}
.ydd{bottom:404.750487pt;}
.y145{bottom:406.476000pt;}
.yf7{bottom:410.893137pt;}
.y38{bottom:415.409333pt;}
.y112{bottom:417.315369pt;}
.y77{bottom:417.936000pt;}
.y144{bottom:418.430667pt;}
.ya3{bottom:422.669333pt;}
.y13{bottom:426.352000pt;}
.y124{bottom:426.504000pt;}
.y37{bottom:431.349333pt;}
.ydc{bottom:432.446077pt;}
.y76{bottom:433.876000pt;}
.ybf{bottom:437.699377pt;}
.y57{bottom:439.881333pt;}
.yf6{bottom:440.916322pt;}
.y143{bottom:441.013333pt;}
.y36{bottom:447.289333pt;}
.y75{bottom:449.816000pt;}
.y142{bottom:452.968000pt;}
.y56{bottom:455.821333pt;}
.y111{bottom:456.956000pt;}
.ydb{bottom:460.141668pt;}
.y35{bottom:463.229333pt;}
.ybe{bottom:463.464793pt;}
.y74{bottom:465.756000pt;}
.ya2{bottom:466.423349pt;}
.yf5{bottom:469.969841pt;}
.y123{bottom:471.336000pt;}
.y55{bottom:471.761333pt;}
.y110{bottom:472.896000pt;}
.y12{bottom:474.277333pt;}
.y141{bottom:475.550667pt;}
.y34{bottom:479.170667pt;}
.y73{bottom:481.697333pt;}
.ya1{bottom:485.963398pt;}
.y122{bottom:487.276000pt;}
.y140{bottom:487.505333pt;}
.y54{bottom:487.701333pt;}
.yda{bottom:487.837259pt;}
.y10f{bottom:488.837333pt;}
.ybd{bottom:489.232364pt;}
.y11{bottom:490.217333pt;}
.y33{bottom:495.110667pt;}
.y72{bottom:497.637333pt;}
.y13f{bottom:499.460000pt;}
.yf4{bottom:499.993026pt;}
.y53{bottom:503.641333pt;}
.y10e{bottom:504.777333pt;}
.ya0{bottom:505.503447pt;}
.y32{bottom:511.050667pt;}
.y71{bottom:513.577333pt;}
.ybc{bottom:514.997780pt;}
.y10{bottom:515.469333pt;}
.yd9{bottom:516.457194pt;}
.y121{bottom:516.965333pt;}
.y52{bottom:519.581333pt;}
.y10d{bottom:520.717333pt;}
.y13e{bottom:522.042667pt;}
.y9f{bottom:525.043496pt;}
.y31{bottom:526.990667pt;}
.y70{bottom:529.517333pt;}
.yf{bottom:531.409333pt;}
.y13d{bottom:533.997333pt;}
.y10c{bottom:536.657333pt;}
.yf3{bottom:539.810667pt;}
.ybb{bottom:540.763196pt;}
.yd8{bottom:544.152784pt;}
.y9e{bottom:545.235697pt;}
.y6f{bottom:545.457333pt;}
.y13c{bottom:545.953333pt;}
.ye{bottom:547.349333pt;}
.y30{bottom:551.897333pt;}
.y10b{bottom:552.597333pt;}
.yf2{bottom:555.750667pt;}
.y6e{bottom:561.397333pt;}
.y51{bottom:561.733333pt;}
.y120{bottom:561.796000pt;}
.yd{bottom:563.289333pt;}
.yba{bottom:566.528612pt;}
.y13b{bottom:568.534667pt;}
.y10a{bottom:568.537333pt;}
.yf1{bottom:571.690667pt;}
.yd7{bottom:572.772720pt;}
.y2f{bottom:576.804000pt;}
.y6d{bottom:577.338667pt;}
.y9d{bottom:578.482667pt;}
.yc{bottom:579.230667pt;}
.y13a{bottom:580.489333pt;}
.y109{bottom:584.478667pt;}
.yf0{bottom:587.632000pt;}
.y11f{bottom:591.485333pt;}
.yb9{bottom:592.294028pt;}
.y6c{bottom:593.278667pt;}
.yb{bottom:595.170667pt;}
.y108{bottom:600.418667pt;}
.y139{bottom:603.072000pt;}
.yef{bottom:603.572000pt;}
.y50{bottom:607.717498pt;}
.y2e{bottom:609.149333pt;}
.y6b{bottom:609.218667pt;}
.ya{bottom:611.110667pt;}
.yd6{bottom:612.304000pt;}
.y138{bottom:615.026667pt;}
.y107{bottom:616.358667pt;}
.yb8{bottom:618.059444pt;}
.yee{bottom:619.512000pt;}
.y9c{bottom:620.028526pt;}
.y6a{bottom:625.158667pt;}
.y9{bottom:627.050667pt;}
.yd5{bottom:628.244000pt;}
.y106{bottom:632.298667pt;}
.y9b{bottom:632.945187pt;}
.y4f{bottom:633.947405pt;}
.yed{bottom:635.452000pt;}
.y11e{bottom:636.317333pt;}
.y137{bottom:637.609333pt;}
.y69{bottom:641.098667pt;}
.y8{bottom:642.990667pt;}
.yb7{bottom:643.827015pt;}
.yd4{bottom:644.184000pt;}
.y9a{bottom:645.862927pt;}
.y105{bottom:648.238667pt;}
.y136{bottom:649.564000pt;}
.yec{bottom:651.392000pt;}
.y11d{bottom:652.257333pt;}
.y2d{bottom:653.981333pt;}
.y68{bottom:657.038667pt;}
.y99{bottom:658.779587pt;}
.y7{bottom:658.930667pt;}
.yd3{bottom:660.124000pt;}
.y4e{bottom:661.052740pt;}
.y104{bottom:664.180000pt;}
.yeb{bottom:667.332000pt;}
.y11c{bottom:668.197333pt;}
.yb6{bottom:669.592431pt;}
.y2c{bottom:669.921333pt;}
.y98{bottom:671.696248pt;}
.y135{bottom:672.146667pt;}
.y67{bottom:672.980000pt;}
.yd2{bottom:676.065333pt;}
.y6{bottom:682.452000pt;}
.yea{bottom:683.273333pt;}
.y134{bottom:684.101333pt;}
.y11b{bottom:684.137333pt;}
.y97{bottom:684.612908pt;}
.y2b{bottom:685.861333pt;}
.y66{bottom:688.920000pt;}
.y103{bottom:689.085333pt;}
.yd1{bottom:692.005333pt;}
.yb5{bottom:695.357847pt;}
.y96{bottom:697.529568pt;}
.y4d{bottom:697.653333pt;}
.ye9{bottom:699.213333pt;}
.y11a{bottom:700.077333pt;}
.y2a{bottom:701.801333pt;}
.y65{bottom:704.860000pt;}
.y133{bottom:706.684000pt;}
.yd0{bottom:707.945333pt;}
.y95{bottom:710.446228pt;}
.ye8{bottom:715.153333pt;}
.y29{bottom:717.741333pt;}
.y132{bottom:718.638667pt;}
.yb4{bottom:721.983188pt;}
.y94{bottom:723.363969pt;}
.ycf{bottom:723.885333pt;}
.y64{bottom:729.766667pt;}
.y131{bottom:730.593333pt;}
.ye7{bottom:731.093333pt;}
.y28{bottom:733.682667pt;}
.y93{bottom:736.280629pt;}
.y102{bottom:739.818667pt;}
.yce{bottom:739.825333pt;}
.y4c{bottom:743.275608pt;}
.yb3{bottom:747.748604pt;}
.y92{bottom:749.197289pt;}
.y27{bottom:749.622667pt;}
.y130{bottom:753.176000pt;}
.ycd{bottom:755.765333pt;}
.y91{bottom:762.113950pt;}
.y12f{bottom:765.130667pt;}
.y4b{bottom:768.418726pt;}
.y5{bottom:771.374667pt;}
.ycc{bottom:771.706667pt;}
.y63{bottom:771.917333pt;}
.yb2{bottom:774.373945pt;}
.y26{bottom:774.529333pt;}
.y90{bottom:775.030610pt;}
.y101{bottom:785.802831pt;}
.ycb{bottom:787.646667pt;}
.y12e{bottom:787.713333pt;}
.y8f{bottom:787.947270pt;}
.y4{bottom:791.964000pt;}
.y4a{bottom:793.561844pt;}
.y12d{bottom:799.668000pt;}
.y8e{bottom:800.865011pt;}
.yca{bottom:803.586667pt;}
.y12c{bottom:811.622667pt;}
.y100{bottom:812.032739pt;}
.y3{bottom:812.553333pt;}
.y8d{bottom:813.781671pt;}
.y62{bottom:817.900637pt;}
.yc9{bottom:819.526667pt;}
.y49{bottom:819.544118pt;}
.y8c{bottom:826.698331pt;}
.y25{bottom:828.493333pt;}
.yc8{bottom:835.466667pt;}
.y12b{bottom:838.654667pt;}
.yff{bottom:839.135879pt;}
.y8b{bottom:839.614991pt;}
.y61{bottom:844.130545pt;}
.y24{bottom:844.433333pt;}
.y48{bottom:844.687237pt;}
.yc7{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y8a{bottom:852.962747pt;}
.y23{bottom:860.373333pt;}
.y89{bottom:865.879407pt;}
.y47{bottom:870.669511pt;}
.y60{bottom:871.235879pt;}
.y1{bottom:876.313333pt;}
.y88{bottom:879.227163pt;}
.hc{height:21.933807pt;}
.ha{height:22.922103pt;}
.h18{height:25.589197pt;}
.h19{height:27.523264pt;}
.h3{height:29.159939pt;}
.hb{height:29.244954pt;}
.h12{height:29.622505pt;}
.h2{height:36.556100pt;}
.h4{height:36.874903pt;}
.he{height:37.299379pt;}
.h9{height:44.250180pt;}
.h13{height:44.812296pt;}
.h7{height:46.258122pt;}
.h11{height:46.263455pt;}
.h6{height:46.336759pt;}
.h5{height:46.342093pt;}
.h1{height:52.640990pt;}
.h8{height:53.100068pt;}
.hd{height:57.662130pt;}
.h14{height:59.089280pt;}
.hf{height:60.154525pt;}
.h10{height:63.346238pt;}
.h15{height:63.515859pt;}
.h17{height:63.877398pt;}
.h16{height:66.630073pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x18{left:181.048709pt;}
.x1a{left:182.428790pt;}
.xe{left:183.596272pt;}
.x24{left:184.997333pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x1{left:195.989333pt;}
.x8{left:197.486667pt;}
.x11{left:198.499982pt;}
.x1f{left:201.058205pt;}
.xc{left:208.007495pt;}
.x10{left:211.316000pt;}
.x1e{left:213.377333pt;}
.x14{left:215.741333pt;}
.x21{left:218.696000pt;}
.x1b{left:223.308340pt;}
.xf{left:226.342667pt;}
.x23{left:228.993333pt;}
.x13{left:230.768000pt;}
.xb{left:233.537592pt;}
.x2{left:236.990667pt;}
.x19{left:251.056776pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x17{left:290.249861pt;}
.x16{left:310.647487pt;}
.x15{left:323.762949pt;}
.x3{left:360.866667pt;}
.x22{left:371.939079pt;}
.x12{left:394.614703pt;}
.x20{left:400.425374pt;}
.xa{left:404.177333pt;}
.x1d{left:406.733019pt;}
.x1c{left:412.267655pt;}
.xd{left:432.221858pt;}
}




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