
    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_c77b0752c75e337d3e0dfd1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_976d1bc3358e3c2ca37f793a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_39006765e041691cd2c03f4d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c93847725a3b0a4769577dc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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_0981356b82445ee315dcc026.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_5376791b09117889f442cfce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a27aca9540a7b8b8c0ab2694.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m3{transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);}
.m4{transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);}
.m5{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,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);}
.vb{vertical-align:-125.169478px;}
.va{vertical-align:-118.434200px;}
.v1{vertical-align:-109.806234px;}
.v4{vertical-align:-94.683849px;}
.v5{vertical-align:-93.246425px;}
.vd{vertical-align:-91.083916px;}
.v7{vertical-align:-35.640000px;}
.v2{vertical-align:-24.484307px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:28.081652px;}
.vc{vertical-align:45.721652px;}
.v3{vertical-align:90.000000px;}
.v8{vertical-align:95.034515px;}
.ve{vertical-align:112.681878px;}
.v6{vertical-align:115.913982px;}
.ls2d{letter-spacing:-8.096057px;}
.ls3e{letter-spacing:-5.867901px;}
.ls29{letter-spacing:-3.559266px;}
.ls1d{letter-spacing:-3.544914px;}
.ls2a{letter-spacing:-3.530562px;}
.ls48{letter-spacing:-0.100800px;}
.ls66{letter-spacing:-0.086400px;}
.ls18{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.067248px;}
.ls6{letter-spacing:-0.057600px;}
.ls17{letter-spacing:-0.043200px;}
.ls6a{letter-spacing:-0.038376px;}
.ls8{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.019188px;}
.lsf{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.019188px;}
.ls5{letter-spacing:0.028800px;}
.ls16{letter-spacing:0.038376px;}
.lsa{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.057564px;}
.ls19{letter-spacing:0.057600px;}
.ls0{letter-spacing:0.067248px;}
.ls22{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.076752px;}
.ls1{letter-spacing:0.079164px;}
.lse{letter-spacing:0.095940px;}
.ls2{letter-spacing:0.115128px;}
.ls28{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.172800px;}
.ls4d{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.476426px;}
.ls69{letter-spacing:0.519737px;}
.ls68{letter-spacing:0.534174px;}
.ls44{letter-spacing:0.577423px;}
.ls43{letter-spacing:0.917955px;}
.ls45{letter-spacing:1.169652px;}
.ls4f{letter-spacing:1.321388px;}
.ls15{letter-spacing:28.080000px;}
.ls26{letter-spacing:28.129685px;}
.ls14{letter-spacing:33.480000px;}
.ls46{letter-spacing:35.424000px;}
.ls4c{letter-spacing:35.459280px;}
.ls20{letter-spacing:35.568000px;}
.ls11{letter-spacing:35.712000px;}
.ls1b{letter-spacing:35.784000px;}
.ls24{letter-spacing:35.856000px;}
.ls3c{letter-spacing:35.869426px;}
.ls4a{letter-spacing:35.928000px;}
.ls27{letter-spacing:35.985600px;}
.ls9{letter-spacing:36.000000px;}
.ls49{letter-spacing:36.216000px;}
.ls1a{letter-spacing:36.504000px;}
.ls2e{letter-spacing:45.619789px;}
.ls21{letter-spacing:54.000000px;}
.ls4b{letter-spacing:55.129896px;}
.ls56{letter-spacing:55.377919px;}
.ls52{letter-spacing:68.125734px;}
.ls10{letter-spacing:71.352000px;}
.ls2f{letter-spacing:71.375930px;}
.ls13{letter-spacing:71.712000px;}
.ls12{letter-spacing:71.784000px;}
.ls38{letter-spacing:93.511123px;}
.ls5c{letter-spacing:98.936232px;}
.ls60{letter-spacing:102.538039px;}
.ls33{letter-spacing:106.478502px;}
.ls30{letter-spacing:112.114438px;}
.ls1c{letter-spacing:143.303522px;}
.ls1f{letter-spacing:144.437320px;}
.ls50{letter-spacing:158.195424px;}
.ls57{letter-spacing:173.611690px;}
.ls53{letter-spacing:175.510614px;}
.ls61{letter-spacing:176.814659px;}
.ls5d{letter-spacing:185.861716px;}
.ls2c{letter-spacing:188.850150px;}
.ls37{letter-spacing:221.260037px;}
.ls35{letter-spacing:230.359811px;}
.ls51{letter-spacing:236.038560px;}
.ls55{letter-spacing:242.473440px;}
.ls62{letter-spacing:273.103855px;}
.ls42{letter-spacing:297.532672px;}
.ls40{letter-spacing:305.100760px;}
.ls3f{letter-spacing:306.725717px;}
.ls41{letter-spacing:307.613426px;}
.ls3d{letter-spacing:338.471363px;}
.ls65{letter-spacing:348.410954px;}
.ls31{letter-spacing:403.475040px;}
.ls4e{letter-spacing:449.498925px;}
.ls34{letter-spacing:463.478604px;}
.ls58{letter-spacing:470.249227px;}
.ls54{letter-spacing:474.410724px;}
.ls3a{letter-spacing:527.826397px;}
.ls5a{letter-spacing:582.689939px;}
.ls32{letter-spacing:592.973893px;}
.ls5e{letter-spacing:611.273822px;}
.ls39{letter-spacing:645.706407px;}
.ls36{letter-spacing:695.476759px;}
.ls63{letter-spacing:737.290727px;}
.ls5f{letter-spacing:741.291371px;}
.ls1e{letter-spacing:830.605418px;}
.ls3b{letter-spacing:861.498142px;}
.ls5b{letter-spacing:872.330147px;}
.ls64{letter-spacing:1253.102465px;}
.ls2b{letter-spacing:1328.639643px;}
.ls59{letter-spacing:1435.350913px;}
.ls25{letter-spacing:1684.953768px;}
.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;}
}
.ws4c{word-spacing:-592.402511px;}
.ws4d{word-spacing:-549.572347px;}
.ws46{word-spacing:-501.376704px;}
.ws42{word-spacing:-443.300040px;}
.ws74{word-spacing:-291.507176px;}
.ws4f{word-spacing:-251.206346px;}
.ws7f{word-spacing:-218.901909px;}
.ws77{word-spacing:-190.245674px;}
.ws73{word-spacing:-168.668689px;}
.ws41{word-spacing:-146.184710px;}
.ws37{word-spacing:-144.000000px;}
.ws72{word-spacing:-122.235845px;}
.ws4b{word-spacing:-106.220795px;}
.ws31{word-spacing:-94.593241px;}
.ws47{word-spacing:-93.775059px;}
.ws7d{word-spacing:-84.670810px;}
.ws40{word-spacing:-63.720372px;}
.wsa{word-spacing:-47.950812px;}
.ws48{word-spacing:-40.342554px;}
.ws3d{word-spacing:-39.825000px;}
.ws5f{word-spacing:-37.932255px;}
.ws30{word-spacing:-36.000000px;}
.ws7a{word-spacing:-22.949010px;}
.ws3f{word-spacing:-18.150237px;}
.ws93{word-spacing:-8.625600px;}
.ws8d{word-spacing:-7.848000px;}
.ws75{word-spacing:-1.187765px;}
.ws8c{word-spacing:-1.123200px;}
.ws65{word-spacing:-1.108800px;}
.ws63{word-spacing:-1.080000px;}
.wsc{word-spacing:-0.979200px;}
.ws2d{word-spacing:-0.964800px;}
.ws2c{word-spacing:-0.950400px;}
.ws8a{word-spacing:-0.921600px;}
.ws8b{word-spacing:-0.907200px;}
.ws8e{word-spacing:-0.878400px;}
.ws7{word-spacing:-0.864000px;}
.ws59{word-spacing:-0.849600px;}
.ws5c{word-spacing:-0.835200px;}
.ws85{word-spacing:-0.820800px;}
.ws54{word-spacing:-0.806400px;}
.ws58{word-spacing:-0.792000px;}
.ws1a{word-spacing:-0.777600px;}
.wsd{word-spacing:-0.763200px;}
.ws28{word-spacing:-0.748800px;}
.ws5b{word-spacing:-0.734400px;}
.wsb{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.706104px;}
.ws57{word-spacing:-0.705600px;}
.ws39{word-spacing:-0.691200px;}
.wsf{word-spacing:-0.676800px;}
.ws38{word-spacing:-0.662400px;}
.ws1f{word-spacing:-0.648000px;}
.ws1d{word-spacing:-0.633600px;}
.ws68{word-spacing:-0.619200px;}
.ws4{word-spacing:-0.605232px;}
.ws2a{word-spacing:-0.604800px;}
.ws43{word-spacing:-0.590400px;}
.ws10{word-spacing:-0.576000px;}
.ws1c{word-spacing:-0.561600px;}
.ws14{word-spacing:-0.547200px;}
.ws2b{word-spacing:-0.532800px;}
.ws24{word-spacing:-0.518400px;}
.ws16{word-spacing:-0.504000px;}
.ws5{word-spacing:-0.489600px;}
.ws70{word-spacing:-0.475200px;}
.ws23{word-spacing:-0.460800px;}
.ws79{word-spacing:-0.446400px;}
.ws2f{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.417600px;}
.ws25{word-spacing:-0.403200px;}
.ws6{word-spacing:-0.388800px;}
.ws4a{word-spacing:-0.374400px;}
.ws15{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.345600px;}
.ws9{word-spacing:-0.331200px;}
.ws35{word-spacing:-0.316800px;}
.ws1e{word-spacing:-0.302400px;}
.wse{word-spacing:-0.288000px;}
.ws90{word-spacing:-0.259869px;}
.ws8{word-spacing:-0.259200px;}
.ws34{word-spacing:-0.230400px;}
.ws53{word-spacing:-0.216000px;}
.ws8f{word-spacing:-0.202120px;}
.ws95{word-spacing:-0.201600px;}
.ws11{word-spacing:-0.191880px;}
.ws6f{word-spacing:-0.187200px;}
.ws6d{word-spacing:-0.158400px;}
.ws61{word-spacing:-0.148057px;}
.ws20{word-spacing:-0.129600px;}
.ws21{word-spacing:-0.115128px;}
.ws97{word-spacing:-0.095940px;}
.ws5a{word-spacing:-0.086400px;}
.ws86{word-spacing:-0.072000px;}
.ws94{word-spacing:-0.057564px;}
.ws0{word-spacing:-0.052776px;}
.ws45{word-spacing:-0.043200px;}
.ws12{word-spacing:-0.038376px;}
.ws29{word-spacing:-0.019188px;}
.ws18{word-spacing:-0.014400px;}
.ws2{word-spacing:0.000000px;}
.ws6c{word-spacing:0.014400px;}
.ws80{word-spacing:0.019188px;}
.ws6e{word-spacing:0.028800px;}
.ws55{word-spacing:0.038376px;}
.ws87{word-spacing:0.043200px;}
.ws17{word-spacing:0.057564px;}
.ws3a{word-spacing:0.072000px;}
.ws13{word-spacing:0.076752px;}
.ws19{word-spacing:0.086400px;}
.ws26{word-spacing:0.095940px;}
.ws52{word-spacing:0.115128px;}
.ws2e{word-spacing:0.134316px;}
.ws22{word-spacing:0.153504px;}
.ws44{word-spacing:0.158400px;}
.ws88{word-spacing:0.172692px;}
.ws84{word-spacing:0.172800px;}
.ws71{word-spacing:0.191880px;}
.ws5d{word-spacing:0.211068px;}
.ws82{word-spacing:0.216000px;}
.ws56{word-spacing:0.230256px;}
.ws69{word-spacing:0.249444px;}
.ws92{word-spacing:0.302400px;}
.ws1b{word-spacing:0.307008px;}
.ws66{word-spacing:0.331200px;}
.ws64{word-spacing:0.345600px;}
.ws33{word-spacing:0.360000px;}
.ws6b{word-spacing:0.374400px;}
.ws89{word-spacing:0.422136px;}
.ws6a{word-spacing:0.498888px;}
.ws1{word-spacing:0.518076px;}
.ws62{word-spacing:0.556452px;}
.ws60{word-spacing:0.575640px;}
.ws67{word-spacing:0.594828px;}
.ws91{word-spacing:0.671580px;}
.ws83{word-spacing:0.979200px;}
.ws96{word-spacing:1.016964px;}
.ws36{word-spacing:1.750929px;}
.ws3c{word-spacing:1.851393px;}
.ws3b{word-spacing:1.880096px;}
.ws7c{word-spacing:23.766250px;}
.ws78{word-spacing:46.692918px;}
.ws3e{word-spacing:61.198898px;}
.ws4e{word-spacing:95.451190px;}
.ws81{word-spacing:112.209030px;}
.ws51{word-spacing:229.705755px;}
.ws7e{word-spacing:379.854596px;}
.ws32{word-spacing:398.479948px;}
.ws76{word-spacing:671.747996px;}
.ws7b{word-spacing:700.452075px;}
.ws5e{word-spacing:815.395418px;}
.ws50{word-spacing:1397.132182px;}
._53{margin-left:-2171.501301px;}
._c{margin-left:-1537.775238px;}
._24{margin-left:-708.136290px;}
._37{margin-left:-587.876567px;}
._12{margin-left:-564.575130px;}
._2d{margin-left:-397.429795px;}
._2e{margin-left:-340.794874px;}
._30{margin-left:-310.082254px;}
._3e{margin-left:-188.570265px;}
._58{margin-left:-187.095521px;}
._3f{margin-left:-184.687947px;}
._5c{margin-left:-177.552037px;}
._5d{margin-left:-176.261626px;}
._40{margin-left:-167.325454px;}
._41{margin-left:-147.901197px;}
._3b{margin-left:-146.515513px;}
._59{margin-left:-138.558138px;}
._28{margin-left:-114.782041px;}
._34{margin-left:-113.391115px;}
._2b{margin-left:-107.145508px;}
._25{margin-left:-101.627545px;}
._31{margin-left:-92.031746px;}
._54{margin-left:-89.056994px;}
._35{margin-left:-77.751742px;}
._32{margin-left:-67.670847px;}
._60{margin-left:-62.030229px;}
._2f{margin-left:-57.589953px;}
._5e{margin-left:-53.856931px;}
._e{margin-left:-36.100800px;}
._36{margin-left:-17.994018px;}
._8{margin-left:-15.796800px;}
._d{margin-left:-14.050491px;}
._2{margin-left:-12.552552px;}
._4{margin-left:-10.224000px;}
._46{margin-left:-9.000000px;}
._43{margin-left:-7.372800px;}
._0{margin-left:-5.951448px;}
._3{margin-left:-3.434652px;}
._6{margin-left:-1.584000px;}
._1{width:1.612800px;}
._10{width:3.108969px;}
._11{width:4.377323px;}
._a{width:6.228716px;}
._1e{width:7.564421px;}
._13{width:8.717850px;}
._1b{width:12.759264px;}
._2a{width:16.553890px;}
._57{width:18.350966px;}
._9{width:20.939393px;}
._61{width:24.091200px;}
._42{width:28.080000px;}
._5a{width:30.647748px;}
._5{width:33.422400px;}
._44{width:44.193888px;}
._63{width:47.062502px;}
._7{width:71.035200px;}
._23{width:77.041651px;}
._f{width:94.722408px;}
._27{width:97.928690px;}
._52{width:106.557350px;}
._18{width:114.393858px;}
._4e{width:118.078668px;}
._20{width:120.407959px;}
._29{width:124.078379px;}
._15{width:125.283821px;}
._3d{width:138.286867px;}
._14{width:146.701157px;}
._3c{width:164.918110px;}
._56{width:167.044272px;}
._3a{width:190.465572px;}
._19{width:217.164731px;}
._50{width:221.948700px;}
._38{width:225.004091px;}
._26{width:227.161211px;}
._1c{width:231.033816px;}
._17{width:237.064087px;}
._5b{width:243.362995px;}
._1a{width:252.709375px;}
._4f{width:259.199973px;}
._4d{width:264.604303px;}
._39{width:281.886641px;}
._4c{width:317.519225px;}
._b{width:328.858978px;}
._33{width:344.524047px;}
._2c{width:365.292206px;}
._1f{width:369.988277px;}
._5f{width:371.609990px;}
._21{width:376.565374px;}
._48{width:424.454400px;}
._49{width:441.547200px;}
._22{width:460.442345px;}
._51{width:482.588838px;}
._45{width:560.361600px;}
._55{width:597.237836px;}
._1d{width:671.198045px;}
._4b{width:677.851200px;}
._47{width:785.534400px;}
._16{width:798.471703px;}
._62{width:877.045310px;}
._4a{width:1280.836800px;}
.fc0{color:rgb(0,0,0);}
.fs24{font-size:81.980400px;}
.fs21{font-size:85.102200px;}
.fs19{font-size:85.834800px;}
.fs26{font-size:86.642457px;}
.fse{font-size:86.928600px;}
.fs11{font-size:86.983800px;}
.fsc{font-size:87.639000px;}
.fs9{font-size:87.814800px;}
.fs1f{font-size:90.622695px;}
.fs1b{font-size:90.716231px;}
.fs18{font-size:96.120000px;}
.fs25{font-size:141.803400px;}
.fs4{font-size:143.518800px;}
.fs3{font-size:144.000000px;}
.fs28{font-size:144.371400px;}
.fs6{font-size:145.336200px;}
.fs22{font-size:147.203400px;}
.fs15{font-size:147.543600px;}
.fs17{font-size:147.743400px;}
.fs14{font-size:147.960000px;}
.fs13{font-size:148.057200px;}
.fs1e{font-size:148.320000px;}
.fs16{font-size:148.422600px;}
.fs1a{font-size:148.470600px;}
.fs1d{font-size:148.731000px;}
.fs27{font-size:149.867670px;}
.fsf{font-size:150.363600px;}
.fs12{font-size:150.459000px;}
.fsd{font-size:151.592400px;}
.fs5{font-size:151.681048px;}
.fsa{font-size:151.896000px;}
.fs7{font-size:153.601810px;}
.fs23{font-size:155.575130px;}
.fs20{font-size:156.477158px;}
.fs1c{font-size:156.914331px;}
.fs10{font-size:158.914780px;}
.fs8{font-size:159.300000px;}
.fsb{font-size:160.534424px;}
.fs2{font-size:168.120000px;}
.fs1{font-size:191.880000px;}
.fs0{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:4.680000px;}
.y92{bottom:6.120000px;}
.y2c{bottom:7.740000px;}
.yb3{bottom:7.830000px;}
.y2f{bottom:7.920000px;}
.y3c{bottom:8.010000px;}
.y9e{bottom:8.100000px;}
.y51{bottom:8.190000px;}
.y5a{bottom:8.280000px;}
.y46{bottom:8.370000px;}
.y3f{bottom:8.730000px;}
.y9c{bottom:104.100000px;}
.y7a{bottom:110.490000px;}
.y9a{bottom:110.670000px;}
.y90{bottom:113.910150px;}
.y9b{bottom:118.320000px;}
.y6d{bottom:130.290000px;}
.y5{bottom:137.580639px;}
.y69{bottom:148.290000px;}
.y4a{bottom:151.800000px;}
.y3e{bottom:152.160000px;}
.y7e{bottom:157.290000px;}
.y49{bottom:160.530000px;}
.y3d{bottom:160.890000px;}
.y39{bottom:162.150000px;}
.y1b{bottom:166.290000px;}
.y79{bottom:175.290000px;}
.y28{bottom:182.760000px;}
.ybd{bottom:187.890000px;}
.y6c{bottom:195.090000px;}
.y19{bottom:196.890000px;}
.y71{bottom:205.890000px;}
.y68{bottom:213.090000px;}
.y4{bottom:213.180000px;}
.y7d{bottom:222.090000px;}
.y43{bottom:229.108681px;}
.y48{bottom:229.109012px;}
.y44{bottom:229.110000px;}
.y88{bottom:229.560000px;}
.y1a{bottom:231.090000px;}
.y40{bottom:236.130000px;}
.y78{bottom:240.090000px;}
.y32{bottom:245.217569px;}
.y45{bottom:250.260000px;}
.y2a{bottom:253.590450px;}
.y8d{bottom:255.750000px;}
.y42{bottom:258.629668px;}
.y47{bottom:258.630000px;}
.y18{bottom:261.690000px;}
.y82{bottom:268.890000px;}
.y70{bottom:270.690000px;}
.y6b{bottom:277.890000px;}
.y2d{bottom:281.038421px;}
.y31{bottom:281.039861px;}
.y41{bottom:282.390000px;}
.y7c{bottom:286.890000px;}
.yc1{bottom:287.248552px;}
.y87{bottom:294.360000px;}
.y10{bottom:295.890000px;}
.y2e{bottom:299.490000px;}
.y2b{bottom:299.670000px;}
.yab{bottom:302.010000px;}
.y30{bottom:304.620000px;}
.y77{bottom:304.890000px;}
.y29{bottom:307.410000px;}
.ya0{bottom:309.750000px;}
.y8c{bottom:320.550000px;}
.y52{bottom:324.508336px;}
.y17{bottom:326.490000px;}
.y81{bottom:333.690000px;}
.y6f{bottom:335.490000px;}
.y5f{bottom:337.290000px;}
.yc0{bottom:338.190000px;}
.y3{bottom:342.421233px;}
.y6a{bottom:342.690000px;}
.y50{bottom:345.750000px;}
.y7b{bottom:351.690000px;}
.y4e{bottom:353.940000px;}
.y38{bottom:356.550000px;}
.y86{bottom:359.160000px;}
.yf{bottom:360.690000px;}
.yaa{bottom:366.810000px;}
.y53{bottom:369.240000px;}
.y76{bottom:369.690000px;}
.y4d{bottom:370.950000px;}
.y9f{bottom:374.550000px;}
.y27{bottom:377.160000px;}
.y4f{bottom:377.611153px;}
.y9{bottom:391.740000px;}
.y91{bottom:395.790000px;}
.y94{bottom:395.880000px;}
.y80{bottom:398.490000px;}
.y6e{bottom:400.290000px;}
.y67{bottom:401.460000px;}
.y5e{bottom:402.090000px;}
.y8b{bottom:403.350000px;}
.y93{bottom:403.890000px;}
.y20{bottom:416.490000px;}
.y85{bottom:423.960000px;}
.ye{bottom:425.490000px;}
.y2{bottom:428.820000px;}
.y95{bottom:429.090000px;}
.ya9{bottom:431.610000px;}
.y75{bottom:434.490000px;}
.y4c{bottom:438.090000px;}
.y37{bottom:439.350000px;}
.y26{bottom:441.960000px;}
.ybe{bottom:443.490000px;}
.y16{bottom:448.170000px;}
.y8e{bottom:449.970000px;}
.yc2{bottom:451.230000px;}
.y12{bottom:451.231233px;}
.y8{bottom:456.540000px;}
.y21{bottom:463.290000px;}
.ybc{bottom:465.090000px;}
.y1f{bottom:481.290000px;}
.y8a{bottom:486.150000px;}
.y84{bottom:488.760000px;}
.yd{bottom:490.290000px;}
.y98{bottom:493.260000px;}
.ya8{bottom:494.609347px;}
.y99{bottom:494.610000px;}
.y3b{bottom:496.230000px;}
.y63{bottom:497.489257px;}
.y66{bottom:497.490220px;}
.yb9{bottom:498.928836px;}
.y74{bottom:499.290000px;}
.y97{bottom:502.800000px;}
.y36{bottom:504.150000px;}
.y3a{bottom:504.240000px;}
.ya4{bottom:505.411140px;}
.y25{bottom:506.760000px;}
.y13{bottom:508.290000px;}
.yb8{bottom:509.369111px;}
.y15{bottom:512.970000px;}
.y61{bottom:514.320739px;}
.y58{bottom:514.860000px;}
.y57{bottom:514.860185px;}
.y5d{bottom:514.860739px;}
.y64{bottom:518.640000px;}
.y96{bottom:519.450000px;}
.y65{bottom:526.920000px;}
.yb1{bottom:529.800000px;}
.ybb{bottom:529.890000px;}
.yb7{bottom:533.220443px;}
.y5b{bottom:535.740000px;}
.ya7{bottom:536.190627px;}
.ya3{bottom:536.191371px;}
.y73{bottom:536.999898px;}
.y11{bottom:537.630000px;}
.yb6{bottom:538.981206px;}
.yae{bottom:538.981292px;}
.yb0{bottom:538.984837px;}
.y7{bottom:542.940000px;}
.y56{bottom:544.019447px;}
.y5c{bottom:544.020000px;}
.y22{bottom:544.200000px;}
.y7f{bottom:546.090000px;}
.y62{bottom:550.590000px;}
.y89{bottom:550.950000px;}
.y83{bottom:553.560000px;}
.yb2{bottom:554.010000px;}
.yad{bottom:554.819587px;}
.ybf{bottom:555.090000px;}
.y59{bottom:559.230000px;}
.ya6{bottom:559.949256px;}
.ya2{bottom:559.950000px;}
.y54{bottom:560.850000px;}
.yb5{bottom:561.839914px;}
.yb4{bottom:561.840000px;}
.yaf{bottom:561.843545px;}
.y1e{bottom:564.090000px;}
.ya5{bottom:564.450000px;}
.y60{bottom:567.420000px;}
.y55{bottom:567.510000px;}
.y35{bottom:568.950000px;}
.y24{bottom:571.560000px;}
.yc{bottom:573.090000px;}
.ya1{bottom:576.420000px;}
.yac{bottom:577.770000px;}
.y14{bottom:577.950000px;}
.y8f{bottom:582.450000px;}
.y72{bottom:589.290000px;}
.yba{bottom:594.690000px;}
.y1{bottom:601.620000px;}
.y6{bottom:607.740000px;}
.y1d{bottom:628.890000px;}
.y4b{bottom:632.490000px;}
.y34{bottom:633.750000px;}
.y23{bottom:636.360000px;}
.yb{bottom:637.890000px;}
.y1c{bottom:736.440000px;}
.ya{bottom:736.530000px;}
.y33{bottom:736.710000px;}
.h42{height:26.280000px;}
.h37{height:30.780000px;}
.h44{height:32.760000px;}
.hc{height:39.690000px;}
.h33{height:40.950000px;}
.h11{height:41.310000px;}
.h21{height:41.940000px;}
.h52{height:43.470000px;}
.he{height:44.010000px;}
.h28{height:44.280000px;}
.h22{height:44.730000px;}
.h1d{height:45.270000px;}
.h3c{height:45.540000px;}
.h2a{height:46.080000px;}
.h1b{height:46.530000px;}
.h15{height:48.780000px;}
.h4d{height:56.961967px;}
.h46{height:59.131070px;}
.h39{height:59.640098px;}
.h24{height:60.400097px;}
.h2b{height:60.438451px;}
.h1e{height:60.893700px;}
.h17{height:61.015850px;}
.h54{height:75.935947px;}
.h4b{height:78.827575px;}
.h3e{height:79.506160px;}
.h51{height:80.254268px;}
.h43{height:83.941042px;}
.h3b{height:84.027681px;}
.h50{height:98.459197px;}
.h4f{height:98.528437px;}
.hd{height:99.650261px;}
.h9{height:99.720338px;}
.h5{height:99.984375px;}
.h4{height:100.054688px;}
.h57{height:100.312745px;}
.h10{height:100.983112px;}
.h49{height:102.208611px;}
.h47{height:102.280487px;}
.h35{height:102.516867px;}
.h34{height:102.733945px;}
.h32{height:102.806191px;}
.h30{height:102.873728px;}
.h41{height:102.983906px;}
.h36{height:103.055145px;}
.h3a{height:103.160969px;}
.h40{height:103.269278px;}
.h26{height:104.402851px;}
.h2d{height:104.469091px;}
.h25{height:104.476271px;}
.h2c{height:104.542557px;}
.h20{height:105.256051px;}
.h1f{height:105.330071px;}
.h18{height:105.541020px;}
.h2f{height:110.607715px;}
.h14{height:110.685498px;}
.h3{height:116.731758px;}
.h4e{height:126.610089px;}
.h56{height:131.348169px;}
.hb{height:132.937092px;}
.h2{height:133.322871px;}
.h7{height:133.382812px;}
.h13{height:134.620494px;}
.h4c{height:136.350024px;}
.h38{height:136.850210px;}
.h3f{height:137.523793px;}
.h53{height:138.817856px;}
.h29{height:139.277221px;}
.h2e{height:139.365587px;}
.h23{height:140.415421px;}
.ha{height:140.497533px;}
.h1c{height:140.696637px;}
.h12{height:142.276677px;}
.h4a{height:144.104503px;}
.h45{height:144.940024px;}
.h8{height:145.125000px;}
.h3d{height:145.344963px;}
.h27{height:147.197919px;}
.h16{height:147.554736px;}
.h1a{height:148.698145px;}
.hf{height:150.187500px;}
.h55{height:177.069821px;}
.h6{height:193.379063px;}
.h19{height:195.466852px;}
.h48{height:197.243126px;}
.h58{height:246.408707px;}
.h31{height:253.054855px;}
.h1{height:265.941562px;}
.h0{height:892.500000px;}
.wf{width:22.770000px;}
.wd{width:23.400000px;}
.w10{width:33.750000px;}
.w2{width:51.570000px;}
.wc{width:71.100000px;}
.w3{width:73.350000px;}
.w8{width:76.410000px;}
.w4{width:110.610000px;}
.w6{width:116.640000px;}
.w11{width:166.680000px;}
.w9{width:258.570000px;}
.we{width:301.140000px;}
.w1{width:412.110000px;}
.wa{width:434.070000px;}
.w5{width:585.360000px;}
.wb{width:588.780000px;}
.w7{width:595.080000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:154.785750px;}
.xb{left:156.315750px;}
.x69{left:159.196500px;}
.x8b{left:174.315750px;}
.x68{left:186.465750px;}
.x6{left:187.815750px;}
.x1{left:192.225750px;}
.x5a{left:193.755498px;}
.x72{left:195.826500px;}
.x62{left:199.335750px;}
.x4{left:200.865750px;}
.x66{left:207.255750px;}
.x15{left:208.785750px;}
.xc{left:210.315750px;}
.x81{left:216.344571px;}
.x1a{left:218.775750px;}
.xe{left:222.647829px;}
.x8e{left:230.385750px;}
.x43{left:236.956500px;}
.x45{left:240.556626px;}
.x35{left:243.435991px;}
.x16{left:244.605750px;}
.xf{left:248.115750px;}
.x7{left:255.045750px;}
.x18{left:259.545750px;}
.x19{left:262.875750px;}
.x88{left:264.855750px;}
.x89{left:268.995750px;}
.x7e{left:271.424049px;}
.x34{left:272.595750px;}
.x87{left:276.195750px;}
.x5b{left:278.175750px;}
.x1d{left:281.325750px;}
.x8f{left:284.835750px;}
.x10{left:288.885750px;}
.x44{left:294.735750px;}
.x90{left:296.625750px;}
.x61{left:299.325750px;}
.x17{left:300.495750px;}
.x1c{left:308.775750px;}
.x82{left:311.115750px;}
.x57{left:314.534450px;}
.x2d{left:318.315750px;}
.x83{left:321.195750px;}
.x5e{left:322.454082px;}
.x40{left:324.345750px;}
.x53{left:328.036328px;}
.x54{left:332.896154px;}
.x5c{left:335.325750px;}
.x4f{left:347.655750px;}
.x84{left:363.135750px;}
.x8c{left:365.565750px;}
.x74{left:367.994841px;}
.x60{left:370.785900px;}
.x55{left:373.126500px;}
.x8d{left:375.645750px;}
.x8a{left:376.905750px;}
.x63{left:381.495750px;}
.x12{left:388.785750px;}
.x26{left:390.047657px;}
.x1b{left:392.835750px;}
.x73{left:394.454652px;}
.x3d{left:396.255750px;}
.x4d{left:397.605750px;}
.x5{left:399.676056px;}
.x2a{left:402.915750px;}
.x48{left:407.595752px;}
.x21{left:409.575750px;}
.x4a{left:411.196961px;}
.x11{left:413.805750px;}
.x29{left:419.385373px;}
.x2c{left:423.975750px;}
.x37{left:437.116500px;}
.x41{left:438.646500px;}
.x6c{left:440.715750px;}
.x28{left:446.115750px;}
.x85{left:461.145750px;}
.x20{left:462.675750px;}
.x24{left:464.116500px;}
.x7a{left:465.556190px;}
.x38{left:467.445750px;}
.x56{left:468.615750px;}
.x23{left:472.935422px;}
.x4c{left:476.805750px;}
.x6a{left:478.065750px;}
.x42{left:482.565750px;}
.x32{left:484.186500px;}
.x2{left:485.715750px;}
.x22{left:486.795750px;}
.x3e{left:493.455750px;}
.x5d{left:495.795750px;}
.x67{left:496.875750px;}
.xa{left:498.675750px;}
.x25{left:503.355750px;}
.x71{left:505.246500px;}
.x7c{left:514.875485px;}
.x77{left:526.215663px;}
.x52{left:527.296705px;}
.x5f{left:533.415750px;}
.x59{left:536.925750px;}
.x78{left:538.455094px;}
.x1f{left:543.585750px;}
.x33{left:544.935750px;}
.x4e{left:547.365750px;}
.x47{left:548.715750px;}
.x2b{left:554.385750px;}
.xd{left:556.005750px;}
.x3{left:557.176659px;}
.x39{left:567.435089px;}
.x31{left:571.845750px;}
.x1e{left:573.465750px;}
.x36{left:593.805750px;}
.x4b{left:599.025750px;}
.x50{left:619.817187px;}
.x6d{left:630.256500px;}
.x8{left:633.855750px;}
.x3a{left:652.305750px;}
.x76{left:668.055750px;}
.x7f{left:678.945750px;}
.x3b{left:680.476500px;}
.x13{left:685.785750px;}
.x58{left:692.175750px;}
.x75{left:699.375300px;}
.x51{left:701.535750px;}
.x64{left:715.306500px;}
.x7b{left:731.055750px;}
.x9{left:742.575750px;}
.x3c{left:746.175750px;}
.x65{left:755.625750px;}
.x86{left:768.225750px;}
.x49{left:779.117894px;}
.x46{left:799.005750px;}
.x7d{left:809.624673px;}
.x27{left:824.656500px;}
.x80{left:844.635933px;}
.x6f{left:847.605750px;}
.x6b{left:859.395750px;}
.x6e{left:883.965750px;}
.x2f{left:885.856500px;}
.x30{left:918.795750px;}
.x2e{left:947.235750px;}
.x79{left:961.365750px;}
.x70{left:967.485750px;}
.x3f{left:1018.245750px;}
@media print{
.vb{vertical-align:-111.261758pt;}
.va{vertical-align:-105.274844pt;}
.v1{vertical-align:-97.605541pt;}
.v4{vertical-align:-84.163421pt;}
.v5{vertical-align:-82.885711pt;}
.vd{vertical-align:-80.963481pt;}
.v7{vertical-align:-31.680000pt;}
.v2{vertical-align:-21.763829pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:24.961468pt;}
.vc{vertical-align:40.641468pt;}
.v3{vertical-align:80.000000pt;}
.v8{vertical-align:84.475124pt;}
.ve{vertical-align:100.161669pt;}
.v6{vertical-align:103.034651pt;}
.ls2d{letter-spacing:-7.196495pt;}
.ls3e{letter-spacing:-5.215912pt;}
.ls29{letter-spacing:-3.163792pt;}
.ls1d{letter-spacing:-3.151035pt;}
.ls2a{letter-spacing:-3.138278pt;}
.ls48{letter-spacing:-0.089600pt;}
.ls66{letter-spacing:-0.076800pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.059776pt;}
.ls6{letter-spacing:-0.051200pt;}
.ls17{letter-spacing:-0.038400pt;}
.ls6a{letter-spacing:-0.034112pt;}
.ls8{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.017056pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.017056pt;}
.ls5{letter-spacing:0.025600pt;}
.ls16{letter-spacing:0.034112pt;}
.lsa{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.051168pt;}
.ls19{letter-spacing:0.051200pt;}
.ls0{letter-spacing:0.059776pt;}
.ls22{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.068224pt;}
.ls1{letter-spacing:0.070368pt;}
.lse{letter-spacing:0.085280pt;}
.ls2{letter-spacing:0.102336pt;}
.ls28{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.153600pt;}
.ls4d{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.423489pt;}
.ls69{letter-spacing:0.461988pt;}
.ls68{letter-spacing:0.474821pt;}
.ls44{letter-spacing:0.513265pt;}
.ls43{letter-spacing:0.815960pt;}
.ls45{letter-spacing:1.039691pt;}
.ls4f{letter-spacing:1.174567pt;}
.ls15{letter-spacing:24.960000pt;}
.ls26{letter-spacing:25.004164pt;}
.ls14{letter-spacing:29.760000pt;}
.ls46{letter-spacing:31.488000pt;}
.ls4c{letter-spacing:31.519360pt;}
.ls20{letter-spacing:31.616000pt;}
.ls11{letter-spacing:31.744000pt;}
.ls1b{letter-spacing:31.808000pt;}
.ls24{letter-spacing:31.872000pt;}
.ls3c{letter-spacing:31.883934pt;}
.ls4a{letter-spacing:31.936000pt;}
.ls27{letter-spacing:31.987200pt;}
.ls9{letter-spacing:32.000000pt;}
.ls49{letter-spacing:32.192000pt;}
.ls1a{letter-spacing:32.448000pt;}
.ls2e{letter-spacing:40.550923pt;}
.ls21{letter-spacing:48.000000pt;}
.ls4b{letter-spacing:49.004352pt;}
.ls56{letter-spacing:49.224817pt;}
.ls52{letter-spacing:60.556208pt;}
.ls10{letter-spacing:63.424000pt;}
.ls2f{letter-spacing:63.445271pt;}
.ls13{letter-spacing:63.744000pt;}
.ls12{letter-spacing:63.808000pt;}
.ls38{letter-spacing:83.120998pt;}
.ls5c{letter-spacing:87.943317pt;}
.ls60{letter-spacing:91.144923pt;}
.ls33{letter-spacing:94.647557pt;}
.ls30{letter-spacing:99.657278pt;}
.ls1c{letter-spacing:127.380908pt;}
.ls1f{letter-spacing:128.388729pt;}
.ls50{letter-spacing:140.618155pt;}
.ls57{letter-spacing:154.321502pt;}
.ls53{letter-spacing:156.009435pt;}
.ls61{letter-spacing:157.168586pt;}
.ls5d{letter-spacing:165.210415pt;}
.ls2c{letter-spacing:167.866800pt;}
.ls37{letter-spacing:196.675589pt;}
.ls35{letter-spacing:204.764276pt;}
.ls51{letter-spacing:209.812053pt;}
.ls55{letter-spacing:215.531947pt;}
.ls62{letter-spacing:242.758982pt;}
.ls42{letter-spacing:264.473487pt;}
.ls40{letter-spacing:271.200676pt;}
.ls3f{letter-spacing:272.645082pt;}
.ls41{letter-spacing:273.434156pt;}
.ls3d{letter-spacing:300.863433pt;}
.ls65{letter-spacing:309.698626pt;}
.ls31{letter-spacing:358.644480pt;}
.ls4e{letter-spacing:399.554600pt;}
.ls34{letter-spacing:411.980981pt;}
.ls58{letter-spacing:417.999312pt;}
.ls54{letter-spacing:421.698421pt;}
.ls3a{letter-spacing:469.179019pt;}
.ls5a{letter-spacing:517.946612pt;}
.ls32{letter-spacing:527.087905pt;}
.ls5e{letter-spacing:543.354508pt;}
.ls39{letter-spacing:573.961251pt;}
.ls36{letter-spacing:618.201564pt;}
.ls63{letter-spacing:655.369535pt;}
.ls5f{letter-spacing:658.925663pt;}
.ls1e{letter-spacing:738.315927pt;}
.ls3b{letter-spacing:765.776126pt;}
.ls5b{letter-spacing:775.404575pt;}
.ls64{letter-spacing:1113.868858pt;}
.ls2b{letter-spacing:1181.013016pt;}
.ls59{letter-spacing:1275.867478pt;}
.ls25{letter-spacing:1497.736682pt;}
.ws4c{word-spacing:-526.580010pt;}
.ws4d{word-spacing:-488.508753pt;}
.ws46{word-spacing:-445.668181pt;}
.ws42{word-spacing:-394.044480pt;}
.ws74{word-spacing:-259.117490pt;}
.ws4f{word-spacing:-223.294530pt;}
.ws7f{word-spacing:-194.579474pt;}
.ws77{word-spacing:-169.107266pt;}
.ws73{word-spacing:-149.927723pt;}
.ws41{word-spacing:-129.941965pt;}
.ws37{word-spacing:-128.000000pt;}
.ws72{word-spacing:-108.654084pt;}
.ws4b{word-spacing:-94.418484pt;}
.ws31{word-spacing:-84.082881pt;}
.ws47{word-spacing:-83.355608pt;}
.ws7d{word-spacing:-75.262942pt;}
.ws40{word-spacing:-56.640331pt;}
.wsa{word-spacing:-42.622944pt;}
.ws48{word-spacing:-35.860048pt;}
.ws3d{word-spacing:-35.400000pt;}
.ws5f{word-spacing:-33.717560pt;}
.ws30{word-spacing:-32.000000pt;}
.ws7a{word-spacing:-20.399120pt;}
.ws3f{word-spacing:-16.133544pt;}
.ws93{word-spacing:-7.667200pt;}
.ws8d{word-spacing:-6.976000pt;}
.ws75{word-spacing:-1.055791pt;}
.ws8c{word-spacing:-0.998400pt;}
.ws65{word-spacing:-0.985600pt;}
.ws63{word-spacing:-0.960000pt;}
.wsc{word-spacing:-0.870400pt;}
.ws2d{word-spacing:-0.857600pt;}
.ws2c{word-spacing:-0.844800pt;}
.ws8a{word-spacing:-0.819200pt;}
.ws8b{word-spacing:-0.806400pt;}
.ws8e{word-spacing:-0.780800pt;}
.ws7{word-spacing:-0.768000pt;}
.ws59{word-spacing:-0.755200pt;}
.ws5c{word-spacing:-0.742400pt;}
.ws85{word-spacing:-0.729600pt;}
.ws54{word-spacing:-0.716800pt;}
.ws58{word-spacing:-0.704000pt;}
.ws1a{word-spacing:-0.691200pt;}
.wsd{word-spacing:-0.678400pt;}
.ws28{word-spacing:-0.665600pt;}
.ws5b{word-spacing:-0.652800pt;}
.wsb{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.627648pt;}
.ws57{word-spacing:-0.627200pt;}
.ws39{word-spacing:-0.614400pt;}
.wsf{word-spacing:-0.601600pt;}
.ws38{word-spacing:-0.588800pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws1d{word-spacing:-0.563200pt;}
.ws68{word-spacing:-0.550400pt;}
.ws4{word-spacing:-0.537984pt;}
.ws2a{word-spacing:-0.537600pt;}
.ws43{word-spacing:-0.524800pt;}
.ws10{word-spacing:-0.512000pt;}
.ws1c{word-spacing:-0.499200pt;}
.ws14{word-spacing:-0.486400pt;}
.ws2b{word-spacing:-0.473600pt;}
.ws24{word-spacing:-0.460800pt;}
.ws16{word-spacing:-0.448000pt;}
.ws5{word-spacing:-0.435200pt;}
.ws70{word-spacing:-0.422400pt;}
.ws23{word-spacing:-0.409600pt;}
.ws79{word-spacing:-0.396800pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.371200pt;}
.ws25{word-spacing:-0.358400pt;}
.ws6{word-spacing:-0.345600pt;}
.ws4a{word-spacing:-0.332800pt;}
.ws15{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.307200pt;}
.ws9{word-spacing:-0.294400pt;}
.ws35{word-spacing:-0.281600pt;}
.ws1e{word-spacing:-0.268800pt;}
.wse{word-spacing:-0.256000pt;}
.ws90{word-spacing:-0.230994pt;}
.ws8{word-spacing:-0.230400pt;}
.ws34{word-spacing:-0.204800pt;}
.ws53{word-spacing:-0.192000pt;}
.ws8f{word-spacing:-0.179662pt;}
.ws95{word-spacing:-0.179200pt;}
.ws11{word-spacing:-0.170560pt;}
.ws6f{word-spacing:-0.166400pt;}
.ws6d{word-spacing:-0.140800pt;}
.ws61{word-spacing:-0.131606pt;}
.ws20{word-spacing:-0.115200pt;}
.ws21{word-spacing:-0.102336pt;}
.ws97{word-spacing:-0.085280pt;}
.ws5a{word-spacing:-0.076800pt;}
.ws86{word-spacing:-0.064000pt;}
.ws94{word-spacing:-0.051168pt;}
.ws0{word-spacing:-0.046912pt;}
.ws45{word-spacing:-0.038400pt;}
.ws12{word-spacing:-0.034112pt;}
.ws29{word-spacing:-0.017056pt;}
.ws18{word-spacing:-0.012800pt;}
.ws2{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.012800pt;}
.ws80{word-spacing:0.017056pt;}
.ws6e{word-spacing:0.025600pt;}
.ws55{word-spacing:0.034112pt;}
.ws87{word-spacing:0.038400pt;}
.ws17{word-spacing:0.051168pt;}
.ws3a{word-spacing:0.064000pt;}
.ws13{word-spacing:0.068224pt;}
.ws19{word-spacing:0.076800pt;}
.ws26{word-spacing:0.085280pt;}
.ws52{word-spacing:0.102336pt;}
.ws2e{word-spacing:0.119392pt;}
.ws22{word-spacing:0.136448pt;}
.ws44{word-spacing:0.140800pt;}
.ws88{word-spacing:0.153504pt;}
.ws84{word-spacing:0.153600pt;}
.ws71{word-spacing:0.170560pt;}
.ws5d{word-spacing:0.187616pt;}
.ws82{word-spacing:0.192000pt;}
.ws56{word-spacing:0.204672pt;}
.ws69{word-spacing:0.221728pt;}
.ws92{word-spacing:0.268800pt;}
.ws1b{word-spacing:0.272896pt;}
.ws66{word-spacing:0.294400pt;}
.ws64{word-spacing:0.307200pt;}
.ws33{word-spacing:0.320000pt;}
.ws6b{word-spacing:0.332800pt;}
.ws89{word-spacing:0.375232pt;}
.ws6a{word-spacing:0.443456pt;}
.ws1{word-spacing:0.460512pt;}
.ws62{word-spacing:0.494624pt;}
.ws60{word-spacing:0.511680pt;}
.ws67{word-spacing:0.528736pt;}
.ws91{word-spacing:0.596960pt;}
.ws83{word-spacing:0.870400pt;}
.ws96{word-spacing:0.903968pt;}
.ws36{word-spacing:1.556382pt;}
.ws3c{word-spacing:1.645682pt;}
.ws3b{word-spacing:1.671197pt;}
.ws7c{word-spacing:21.125555pt;}
.ws78{word-spacing:41.504816pt;}
.ws3e{word-spacing:54.399021pt;}
.ws4e{word-spacing:84.845502pt;}
.ws81{word-spacing:99.741360pt;}
.ws51{word-spacing:204.182894pt;}
.ws7e{word-spacing:337.648530pt;}
.ws32{word-spacing:354.204398pt;}
.ws76{word-spacing:597.109329pt;}
.ws7b{word-spacing:622.624066pt;}
.ws5e{word-spacing:724.795927pt;}
.ws50{word-spacing:1241.895273pt;}
._53{margin-left:-1930.223379pt;}
._c{margin-left:-1366.911323pt;}
._24{margin-left:-629.454480pt;}
._37{margin-left:-522.556948pt;}
._12{margin-left:-501.844560pt;}
._2d{margin-left:-353.270929pt;}
._2e{margin-left:-302.928777pt;}
._30{margin-left:-275.628670pt;}
._3e{margin-left:-167.618013pt;}
._58{margin-left:-166.307130pt;}
._3f{margin-left:-164.167064pt;}
._5c{margin-left:-157.824033pt;}
._5d{margin-left:-156.677001pt;}
._40{margin-left:-148.733737pt;}
._41{margin-left:-131.467731pt;}
._3b{margin-left:-130.236011pt;}
._59{margin-left:-123.162790pt;}
._28{margin-left:-102.028481pt;}
._34{margin-left:-100.792102pt;}
._2b{margin-left:-95.240452pt;}
._25{margin-left:-90.335596pt;}
._31{margin-left:-81.805996pt;}
._54{margin-left:-79.161773pt;}
._35{margin-left:-69.112660pt;}
._32{margin-left:-60.151864pt;}
._60{margin-left:-55.137981pt;}
._2f{margin-left:-51.191069pt;}
._5e{margin-left:-47.872828pt;}
._e{margin-left:-32.089600pt;}
._36{margin-left:-15.994683pt;}
._8{margin-left:-14.041600pt;}
._d{margin-left:-12.489325pt;}
._2{margin-left:-11.157824pt;}
._4{margin-left:-9.088000pt;}
._46{margin-left:-8.000000pt;}
._43{margin-left:-6.553600pt;}
._0{margin-left:-5.290176pt;}
._3{margin-left:-3.053024pt;}
._6{margin-left:-1.408000pt;}
._1{width:1.433600pt;}
._10{width:2.763528pt;}
._11{width:3.890954pt;}
._a{width:5.536636pt;}
._1e{width:6.723930pt;}
._13{width:7.749200pt;}
._1b{width:11.341568pt;}
._2a{width:14.714569pt;}
._57{width:16.311970pt;}
._9{width:18.612794pt;}
._61{width:21.414400pt;}
._42{width:24.960000pt;}
._5a{width:27.242443pt;}
._5{width:29.708800pt;}
._44{width:39.283456pt;}
._63{width:41.833335pt;}
._7{width:63.142400pt;}
._23{width:68.481468pt;}
._f{width:84.197696pt;}
._27{width:87.047725pt;}
._52{width:94.717644pt;}
._18{width:101.683429pt;}
._4e{width:104.958816pt;}
._20{width:107.029297pt;}
._29{width:110.291893pt;}
._15{width:111.363396pt;}
._3d{width:122.921659pt;}
._14{width:130.401028pt;}
._3c{width:146.593875pt;}
._56{width:148.483797pt;}
._3a{width:169.302731pt;}
._19{width:193.035317pt;}
._50{width:197.287733pt;}
._38{width:200.003636pt;}
._26{width:201.921077pt;}
._1c{width:205.363392pt;}
._17{width:210.723633pt;}
._5b{width:216.322662pt;}
._1a{width:224.630556pt;}
._4f{width:230.399976pt;}
._4d{width:235.203825pt;}
._39{width:250.565903pt;}
._4c{width:282.239311pt;}
._b{width:292.319092pt;}
._33{width:306.243598pt;}
._2c{width:324.704183pt;}
._1f{width:328.878468pt;}
._5f{width:330.319991pt;}
._21{width:334.724777pt;}
._48{width:377.292800pt;}
._49{width:392.486400pt;}
._22{width:409.282084pt;}
._51{width:428.967856pt;}
._45{width:498.099200pt;}
._55{width:530.878076pt;}
._1d{width:596.620484pt;}
._4b{width:602.534400pt;}
._47{width:698.252800pt;}
._16{width:709.752625pt;}
._62{width:779.595831pt;}
._4a{width:1138.521600pt;}
.fs24{font-size:72.871467pt;}
.fs21{font-size:75.646400pt;}
.fs19{font-size:76.297600pt;}
.fs26{font-size:77.015518pt;}
.fse{font-size:77.269867pt;}
.fs11{font-size:77.318933pt;}
.fsc{font-size:77.901333pt;}
.fs9{font-size:78.057600pt;}
.fs1f{font-size:80.553507pt;}
.fs1b{font-size:80.636650pt;}
.fs18{font-size:85.440000pt;}
.fs25{font-size:126.047467pt;}
.fs4{font-size:127.572267pt;}
.fs3{font-size:128.000000pt;}
.fs28{font-size:128.330133pt;}
.fs6{font-size:129.187733pt;}
.fs22{font-size:130.847467pt;}
.fs15{font-size:131.149867pt;}
.fs17{font-size:131.327467pt;}
.fs14{font-size:131.520000pt;}
.fs13{font-size:131.606400pt;}
.fs1e{font-size:131.840000pt;}
.fs16{font-size:131.931200pt;}
.fs1a{font-size:131.973867pt;}
.fs1d{font-size:132.205333pt;}
.fs27{font-size:133.215706pt;}
.fsf{font-size:133.656533pt;}
.fs12{font-size:133.741333pt;}
.fsd{font-size:134.748800pt;}
.fs5{font-size:134.827598pt;}
.fsa{font-size:135.018667pt;}
.fs7{font-size:136.534943pt;}
.fs23{font-size:138.289005pt;}
.fs20{font-size:139.090807pt;}
.fs1c{font-size:139.479405pt;}
.fs10{font-size:141.257582pt;}
.fs8{font-size:141.600000pt;}
.fsb{font-size:142.697266pt;}
.fs2{font-size:149.440000pt;}
.fs1{font-size:170.560000pt;}
.fs0{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:4.160000pt;}
.y92{bottom:5.440000pt;}
.y2c{bottom:6.880000pt;}
.yb3{bottom:6.960000pt;}
.y2f{bottom:7.040000pt;}
.y3c{bottom:7.120000pt;}
.y9e{bottom:7.200000pt;}
.y51{bottom:7.280000pt;}
.y5a{bottom:7.360000pt;}
.y46{bottom:7.440000pt;}
.y3f{bottom:7.760000pt;}
.y9c{bottom:92.533333pt;}
.y7a{bottom:98.213333pt;}
.y9a{bottom:98.373333pt;}
.y90{bottom:101.253467pt;}
.y9b{bottom:105.173333pt;}
.y6d{bottom:115.813333pt;}
.y5{bottom:122.293901pt;}
.y69{bottom:131.813333pt;}
.y4a{bottom:134.933333pt;}
.y3e{bottom:135.253333pt;}
.y7e{bottom:139.813333pt;}
.y49{bottom:142.693333pt;}
.y3d{bottom:143.013333pt;}
.y39{bottom:144.133333pt;}
.y1b{bottom:147.813333pt;}
.y79{bottom:155.813333pt;}
.y28{bottom:162.453333pt;}
.ybd{bottom:167.013333pt;}
.y6c{bottom:173.413333pt;}
.y19{bottom:175.013333pt;}
.y71{bottom:183.013333pt;}
.y68{bottom:189.413333pt;}
.y4{bottom:189.493333pt;}
.y7d{bottom:197.413333pt;}
.y43{bottom:203.652161pt;}
.y48{bottom:203.652455pt;}
.y44{bottom:203.653333pt;}
.y88{bottom:204.053333pt;}
.y1a{bottom:205.413333pt;}
.y40{bottom:209.893333pt;}
.y78{bottom:213.413333pt;}
.y32{bottom:217.971172pt;}
.y45{bottom:222.453333pt;}
.y2a{bottom:225.413733pt;}
.y8d{bottom:227.333333pt;}
.y42{bottom:229.893038pt;}
.y47{bottom:229.893333pt;}
.y18{bottom:232.613333pt;}
.y82{bottom:239.013333pt;}
.y70{bottom:240.613333pt;}
.y6b{bottom:247.013333pt;}
.y2d{bottom:249.811929pt;}
.y31{bottom:249.813210pt;}
.y41{bottom:251.013333pt;}
.y7c{bottom:255.013333pt;}
.yc1{bottom:255.332046pt;}
.y87{bottom:261.653333pt;}
.y10{bottom:263.013333pt;}
.y2e{bottom:266.213333pt;}
.y2b{bottom:266.373333pt;}
.yab{bottom:268.453333pt;}
.y30{bottom:270.773333pt;}
.y77{bottom:271.013333pt;}
.y29{bottom:273.253333pt;}
.ya0{bottom:275.333333pt;}
.y8c{bottom:284.933333pt;}
.y52{bottom:288.451854pt;}
.y17{bottom:290.213333pt;}
.y81{bottom:296.613333pt;}
.y6f{bottom:298.213333pt;}
.y5f{bottom:299.813333pt;}
.yc0{bottom:300.613333pt;}
.y3{bottom:304.374429pt;}
.y6a{bottom:304.613333pt;}
.y50{bottom:307.333333pt;}
.y7b{bottom:312.613333pt;}
.y4e{bottom:314.613333pt;}
.y38{bottom:316.933333pt;}
.y86{bottom:319.253333pt;}
.yf{bottom:320.613333pt;}
.yaa{bottom:326.053333pt;}
.y53{bottom:328.213333pt;}
.y76{bottom:328.613333pt;}
.y4d{bottom:329.733333pt;}
.y9f{bottom:332.933333pt;}
.y27{bottom:335.253333pt;}
.y4f{bottom:335.654358pt;}
.y9{bottom:348.213333pt;}
.y91{bottom:351.813333pt;}
.y94{bottom:351.893333pt;}
.y80{bottom:354.213333pt;}
.y6e{bottom:355.813333pt;}
.y67{bottom:356.853333pt;}
.y5e{bottom:357.413333pt;}
.y8b{bottom:358.533333pt;}
.y93{bottom:359.013333pt;}
.y20{bottom:370.213333pt;}
.y85{bottom:376.853333pt;}
.ye{bottom:378.213333pt;}
.y2{bottom:381.173333pt;}
.y95{bottom:381.413333pt;}
.ya9{bottom:383.653333pt;}
.y75{bottom:386.213333pt;}
.y4c{bottom:389.413333pt;}
.y37{bottom:390.533333pt;}
.y26{bottom:392.853333pt;}
.ybe{bottom:394.213333pt;}
.y16{bottom:398.373333pt;}
.y8e{bottom:399.973333pt;}
.yc2{bottom:401.093333pt;}
.y12{bottom:401.094429pt;}
.y8{bottom:405.813333pt;}
.y21{bottom:411.813333pt;}
.ybc{bottom:413.413333pt;}
.y1f{bottom:427.813333pt;}
.y8a{bottom:432.133333pt;}
.y84{bottom:434.453333pt;}
.yd{bottom:435.813333pt;}
.y98{bottom:438.453333pt;}
.ya8{bottom:439.652753pt;}
.y99{bottom:439.653333pt;}
.y3b{bottom:441.093333pt;}
.y63{bottom:442.212673pt;}
.y66{bottom:442.213529pt;}
.yb9{bottom:443.492299pt;}
.y74{bottom:443.813333pt;}
.y97{bottom:446.933333pt;}
.y36{bottom:448.133333pt;}
.y3a{bottom:448.213333pt;}
.ya4{bottom:449.254347pt;}
.y25{bottom:450.453333pt;}
.y13{bottom:451.813333pt;}
.yb8{bottom:452.772543pt;}
.y15{bottom:455.973333pt;}
.y61{bottom:457.173990pt;}
.y58{bottom:457.653333pt;}
.y57{bottom:457.653498pt;}
.y5d{bottom:457.653990pt;}
.y64{bottom:461.013333pt;}
.y96{bottom:461.733333pt;}
.y65{bottom:468.373333pt;}
.yb1{bottom:470.933333pt;}
.ybb{bottom:471.013333pt;}
.yb7{bottom:473.973727pt;}
.y5b{bottom:476.213333pt;}
.ya7{bottom:476.613891pt;}
.ya3{bottom:476.614552pt;}
.y73{bottom:477.333243pt;}
.y11{bottom:477.893333pt;}
.yb6{bottom:479.094405pt;}
.yae{bottom:479.094482pt;}
.yb0{bottom:479.097633pt;}
.y7{bottom:482.613333pt;}
.y56{bottom:483.572841pt;}
.y5c{bottom:483.573333pt;}
.y22{bottom:483.733333pt;}
.y7f{bottom:485.413333pt;}
.y62{bottom:489.413333pt;}
.y89{bottom:489.733333pt;}
.y83{bottom:492.053333pt;}
.yb2{bottom:492.453333pt;}
.yad{bottom:493.172966pt;}
.ybf{bottom:493.413333pt;}
.y59{bottom:497.093333pt;}
.ya6{bottom:497.732672pt;}
.ya2{bottom:497.733333pt;}
.y54{bottom:498.533333pt;}
.yb5{bottom:499.413257pt;}
.yb4{bottom:499.413333pt;}
.yaf{bottom:499.416485pt;}
.y1e{bottom:501.413333pt;}
.ya5{bottom:501.733333pt;}
.y60{bottom:504.373333pt;}
.y55{bottom:504.453333pt;}
.y35{bottom:505.733333pt;}
.y24{bottom:508.053333pt;}
.yc{bottom:509.413333pt;}
.ya1{bottom:512.373333pt;}
.yac{bottom:513.573333pt;}
.y14{bottom:513.733333pt;}
.y8f{bottom:517.733333pt;}
.y72{bottom:523.813333pt;}
.yba{bottom:528.613333pt;}
.y1{bottom:534.773333pt;}
.y6{bottom:540.213333pt;}
.y1d{bottom:559.013333pt;}
.y4b{bottom:562.213333pt;}
.y34{bottom:563.333333pt;}
.y23{bottom:565.653333pt;}
.yb{bottom:567.013333pt;}
.y1c{bottom:654.613333pt;}
.ya{bottom:654.693333pt;}
.y33{bottom:654.853333pt;}
.h42{height:23.360000pt;}
.h37{height:27.360000pt;}
.h44{height:29.120000pt;}
.hc{height:35.280000pt;}
.h33{height:36.400000pt;}
.h11{height:36.720000pt;}
.h21{height:37.280000pt;}
.h52{height:38.640000pt;}
.he{height:39.120000pt;}
.h28{height:39.360000pt;}
.h22{height:39.760000pt;}
.h1d{height:40.240000pt;}
.h3c{height:40.480000pt;}
.h2a{height:40.960000pt;}
.h1b{height:41.360000pt;}
.h15{height:43.360000pt;}
.h4d{height:50.632860pt;}
.h46{height:52.560951pt;}
.h39{height:53.013420pt;}
.h24{height:53.688975pt;}
.h2b{height:53.723067pt;}
.h1e{height:54.127733pt;}
.h17{height:54.236311pt;}
.h54{height:67.498619pt;}
.h4b{height:70.068955pt;}
.h3e{height:70.672142pt;}
.h51{height:71.337127pt;}
.h43{height:74.614259pt;}
.h3b{height:74.691272pt;}
.h50{height:87.519286pt;}
.h4f{height:87.580833pt;}
.hd{height:88.578009pt;}
.h9{height:88.640301pt;}
.h5{height:88.875000pt;}
.h4{height:88.937500pt;}
.h57{height:89.166885pt;}
.h10{height:89.762766pt;}
.h49{height:90.852098pt;}
.h47{height:90.915989pt;}
.h35{height:91.126104pt;}
.h34{height:91.319063pt;}
.h32{height:91.383281pt;}
.h30{height:91.443314pt;}
.h41{height:91.541250pt;}
.h36{height:91.604573pt;}
.h3a{height:91.698639pt;}
.h40{height:91.794914pt;}
.h26{height:92.802534pt;}
.h2d{height:92.861414pt;}
.h25{height:92.867796pt;}
.h2c{height:92.926717pt;}
.h20{height:93.560934pt;}
.h1f{height:93.626730pt;}
.h18{height:93.814240pt;}
.h2f{height:98.317969pt;}
.h14{height:98.387109pt;}
.h3{height:103.761562pt;}
.h4e{height:112.542301pt;}
.h56{height:116.753928pt;}
.hb{height:118.166304pt;}
.h2{height:118.509219pt;}
.h7{height:118.562500pt;}
.h13{height:119.662661pt;}
.h4c{height:121.200022pt;}
.h38{height:121.644631pt;}
.h3f{height:122.243372pt;}
.h53{height:123.393650pt;}
.h29{height:123.801974pt;}
.h2e{height:123.880522pt;}
.h23{height:124.813708pt;}
.ha{height:124.886696pt;}
.h1c{height:125.063677pt;}
.h12{height:126.468157pt;}
.h4a{height:128.092891pt;}
.h45{height:128.835577pt;}
.h8{height:129.000000pt;}
.h3d{height:129.195523pt;}
.h27{height:130.842595pt;}
.h16{height:131.159766pt;}
.h1a{height:132.176129pt;}
.hf{height:133.500000pt;}
.h55{height:157.395396pt;}
.h6{height:171.892500pt;}
.h19{height:173.748312pt;}
.h48{height:175.327223pt;}
.h58{height:219.029962pt;}
.h31{height:224.937649pt;}
.h1{height:236.392500pt;}
.h0{height:793.333333pt;}
.wf{width:20.240000pt;}
.wd{width:20.800000pt;}
.w10{width:30.000000pt;}
.w2{width:45.840000pt;}
.wc{width:63.200000pt;}
.w3{width:65.200000pt;}
.w8{width:67.920000pt;}
.w4{width:98.320000pt;}
.w6{width:103.680000pt;}
.w11{width:148.160000pt;}
.w9{width:229.840000pt;}
.we{width:267.680000pt;}
.w1{width:366.320000pt;}
.wa{width:385.840000pt;}
.w5{width:520.320000pt;}
.wb{width:523.360000pt;}
.w7{width:528.960000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:137.587333pt;}
.xb{left:138.947333pt;}
.x69{left:141.508000pt;}
.x8b{left:154.947333pt;}
.x68{left:165.747333pt;}
.x6{left:166.947333pt;}
.x1{left:170.867333pt;}
.x5a{left:172.227109pt;}
.x72{left:174.068000pt;}
.x62{left:177.187333pt;}
.x4{left:178.547333pt;}
.x66{left:184.227333pt;}
.x15{left:185.587333pt;}
.xc{left:186.947333pt;}
.x81{left:192.306285pt;}
.x1a{left:194.467333pt;}
.xe{left:197.909181pt;}
.x8e{left:204.787333pt;}
.x43{left:210.628000pt;}
.x45{left:213.828112pt;}
.x35{left:216.387548pt;}
.x16{left:217.427333pt;}
.xf{left:220.547333pt;}
.x7{left:226.707333pt;}
.x18{left:230.707333pt;}
.x19{left:233.667333pt;}
.x88{left:235.427333pt;}
.x89{left:239.107333pt;}
.x7e{left:241.265821pt;}
.x34{left:242.307333pt;}
.x87{left:245.507333pt;}
.x5b{left:247.267333pt;}
.x1d{left:250.067333pt;}
.x8f{left:253.187333pt;}
.x10{left:256.787333pt;}
.x44{left:261.987333pt;}
.x90{left:263.667333pt;}
.x61{left:266.067333pt;}
.x17{left:267.107333pt;}
.x1c{left:274.467333pt;}
.x82{left:276.547333pt;}
.x57{left:279.586177pt;}
.x2d{left:282.947333pt;}
.x83{left:285.507333pt;}
.x5e{left:286.625850pt;}
.x40{left:288.307333pt;}
.x53{left:291.587847pt;}
.x54{left:295.907693pt;}
.x5c{left:298.067333pt;}
.x4f{left:309.027333pt;}
.x84{left:322.787333pt;}
.x8c{left:324.947333pt;}
.x74{left:327.106526pt;}
.x60{left:329.587467pt;}
.x55{left:331.668000pt;}
.x8d{left:333.907333pt;}
.x8a{left:335.027333pt;}
.x63{left:339.107333pt;}
.x12{left:345.587333pt;}
.x26{left:346.709029pt;}
.x1b{left:349.187333pt;}
.x73{left:350.626358pt;}
.x3d{left:352.227333pt;}
.x4d{left:353.427333pt;}
.x5{left:355.267605pt;}
.x2a{left:358.147333pt;}
.x48{left:362.307335pt;}
.x21{left:364.067333pt;}
.x4a{left:365.508409pt;}
.x11{left:367.827333pt;}
.x29{left:372.786999pt;}
.x2c{left:376.867333pt;}
.x37{left:388.548000pt;}
.x41{left:389.908000pt;}
.x6c{left:391.747333pt;}
.x28{left:396.547333pt;}
.x85{left:409.907333pt;}
.x20{left:411.267333pt;}
.x24{left:412.548000pt;}
.x7a{left:413.827725pt;}
.x38{left:415.507333pt;}
.x56{left:416.547333pt;}
.x23{left:420.387042pt;}
.x4c{left:423.827333pt;}
.x6a{left:424.947333pt;}
.x42{left:428.947333pt;}
.x32{left:430.388000pt;}
.x2{left:431.747333pt;}
.x22{left:432.707333pt;}
.x3e{left:438.627333pt;}
.x5d{left:440.707333pt;}
.x67{left:441.667333pt;}
.xa{left:443.267333pt;}
.x25{left:447.427333pt;}
.x71{left:449.108000pt;}
.x7c{left:457.667098pt;}
.x77{left:467.747256pt;}
.x52{left:468.708182pt;}
.x5f{left:474.147333pt;}
.x59{left:477.267333pt;}
.x78{left:478.626750pt;}
.x1f{left:483.187333pt;}
.x33{left:484.387333pt;}
.x4e{left:486.547333pt;}
.x47{left:487.747333pt;}
.x2b{left:492.787333pt;}
.xd{left:494.227333pt;}
.x3{left:495.268141pt;}
.x39{left:504.386746pt;}
.x31{left:508.307333pt;}
.x1e{left:509.747333pt;}
.x36{left:527.827333pt;}
.x4b{left:532.467333pt;}
.x50{left:550.948611pt;}
.x6d{left:560.228000pt;}
.x8{left:563.427333pt;}
.x3a{left:579.827333pt;}
.x76{left:593.827333pt;}
.x7f{left:603.507333pt;}
.x3b{left:604.868000pt;}
.x13{left:609.587333pt;}
.x58{left:615.267333pt;}
.x75{left:621.666934pt;}
.x51{left:623.587333pt;}
.x64{left:635.828000pt;}
.x7b{left:649.827333pt;}
.x9{left:660.067333pt;}
.x3c{left:663.267333pt;}
.x65{left:671.667333pt;}
.x86{left:682.867333pt;}
.x49{left:692.549239pt;}
.x46{left:710.227333pt;}
.x7d{left:719.666376pt;}
.x27{left:733.028000pt;}
.x80{left:750.787496pt;}
.x6f{left:753.427333pt;}
.x6b{left:763.907333pt;}
.x6e{left:785.747333pt;}
.x2f{left:787.428000pt;}
.x30{left:816.707333pt;}
.x2e{left:841.987333pt;}
.x79{left:854.547333pt;}
.x70{left:859.987333pt;}
.x3f{left:905.107333pt;}
}




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