
    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_63e7a4e7ba1e581aa307fa9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_3920e33f3ec57afe2e41015f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_1dcd38e7aed76fccdf22aaa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_598277b84d3b2a84b5a162d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_ddd48171b6fc9884af87c299.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_1fdfd8186b968bfeaf20d2a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109000;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_beaa2821ae10f64fe89e74a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.907000;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_0ef01a2e2b4acaec578eadee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_2327901dd8c8565cab5a3405.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.109000;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_d8e283361c8b08e73983df0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_2327901dd8c8565cab5a3405.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2327901dd8c8565cab5a3405.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.109000;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;}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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);}
.v3{vertical-align:-15.840000px;}
.v1{vertical-align:-11.723997px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.840000px;}
.v2{vertical-align:19.800000px;}
.lsa{letter-spacing:-3.200796px;}
.lsb{letter-spacing:-1.925959px;}
.ls9{letter-spacing:-1.920000px;}
.lsd{letter-spacing:-0.787892px;}
.ls1{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.225000px;}
.ls4{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.043772px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.656580px;}
.ls7{letter-spacing:46.781325px;}
.ls12{letter-spacing:105.383935px;}
.ls11{letter-spacing:105.416421px;}
.ls10{letter-spacing:114.414988px;}
.ls6{letter-spacing:2063.136000px;}
.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;}
}
.wsa9{word-spacing:-123.446040px;}
.wsaa{word-spacing:-114.447473px;}
.wsab{word-spacing:-114.414988px;}
.ws44{word-spacing:-55.907787px;}
.ws2{word-spacing:-16.680000px;}
.ws0{word-spacing:-13.986000px;}
.ws47{word-spacing:-12.168560px;}
.wsed{word-spacing:-12.000000px;}
.ws41{word-spacing:-11.424000px;}
.ws48{word-spacing:-11.380668px;}
.ws46{word-spacing:-10.242601px;}
.ws43{word-spacing:-9.886903px;}
.ws42{word-spacing:-6.686107px;}
.wsfa{word-spacing:-5.280000px;}
.wse9{word-spacing:-4.260000px;}
.wsd0{word-spacing:-3.960000px;}
.ws1f{word-spacing:-3.720000px;}
.ws6e{word-spacing:-3.420000px;}
.ws11{word-spacing:-3.300000px;}
.ws4e{word-spacing:-3.060000px;}
.ws110{word-spacing:-2.832000px;}
.wseb{word-spacing:-2.820000px;}
.ws37{word-spacing:-2.760000px;}
.ws61{word-spacing:-2.640000px;}
.ws6f{word-spacing:-2.460000px;}
.ws7c{word-spacing:-2.400000px;}
.wsf9{word-spacing:-2.352000px;}
.ws8a{word-spacing:-2.340000px;}
.ws10f{word-spacing:-2.208000px;}
.wsb5{word-spacing:-2.160000px;}
.wsa2{word-spacing:-2.100000px;}
.wsff{word-spacing:-2.016000px;}
.ws6b{word-spacing:-1.980000px;}
.ws7d{word-spacing:-1.920000px;}
.ws3b{word-spacing:-1.860000px;}
.wsb4{word-spacing:-1.740000px;}
.wsd9{word-spacing:-1.680000px;}
.ws11b{word-spacing:-1.632000px;}
.wsb0{word-spacing:-1.620000px;}
.ws24{word-spacing:-1.560000px;}
.ws78{word-spacing:-1.500000px;}
.ws57{word-spacing:-1.440000px;}
.ws113{word-spacing:-1.392000px;}
.ws85{word-spacing:-1.380000px;}
.ws8e{word-spacing:-1.320000px;}
.wse2{word-spacing:-1.260000px;}
.ws117{word-spacing:-1.200000px;}
.wsdc{word-spacing:-1.140000px;}
.wscc{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.020000px;}
.ws107{word-spacing:-0.960000px;}
.ws54{word-spacing:-0.900000px;}
.wsf2{word-spacing:-0.864000px;}
.ws60{word-spacing:-0.840000px;}
.wsfb{word-spacing:-0.816000px;}
.ws100{word-spacing:-0.768000px;}
.wsd8{word-spacing:-0.600000px;}
.wscf{word-spacing:-0.540000px;}
.ws10b{word-spacing:-0.480000px;}
.ws104{word-spacing:-0.432000px;}
.ws86{word-spacing:-0.300000px;}
.ws33{word-spacing:-0.240000px;}
.ws4{word-spacing:-0.225000px;}
.wsee{word-spacing:-0.192000px;}
.wsf1{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.120000px;}
.ws1b{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws5f{word-spacing:0.060000px;}
.ws5{word-spacing:0.180000px;}
.ws76{word-spacing:0.192000px;}
.ws118{word-spacing:0.240000px;}
.ws58{word-spacing:0.480000px;}
.ws4c{word-spacing:0.600000px;}
.ws11a{word-spacing:0.624000px;}
.wsc9{word-spacing:0.720000px;}
.wsa1{word-spacing:0.780000px;}
.ws55{word-spacing:0.840000px;}
.wsf6{word-spacing:0.864000px;}
.ws36{word-spacing:0.900000px;}
.ws84{word-spacing:0.960000px;}
.ws1d{word-spacing:1.020000px;}
.wsfe{word-spacing:1.152000px;}
.ws68{word-spacing:1.260000px;}
.ws39{word-spacing:1.320000px;}
.ws20{word-spacing:1.380000px;}
.ws101{word-spacing:1.488000px;}
.ws93{word-spacing:1.500000px;}
.ws8b{word-spacing:1.560000px;}
.wsb6{word-spacing:1.584000px;}
.wsdd{word-spacing:1.620000px;}
.ws6a{word-spacing:1.680000px;}
.wsa4{word-spacing:1.800000px;}
.wse6{word-spacing:1.860000px;}
.wse0{word-spacing:1.920000px;}
.ws11c{word-spacing:2.064000px;}
.ws89{word-spacing:2.160000px;}
.ws109{word-spacing:2.256000px;}
.wsd4{word-spacing:2.280000px;}
.ws10c{word-spacing:2.304000px;}
.ws69{word-spacing:2.340000px;}
.ws5b{word-spacing:2.400000px;}
.wsb2{word-spacing:2.460000px;}
.wsc1{word-spacing:2.520000px;}
.ws10d{word-spacing:2.544000px;}
.ws1a{word-spacing:2.640000px;}
.ws91{word-spacing:2.700000px;}
.wse3{word-spacing:2.760000px;}
.ws29{word-spacing:2.820000px;}
.ws114{word-spacing:2.832000px;}
.ws5a{word-spacing:2.880000px;}
.ws6c{word-spacing:3.000000px;}
.wsfc{word-spacing:3.024000px;}
.wsa8{word-spacing:3.060000px;}
.ws119{word-spacing:3.072000px;}
.ws23{word-spacing:3.120000px;}
.ws4d{word-spacing:3.180000px;}
.ws2e{word-spacing:3.300000px;}
.wsc5{word-spacing:3.360000px;}
.ws2f{word-spacing:3.480000px;}
.ws2d{word-spacing:3.660000px;}
.ws95{word-spacing:3.720000px;}
.wse1{word-spacing:3.780000px;}
.ws10{word-spacing:3.840000px;}
.wsf8{word-spacing:3.888000px;}
.wsb3{word-spacing:3.900000px;}
.ws94{word-spacing:3.960000px;}
.ws3f{word-spacing:4.020000px;}
.wsa0{word-spacing:4.260000px;}
.ws66{word-spacing:4.320000px;}
.ws10e{word-spacing:4.368000px;}
.ws8f{word-spacing:4.380000px;}
.wsbd{word-spacing:4.440000px;}
.wsaf{word-spacing:4.560000px;}
.ws10a{word-spacing:4.608000px;}
.ws50{word-spacing:4.620000px;}
.wse4{word-spacing:4.680000px;}
.ws4f{word-spacing:4.740000px;}
.wsf7{word-spacing:4.752000px;}
.ws96{word-spacing:4.800000px;}
.ws7{word-spacing:4.848000px;}
.wsde{word-spacing:4.920000px;}
.ws87{word-spacing:4.980000px;}
.ws6{word-spacing:4.992000px;}
.wsb1{word-spacing:5.040000px;}
.ws105{word-spacing:5.088000px;}
.ws40{word-spacing:5.160000px;}
.ws111{word-spacing:5.184000px;}
.ws62{word-spacing:5.340000px;}
.wsef{word-spacing:5.376000px;}
.wsa{word-spacing:5.400000px;}
.ws2b{word-spacing:5.460000px;}
.ws1c{word-spacing:5.520000px;}
.wse8{word-spacing:5.580000px;}
.ws5d{word-spacing:5.640000px;}
.ws3a{word-spacing:5.700000px;}
.wsfd{word-spacing:5.760000px;}
.wsb7{word-spacing:5.808000px;}
.wsea{word-spacing:5.820000px;}
.ws53{word-spacing:5.880000px;}
.wsa7{word-spacing:5.940000px;}
.wsae{word-spacing:6.000000px;}
.ws102{word-spacing:6.096000px;}
.wscb{word-spacing:6.120000px;}
.ws8d{word-spacing:6.240000px;}
.ws115{word-spacing:6.288000px;}
.ws92{word-spacing:6.300000px;}
.ws3c{word-spacing:6.420000px;}
.ws56{word-spacing:6.480000px;}
.wsad{word-spacing:6.600000px;}
.ws14{word-spacing:6.660000px;}
.wsc4{word-spacing:6.720000px;}
.wsd3{word-spacing:6.780000px;}
.ws22{word-spacing:6.840000px;}
.ws103{word-spacing:6.864000px;}
.ws16{word-spacing:6.900000px;}
.ws80{word-spacing:7.020000px;}
.ws75{word-spacing:7.056000px;}
.ws18{word-spacing:7.140000px;}
.ws83{word-spacing:7.200000px;}
.ws82{word-spacing:7.260000px;}
.ws8{word-spacing:7.320000px;}
.ws49{word-spacing:7.380000px;}
.ws12{word-spacing:7.440000px;}
.ws11d{word-spacing:7.488000px;}
.ws63{word-spacing:7.500000px;}
.ws7e{word-spacing:7.560000px;}
.wsf5{word-spacing:7.584000px;}
.wsc{word-spacing:7.620000px;}
.ws6d{word-spacing:7.680000px;}
.wsdb{word-spacing:7.740000px;}
.ws30{word-spacing:7.800000px;}
.ws112{word-spacing:7.824000px;}
.wsa6{word-spacing:7.860000px;}
.wsdf{word-spacing:7.920000px;}
.ws8c{word-spacing:7.980000px;}
.ws74{word-spacing:8.064000px;}
.ws79{word-spacing:8.100000px;}
.ws77{word-spacing:8.208000px;}
.ws13{word-spacing:8.220000px;}
.ws7b{word-spacing:8.340000px;}
.ws4a{word-spacing:8.400000px;}
.ws27{word-spacing:8.460000px;}
.wsa5{word-spacing:8.580000px;}
.wsf4{word-spacing:8.640000px;}
.ws19{word-spacing:8.700000px;}
.ws5e{word-spacing:8.760000px;}
.ws70{word-spacing:8.820000px;}
.ws3e{word-spacing:8.880000px;}
.ws88{word-spacing:9.000000px;}
.wse7{word-spacing:9.120000px;}
.ws51{word-spacing:9.180000px;}
.ws67{word-spacing:9.240000px;}
.wsd7{word-spacing:9.540000px;}
.ws7a{word-spacing:9.600000px;}
.wsf0{word-spacing:9.696000px;}
.wsa3{word-spacing:9.780000px;}
.ws9f{word-spacing:9.960000px;}
.ws4b{word-spacing:10.080000px;}
.wsc0{word-spacing:10.140000px;}
.ws38{word-spacing:10.320000px;}
.wsf{word-spacing:10.920000px;}
.wsda{word-spacing:10.980000px;}
.ws90{word-spacing:11.040000px;}
.wsce{word-spacing:11.280000px;}
.ws15{word-spacing:11.460000px;}
.ws106{word-spacing:11.712000px;}
.ws2c{word-spacing:12.000000px;}
.wsd{word-spacing:12.120000px;}
.ws9e{word-spacing:12.240000px;}
.wsbf{word-spacing:12.420000px;}
.ws52{word-spacing:12.480000px;}
.ws72{word-spacing:12.576000px;}
.ws28{word-spacing:12.780000px;}
.ws1e{word-spacing:12.900000px;}
.wsbe{word-spacing:13.020000px;}
.wsd2{word-spacing:13.140000px;}
.ws73{word-spacing:13.296000px;}
.ws17{word-spacing:13.560000px;}
.ws35{word-spacing:13.620000px;}
.ws71{word-spacing:13.776000px;}
.wsb{word-spacing:13.860000px;}
.ws7f{word-spacing:13.920000px;}
.wsc8{word-spacing:13.980000px;}
.ws64{word-spacing:14.100000px;}
.wsb9{word-spacing:14.580000px;}
.wse{word-spacing:14.700000px;}
.ws21{word-spacing:14.760000px;}
.ws32{word-spacing:14.820000px;}
.wsf3{word-spacing:14.928000px;}
.wscd{word-spacing:15.060000px;}
.ws5c{word-spacing:15.300000px;}
.wsd6{word-spacing:15.360000px;}
.ws81{word-spacing:15.960000px;}
.ws45{word-spacing:17.432199px;}
.ws116{word-spacing:17.520000px;}
.ws34{word-spacing:18.120000px;}
.wsd1{word-spacing:18.600000px;}
.ws9c{word-spacing:18.840000px;}
.wsd5{word-spacing:19.020000px;}
.ws108{word-spacing:19.776000px;}
.wse5{word-spacing:19.800000px;}
.ws3d{word-spacing:19.920000px;}
.wsba{word-spacing:20.220000px;}
.wsc2{word-spacing:20.520000px;}
.wsca{word-spacing:20.940000px;}
.ws9d{word-spacing:21.480000px;}
.ws9b{word-spacing:22.620000px;}
.wsc7{word-spacing:23.100000px;}
.wsbb{word-spacing:23.580000px;}
.ws31{word-spacing:24.180000px;}
.ws2a{word-spacing:24.900000px;}
.wsc6{word-spacing:25.740000px;}
.wsbc{word-spacing:26.520000px;}
.ws59{word-spacing:26.820000px;}
.ws26{word-spacing:27.360000px;}
.wsec{word-spacing:28.920000px;}
.ws25{word-spacing:30.420000px;}
.wsb8{word-spacing:33.180000px;}
.wsc3{word-spacing:36.840000px;}
.ws9a{word-spacing:40.740000px;}
.ws98{word-spacing:41.664000px;}
.ws99{word-spacing:45.060000px;}
.wsac{word-spacing:87.321830px;}
.ws97{word-spacing:275.280000px;}
.ws3{word-spacing:2061.216000px;}
._61{margin-left:-114.414988px;}
._62{margin-left:-105.448907px;}
._9{margin-left:-12.000000px;}
._7{margin-left:-9.312000px;}
._2{margin-left:-7.452000px;}
._b{margin-left:-6.192000px;}
._3{margin-left:-4.968009px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.080000px;}
._8{width:1.152000px;}
._a{width:2.688000px;}
._44{width:6.576000px;}
._63{width:8.750400px;}
._12{width:12.000000px;}
._42{width:22.512000px;}
._43{width:33.888000px;}
._39{width:39.700800px;}
._2b{width:41.649600px;}
._25{width:43.152000px;}
._24{width:55.152000px;}
._21{width:56.496000px;}
._26{width:58.464000px;}
._20{width:68.496000px;}
._51{width:73.152000px;}
._52{width:82.464000px;}
._4f{width:86.496000px;}
._5f{width:88.992000px;}
._10{width:93.936000px;}
._15{width:96.528000px;}
._22{width:98.496000px;}
._f{width:99.936000px;}
._53{width:102.720000px;}
._14{width:108.528000px;}
._48{width:126.528000px;}
._57{width:133.166400px;}
._19{width:136.560000px;}
._16{width:138.528000px;}
._4a{width:143.280000px;}
._18{width:148.560000px;}
._4c{width:153.216000px;}
._60{width:160.992000px;}
._49{width:162.528000px;}
._1a{width:178.560000px;}
._54{width:189.216000px;}
._e{width:196.608000px;}
._31{width:199.790400px;}
._2f{width:204.033600px;}
._37{width:205.166400px;}
._3b{width:213.172800px;}
._59{width:229.166400px;}
._5e{width:237.182400px;}
._1f{width:241.440000px;}
._2e{width:245.616000px;}
._4e{width:265.440000px;}
._1d{width:275.280000px;}
._40{width:282.000000px;}
._1c{width:287.280000px;}
._11{width:291.696000px;}
._46{width:305.280000px;}
._1e{width:317.280000px;}
._23{width:318.864000px;}
._29{width:328.656000px;}
._28{width:340.656000px;}
._50{width:342.864000px;}
._55{width:358.656000px;}
._4b{width:369.552000px;}
._2a{width:370.656000px;}
._33{width:382.800000px;}
._17{width:385.584000px;}
._32{width:388.176000px;}
._36{width:391.934400px;}
._56{width:394.656000px;}
._5b{width:406.896000px;}
._58{width:415.934400px;}
._2d{width:419.568000px;}
._2c{width:429.278400px;}
._3a{width:447.950400px;}
._30{width:461.246400px;}
._d{width:462.912000px;}
._3d{width:470.928000px;}
._5d{width:471.950400px;}
._34{width:494.880000px;}
._3c{width:501.230400px;}
._1b{width:505.584000px;}
._35{width:518.928000px;}
._5a{width:522.590400px;}
._5c{width:525.230400px;}
._4d{width:542.928000px;}
._38{width:551.966400px;}
._5{width:554.310000px;}
._27{width:572.256000px;}
._45{width:590.976000px;}
._13{width:652.272000px;}
._41{width:668.928000px;}
._47{width:676.272000px;}
._3f{width:869.664000px;}
._6{width:886.788000px;}
._c{width:1087.584000px;}
._3e{width:2061.216000px;}
.fc3{color:rgb(187,38,24);}
.fc2{color:rgb(17,62,116);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.357600px;}
.fse{font-size:32.485800px;}
.fsb{font-size:32.829000px;}
.fsa{font-size:35.564400px;}
.fs8{font-size:36.000000px;}
.fsc{font-size:43.771800px;}
.fs7{font-size:45.000000px;}
.fsf{font-size:45.480000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:2.816820px;}
.ycd{bottom:2.821800px;}
.yd5{bottom:18.210300px;}
.ycb{bottom:19.022550px;}
.yd3{bottom:28.704888px;}
.yc9{bottom:29.517138px;}
.y24{bottom:37.503600px;}
.y23{bottom:55.275600px;}
.y2{bottom:67.597501px;}
.y22{bottom:68.775600px;}
.yd2{bottom:70.384169px;}
.yc8{bottom:71.196419px;}
.y21{bottom:82.275600px;}
.y1{bottom:84.097501px;}
.y55{bottom:99.838200px;}
.y4a{bottom:103.181100px;}
.yd1{bottom:113.890777px;}
.yc7{bottom:114.703027px;}
.y44{bottom:121.181100px;}
.y43{bottom:139.181100px;}
.y42{bottom:157.181100px;}
.yd0{bottom:157.397385px;}
.yc6{bottom:158.209635px;}
.yda{bottom:160.181100px;}
.y41{bottom:175.181100px;}
.y40{bottom:193.181100px;}
.ycf{bottom:200.903992px;}
.yc5{bottom:201.716242px;}
.y5e{bottom:205.944150px;}
.y3f{bottom:211.181100px;}
.y3e{bottom:229.181100px;}
.yce{bottom:244.410600px;}
.yc4{bottom:245.222850px;}
.y3d{bottom:247.181100px;}
.yd6{bottom:258.573600px;}
.ycc{bottom:259.385850px;}
.y3c{bottom:265.181100px;}
.y3b{bottom:283.181100px;}
.y3a{bottom:301.181100px;}
.y39{bottom:319.181100px;}
.y38{bottom:337.181100px;}
.y37{bottom:355.181100px;}
.y36{bottom:373.181100px;}
.yc2{bottom:378.999000px;}
.y16{bottom:381.412501px;}
.y35{bottom:391.181100px;}
.yc1{bottom:392.499000px;}
.y132{bottom:400.336050px;}
.y104{bottom:400.504050px;}
.yc0{bottom:405.999000px;}
.y34{bottom:409.181100px;}
.y6d{bottom:410.066250px;}
.y70{bottom:412.139700px;}
.y131{bottom:413.836050px;}
.y103{bottom:414.004050px;}
.ybf{bottom:419.499000px;}
.y6c{bottom:423.566250px;}
.y33{bottom:427.181100px;}
.y130{bottom:427.336050px;}
.y102{bottom:427.504050px;}
.ybe{bottom:432.999000px;}
.y6b{bottom:437.066250px;}
.y12f{bottom:445.108050px;}
.y32{bottom:445.181100px;}
.y101{bottom:445.648050px;}
.ybd{bottom:446.499000px;}
.y15{bottom:448.693500px;}
.y6a{bottom:450.566250px;}
.y12e{bottom:458.608050px;}
.y100{bottom:459.148050px;}
.ybc{bottom:459.999000px;}
.y31{bottom:463.181100px;}
.y69{bottom:464.066250px;}
.y12d{bottom:472.108050px;}
.yff{bottom:472.648050px;}
.ybb{bottom:473.499000px;}
.y68{bottom:477.566250px;}
.y30{bottom:481.181100px;}
.y12c{bottom:485.608050px;}
.yfe{bottom:486.148050px;}
.yba{bottom:486.999000px;}
.y71{bottom:488.681100px;}
.y67{bottom:491.066250px;}
.y2f{bottom:499.181100px;}
.yb9{bottom:500.499000px;}
.y12b{bottom:503.380050px;}
.yfd{bottom:504.292050px;}
.y66{bottom:504.566250px;}
.y14{bottom:513.043500px;}
.yb8{bottom:513.999000px;}
.y12a{bottom:516.880050px;}
.y2e{bottom:517.181100px;}
.yfc{bottom:517.792050px;}
.y65{bottom:518.066250px;}
.yb7{bottom:527.499000px;}
.y129{bottom:530.380050px;}
.yfb{bottom:531.292050px;}
.y64{bottom:531.566250px;}
.y2d{bottom:535.181100px;}
.yb6{bottom:540.999000px;}
.y128{bottom:543.880050px;}
.yfa{bottom:544.792050px;}
.y63{bottom:545.066250px;}
.y12{bottom:547.393501px;}
.y2c{bottom:553.181100px;}
.yb5{bottom:554.499000px;}
.y127{bottom:561.652050px;}
.y11{bottom:562.393501px;}
.y93{bottom:562.759950px;}
.yf9{bottom:562.936050px;}
.yb4{bottom:567.999000px;}
.y2b{bottom:571.181100px;}
.y13{bottom:574.462501px;}
.y126{bottom:575.152050px;}
.y92{bottom:576.259950px;}
.yf8{bottom:576.436050px;}
.y10{bottom:577.393500px;}
.yb3{bottom:581.499000px;}
.y6f{bottom:584.828100px;}
.y125{bottom:588.652050px;}
.y2a{bottom:589.181100px;}
.yf7{bottom:589.936050px;}
.yb2{bottom:594.999000px;}
.y124{bottom:602.152050px;}
.y91{bottom:603.259950px;}
.y29{bottom:607.181100px;}
.yf6{bottom:608.080050px;}
.yb1{bottom:608.499000px;}
.y90{bottom:616.759950px;}
.y123{bottom:619.924050px;}
.yf5{bottom:621.580050px;}
.yb0{bottom:621.999000px;}
.y28{bottom:625.181100px;}
.y8f{bottom:630.259950px;}
.y122{bottom:633.424050px;}
.yf4{bottom:635.080050px;}
.y27{bottom:643.181100px;}
.y8e{bottom:643.759950px;}
.y121{bottom:646.924050px;}
.yaf{bottom:648.999000px;}
.yf3{bottom:653.224050px;}
.y8d{bottom:657.259950px;}
.yf{bottom:659.180989px;}
.y120{bottom:660.424050px;}
.y26{bottom:661.181100px;}
.yae{bottom:662.499000px;}
.ya7{bottom:664.181100px;}
.yf2{bottom:666.724050px;}
.y8c{bottom:670.759950px;}
.yad{bottom:675.999000px;}
.y11f{bottom:678.196050px;}
.y25{bottom:679.181100px;}
.yf1{bottom:680.224050px;}
.ya6{bottom:682.181100px;}
.y8b{bottom:684.259950px;}
.ye{bottom:689.571004px;}
.y11e{bottom:691.696050px;}
.yf0{bottom:693.724050px;}
.y49{bottom:697.181100px;}
.y8a{bottom:697.759950px;}
.yac{bottom:702.999000px;}
.y11d{bottom:705.196050px;}
.yd{bottom:707.630994px;}
.y89{bottom:711.259950px;}
.yef{bottom:711.868050px;}
.y48{bottom:715.181100px;}
.yab{bottom:716.499000px;}
.y11c{bottom:722.968050px;}
.y88{bottom:724.759950px;}
.yee{bottom:725.368050px;}
.yc{bottom:725.691006px;}
.yaa{bottom:729.999000px;}
.y47{bottom:733.181100px;}
.y11b{bottom:736.468050px;}
.y87{bottom:738.259950px;}
.yed{bottom:738.868050px;}
.yb{bottom:744.215993px;}
.y11a{bottom:749.968050px;}
.ya5{bottom:751.181100px;}
.y86{bottom:751.759950px;}
.yec{bottom:757.012050px;}
.y46{bottom:758.681100px;}
.y85{bottom:765.259950px;}
.ya9{bottom:767.474700px;}
.y119{bottom:767.740050px;}
.ya4{bottom:769.181100px;}
.yeb{bottom:770.512050px;}
.yd9{bottom:776.681100px;}
.y6e{bottom:777.597000px;}
.y84{bottom:778.759950px;}
.ya8{bottom:780.974700px;}
.y118{bottom:781.240050px;}
.yea{bottom:784.012050px;}
.ya3{bottom:787.181100px;}
.y83{bottom:792.259950px;}
.y117{bottom:794.740050px;}
.ya{bottom:797.115002px;}
.ye9{bottom:797.512050px;}
.yc3{bottom:798.114000px;}
.ya2{bottom:805.181100px;}
.y82{bottom:805.759950px;}
.y116{bottom:812.512050px;}
.ye8{bottom:815.656050px;}
.yd4{bottom:816.324300px;}
.yca{bottom:817.136550px;}
.y9{bottom:818.115002px;}
.y81{bottom:819.259950px;}
.ya1{bottom:823.181100px;}
.y115{bottom:826.012050px;}
.ye7{bottom:829.156050px;}
.y80{bottom:832.759950px;}
.y20{bottom:835.336650px;}
.y114{bottom:839.512050px;}
.ya0{bottom:841.181100px;}
.ye6{bottom:842.656050px;}
.y62{bottom:843.306300px;}
.y7f{bottom:846.259950px;}
.y1f{bottom:848.836650px;}
.y54{bottom:851.922000px;}
.y113{bottom:853.012050px;}
.ye5{bottom:856.156050px;}
.y9f{bottom:859.181100px;}
.y7e{bottom:859.759950px;}
.y1e{bottom:862.336650px;}
.y5f{bottom:863.483250px;}
.y112{bottom:870.784050px;}
.y7d{bottom:873.259950px;}
.ye4{bottom:874.300050px;}
.y5d{bottom:875.661300px;}
.y8{bottom:875.779504px;}
.y9e{bottom:877.181100px;}
.y1d{bottom:879.796650px;}
.y111{bottom:884.284050px;}
.y7c{bottom:886.759950px;}
.ye3{bottom:887.800050px;}
.y5c{bottom:892.652167px;}
.y9d{bottom:895.181100px;}
.y110{bottom:897.784050px;}
.y7b{bottom:900.259950px;}
.ye2{bottom:901.300050px;}
.y5b{bottom:902.503506px;}
.y7{bottom:907.279504px;}
.y5a{bottom:912.354845px;}
.y9c{bottom:913.181100px;}
.y7a{bottom:913.759950px;}
.y10f{bottom:915.556050px;}
.y59{bottom:922.206184px;}
.y79{bottom:927.259950px;}
.y1c{bottom:928.596450px;}
.y10e{bottom:929.056050px;}
.y9b{bottom:931.181100px;}
.y58{bottom:932.057522px;}
.y6{bottom:938.779498px;}
.y78{bottom:940.759950px;}
.y57{bottom:941.908861px;}
.y10d{bottom:942.556050px;}
.y9a{bottom:949.181100px;}
.y1b{bottom:949.596450px;}
.y56{bottom:951.760200px;}
.y77{bottom:954.259950px;}
.ye1{bottom:955.300050px;}
.y10c{bottom:960.328050px;}
.y53{bottom:961.587640px;}
.y99{bottom:967.181100px;}
.y76{bottom:967.759950px;}
.ye0{bottom:968.800050px;}
.y5{bottom:970.279498px;}
.y52{bottom:971.438978px;}
.y10b{bottom:973.828050px;}
.y75{bottom:981.259950px;}
.y51{bottom:981.290317px;}
.y98{bottom:985.181100px;}
.y10a{bottom:987.328050px;}
.y50{bottom:991.141656px;}
.ydf{bottom:995.800050px;}
.y1a{bottom:1000.360350px;}
.y109{bottom:1000.828050px;}
.y4f{bottom:1000.992995px;}
.y97{bottom:1003.181100px;}
.y74{bottom:1008.259950px;}
.yde{bottom:1009.300050px;}
.y4e{bottom:1010.844334px;}
.y108{bottom:1018.600050px;}
.y4d{bottom:1020.695672px;}
.y96{bottom:1021.181100px;}
.y73{bottom:1021.759950px;}
.ydd{bottom:1022.800050px;}
.y19{bottom:1027.360350px;}
.y61{bottom:1029.566820px;}
.y4c{bottom:1030.547011px;}
.y107{bottom:1032.100050px;}
.y4{bottom:1035.546001px;}
.ydc{bottom:1036.300050px;}
.y60{bottom:1037.774100px;}
.y95{bottom:1039.181100px;}
.y4b{bottom:1040.398350px;}
.y106{bottom:1045.600050px;}
.ydb{bottom:1049.800050px;}
.y18{bottom:1054.360350px;}
.yd8{bottom:1057.181100px;}
.y105{bottom:1059.100050px;}
.y94{bottom:1060.181100px;}
.y72{bottom:1062.259950px;}
.y17{bottom:1106.928450px;}
.y45{bottom:1107.217800px;}
.y3{bottom:1165.122003px;}
.h19{height:24.731270px;}
.h1d{height:29.367163px;}
.h17{height:29.677416px;}
.h15{height:32.150218px;}
.hf{height:32.544000px;}
.h12{height:33.600000px;}
.hb{height:35.376000px;}
.h4{height:36.726562px;}
.h18{height:39.569707px;}
.h1e{height:41.113920px;}
.h2{height:41.317383px;}
.h13{height:42.000000px;}
.h11{height:43.392000px;}
.h1b{height:43.860000px;}
.h8{height:45.000000px;}
.h7{height:45.908203px;}
.h10{height:48.384000px;}
.h1a{height:48.816000px;}
.he{height:54.240000px;}
.h6{height:55.089844px;}
.h14{height:59.664000px;}
.hd{height:60.480000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.hc{height:86.784000px;}
.h16{height:215.322000px;}
.h1f{height:268.320000px;}
.h1c{height:269.130000px;}
.ha{height:1190.250000px;}
.h9{height:1190.551500px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w5{width:239.289000px;}
.w4{width:372.147000px;}
.w2{width:914.173500px;}
.w3{width:914.250000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x1e{left:2.030850px;}
.x7{left:76.535400px;}
.xb{left:80.787450px;}
.x17{left:82.145850px;}
.x24{left:87.969750px;}
.xd{left:89.285400px;}
.xc{left:93.537450px;}
.x18{left:101.973003px;}
.x1b{left:136.995046px;}
.x16{left:139.839917px;}
.x4{left:145.650000px;}
.x10{left:146.712737px;}
.x12{left:156.404036px;}
.x13{left:164.459372px;}
.x1a{left:186.171720px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x14{left:205.554037px;}
.xf{left:210.017369px;}
.x1c{left:218.339720px;}
.x11{left:219.708668px;}
.xe{left:224.172000px;}
.x15{left:230.991474px;}
.x2{left:236.066995px;}
.x19{left:249.476352px;}
.x1d{left:275.828250px;}
.x1{left:293.590494px;}
.x25{left:327.666000px;}
.x23{left:330.546600px;}
.x26{left:345.048600px;}
.x20{left:375.685050px;}
.x1f{left:390.913650px;}
.x9{left:467.716500px;}
.xa{left:480.466500px;}
.x6{left:527.100000px;}
.x28{left:585.076650px;}
.x22{left:592.724400px;}
.x27{left:597.826650px;}
.x21{left:652.677150px;}
.x8{left:831.063300px;}
@media print{
.v3{vertical-align:-14.080000pt;}
.v1{vertical-align:-10.421331pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.080000pt;}
.v2{vertical-align:17.600000pt;}
.lsa{letter-spacing:-2.845152pt;}
.lsb{letter-spacing:-1.711964pt;}
.ls9{letter-spacing:-1.706667pt;}
.lsd{letter-spacing:-0.700349pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.200000pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.038908pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.583627pt;}
.ls7{letter-spacing:41.583400pt;}
.ls12{letter-spacing:93.674609pt;}
.ls11{letter-spacing:93.703485pt;}
.ls10{letter-spacing:101.702211pt;}
.ls6{letter-spacing:1833.898667pt;}
.wsa9{word-spacing:-109.729813pt;}
.wsaa{word-spacing:-101.731087pt;}
.wsab{word-spacing:-101.702211pt;}
.ws44{word-spacing:-49.695811pt;}
.ws2{word-spacing:-14.826667pt;}
.ws0{word-spacing:-12.432000pt;}
.ws47{word-spacing:-10.816498pt;}
.wsed{word-spacing:-10.666667pt;}
.ws41{word-spacing:-10.154667pt;}
.ws48{word-spacing:-10.116149pt;}
.ws46{word-spacing:-9.104534pt;}
.ws43{word-spacing:-8.788358pt;}
.ws42{word-spacing:-5.943206pt;}
.wsfa{word-spacing:-4.693333pt;}
.wse9{word-spacing:-3.786667pt;}
.wsd0{word-spacing:-3.520000pt;}
.ws1f{word-spacing:-3.306667pt;}
.ws6e{word-spacing:-3.040000pt;}
.ws11{word-spacing:-2.933333pt;}
.ws4e{word-spacing:-2.720000pt;}
.ws110{word-spacing:-2.517333pt;}
.wseb{word-spacing:-2.506667pt;}
.ws37{word-spacing:-2.453333pt;}
.ws61{word-spacing:-2.346667pt;}
.ws6f{word-spacing:-2.186667pt;}
.ws7c{word-spacing:-2.133333pt;}
.wsf9{word-spacing:-2.090667pt;}
.ws8a{word-spacing:-2.080000pt;}
.ws10f{word-spacing:-1.962667pt;}
.wsb5{word-spacing:-1.920000pt;}
.wsa2{word-spacing:-1.866667pt;}
.wsff{word-spacing:-1.792000pt;}
.ws6b{word-spacing:-1.760000pt;}
.ws7d{word-spacing:-1.706667pt;}
.ws3b{word-spacing:-1.653333pt;}
.wsb4{word-spacing:-1.546667pt;}
.wsd9{word-spacing:-1.493333pt;}
.ws11b{word-spacing:-1.450667pt;}
.wsb0{word-spacing:-1.440000pt;}
.ws24{word-spacing:-1.386667pt;}
.ws78{word-spacing:-1.333333pt;}
.ws57{word-spacing:-1.280000pt;}
.ws113{word-spacing:-1.237333pt;}
.ws85{word-spacing:-1.226667pt;}
.ws8e{word-spacing:-1.173333pt;}
.wse2{word-spacing:-1.120000pt;}
.ws117{word-spacing:-1.066667pt;}
.wsdc{word-spacing:-1.013333pt;}
.wscc{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.906667pt;}
.ws107{word-spacing:-0.853333pt;}
.ws54{word-spacing:-0.800000pt;}
.wsf2{word-spacing:-0.768000pt;}
.ws60{word-spacing:-0.746667pt;}
.wsfb{word-spacing:-0.725333pt;}
.ws100{word-spacing:-0.682667pt;}
.wsd8{word-spacing:-0.533333pt;}
.wscf{word-spacing:-0.480000pt;}
.ws10b{word-spacing:-0.426667pt;}
.ws104{word-spacing:-0.384000pt;}
.ws86{word-spacing:-0.266667pt;}
.ws33{word-spacing:-0.213333pt;}
.ws4{word-spacing:-0.200000pt;}
.wsee{word-spacing:-0.170667pt;}
.wsf1{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.106667pt;}
.ws1b{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.053333pt;}
.ws5{word-spacing:0.160000pt;}
.ws76{word-spacing:0.170667pt;}
.ws118{word-spacing:0.213333pt;}
.ws58{word-spacing:0.426667pt;}
.ws4c{word-spacing:0.533333pt;}
.ws11a{word-spacing:0.554667pt;}
.wsc9{word-spacing:0.640000pt;}
.wsa1{word-spacing:0.693333pt;}
.ws55{word-spacing:0.746667pt;}
.wsf6{word-spacing:0.768000pt;}
.ws36{word-spacing:0.800000pt;}
.ws84{word-spacing:0.853333pt;}
.ws1d{word-spacing:0.906667pt;}
.wsfe{word-spacing:1.024000pt;}
.ws68{word-spacing:1.120000pt;}
.ws39{word-spacing:1.173333pt;}
.ws20{word-spacing:1.226667pt;}
.ws101{word-spacing:1.322667pt;}
.ws93{word-spacing:1.333333pt;}
.ws8b{word-spacing:1.386667pt;}
.wsb6{word-spacing:1.408000pt;}
.wsdd{word-spacing:1.440000pt;}
.ws6a{word-spacing:1.493333pt;}
.wsa4{word-spacing:1.600000pt;}
.wse6{word-spacing:1.653333pt;}
.wse0{word-spacing:1.706667pt;}
.ws11c{word-spacing:1.834667pt;}
.ws89{word-spacing:1.920000pt;}
.ws109{word-spacing:2.005333pt;}
.wsd4{word-spacing:2.026667pt;}
.ws10c{word-spacing:2.048000pt;}
.ws69{word-spacing:2.080000pt;}
.ws5b{word-spacing:2.133333pt;}
.wsb2{word-spacing:2.186667pt;}
.wsc1{word-spacing:2.240000pt;}
.ws10d{word-spacing:2.261333pt;}
.ws1a{word-spacing:2.346667pt;}
.ws91{word-spacing:2.400000pt;}
.wse3{word-spacing:2.453333pt;}
.ws29{word-spacing:2.506667pt;}
.ws114{word-spacing:2.517333pt;}
.ws5a{word-spacing:2.560000pt;}
.ws6c{word-spacing:2.666667pt;}
.wsfc{word-spacing:2.688000pt;}
.wsa8{word-spacing:2.720000pt;}
.ws119{word-spacing:2.730667pt;}
.ws23{word-spacing:2.773333pt;}
.ws4d{word-spacing:2.826667pt;}
.ws2e{word-spacing:2.933333pt;}
.wsc5{word-spacing:2.986667pt;}
.ws2f{word-spacing:3.093333pt;}
.ws2d{word-spacing:3.253333pt;}
.ws95{word-spacing:3.306667pt;}
.wse1{word-spacing:3.360000pt;}
.ws10{word-spacing:3.413333pt;}
.wsf8{word-spacing:3.456000pt;}
.wsb3{word-spacing:3.466667pt;}
.ws94{word-spacing:3.520000pt;}
.ws3f{word-spacing:3.573333pt;}
.wsa0{word-spacing:3.786667pt;}
.ws66{word-spacing:3.840000pt;}
.ws10e{word-spacing:3.882667pt;}
.ws8f{word-spacing:3.893333pt;}
.wsbd{word-spacing:3.946667pt;}
.wsaf{word-spacing:4.053333pt;}
.ws10a{word-spacing:4.096000pt;}
.ws50{word-spacing:4.106667pt;}
.wse4{word-spacing:4.160000pt;}
.ws4f{word-spacing:4.213333pt;}
.wsf7{word-spacing:4.224000pt;}
.ws96{word-spacing:4.266667pt;}
.ws7{word-spacing:4.309333pt;}
.wsde{word-spacing:4.373333pt;}
.ws87{word-spacing:4.426667pt;}
.ws6{word-spacing:4.437333pt;}
.wsb1{word-spacing:4.480000pt;}
.ws105{word-spacing:4.522667pt;}
.ws40{word-spacing:4.586667pt;}
.ws111{word-spacing:4.608000pt;}
.ws62{word-spacing:4.746667pt;}
.wsef{word-spacing:4.778667pt;}
.wsa{word-spacing:4.800000pt;}
.ws2b{word-spacing:4.853333pt;}
.ws1c{word-spacing:4.906667pt;}
.wse8{word-spacing:4.960000pt;}
.ws5d{word-spacing:5.013333pt;}
.ws3a{word-spacing:5.066667pt;}
.wsfd{word-spacing:5.120000pt;}
.wsb7{word-spacing:5.162667pt;}
.wsea{word-spacing:5.173333pt;}
.ws53{word-spacing:5.226667pt;}
.wsa7{word-spacing:5.280000pt;}
.wsae{word-spacing:5.333333pt;}
.ws102{word-spacing:5.418667pt;}
.wscb{word-spacing:5.440000pt;}
.ws8d{word-spacing:5.546667pt;}
.ws115{word-spacing:5.589333pt;}
.ws92{word-spacing:5.600000pt;}
.ws3c{word-spacing:5.706667pt;}
.ws56{word-spacing:5.760000pt;}
.wsad{word-spacing:5.866667pt;}
.ws14{word-spacing:5.920000pt;}
.wsc4{word-spacing:5.973333pt;}
.wsd3{word-spacing:6.026667pt;}
.ws22{word-spacing:6.080000pt;}
.ws103{word-spacing:6.101333pt;}
.ws16{word-spacing:6.133333pt;}
.ws80{word-spacing:6.240000pt;}
.ws75{word-spacing:6.272000pt;}
.ws18{word-spacing:6.346667pt;}
.ws83{word-spacing:6.400000pt;}
.ws82{word-spacing:6.453333pt;}
.ws8{word-spacing:6.506667pt;}
.ws49{word-spacing:6.560000pt;}
.ws12{word-spacing:6.613333pt;}
.ws11d{word-spacing:6.656000pt;}
.ws63{word-spacing:6.666667pt;}
.ws7e{word-spacing:6.720000pt;}
.wsf5{word-spacing:6.741333pt;}
.wsc{word-spacing:6.773333pt;}
.ws6d{word-spacing:6.826667pt;}
.wsdb{word-spacing:6.880000pt;}
.ws30{word-spacing:6.933333pt;}
.ws112{word-spacing:6.954667pt;}
.wsa6{word-spacing:6.986667pt;}
.wsdf{word-spacing:7.040000pt;}
.ws8c{word-spacing:7.093333pt;}
.ws74{word-spacing:7.168000pt;}
.ws79{word-spacing:7.200000pt;}
.ws77{word-spacing:7.296000pt;}
.ws13{word-spacing:7.306667pt;}
.ws7b{word-spacing:7.413333pt;}
.ws4a{word-spacing:7.466667pt;}
.ws27{word-spacing:7.520000pt;}
.wsa5{word-spacing:7.626667pt;}
.wsf4{word-spacing:7.680000pt;}
.ws19{word-spacing:7.733333pt;}
.ws5e{word-spacing:7.786667pt;}
.ws70{word-spacing:7.840000pt;}
.ws3e{word-spacing:7.893333pt;}
.ws88{word-spacing:8.000000pt;}
.wse7{word-spacing:8.106667pt;}
.ws51{word-spacing:8.160000pt;}
.ws67{word-spacing:8.213333pt;}
.wsd7{word-spacing:8.480000pt;}
.ws7a{word-spacing:8.533333pt;}
.wsf0{word-spacing:8.618667pt;}
.wsa3{word-spacing:8.693333pt;}
.ws9f{word-spacing:8.853333pt;}
.ws4b{word-spacing:8.960000pt;}
.wsc0{word-spacing:9.013333pt;}
.ws38{word-spacing:9.173333pt;}
.wsf{word-spacing:9.706667pt;}
.wsda{word-spacing:9.760000pt;}
.ws90{word-spacing:9.813333pt;}
.wsce{word-spacing:10.026667pt;}
.ws15{word-spacing:10.186667pt;}
.ws106{word-spacing:10.410667pt;}
.ws2c{word-spacing:10.666667pt;}
.wsd{word-spacing:10.773333pt;}
.ws9e{word-spacing:10.880000pt;}
.wsbf{word-spacing:11.040000pt;}
.ws52{word-spacing:11.093333pt;}
.ws72{word-spacing:11.178667pt;}
.ws28{word-spacing:11.360000pt;}
.ws1e{word-spacing:11.466667pt;}
.wsbe{word-spacing:11.573333pt;}
.wsd2{word-spacing:11.680000pt;}
.ws73{word-spacing:11.818667pt;}
.ws17{word-spacing:12.053333pt;}
.ws35{word-spacing:12.106667pt;}
.ws71{word-spacing:12.245333pt;}
.wsb{word-spacing:12.320000pt;}
.ws7f{word-spacing:12.373333pt;}
.wsc8{word-spacing:12.426667pt;}
.ws64{word-spacing:12.533333pt;}
.wsb9{word-spacing:12.960000pt;}
.wse{word-spacing:13.066667pt;}
.ws21{word-spacing:13.120000pt;}
.ws32{word-spacing:13.173333pt;}
.wsf3{word-spacing:13.269333pt;}
.wscd{word-spacing:13.386667pt;}
.ws5c{word-spacing:13.600000pt;}
.wsd6{word-spacing:13.653333pt;}
.ws81{word-spacing:14.186667pt;}
.ws45{word-spacing:15.495288pt;}
.ws116{word-spacing:15.573333pt;}
.ws34{word-spacing:16.106667pt;}
.wsd1{word-spacing:16.533333pt;}
.ws9c{word-spacing:16.746667pt;}
.wsd5{word-spacing:16.906667pt;}
.ws108{word-spacing:17.578667pt;}
.wse5{word-spacing:17.600000pt;}
.ws3d{word-spacing:17.706667pt;}
.wsba{word-spacing:17.973333pt;}
.wsc2{word-spacing:18.240000pt;}
.wsca{word-spacing:18.613333pt;}
.ws9d{word-spacing:19.093333pt;}
.ws9b{word-spacing:20.106667pt;}
.wsc7{word-spacing:20.533333pt;}
.wsbb{word-spacing:20.960000pt;}
.ws31{word-spacing:21.493333pt;}
.ws2a{word-spacing:22.133333pt;}
.wsc6{word-spacing:22.880000pt;}
.wsbc{word-spacing:23.573333pt;}
.ws59{word-spacing:23.840000pt;}
.ws26{word-spacing:24.320000pt;}
.wsec{word-spacing:25.706667pt;}
.ws25{word-spacing:27.040000pt;}
.wsb8{word-spacing:29.493333pt;}
.wsc3{word-spacing:32.746667pt;}
.ws9a{word-spacing:36.213333pt;}
.ws98{word-spacing:37.034667pt;}
.ws99{word-spacing:40.053333pt;}
.wsac{word-spacing:77.619405pt;}
.ws97{word-spacing:244.693333pt;}
.ws3{word-spacing:1832.192000pt;}
._61{margin-left:-101.702211pt;}
._62{margin-left:-93.732362pt;}
._9{margin-left:-10.666667pt;}
._7{margin-left:-8.277333pt;}
._2{margin-left:-6.624000pt;}
._b{margin-left:-5.504000pt;}
._3{margin-left:-4.416008pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.960000pt;}
._8{width:1.024000pt;}
._a{width:2.389333pt;}
._44{width:5.845333pt;}
._63{width:7.778133pt;}
._12{width:10.666667pt;}
._42{width:20.010667pt;}
._43{width:30.122667pt;}
._39{width:35.289600pt;}
._2b{width:37.021867pt;}
._25{width:38.357333pt;}
._24{width:49.024000pt;}
._21{width:50.218667pt;}
._26{width:51.968000pt;}
._20{width:60.885333pt;}
._51{width:65.024000pt;}
._52{width:73.301333pt;}
._4f{width:76.885333pt;}
._5f{width:79.104000pt;}
._10{width:83.498667pt;}
._15{width:85.802667pt;}
._22{width:87.552000pt;}
._f{width:88.832000pt;}
._53{width:91.306667pt;}
._14{width:96.469333pt;}
._48{width:112.469333pt;}
._57{width:118.370133pt;}
._19{width:121.386667pt;}
._16{width:123.136000pt;}
._4a{width:127.360000pt;}
._18{width:132.053333pt;}
._4c{width:136.192000pt;}
._60{width:143.104000pt;}
._49{width:144.469333pt;}
._1a{width:158.720000pt;}
._54{width:168.192000pt;}
._e{width:174.762667pt;}
._31{width:177.591467pt;}
._2f{width:181.363200pt;}
._37{width:182.370133pt;}
._3b{width:189.486933pt;}
._59{width:203.703467pt;}
._5e{width:210.828800pt;}
._1f{width:214.613333pt;}
._2e{width:218.325333pt;}
._4e{width:235.946667pt;}
._1d{width:244.693333pt;}
._40{width:250.666667pt;}
._1c{width:255.360000pt;}
._11{width:259.285333pt;}
._46{width:271.360000pt;}
._1e{width:282.026667pt;}
._23{width:283.434667pt;}
._29{width:292.138667pt;}
._28{width:302.805333pt;}
._50{width:304.768000pt;}
._55{width:318.805333pt;}
._4b{width:328.490667pt;}
._2a{width:329.472000pt;}
._33{width:340.266667pt;}
._17{width:342.741333pt;}
._32{width:345.045333pt;}
._36{width:348.386133pt;}
._56{width:350.805333pt;}
._5b{width:361.685333pt;}
._58{width:369.719467pt;}
._2d{width:372.949333pt;}
._2c{width:381.580800pt;}
._3a{width:398.178133pt;}
._30{width:409.996800pt;}
._d{width:411.477333pt;}
._3d{width:418.602667pt;}
._5d{width:419.511467pt;}
._34{width:439.893333pt;}
._3c{width:445.538133pt;}
._1b{width:449.408000pt;}
._35{width:461.269333pt;}
._5a{width:464.524800pt;}
._5c{width:466.871467pt;}
._4d{width:482.602667pt;}
._38{width:490.636800pt;}
._5{width:492.720000pt;}
._27{width:508.672000pt;}
._45{width:525.312000pt;}
._13{width:579.797333pt;}
._41{width:594.602667pt;}
._47{width:601.130667pt;}
._3f{width:773.034667pt;}
._6{width:788.256000pt;}
._c{width:966.741333pt;}
._3e{width:1832.192000pt;}
.fsd{font-size:24.317867pt;}
.fse{font-size:28.876267pt;}
.fsb{font-size:29.181333pt;}
.fsa{font-size:31.612800pt;}
.fs8{font-size:32.000000pt;}
.fsc{font-size:38.908267pt;}
.fs7{font-size:40.000000pt;}
.fsf{font-size:40.426667pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.503840pt;}
.ycd{bottom:2.508267pt;}
.yd5{bottom:16.186933pt;}
.ycb{bottom:16.908933pt;}
.yd3{bottom:25.515456pt;}
.yc9{bottom:26.237456pt;}
.y24{bottom:33.336533pt;}
.y23{bottom:49.133867pt;}
.y2{bottom:60.086668pt;}
.y22{bottom:61.133867pt;}
.yd2{bottom:62.563706pt;}
.yc8{bottom:63.285706pt;}
.y21{bottom:73.133867pt;}
.y1{bottom:74.753335pt;}
.y55{bottom:88.745067pt;}
.y4a{bottom:91.716533pt;}
.yd1{bottom:101.236246pt;}
.yc7{bottom:101.958246pt;}
.y44{bottom:107.716533pt;}
.y43{bottom:123.716533pt;}
.y42{bottom:139.716533pt;}
.yd0{bottom:139.908786pt;}
.yc6{bottom:140.630786pt;}
.yda{bottom:142.383200pt;}
.y41{bottom:155.716533pt;}
.y40{bottom:171.716533pt;}
.ycf{bottom:178.581327pt;}
.yc5{bottom:179.303327pt;}
.y5e{bottom:183.061467pt;}
.y3f{bottom:187.716533pt;}
.y3e{bottom:203.716533pt;}
.yce{bottom:217.253867pt;}
.yc4{bottom:217.975867pt;}
.y3d{bottom:219.716533pt;}
.yd6{bottom:229.843200pt;}
.ycc{bottom:230.565200pt;}
.y3c{bottom:235.716533pt;}
.y3b{bottom:251.716533pt;}
.y3a{bottom:267.716533pt;}
.y39{bottom:283.716533pt;}
.y38{bottom:299.716533pt;}
.y37{bottom:315.716533pt;}
.y36{bottom:331.716533pt;}
.yc2{bottom:336.888000pt;}
.y16{bottom:339.033334pt;}
.y35{bottom:347.716533pt;}
.yc1{bottom:348.888000pt;}
.y132{bottom:355.854267pt;}
.y104{bottom:356.003600pt;}
.yc0{bottom:360.888000pt;}
.y34{bottom:363.716533pt;}
.y6d{bottom:364.503333pt;}
.y70{bottom:366.346400pt;}
.y131{bottom:367.854267pt;}
.y103{bottom:368.003600pt;}
.ybf{bottom:372.888000pt;}
.y6c{bottom:376.503333pt;}
.y33{bottom:379.716533pt;}
.y130{bottom:379.854267pt;}
.y102{bottom:380.003600pt;}
.ybe{bottom:384.888000pt;}
.y6b{bottom:388.503333pt;}
.y12f{bottom:395.651600pt;}
.y32{bottom:395.716533pt;}
.y101{bottom:396.131600pt;}
.ybd{bottom:396.888000pt;}
.y15{bottom:398.838667pt;}
.y6a{bottom:400.503333pt;}
.y12e{bottom:407.651600pt;}
.y100{bottom:408.131600pt;}
.ybc{bottom:408.888000pt;}
.y31{bottom:411.716533pt;}
.y69{bottom:412.503333pt;}
.y12d{bottom:419.651600pt;}
.yff{bottom:420.131600pt;}
.ybb{bottom:420.888000pt;}
.y68{bottom:424.503333pt;}
.y30{bottom:427.716533pt;}
.y12c{bottom:431.651600pt;}
.yfe{bottom:432.131600pt;}
.yba{bottom:432.888000pt;}
.y71{bottom:434.383200pt;}
.y67{bottom:436.503333pt;}
.y2f{bottom:443.716533pt;}
.yb9{bottom:444.888000pt;}
.y12b{bottom:447.448933pt;}
.yfd{bottom:448.259600pt;}
.y66{bottom:448.503333pt;}
.y14{bottom:456.038667pt;}
.yb8{bottom:456.888000pt;}
.y12a{bottom:459.448933pt;}
.y2e{bottom:459.716533pt;}
.yfc{bottom:460.259600pt;}
.y65{bottom:460.503333pt;}
.yb7{bottom:468.888000pt;}
.y129{bottom:471.448933pt;}
.yfb{bottom:472.259600pt;}
.y64{bottom:472.503333pt;}
.y2d{bottom:475.716533pt;}
.yb6{bottom:480.888000pt;}
.y128{bottom:483.448933pt;}
.yfa{bottom:484.259600pt;}
.y63{bottom:484.503333pt;}
.y12{bottom:486.572001pt;}
.y2c{bottom:491.716533pt;}
.yb5{bottom:492.888000pt;}
.y127{bottom:499.246267pt;}
.y11{bottom:499.905335pt;}
.y93{bottom:500.231067pt;}
.yf9{bottom:500.387600pt;}
.yb4{bottom:504.888000pt;}
.y2b{bottom:507.716533pt;}
.y13{bottom:510.633334pt;}
.y126{bottom:511.246267pt;}
.y92{bottom:512.231067pt;}
.yf8{bottom:512.387600pt;}
.y10{bottom:513.238667pt;}
.yb3{bottom:516.888000pt;}
.y6f{bottom:519.847200pt;}
.y125{bottom:523.246267pt;}
.y2a{bottom:523.716533pt;}
.yf7{bottom:524.387600pt;}
.yb2{bottom:528.888000pt;}
.y124{bottom:535.246267pt;}
.y91{bottom:536.231067pt;}
.y29{bottom:539.716533pt;}
.yf6{bottom:540.515600pt;}
.yb1{bottom:540.888000pt;}
.y90{bottom:548.231067pt;}
.y123{bottom:551.043600pt;}
.yf5{bottom:552.515600pt;}
.yb0{bottom:552.888000pt;}
.y28{bottom:555.716533pt;}
.y8f{bottom:560.231067pt;}
.y122{bottom:563.043600pt;}
.yf4{bottom:564.515600pt;}
.y27{bottom:571.716533pt;}
.y8e{bottom:572.231067pt;}
.y121{bottom:575.043600pt;}
.yaf{bottom:576.888000pt;}
.yf3{bottom:580.643600pt;}
.y8d{bottom:584.231067pt;}
.yf{bottom:585.938657pt;}
.y120{bottom:587.043600pt;}
.y26{bottom:587.716533pt;}
.yae{bottom:588.888000pt;}
.ya7{bottom:590.383200pt;}
.yf2{bottom:592.643600pt;}
.y8c{bottom:596.231067pt;}
.yad{bottom:600.888000pt;}
.y11f{bottom:602.840933pt;}
.y25{bottom:603.716533pt;}
.yf1{bottom:604.643600pt;}
.ya6{bottom:606.383200pt;}
.y8b{bottom:608.231067pt;}
.ye{bottom:612.952003pt;}
.y11e{bottom:614.840933pt;}
.yf0{bottom:616.643600pt;}
.y49{bottom:619.716533pt;}
.y8a{bottom:620.231067pt;}
.yac{bottom:624.888000pt;}
.y11d{bottom:626.840933pt;}
.yd{bottom:629.005328pt;}
.y89{bottom:632.231067pt;}
.yef{bottom:632.771600pt;}
.y48{bottom:635.716533pt;}
.yab{bottom:636.888000pt;}
.y11c{bottom:642.638267pt;}
.y88{bottom:644.231067pt;}
.yee{bottom:644.771600pt;}
.yc{bottom:645.058672pt;}
.yaa{bottom:648.888000pt;}
.y47{bottom:651.716533pt;}
.y11b{bottom:654.638267pt;}
.y87{bottom:656.231067pt;}
.yed{bottom:656.771600pt;}
.yb{bottom:661.525327pt;}
.y11a{bottom:666.638267pt;}
.ya5{bottom:667.716533pt;}
.y86{bottom:668.231067pt;}
.yec{bottom:672.899600pt;}
.y46{bottom:674.383200pt;}
.y85{bottom:680.231067pt;}
.ya9{bottom:682.199733pt;}
.y119{bottom:682.435600pt;}
.ya4{bottom:683.716533pt;}
.yeb{bottom:684.899600pt;}
.yd9{bottom:690.383200pt;}
.y6e{bottom:691.197333pt;}
.y84{bottom:692.231067pt;}
.ya8{bottom:694.199733pt;}
.y118{bottom:694.435600pt;}
.yea{bottom:696.899600pt;}
.ya3{bottom:699.716533pt;}
.y83{bottom:704.231067pt;}
.y117{bottom:706.435600pt;}
.ya{bottom:708.546669pt;}
.ye9{bottom:708.899600pt;}
.yc3{bottom:709.434667pt;}
.ya2{bottom:715.716533pt;}
.y82{bottom:716.231067pt;}
.y116{bottom:722.232933pt;}
.ye8{bottom:725.027600pt;}
.yd4{bottom:725.621600pt;}
.yca{bottom:726.343600pt;}
.y9{bottom:727.213335pt;}
.y81{bottom:728.231067pt;}
.ya1{bottom:731.716533pt;}
.y115{bottom:734.232933pt;}
.ye7{bottom:737.027600pt;}
.y80{bottom:740.231067pt;}
.y20{bottom:742.521467pt;}
.y114{bottom:746.232933pt;}
.ya0{bottom:747.716533pt;}
.ye6{bottom:749.027600pt;}
.y62{bottom:749.605600pt;}
.y7f{bottom:752.231067pt;}
.y1f{bottom:754.521467pt;}
.y54{bottom:757.264000pt;}
.y113{bottom:758.232933pt;}
.ye5{bottom:761.027600pt;}
.y9f{bottom:763.716533pt;}
.y7e{bottom:764.231067pt;}
.y1e{bottom:766.521467pt;}
.y5f{bottom:767.540667pt;}
.y112{bottom:774.030267pt;}
.y7d{bottom:776.231067pt;}
.ye4{bottom:777.155600pt;}
.y5d{bottom:778.365600pt;}
.y8{bottom:778.470670pt;}
.y9e{bottom:779.716533pt;}
.y1d{bottom:782.041467pt;}
.y111{bottom:786.030267pt;}
.y7c{bottom:788.231067pt;}
.ye3{bottom:789.155600pt;}
.y5c{bottom:793.468593pt;}
.y9d{bottom:795.716533pt;}
.y110{bottom:798.030267pt;}
.y7b{bottom:800.231067pt;}
.ye2{bottom:801.155600pt;}
.y5b{bottom:802.225339pt;}
.y7{bottom:806.470670pt;}
.y5a{bottom:810.982084pt;}
.y9c{bottom:811.716533pt;}
.y7a{bottom:812.231067pt;}
.y10f{bottom:813.827600pt;}
.y59{bottom:819.738830pt;}
.y79{bottom:824.231067pt;}
.y1c{bottom:825.419067pt;}
.y10e{bottom:825.827600pt;}
.y9b{bottom:827.716533pt;}
.y58{bottom:828.495575pt;}
.y6{bottom:834.470665pt;}
.y78{bottom:836.231067pt;}
.y57{bottom:837.252321pt;}
.y10d{bottom:837.827600pt;}
.y9a{bottom:843.716533pt;}
.y1b{bottom:844.085733pt;}
.y56{bottom:846.009067pt;}
.y77{bottom:848.231067pt;}
.ye1{bottom:849.155600pt;}
.y10c{bottom:853.624933pt;}
.y53{bottom:854.744569pt;}
.y99{bottom:859.716533pt;}
.y76{bottom:860.231067pt;}
.ye0{bottom:861.155600pt;}
.y5{bottom:862.470665pt;}
.y52{bottom:863.501314pt;}
.y10b{bottom:865.624933pt;}
.y75{bottom:872.231067pt;}
.y51{bottom:872.258060pt;}
.y98{bottom:875.716533pt;}
.y10a{bottom:877.624933pt;}
.y50{bottom:881.014805pt;}
.ydf{bottom:885.155600pt;}
.y1a{bottom:889.209200pt;}
.y109{bottom:889.624933pt;}
.y4f{bottom:889.771551pt;}
.y97{bottom:891.716533pt;}
.y74{bottom:896.231067pt;}
.yde{bottom:897.155600pt;}
.y4e{bottom:898.528297pt;}
.y108{bottom:905.422267pt;}
.y4d{bottom:907.285042pt;}
.y96{bottom:907.716533pt;}
.y73{bottom:908.231067pt;}
.ydd{bottom:909.155600pt;}
.y19{bottom:913.209200pt;}
.y61{bottom:915.170507pt;}
.y4c{bottom:916.041788pt;}
.y107{bottom:917.422267pt;}
.y4{bottom:920.485335pt;}
.ydc{bottom:921.155600pt;}
.y60{bottom:922.465867pt;}
.y95{bottom:923.716533pt;}
.y4b{bottom:924.798533pt;}
.y106{bottom:929.422267pt;}
.ydb{bottom:933.155600pt;}
.y18{bottom:937.209200pt;}
.yd8{bottom:939.716533pt;}
.y105{bottom:941.422267pt;}
.y94{bottom:942.383200pt;}
.y72{bottom:944.231067pt;}
.y17{bottom:983.936400pt;}
.y45{bottom:984.193600pt;}
.y3{bottom:1035.664002pt;}
.h19{height:21.983351pt;}
.h1d{height:26.104145pt;}
.h17{height:26.379925pt;}
.h15{height:28.577971pt;}
.hf{height:28.928000pt;}
.h12{height:29.866667pt;}
.hb{height:31.445333pt;}
.h4{height:32.645833pt;}
.h18{height:35.173073pt;}
.h1e{height:36.545707pt;}
.h2{height:36.726562pt;}
.h13{height:37.333333pt;}
.h11{height:38.570667pt;}
.h1b{height:38.986667pt;}
.h8{height:40.000000pt;}
.h7{height:40.807292pt;}
.h10{height:43.008000pt;}
.h1a{height:43.392000pt;}
.he{height:48.213333pt;}
.h6{height:48.968750pt;}
.h14{height:53.034667pt;}
.hd{height:53.760000pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.hc{height:77.141333pt;}
.h16{height:191.397333pt;}
.h1f{height:238.506667pt;}
.h1c{height:239.226667pt;}
.ha{height:1058.000000pt;}
.h9{height:1058.268000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w5{width:212.701333pt;}
.w4{width:330.797333pt;}
.w2{width:812.598667pt;}
.w3{width:812.666667pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.805200pt;}
.x7{left:68.031467pt;}
.xb{left:71.811067pt;}
.x17{left:73.018533pt;}
.x24{left:78.195333pt;}
.xd{left:79.364800pt;}
.xc{left:83.144400pt;}
.x18{left:90.642669pt;}
.x1b{left:121.773374pt;}
.x16{left:124.302148pt;}
.x4{left:129.466667pt;}
.x10{left:130.411322pt;}
.x12{left:139.025810pt;}
.x13{left:146.186109pt;}
.x1a{left:165.485973pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x14{left:182.714699pt;}
.xf{left:186.682106pt;}
.x1c{left:194.079751pt;}
.x11{left:195.296594pt;}
.xe{left:199.264000pt;}
.x15{left:205.325754pt;}
.x2{left:209.837329pt;}
.x19{left:221.756757pt;}
.x1d{left:245.180667pt;}
.x1{left:260.969328pt;}
.x25{left:291.258667pt;}
.x23{left:293.819200pt;}
.x26{left:306.709867pt;}
.x20{left:333.942267pt;}
.x1f{left:347.478800pt;}
.x9{left:415.748000pt;}
.xa{left:427.081333pt;}
.x6{left:468.533333pt;}
.x28{left:520.068133pt;}
.x22{left:526.866133pt;}
.x27{left:531.401467pt;}
.x21{left:580.157467pt;}
.x8{left:738.722933pt;}
}




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