
    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_e85be36dee7bff7dd897cf2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_0c5560b9792edd16cc508b9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_f73b8c9b10dbefff17694b44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_a6bcca9accc3711780db0a09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.046000;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_d18ee73dd13b6a6f1e131c8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_2c0624c1e0579d4f1f9c1e3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730000;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_4ebe18b0612590b90ebf5cf1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_f59d864f50504e814bdee5bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937000;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_ff44d345de5d794e5147f8aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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.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);}
.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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:23.975400px;}
.ls1d{letter-spacing:-4.896000px;}
.ls10{letter-spacing:-4.500000px;}
.ls15{letter-spacing:-3.840000px;}
.ls11{letter-spacing:-1.920000px;}
.ls8{letter-spacing:-1.872000px;}
.lse{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-1.020000px;}
.lsc{letter-spacing:-0.982800px;}
.ls1c{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.912000px;}
.ls1b{letter-spacing:-0.840000px;}
.ls13{letter-spacing:-0.816000px;}
.lsa{letter-spacing:-0.810000px;}
.ls19{letter-spacing:-0.780000px;}
.ls1e{letter-spacing:-0.672000px;}
.lsd{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.384000px;}
.ls20{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.192000px;}
.lsb{letter-spacing:-0.162000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020400px;}
.ls5{letter-spacing:0.021000px;}
.ls23{letter-spacing:0.096000px;}
.lsf{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.912000px;}
.ls21{letter-spacing:1.080000px;}
.ls22{letter-spacing:6.696000px;}
.ls3{letter-spacing:43.199424px;}
.ls0{letter-spacing:43.199928px;}
.ls4{letter-spacing:43.220328px;}
.ls2{letter-spacing:43.220544px;}
.ls1{letter-spacing:43.220976px;}
.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;}
}
.ws1b{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.wsf4{word-spacing:-14.820000px;}
.ws3{word-spacing:-13.338000px;}
.ws7{word-spacing:-13.176000px;}
.ws4{word-spacing:-12.798000px;}
.wscf{word-spacing:-12.258000px;}
.ws6b{word-spacing:-11.820000px;}
.ws135{word-spacing:-11.808000px;}
.ws134{word-spacing:-11.760000px;}
.ws5{word-spacing:-11.448000px;}
.ws136{word-spacing:-11.280000px;}
.ws1{word-spacing:-11.214000px;}
.wsf5{word-spacing:-11.184000px;}
.ws133{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.wsb6{word-spacing:-10.416000px;}
.ws6d{word-spacing:-10.176000px;}
.ws8d{word-spacing:-10.032000px;}
.wsb7{word-spacing:-9.456000px;}
.ws6a{word-spacing:-9.240000px;}
.wse2{word-spacing:-4.680000px;}
.ws99{word-spacing:-3.900000px;}
.ws44{word-spacing:-3.540000px;}
.wsc5{word-spacing:-3.480000px;}
.ws12e{word-spacing:-3.456000px;}
.ws5d{word-spacing:-3.420000px;}
.ws57{word-spacing:-3.360000px;}
.ws50{word-spacing:-3.300000px;}
.ws2a{word-spacing:-2.820000px;}
.ws80{word-spacing:-2.700000px;}
.wsed{word-spacing:-2.646000px;}
.wsc3{word-spacing:-2.640000px;}
.wsad{word-spacing:-2.520000px;}
.ws27{word-spacing:-2.400000px;}
.wsf9{word-spacing:-2.376000px;}
.wsbe{word-spacing:-2.340000px;}
.wsc9{word-spacing:-2.280000px;}
.wsc{word-spacing:-2.268000px;}
.wsb1{word-spacing:-2.100000px;}
.ws1c{word-spacing:-2.040000px;}
.wseb{word-spacing:-1.980000px;}
.ws72{word-spacing:-1.920000px;}
.ws123{word-spacing:-1.824000px;}
.ws5a{word-spacing:-1.800000px;}
.ws101{word-spacing:-1.782000px;}
.ws69{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.680000px;}
.ws103{word-spacing:-1.632000px;}
.ws11{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.560000px;}
.ws68{word-spacing:-1.500000px;}
.ws122{word-spacing:-1.440000px;}
.ws148{word-spacing:-1.344000px;}
.wsaf{word-spacing:-1.320000px;}
.ws111{word-spacing:-1.248000px;}
.wsee{word-spacing:-1.242000px;}
.ws86{word-spacing:-1.200000px;}
.ws10b{word-spacing:-1.152000px;}
.ws22{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.080000px;}
.ws19{word-spacing:-1.058400px;}
.ws1a{word-spacing:-0.936000px;}
.wsa7{word-spacing:-0.780000px;}
.ws10c{word-spacing:-0.768000px;}
.ws54{word-spacing:-0.720000px;}
.wse3{word-spacing:-0.660000px;}
.ws132{word-spacing:-0.624000px;}
.ws62{word-spacing:-0.540000px;}
.wsfc{word-spacing:-0.486000px;}
.wsd8{word-spacing:-0.480000px;}
.ws108{word-spacing:-0.432000px;}
.wsae{word-spacing:-0.420000px;}
.ws11d{word-spacing:-0.384000px;}
.ws52{word-spacing:-0.360000px;}
.ws81{word-spacing:-0.300000px;}
.ws8b{word-spacing:-0.288000px;}
.wsfd{word-spacing:-0.270000px;}
.ws43{word-spacing:-0.240000px;}
.wsa6{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.162000px;}
.ws34{word-spacing:-0.120000px;}
.ws18{word-spacing:-0.075600px;}
.ws95{word-spacing:-0.060000px;}
.ws119{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws12c{word-spacing:0.096000px;}
.wsf{word-spacing:0.108000px;}
.wsbf{word-spacing:0.120000px;}
.ws46{word-spacing:0.180000px;}
.ws97{word-spacing:0.192000px;}
.ws2c{word-spacing:0.240000px;}
.ws9a{word-spacing:0.300000px;}
.ws9c{word-spacing:0.360000px;}
.ws96{word-spacing:0.384000px;}
.ws45{word-spacing:0.480000px;}
.ws17{word-spacing:0.491400px;}
.ws10{word-spacing:0.540000px;}
.wsd{word-spacing:0.594000px;}
.ws5b{word-spacing:0.600000px;}
.wsd7{word-spacing:0.660000px;}
.wsca{word-spacing:0.780000px;}
.ws131{word-spacing:0.816000px;}
.wsa0{word-spacing:0.840000px;}
.wsa4{word-spacing:0.900000px;}
.ws85{word-spacing:0.960000px;}
.wsf7{word-spacing:0.972000px;}
.ws137{word-spacing:1.008000px;}
.wsc7{word-spacing:1.020000px;}
.ws124{word-spacing:1.056000px;}
.wsc6{word-spacing:1.080000px;}
.ws127{word-spacing:1.152000px;}
.ws29{word-spacing:1.200000px;}
.ws53{word-spacing:1.260000px;}
.wsf0{word-spacing:1.296000px;}
.wsc8{word-spacing:1.380000px;}
.ws102{word-spacing:1.392000px;}
.wsea{word-spacing:1.500000px;}
.ws2d{word-spacing:1.560000px;}
.ws55{word-spacing:1.620000px;}
.wsfb{word-spacing:1.674000px;}
.ws3e{word-spacing:1.680000px;}
.ws12{word-spacing:1.728000px;}
.ws130{word-spacing:1.776000px;}
.wsbb{word-spacing:1.800000px;}
.ws145{word-spacing:1.824000px;}
.wse6{word-spacing:1.860000px;}
.ws9{word-spacing:1.872000px;}
.wsa{word-spacing:1.890000px;}
.ws89{word-spacing:1.920000px;}
.ws78{word-spacing:1.980000px;}
.ws91{word-spacing:2.040000px;}
.ws98{word-spacing:2.100000px;}
.wse{word-spacing:2.106000px;}
.ws94{word-spacing:2.160000px;}
.ws15{word-spacing:2.214000px;}
.ws9b{word-spacing:2.280000px;}
.ws79{word-spacing:2.340000px;}
.wsec{word-spacing:2.376000px;}
.wsb3{word-spacing:2.400000px;}
.ws21{word-spacing:2.460000px;}
.ws42{word-spacing:2.580000px;}
.ws4d{word-spacing:2.760000px;}
.ws114{word-spacing:2.784000px;}
.ws77{word-spacing:2.820000px;}
.ws147{word-spacing:2.832000px;}
.ws87{word-spacing:2.880000px;}
.ws112{word-spacing:2.928000px;}
.wsa1{word-spacing:2.940000px;}
.ws25{word-spacing:3.000000px;}
.ws105{word-spacing:3.024000px;}
.ws2b{word-spacing:3.060000px;}
.ws13d{word-spacing:3.072000px;}
.ws7c{word-spacing:3.120000px;}
.ws121{word-spacing:3.168000px;}
.wse1{word-spacing:3.180000px;}
.ws40{word-spacing:3.360000px;}
.ws104{word-spacing:3.408000px;}
.ws4a{word-spacing:3.420000px;}
.ws84{word-spacing:3.480000px;}
.ws138{word-spacing:3.504000px;}
.ws28{word-spacing:3.540000px;}
.wsfe{word-spacing:3.618000px;}
.ws7b{word-spacing:3.720000px;}
.wse8{word-spacing:3.780000px;}
.ws141{word-spacing:3.792000px;}
.wse5{word-spacing:3.840000px;}
.wsc4{word-spacing:3.900000px;}
.wsef{word-spacing:3.942000px;}
.ws3f{word-spacing:3.960000px;}
.wsf3{word-spacing:4.050000px;}
.wsb2{word-spacing:4.080000px;}
.ws7f{word-spacing:4.140000px;}
.ws58{word-spacing:4.200000px;}
.ws11e{word-spacing:4.224000px;}
.ws2f{word-spacing:4.260000px;}
.ws41{word-spacing:4.320000px;}
.ws3b{word-spacing:4.440000px;}
.wsda{word-spacing:4.500000px;}
.wsb{word-spacing:4.536000px;}
.ws88{word-spacing:4.620000px;}
.ws14{word-spacing:4.644000px;}
.ws23{word-spacing:4.680000px;}
.ws92{word-spacing:4.740000px;}
.wsd3{word-spacing:4.800000px;}
.ws13c{word-spacing:4.848000px;}
.ws48{word-spacing:4.860000px;}
.wsf8{word-spacing:4.914000px;}
.ws3a{word-spacing:4.920000px;}
.ws65{word-spacing:5.040000px;}
.wsdc{word-spacing:5.100000px;}
.ws76{word-spacing:5.160000px;}
.ws1f{word-spacing:5.220000px;}
.ws12f{word-spacing:5.232000px;}
.ws2e{word-spacing:5.340000px;}
.ws5e{word-spacing:5.400000px;}
.ws13f{word-spacing:5.424000px;}
.ws4c{word-spacing:5.460000px;}
.wsfa{word-spacing:5.508000px;}
.ws16{word-spacing:5.616000px;}
.ws30{word-spacing:5.640000px;}
.ws56{word-spacing:5.700000px;}
.wsd0{word-spacing:5.760000px;}
.wsa9{word-spacing:5.820000px;}
.ws36{word-spacing:5.880000px;}
.wsa5{word-spacing:5.940000px;}
.wsac{word-spacing:6.120000px;}
.wsf2{word-spacing:6.156000px;}
.ws3d{word-spacing:6.180000px;}
.ws117{word-spacing:6.192000px;}
.wscb{word-spacing:6.240000px;}
.ws61{word-spacing:6.360000px;}
.wse4{word-spacing:6.420000px;}
.wsd4{word-spacing:6.480000px;}
.ws93{word-spacing:6.600000px;}
.ws20{word-spacing:6.660000px;}
.ws100{word-spacing:6.696000px;}
.ws59{word-spacing:6.780000px;}
.wsff{word-spacing:6.804000px;}
.ws13b{word-spacing:6.912000px;}
.ws9f{word-spacing:6.960000px;}
.ws10d{word-spacing:7.008000px;}
.ws9e{word-spacing:7.020000px;}
.ws9d{word-spacing:7.080000px;}
.wse7{word-spacing:7.200000px;}
.wsd1{word-spacing:7.260000px;}
.wsf1{word-spacing:7.344000px;}
.ws7d{word-spacing:7.380000px;}
.ws1e{word-spacing:7.440000px;}
.wsc1{word-spacing:7.500000px;}
.ws73{word-spacing:7.560000px;}
.wsd5{word-spacing:7.620000px;}
.ws144{word-spacing:7.632000px;}
.wscc{word-spacing:7.680000px;}
.ws128{word-spacing:7.728000px;}
.ws8a{word-spacing:7.740000px;}
.wsf6{word-spacing:7.776000px;}
.ws5c{word-spacing:7.800000px;}
.wse9{word-spacing:7.860000px;}
.ws38{word-spacing:7.920000px;}
.wsab{word-spacing:8.040000px;}
.ws106{word-spacing:8.064000px;}
.ws51{word-spacing:8.100000px;}
.ws3c{word-spacing:8.160000px;}
.wsdb{word-spacing:8.220000px;}
.ws63{word-spacing:8.400000px;}
.ws37{word-spacing:8.520000px;}
.wsdd{word-spacing:8.640000px;}
.wsb4{word-spacing:8.700000px;}
.ws66{word-spacing:8.760000px;}
.ws4f{word-spacing:9.060000px;}
.wsbc{word-spacing:9.180000px;}
.ws33{word-spacing:9.240000px;}
.ws39{word-spacing:9.420000px;}
.ws10e{word-spacing:9.504000px;}
.ws74{word-spacing:9.540000px;}
.ws10f{word-spacing:9.552000px;}
.ws60{word-spacing:9.960000px;}
.ws26{word-spacing:10.020000px;}
.ws31{word-spacing:10.080000px;}
.ws47{word-spacing:10.200000px;}
.ws5f{word-spacing:10.380000px;}
.ws64{word-spacing:10.560000px;}
.ws126{word-spacing:10.800000px;}
.ws12a{word-spacing:10.848000px;}
.ws113{word-spacing:11.328000px;}
.ws4e{word-spacing:11.460000px;}
.ws107{word-spacing:11.520000px;}
.wsd6{word-spacing:11.580000px;}
.wsaa{word-spacing:11.640000px;}
.wsc2{word-spacing:11.760000px;}
.ws82{word-spacing:11.820000px;}
.ws115{word-spacing:12.096000px;}
.ws83{word-spacing:12.120000px;}
.ws116{word-spacing:12.336000px;}
.ws49{word-spacing:12.360000px;}
.ws120{word-spacing:12.528000px;}
.wse0{word-spacing:12.540000px;}
.wsdf{word-spacing:12.660000px;}
.ws67{word-spacing:12.900000px;}
.ws13a{word-spacing:13.008000px;}
.wsc0{word-spacing:13.020000px;}
.wsa2{word-spacing:13.140000px;}
.wsa3{word-spacing:13.200000px;}
.ws32{word-spacing:13.260000px;}
.wsde{word-spacing:13.560000px;}
.ws139{word-spacing:13.776000px;}
.wsb5{word-spacing:14.100000px;}
.ws143{word-spacing:14.400000px;}
.wscd{word-spacing:14.460000px;}
.wsb0{word-spacing:14.580000px;}
.ws129{word-spacing:14.832000px;}
.ws7a{word-spacing:15.000000px;}
.ws11a{word-spacing:15.072000px;}
.ws118{word-spacing:15.984000px;}
.wsd2{word-spacing:16.140000px;}
.ws146{word-spacing:16.416000px;}
.wsbd{word-spacing:16.980000px;}
.wsa8{word-spacing:17.040000px;}
.wsd9{word-spacing:17.460000px;}
.ws11f{word-spacing:17.616000px;}
.ws35{word-spacing:17.820000px;}
.ws12d{word-spacing:18.336000px;}
.ws142{word-spacing:18.672000px;}
.ws11b{word-spacing:19.056000px;}
.ws125{word-spacing:19.248000px;}
.wsce{word-spacing:19.800000px;}
.ws75{word-spacing:20.640000px;}
.ws10a{word-spacing:21.984000px;}
.ws12b{word-spacing:23.904000px;}
.ws7e{word-spacing:24.960000px;}
.ws11c{word-spacing:27.600000px;}
.wsba{word-spacing:27.792000px;}
.ws109{word-spacing:29.280000px;}
.ws13e{word-spacing:29.328000px;}
.ws140{word-spacing:29.808000px;}
.ws0{word-spacing:32.012280px;}
.ws110{word-spacing:32.976000px;}
.wsb9{word-spacing:60.528000px;}
.wsb8{word-spacing:135.936000px;}
.ws6c{word-spacing:467.424000px;}
.ws8c{word-spacing:537.312000px;}
.ws8e{word-spacing:831.408000px;}
.ws8f{word-spacing:849.648000px;}
.ws90{word-spacing:873.024000px;}
.ws6f{word-spacing:891.312000px;}
.ws70{word-spacing:902.160000px;}
.ws71{word-spacing:923.712000px;}
.ws6e{word-spacing:932.304000px;}
._a{margin-left:-2823.846600px;}
._45{margin-left:-10.134000px;}
._c{margin-left:-7.623000px;}
._b{margin-left:-6.570000px;}
._9{margin-left:-5.454000px;}
._1{margin-left:-4.233600px;}
._0{margin-left:-2.583000px;}
._2{margin-left:-1.134000px;}
._3{width:1.296000px;}
._4{width:2.592000px;}
._f{width:4.254000px;}
._e{width:5.388000px;}
._8{width:13.536000px;}
._7{width:15.839400px;}
._6{width:16.944000px;}
._5{width:22.320000px;}
._62{width:42.817800px;}
._49{width:74.208000px;}
._4b{width:78.816000px;}
._4d{width:87.360000px;}
._48{width:90.336000px;}
._52{width:98.880000px;}
._51{width:101.856000px;}
._5e{width:112.944000px;}
._46{width:124.416000px;}
._5d{width:136.416000px;}
._2e{width:210.840000px;}
._10{width:243.678000px;}
._2b{width:255.024000px;}
._32{width:266.544000px;}
._40{width:278.064000px;}
._11{width:298.032000px;}
._61{width:362.361000px;}
._25{width:371.526000px;}
._54{width:380.814000px;}
._2f{width:385.428000px;}
._5c{width:386.694000px;}
._15{width:453.024000px;}
._58{width:460.218000px;}
._13{width:464.544000px;}
._12{width:476.640000px;}
._17{width:487.692000px;}
._1a{width:499.104000px;}
._2d{width:514.158000px;}
._60{width:522.054000px;}
._44{width:532.632000px;}
._22{width:537.168000px;}
._21{width:542.640000px;}
._43{width:544.152000px;}
._28{width:547.344000px;}
._26{width:548.688000px;}
._19{width:560.208000px;}
._5a{width:566.022000px;}
._1d{width:571.728000px;}
._5b{width:582.678000px;}
._3a{width:598.014000px;}
._3b{width:609.528000px;}
._1e{width:614.460000px;}
._1c{width:621.360000px;}
._4f{width:622.530000px;}
._3e{width:658.236000px;}
._56{width:662.097000px;}
._55{width:667.830000px;}
._3d{width:685.545600px;}
._41{width:687.738000px;}
._3f{width:699.258000px;}
._3c{width:703.200000px;}
._42{width:710.412000px;}
._57{width:722.289000px;}
._34{width:748.416000px;}
._37{width:755.646000px;}
._20{width:757.566000px;}
._24{width:780.540000px;}
._36{width:781.662000px;}
._2c{width:794.718000px;}
._39{width:796.128000px;}
._53{width:807.750000px;}
._31{width:812.286000px;}
._4a{width:854.100000px;}
._2a{width:864.144000px;}
._38{width:880.752000px;}
._14{width:888.270000px;}
._35{width:892.272000px;}
._59{width:893.418000px;}
._27{width:896.382000px;}
._4e{width:899.958000px;}
._33{width:903.792000px;}
._16{width:908.976000px;}
._23{width:921.486000px;}
._1b{width:924.711000px;}
._50{width:929.400000px;}
._18{width:932.478000px;}
._47{width:939.948000px;}
._1f{width:953.262000px;}
._4c{width:984.726000px;}
._5f{width:1036.698000px;}
._29{width:1044.414000px;}
._30{width:1155.504000px;}
._d{width:2370.033000px;}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fs6{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:64.668000px;}
.y26{bottom:77.264850px;}
.y25{bottom:89.861700px;}
.yf6{bottom:106.941300px;}
.yd0{bottom:107.291400px;}
.ya0{bottom:124.826850px;}
.yfe{bottom:124.840800px;}
.y150{bottom:125.267700px;}
.y60{bottom:125.291250px;}
.ycf{bottom:125.291400px;}
.yf5{bottom:129.921300px;}
.y14f{bottom:143.267700px;}
.y5f{bottom:143.291250px;}
.yce{bottom:143.291400px;}
.y113{bottom:145.741950px;}
.y24{bottom:147.293100px;}
.y9f{bottom:147.806850px;}
.yf4{bottom:148.005300px;}
.y14e{bottom:161.267700px;}
.y67{bottom:161.291250px;}
.ycd{bottom:161.291400px;}
.yf3{bottom:166.089300px;}
.y9e{bottom:166.310850px;}
.y23{bottom:173.796900px;}
.y5e{bottom:179.267700px;}
.y66{bottom:179.291250px;}
.ycc{bottom:179.291400px;}
.y112{bottom:179.345250px;}
.yf2{bottom:184.173300px;}
.y9d{bottom:184.814850px;}
.y14d{bottom:197.267700px;}
.y101{bottom:197.291250px;}
.ycb{bottom:197.291400px;}
.y111{bottom:197.340750px;}
.yf1{bottom:202.257300px;}
.y9c{bottom:203.318850px;}
.y5d{bottom:210.023550px;}
.y65{bottom:212.031450px;}
.y14c{bottom:215.267700px;}
.y100{bottom:215.291250px;}
.yca{bottom:215.291400px;}
.y110{bottom:215.336250px;}
.yf0{bottom:217.257300px;}
.y9b{bottom:221.822850px;}
.y14b{bottom:233.267700px;}
.yff{bottom:233.291250px;}
.yc9{bottom:233.291400px;}
.y10f{bottom:233.331750px;}
.y22{bottom:234.330150px;}
.yef{bottom:235.341300px;}
.yfb{bottom:236.527500px;}
.y9a{bottom:240.326850px;}
.yee{bottom:250.341300px;}
.y14a{bottom:251.267700px;}
.y64{bottom:251.291250px;}
.yc8{bottom:251.291400px;}
.y10e{bottom:251.327250px;}
.y21{bottom:252.325650px;}
.y99{bottom:258.830850px;}
.yed{bottom:268.425300px;}
.y149{bottom:269.267700px;}
.y5c{bottom:269.291250px;}
.yc7{bottom:269.291400px;}
.y10d{bottom:269.322750px;}
.y20{bottom:270.321150px;}
.y98{bottom:277.334850px;}
.yec{bottom:286.509300px;}
.y148{bottom:287.267700px;}
.y5b{bottom:287.291250px;}
.yc6{bottom:287.291400px;}
.y10c{bottom:287.318250px;}
.y1f{bottom:288.316650px;}
.y97{bottom:295.838850px;}
.yeb{bottom:304.593300px;}
.y147{bottom:305.267700px;}
.y5a{bottom:305.291250px;}
.yc5{bottom:305.291400px;}
.y10b{bottom:305.313750px;}
.y96{bottom:314.342850px;}
.y1e{bottom:314.838600px;}
.yea{bottom:322.677300px;}
.y146{bottom:323.267700px;}
.y59{bottom:323.291250px;}
.yc4{bottom:323.291400px;}
.y10a{bottom:323.309250px;}
.y1d{bottom:332.834100px;}
.y95{bottom:332.846850px;}
.ye9{bottom:337.677300px;}
.y145{bottom:341.267700px;}
.y58{bottom:341.291250px;}
.yc3{bottom:341.291400px;}
.y109{bottom:341.304750px;}
.y1c{bottom:350.829600px;}
.y94{bottom:351.350850px;}
.ye8{bottom:355.761300px;}
.y144{bottom:359.267700px;}
.y57{bottom:359.291250px;}
.yc2{bottom:359.291400px;}
.y108{bottom:359.300250px;}
.y1b{bottom:368.825100px;}
.y93{bottom:369.854850px;}
.ye7{bottom:373.845300px;}
.y143{bottom:377.267700px;}
.y56{bottom:377.291250px;}
.yc1{bottom:377.291400px;}
.y107{bottom:377.295750px;}
.y1a{bottom:386.820600px;}
.y92{bottom:388.358850px;}
.ye6{bottom:388.845300px;}
.y142{bottom:395.267700px;}
.y55{bottom:395.291250px;}
.yc0{bottom:395.291400px;}
.y91{bottom:406.862850px;}
.ye5{bottom:406.929300px;}
.y141{bottom:413.267700px;}
.y54{bottom:413.291250px;}
.ybf{bottom:413.291400px;}
.y19{bottom:413.338050px;}
.y106{bottom:415.741950px;}
.ye4{bottom:425.013300px;}
.y90{bottom:425.366850px;}
.y140{bottom:431.267700px;}
.y53{bottom:431.291250px;}
.yd3{bottom:431.291400px;}
.y18{bottom:431.333550px;}
.yfd{bottom:442.068450px;}
.ye3{bottom:443.097300px;}
.y8f{bottom:443.870850px;}
.ybe{bottom:446.031450px;}
.y13f{bottom:449.267700px;}
.y52{bottom:449.291250px;}
.yd2{bottom:449.291400px;}
.y105{bottom:449.295750px;}
.y17{bottom:449.329050px;}
.ye2{bottom:461.181300px;}
.y8e{bottom:462.374850px;}
.y13e{bottom:467.267700px;}
.y51{bottom:467.291250px;}
.yd1{bottom:467.291400px;}
.y16{bottom:467.324550px;}
.ye1{bottom:479.265300px;}
.y8d{bottom:480.878850px;}
.y13d{bottom:485.267700px;}
.y50{bottom:485.291250px;}
.ybd{bottom:485.291400px;}
.y104{bottom:493.771650px;}
.y15{bottom:493.833000px;}
.ye0{bottom:497.349300px;}
.y8c{bottom:499.382850px;}
.yfa{bottom:500.031450px;}
.y13c{bottom:503.267700px;}
.y4f{bottom:503.291250px;}
.ybc{bottom:503.291400px;}
.y14{bottom:511.828500px;}
.ydf{bottom:515.433300px;}
.y13b{bottom:521.267700px;}
.y4e{bottom:521.291250px;}
.ybb{bottom:521.291400px;}
.y103{bottom:524.527500px;}
.y8b{bottom:527.237700px;}
.yde{bottom:533.517300px;}
.y13{bottom:538.332450px;}
.y13a{bottom:539.267700px;}
.y4d{bottom:539.291250px;}
.yba{bottom:539.291400px;}
.ydd{bottom:551.601300px;}
.y139{bottom:557.267700px;}
.y4c{bottom:557.291250px;}
.yb9{bottom:557.291400px;}
.ydc{bottom:569.685300px;}
.y138{bottom:575.267700px;}
.y4b{bottom:575.291250px;}
.y84{bottom:575.291400px;}
.ydb{bottom:587.769300px;}
.y137{bottom:593.267700px;}
.y4a{bottom:593.291250px;}
.y83{bottom:593.291400px;}
.y12{bottom:594.609150px;}
.yda{bottom:605.853300px;}
.y136{bottom:611.267700px;}
.y49{bottom:611.291250px;}
.y82{bottom:611.291400px;}
.yf9{bottom:611.953350px;}
.y11{bottom:612.604650px;}
.yd9{bottom:623.937300px;}
.y135{bottom:629.267700px;}
.y48{bottom:629.291250px;}
.y81{bottom:629.291400px;}
.yf8{bottom:629.953350px;}
.y10{bottom:630.600150px;}
.yd8{bottom:642.021300px;}
.yb8{bottom:643.267050px;}
.y134{bottom:647.267700px;}
.y47{bottom:647.291250px;}
.y80{bottom:647.291400px;}
.yd7{bottom:660.105300px;}
.yb7{bottom:660.499050px;}
.y133{bottom:665.267700px;}
.y46{bottom:665.291250px;}
.y7f{bottom:665.291400px;}
.yf{bottom:665.607900px;}
.yfc{bottom:666.834600px;}
.yb6{bottom:677.731050px;}
.yd5{bottom:678.189300px;}
.y132{bottom:683.267700px;}
.y45{bottom:683.291250px;}
.y7e{bottom:683.291400px;}
.yb5{bottom:694.963050px;}
.yd6{bottom:696.273300px;}
.y131{bottom:701.267700px;}
.y44{bottom:701.291250px;}
.y7d{bottom:701.291400px;}
.yb4{bottom:712.195050px;}
.ye{bottom:713.371800px;}
.y130{bottom:719.267700px;}
.y43{bottom:719.291250px;}
.y7c{bottom:719.291400px;}
.yd4{bottom:724.122300px;}
.yb3{bottom:729.427050px;}
.y12f{bottom:737.267700px;}
.y42{bottom:737.291250px;}
.y7b{bottom:737.291400px;}
.yd{bottom:739.875750px;}
.yb2{bottom:746.659050px;}
.y12e{bottom:755.267700px;}
.y41{bottom:755.291250px;}
.y7a{bottom:755.291400px;}
.yc{bottom:757.875750px;}
.yb1{bottom:763.891050px;}
.yf7{bottom:768.768600px;}
.y12d{bottom:773.267700px;}
.y40{bottom:773.291250px;}
.y79{bottom:773.291400px;}
.yb{bottom:775.875750px;}
.y102{bottom:776.527500px;}
.yb0{bottom:781.123050px;}
.y12c{bottom:791.267700px;}
.y3f{bottom:791.291250px;}
.y78{bottom:791.291400px;}
.ya{bottom:793.875750px;}
.yaf{bottom:798.355050px;}
.y3e{bottom:809.291250px;}
.y77{bottom:809.291400px;}
.y9{bottom:811.875750px;}
.yae{bottom:815.587050px;}
.y12b{bottom:822.023550px;}
.y3d{bottom:827.291250px;}
.y76{bottom:827.291400px;}
.y8{bottom:829.875750px;}
.yad{bottom:832.819050px;}
.y3c{bottom:845.291250px;}
.y75{bottom:845.291400px;}
.y7{bottom:847.875750px;}
.yac{bottom:850.051050px;}
.y162{bottom:850.315500px;}
.y3b{bottom:863.291250px;}
.y74{bottom:863.291400px;}
.y6{bottom:865.875750px;}
.yab{bottom:867.283050px;}
.y161{bottom:868.315500px;}
.y3a{bottom:881.291250px;}
.y73{bottom:881.291400px;}
.y12a{bottom:881.300250px;}
.yaa{bottom:884.515050px;}
.y160{bottom:886.315500px;}
.y5{bottom:892.379700px;}
.y39{bottom:899.291250px;}
.y72{bottom:899.291400px;}
.y129{bottom:899.295750px;}
.y120{bottom:899.331750px;}
.ya9{bottom:901.747050px;}
.y15f{bottom:904.315500px;}
.y4{bottom:913.979700px;}
.y38{bottom:917.291250px;}
.y71{bottom:917.291400px;}
.y11f{bottom:917.327250px;}
.ya8{bottom:918.979050px;}
.y15e{bottom:922.315500px;}
.y37{bottom:935.291250px;}
.y8a{bottom:935.291400px;}
.y11e{bottom:935.322750px;}
.ya7{bottom:936.211050px;}
.y128{bottom:937.741950px;}
.y15d{bottom:940.315500px;}
.y70{bottom:950.031600px;}
.y36{bottom:953.291250px;}
.y11d{bottom:953.318250px;}
.ya6{bottom:953.443050px;}
.y3{bottom:953.578200px;}
.y15c{bottom:958.315500px;}
.y114{bottom:963.452250px;}
.ya5{bottom:970.675050px;}
.y89{bottom:971.267700px;}
.y35{bottom:971.291250px;}
.y127{bottom:971.300250px;}
.y11c{bottom:971.313750px;}
.y15b{bottom:976.315500px;}
.ya4{bottom:987.907050px;}
.y34{bottom:989.291250px;}
.y6f{bottom:989.291400px;}
.y126{bottom:989.295750px;}
.y11b{bottom:989.309250px;}
.y2{bottom:991.378200px;}
.y15a{bottom:994.315500px;}
.y88{bottom:1002.023550px;}
.ya3{bottom:1005.139050px;}
.y33{bottom:1007.291250px;}
.y6e{bottom:1007.291400px;}
.y125{bottom:1007.295750px;}
.y11a{bottom:1007.304750px;}
.y159{bottom:1012.315500px;}
.ya2{bottom:1022.371050px;}
.y32{bottom:1025.291250px;}
.y6d{bottom:1025.291400px;}
.y124{bottom:1025.295750px;}
.y119{bottom:1025.300250px;}
.y1{bottom:1029.178200px;}
.y158{bottom:1030.315500px;}
.y31{bottom:1043.291250px;}
.y6c{bottom:1043.291400px;}
.y118{bottom:1043.295750px;}
.y157{bottom:1048.315500px;}
.ya1{bottom:1049.375550px;}
.y63{bottom:1058.031450px;}
.y30{bottom:1061.291250px;}
.y87{bottom:1061.291400px;}
.y123{bottom:1061.295750px;}
.y156{bottom:1066.315500px;}
.y6b{bottom:1076.031600px;}
.y2f{bottom:1079.291250px;}
.y86{bottom:1079.291400px;}
.y122{bottom:1079.295750px;}
.y117{bottom:1081.741800px;}
.y155{bottom:1084.315500px;}
.y2e{bottom:1097.291250px;}
.y85{bottom:1097.291400px;}
.y121{bottom:1097.295750px;}
.y154{bottom:1102.315500px;}
.y2d{bottom:1115.291250px;}
.y6a{bottom:1115.291400px;}
.y116{bottom:1115.295750px;}
.y153{bottom:1120.315500px;}
.y2a{bottom:1126.725000px;}
.y62{bottom:1133.291250px;}
.y69{bottom:1133.291400px;}
.y152{bottom:1138.315500px;}
.y2c{bottom:1148.449350px;}
.y61{bottom:1151.291250px;}
.y68{bottom:1151.291400px;}
.y115{bottom:1153.189500px;}
.y151{bottom:1156.315500px;}
.y29{bottom:1166.037300px;}
.y28{bottom:1183.789800px;}
.y2b{bottom:1193.518650px;}
.ha{height:27.575100px;}
.hb{height:32.827500px;}
.hc{height:33.947754px;}
.h10{height:34.272000px;}
.h6{height:34.368000px;}
.h5{height:35.016000px;}
.h11{height:35.964576px;}
.h4{height:37.872000px;}
.h8{height:38.664000px;}
.h7{height:39.555000px;}
.he{height:42.960000px;}
.h12{height:43.950000px;}
.hf{height:47.340000px;}
.h9{height:52.740000px;}
.h3{height:54.596892px;}
.hd{height:61.530000px;}
.h2{height:92.295000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.x15{left:97.792650px;}
.x10{left:110.553300px;}
.x16{left:114.796650px;}
.xa{left:139.706400px;}
.x3{left:145.222800px;}
.x9{left:148.697550px;}
.xb{left:160.938150px;}
.x8{left:166.794750px;}
.x13{left:177.952650px;}
.x18{left:180.084450px;}
.x2{left:211.839000px;}
.xf{left:219.108450px;}
.x17{left:224.148450px;}
.x4{left:253.786650px;}
.x1a{left:291.303900px;}
.x5{left:308.880750px;}
.xe{left:375.582450px;}
.x14{left:432.952650px;}
.x6{left:436.263600px;}
.x11{left:455.463300px;}
.x19{left:467.712450px;}
.x12{left:472.466700px;}
.x7{left:492.948450px;}
.x1f{left:553.931850px;}
.x1e{left:559.799850px;}
.x1d{left:565.403850px;}
.x1b{left:583.191900px;}
.xd{left:601.214100px;}
.xc{left:695.534100px;}
.x1c{left:754.371900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:21.311467pt;}
.ls1d{letter-spacing:-4.352000pt;}
.ls10{letter-spacing:-4.000000pt;}
.ls15{letter-spacing:-3.413333pt;}
.ls11{letter-spacing:-1.706667pt;}
.ls8{letter-spacing:-1.664000pt;}
.lse{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.906667pt;}
.lsc{letter-spacing:-0.873600pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.810667pt;}
.ls1b{letter-spacing:-0.746667pt;}
.ls13{letter-spacing:-0.725333pt;}
.lsa{letter-spacing:-0.720000pt;}
.ls19{letter-spacing:-0.693333pt;}
.ls1e{letter-spacing:-0.597333pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.341333pt;}
.ls20{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.170667pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.018133pt;}
.ls5{letter-spacing:0.018667pt;}
.ls23{letter-spacing:0.085333pt;}
.lsf{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.810667pt;}
.ls21{letter-spacing:0.960000pt;}
.ls22{letter-spacing:5.952000pt;}
.ls3{letter-spacing:38.399488pt;}
.ls0{letter-spacing:38.399936pt;}
.ls4{letter-spacing:38.418069pt;}
.ls2{letter-spacing:38.418261pt;}
.ls1{letter-spacing:38.418645pt;}
.ws1b{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.wsf4{word-spacing:-13.173333pt;}
.ws3{word-spacing:-11.856000pt;}
.ws7{word-spacing:-11.712000pt;}
.ws4{word-spacing:-11.376000pt;}
.wscf{word-spacing:-10.896000pt;}
.ws6b{word-spacing:-10.506667pt;}
.ws135{word-spacing:-10.496000pt;}
.ws134{word-spacing:-10.453333pt;}
.ws5{word-spacing:-10.176000pt;}
.ws136{word-spacing:-10.026667pt;}
.ws1{word-spacing:-9.968000pt;}
.wsf5{word-spacing:-9.941333pt;}
.ws133{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.wsb6{word-spacing:-9.258667pt;}
.ws6d{word-spacing:-9.045333pt;}
.ws8d{word-spacing:-8.917333pt;}
.wsb7{word-spacing:-8.405333pt;}
.ws6a{word-spacing:-8.213333pt;}
.wse2{word-spacing:-4.160000pt;}
.ws99{word-spacing:-3.466667pt;}
.ws44{word-spacing:-3.146667pt;}
.wsc5{word-spacing:-3.093333pt;}
.ws12e{word-spacing:-3.072000pt;}
.ws5d{word-spacing:-3.040000pt;}
.ws57{word-spacing:-2.986667pt;}
.ws50{word-spacing:-2.933333pt;}
.ws2a{word-spacing:-2.506667pt;}
.ws80{word-spacing:-2.400000pt;}
.wsed{word-spacing:-2.352000pt;}
.wsc3{word-spacing:-2.346667pt;}
.wsad{word-spacing:-2.240000pt;}
.ws27{word-spacing:-2.133333pt;}
.wsf9{word-spacing:-2.112000pt;}
.wsbe{word-spacing:-2.080000pt;}
.wsc9{word-spacing:-2.026667pt;}
.wsc{word-spacing:-2.016000pt;}
.wsb1{word-spacing:-1.866667pt;}
.ws1c{word-spacing:-1.813333pt;}
.wseb{word-spacing:-1.760000pt;}
.ws72{word-spacing:-1.706667pt;}
.ws123{word-spacing:-1.621333pt;}
.ws5a{word-spacing:-1.600000pt;}
.ws101{word-spacing:-1.584000pt;}
.ws69{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.493333pt;}
.ws103{word-spacing:-1.450667pt;}
.ws11{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws68{word-spacing:-1.333333pt;}
.ws122{word-spacing:-1.280000pt;}
.ws148{word-spacing:-1.194667pt;}
.wsaf{word-spacing:-1.173333pt;}
.ws111{word-spacing:-1.109333pt;}
.wsee{word-spacing:-1.104000pt;}
.ws86{word-spacing:-1.066667pt;}
.ws10b{word-spacing:-1.024000pt;}
.ws22{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.940800pt;}
.ws1a{word-spacing:-0.832000pt;}
.wsa7{word-spacing:-0.693333pt;}
.ws10c{word-spacing:-0.682667pt;}
.ws54{word-spacing:-0.640000pt;}
.wse3{word-spacing:-0.586667pt;}
.ws132{word-spacing:-0.554667pt;}
.ws62{word-spacing:-0.480000pt;}
.wsfc{word-spacing:-0.432000pt;}
.wsd8{word-spacing:-0.426667pt;}
.ws108{word-spacing:-0.384000pt;}
.wsae{word-spacing:-0.373333pt;}
.ws11d{word-spacing:-0.341333pt;}
.ws52{word-spacing:-0.320000pt;}
.ws81{word-spacing:-0.266667pt;}
.ws8b{word-spacing:-0.256000pt;}
.wsfd{word-spacing:-0.240000pt;}
.ws43{word-spacing:-0.213333pt;}
.wsa6{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws34{word-spacing:-0.106667pt;}
.ws18{word-spacing:-0.067200pt;}
.ws95{word-spacing:-0.053333pt;}
.ws119{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws12c{word-spacing:0.085333pt;}
.wsf{word-spacing:0.096000pt;}
.wsbf{word-spacing:0.106667pt;}
.ws46{word-spacing:0.160000pt;}
.ws97{word-spacing:0.170667pt;}
.ws2c{word-spacing:0.213333pt;}
.ws9a{word-spacing:0.266667pt;}
.ws9c{word-spacing:0.320000pt;}
.ws96{word-spacing:0.341333pt;}
.ws45{word-spacing:0.426667pt;}
.ws17{word-spacing:0.436800pt;}
.ws10{word-spacing:0.480000pt;}
.wsd{word-spacing:0.528000pt;}
.ws5b{word-spacing:0.533333pt;}
.wsd7{word-spacing:0.586667pt;}
.wsca{word-spacing:0.693333pt;}
.ws131{word-spacing:0.725333pt;}
.wsa0{word-spacing:0.746667pt;}
.wsa4{word-spacing:0.800000pt;}
.ws85{word-spacing:0.853333pt;}
.wsf7{word-spacing:0.864000pt;}
.ws137{word-spacing:0.896000pt;}
.wsc7{word-spacing:0.906667pt;}
.ws124{word-spacing:0.938667pt;}
.wsc6{word-spacing:0.960000pt;}
.ws127{word-spacing:1.024000pt;}
.ws29{word-spacing:1.066667pt;}
.ws53{word-spacing:1.120000pt;}
.wsf0{word-spacing:1.152000pt;}
.wsc8{word-spacing:1.226667pt;}
.ws102{word-spacing:1.237333pt;}
.wsea{word-spacing:1.333333pt;}
.ws2d{word-spacing:1.386667pt;}
.ws55{word-spacing:1.440000pt;}
.wsfb{word-spacing:1.488000pt;}
.ws3e{word-spacing:1.493333pt;}
.ws12{word-spacing:1.536000pt;}
.ws130{word-spacing:1.578667pt;}
.wsbb{word-spacing:1.600000pt;}
.ws145{word-spacing:1.621333pt;}
.wse6{word-spacing:1.653333pt;}
.ws9{word-spacing:1.664000pt;}
.wsa{word-spacing:1.680000pt;}
.ws89{word-spacing:1.706667pt;}
.ws78{word-spacing:1.760000pt;}
.ws91{word-spacing:1.813333pt;}
.ws98{word-spacing:1.866667pt;}
.wse{word-spacing:1.872000pt;}
.ws94{word-spacing:1.920000pt;}
.ws15{word-spacing:1.968000pt;}
.ws9b{word-spacing:2.026667pt;}
.ws79{word-spacing:2.080000pt;}
.wsec{word-spacing:2.112000pt;}
.wsb3{word-spacing:2.133333pt;}
.ws21{word-spacing:2.186667pt;}
.ws42{word-spacing:2.293333pt;}
.ws4d{word-spacing:2.453333pt;}
.ws114{word-spacing:2.474667pt;}
.ws77{word-spacing:2.506667pt;}
.ws147{word-spacing:2.517333pt;}
.ws87{word-spacing:2.560000pt;}
.ws112{word-spacing:2.602667pt;}
.wsa1{word-spacing:2.613333pt;}
.ws25{word-spacing:2.666667pt;}
.ws105{word-spacing:2.688000pt;}
.ws2b{word-spacing:2.720000pt;}
.ws13d{word-spacing:2.730667pt;}
.ws7c{word-spacing:2.773333pt;}
.ws121{word-spacing:2.816000pt;}
.wse1{word-spacing:2.826667pt;}
.ws40{word-spacing:2.986667pt;}
.ws104{word-spacing:3.029333pt;}
.ws4a{word-spacing:3.040000pt;}
.ws84{word-spacing:3.093333pt;}
.ws138{word-spacing:3.114667pt;}
.ws28{word-spacing:3.146667pt;}
.wsfe{word-spacing:3.216000pt;}
.ws7b{word-spacing:3.306667pt;}
.wse8{word-spacing:3.360000pt;}
.ws141{word-spacing:3.370667pt;}
.wse5{word-spacing:3.413333pt;}
.wsc4{word-spacing:3.466667pt;}
.wsef{word-spacing:3.504000pt;}
.ws3f{word-spacing:3.520000pt;}
.wsf3{word-spacing:3.600000pt;}
.wsb2{word-spacing:3.626667pt;}
.ws7f{word-spacing:3.680000pt;}
.ws58{word-spacing:3.733333pt;}
.ws11e{word-spacing:3.754667pt;}
.ws2f{word-spacing:3.786667pt;}
.ws41{word-spacing:3.840000pt;}
.ws3b{word-spacing:3.946667pt;}
.wsda{word-spacing:4.000000pt;}
.wsb{word-spacing:4.032000pt;}
.ws88{word-spacing:4.106667pt;}
.ws14{word-spacing:4.128000pt;}
.ws23{word-spacing:4.160000pt;}
.ws92{word-spacing:4.213333pt;}
.wsd3{word-spacing:4.266667pt;}
.ws13c{word-spacing:4.309333pt;}
.ws48{word-spacing:4.320000pt;}
.wsf8{word-spacing:4.368000pt;}
.ws3a{word-spacing:4.373333pt;}
.ws65{word-spacing:4.480000pt;}
.wsdc{word-spacing:4.533333pt;}
.ws76{word-spacing:4.586667pt;}
.ws1f{word-spacing:4.640000pt;}
.ws12f{word-spacing:4.650667pt;}
.ws2e{word-spacing:4.746667pt;}
.ws5e{word-spacing:4.800000pt;}
.ws13f{word-spacing:4.821333pt;}
.ws4c{word-spacing:4.853333pt;}
.wsfa{word-spacing:4.896000pt;}
.ws16{word-spacing:4.992000pt;}
.ws30{word-spacing:5.013333pt;}
.ws56{word-spacing:5.066667pt;}
.wsd0{word-spacing:5.120000pt;}
.wsa9{word-spacing:5.173333pt;}
.ws36{word-spacing:5.226667pt;}
.wsa5{word-spacing:5.280000pt;}
.wsac{word-spacing:5.440000pt;}
.wsf2{word-spacing:5.472000pt;}
.ws3d{word-spacing:5.493333pt;}
.ws117{word-spacing:5.504000pt;}
.wscb{word-spacing:5.546667pt;}
.ws61{word-spacing:5.653333pt;}
.wse4{word-spacing:5.706667pt;}
.wsd4{word-spacing:5.760000pt;}
.ws93{word-spacing:5.866667pt;}
.ws20{word-spacing:5.920000pt;}
.ws100{word-spacing:5.952000pt;}
.ws59{word-spacing:6.026667pt;}
.wsff{word-spacing:6.048000pt;}
.ws13b{word-spacing:6.144000pt;}
.ws9f{word-spacing:6.186667pt;}
.ws10d{word-spacing:6.229333pt;}
.ws9e{word-spacing:6.240000pt;}
.ws9d{word-spacing:6.293333pt;}
.wse7{word-spacing:6.400000pt;}
.wsd1{word-spacing:6.453333pt;}
.wsf1{word-spacing:6.528000pt;}
.ws7d{word-spacing:6.560000pt;}
.ws1e{word-spacing:6.613333pt;}
.wsc1{word-spacing:6.666667pt;}
.ws73{word-spacing:6.720000pt;}
.wsd5{word-spacing:6.773333pt;}
.ws144{word-spacing:6.784000pt;}
.wscc{word-spacing:6.826667pt;}
.ws128{word-spacing:6.869333pt;}
.ws8a{word-spacing:6.880000pt;}
.wsf6{word-spacing:6.912000pt;}
.ws5c{word-spacing:6.933333pt;}
.wse9{word-spacing:6.986667pt;}
.ws38{word-spacing:7.040000pt;}
.wsab{word-spacing:7.146667pt;}
.ws106{word-spacing:7.168000pt;}
.ws51{word-spacing:7.200000pt;}
.ws3c{word-spacing:7.253333pt;}
.wsdb{word-spacing:7.306667pt;}
.ws63{word-spacing:7.466667pt;}
.ws37{word-spacing:7.573333pt;}
.wsdd{word-spacing:7.680000pt;}
.wsb4{word-spacing:7.733333pt;}
.ws66{word-spacing:7.786667pt;}
.ws4f{word-spacing:8.053333pt;}
.wsbc{word-spacing:8.160000pt;}
.ws33{word-spacing:8.213333pt;}
.ws39{word-spacing:8.373333pt;}
.ws10e{word-spacing:8.448000pt;}
.ws74{word-spacing:8.480000pt;}
.ws10f{word-spacing:8.490667pt;}
.ws60{word-spacing:8.853333pt;}
.ws26{word-spacing:8.906667pt;}
.ws31{word-spacing:8.960000pt;}
.ws47{word-spacing:9.066667pt;}
.ws5f{word-spacing:9.226667pt;}
.ws64{word-spacing:9.386667pt;}
.ws126{word-spacing:9.600000pt;}
.ws12a{word-spacing:9.642667pt;}
.ws113{word-spacing:10.069333pt;}
.ws4e{word-spacing:10.186667pt;}
.ws107{word-spacing:10.240000pt;}
.wsd6{word-spacing:10.293333pt;}
.wsaa{word-spacing:10.346667pt;}
.wsc2{word-spacing:10.453333pt;}
.ws82{word-spacing:10.506667pt;}
.ws115{word-spacing:10.752000pt;}
.ws83{word-spacing:10.773333pt;}
.ws116{word-spacing:10.965333pt;}
.ws49{word-spacing:10.986667pt;}
.ws120{word-spacing:11.136000pt;}
.wse0{word-spacing:11.146667pt;}
.wsdf{word-spacing:11.253333pt;}
.ws67{word-spacing:11.466667pt;}
.ws13a{word-spacing:11.562667pt;}
.wsc0{word-spacing:11.573333pt;}
.wsa2{word-spacing:11.680000pt;}
.wsa3{word-spacing:11.733333pt;}
.ws32{word-spacing:11.786667pt;}
.wsde{word-spacing:12.053333pt;}
.ws139{word-spacing:12.245333pt;}
.wsb5{word-spacing:12.533333pt;}
.ws143{word-spacing:12.800000pt;}
.wscd{word-spacing:12.853333pt;}
.wsb0{word-spacing:12.960000pt;}
.ws129{word-spacing:13.184000pt;}
.ws7a{word-spacing:13.333333pt;}
.ws11a{word-spacing:13.397333pt;}
.ws118{word-spacing:14.208000pt;}
.wsd2{word-spacing:14.346667pt;}
.ws146{word-spacing:14.592000pt;}
.wsbd{word-spacing:15.093333pt;}
.wsa8{word-spacing:15.146667pt;}
.wsd9{word-spacing:15.520000pt;}
.ws11f{word-spacing:15.658667pt;}
.ws35{word-spacing:15.840000pt;}
.ws12d{word-spacing:16.298667pt;}
.ws142{word-spacing:16.597333pt;}
.ws11b{word-spacing:16.938667pt;}
.ws125{word-spacing:17.109333pt;}
.wsce{word-spacing:17.600000pt;}
.ws75{word-spacing:18.346667pt;}
.ws10a{word-spacing:19.541333pt;}
.ws12b{word-spacing:21.248000pt;}
.ws7e{word-spacing:22.186667pt;}
.ws11c{word-spacing:24.533333pt;}
.wsba{word-spacing:24.704000pt;}
.ws109{word-spacing:26.026667pt;}
.ws13e{word-spacing:26.069333pt;}
.ws140{word-spacing:26.496000pt;}
.ws0{word-spacing:28.455360pt;}
.ws110{word-spacing:29.312000pt;}
.wsb9{word-spacing:53.802667pt;}
.wsb8{word-spacing:120.832000pt;}
.ws6c{word-spacing:415.488000pt;}
.ws8c{word-spacing:477.610667pt;}
.ws8e{word-spacing:739.029333pt;}
.ws8f{word-spacing:755.242667pt;}
.ws90{word-spacing:776.021333pt;}
.ws6f{word-spacing:792.277333pt;}
.ws70{word-spacing:801.920000pt;}
.ws71{word-spacing:821.077333pt;}
.ws6e{word-spacing:828.714667pt;}
._a{margin-left:-2510.085867pt;}
._45{margin-left:-9.008000pt;}
._c{margin-left:-6.776000pt;}
._b{margin-left:-5.840000pt;}
._9{margin-left:-4.848000pt;}
._1{margin-left:-3.763200pt;}
._0{margin-left:-2.296000pt;}
._2{margin-left:-1.008000pt;}
._3{width:1.152000pt;}
._4{width:2.304000pt;}
._f{width:3.781333pt;}
._e{width:4.789333pt;}
._8{width:12.032000pt;}
._7{width:14.079467pt;}
._6{width:15.061333pt;}
._5{width:19.840000pt;}
._62{width:38.060267pt;}
._49{width:65.962667pt;}
._4b{width:70.058667pt;}
._4d{width:77.653333pt;}
._48{width:80.298667pt;}
._52{width:87.893333pt;}
._51{width:90.538667pt;}
._5e{width:100.394667pt;}
._46{width:110.592000pt;}
._5d{width:121.258667pt;}
._2e{width:187.413333pt;}
._10{width:216.602667pt;}
._2b{width:226.688000pt;}
._32{width:236.928000pt;}
._40{width:247.168000pt;}
._11{width:264.917333pt;}
._61{width:322.098667pt;}
._25{width:330.245333pt;}
._54{width:338.501333pt;}
._2f{width:342.602667pt;}
._5c{width:343.728000pt;}
._15{width:402.688000pt;}
._58{width:409.082667pt;}
._13{width:412.928000pt;}
._12{width:423.680000pt;}
._17{width:433.504000pt;}
._1a{width:443.648000pt;}
._2d{width:457.029333pt;}
._60{width:464.048000pt;}
._44{width:473.450667pt;}
._22{width:477.482667pt;}
._21{width:482.346667pt;}
._43{width:483.690667pt;}
._28{width:486.528000pt;}
._26{width:487.722667pt;}
._19{width:497.962667pt;}
._5a{width:503.130667pt;}
._1d{width:508.202667pt;}
._5b{width:517.936000pt;}
._3a{width:531.568000pt;}
._3b{width:541.802667pt;}
._1e{width:546.186667pt;}
._1c{width:552.320000pt;}
._4f{width:553.360000pt;}
._3e{width:585.098667pt;}
._56{width:588.530667pt;}
._55{width:593.626667pt;}
._3d{width:609.373867pt;}
._41{width:611.322667pt;}
._3f{width:621.562667pt;}
._3c{width:625.066667pt;}
._42{width:631.477333pt;}
._57{width:642.034667pt;}
._34{width:665.258667pt;}
._37{width:671.685333pt;}
._20{width:673.392000pt;}
._24{width:693.813333pt;}
._36{width:694.810667pt;}
._2c{width:706.416000pt;}
._39{width:707.669333pt;}
._53{width:718.000000pt;}
._31{width:722.032000pt;}
._4a{width:759.200000pt;}
._2a{width:768.128000pt;}
._38{width:782.890667pt;}
._14{width:789.573333pt;}
._35{width:793.130667pt;}
._59{width:794.149333pt;}
._27{width:796.784000pt;}
._4e{width:799.962667pt;}
._33{width:803.370667pt;}
._16{width:807.978667pt;}
._23{width:819.098667pt;}
._1b{width:821.965333pt;}
._50{width:826.133333pt;}
._18{width:828.869333pt;}
._47{width:835.509333pt;}
._1f{width:847.344000pt;}
._4c{width:875.312000pt;}
._5f{width:921.509333pt;}
._29{width:928.368000pt;}
._30{width:1027.114667pt;}
._d{width:2106.696000pt;}
.fsa{font-size:24.874667pt;}
.fs6{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:57.482667pt;}
.y26{bottom:68.679867pt;}
.y25{bottom:79.877067pt;}
.yf6{bottom:95.058933pt;}
.yd0{bottom:95.370133pt;}
.ya0{bottom:110.957200pt;}
.yfe{bottom:110.969600pt;}
.y150{bottom:111.349067pt;}
.y60{bottom:111.370000pt;}
.ycf{bottom:111.370133pt;}
.yf5{bottom:115.485600pt;}
.y14f{bottom:127.349067pt;}
.y5f{bottom:127.370000pt;}
.yce{bottom:127.370133pt;}
.y113{bottom:129.548400pt;}
.y24{bottom:130.927200pt;}
.y9f{bottom:131.383867pt;}
.yf4{bottom:131.560267pt;}
.y14e{bottom:143.349067pt;}
.y67{bottom:143.370000pt;}
.ycd{bottom:143.370133pt;}
.yf3{bottom:147.634933pt;}
.y9e{bottom:147.831867pt;}
.y23{bottom:154.486133pt;}
.y5e{bottom:159.349067pt;}
.y66{bottom:159.370000pt;}
.ycc{bottom:159.370133pt;}
.y112{bottom:159.418000pt;}
.yf2{bottom:163.709600pt;}
.y9d{bottom:164.279867pt;}
.y14d{bottom:175.349067pt;}
.y101{bottom:175.370000pt;}
.ycb{bottom:175.370133pt;}
.y111{bottom:175.414000pt;}
.yf1{bottom:179.784267pt;}
.y9c{bottom:180.727867pt;}
.y5d{bottom:186.687600pt;}
.y65{bottom:188.472400pt;}
.y14c{bottom:191.349067pt;}
.y100{bottom:191.370000pt;}
.yca{bottom:191.370133pt;}
.y110{bottom:191.410000pt;}
.yf0{bottom:193.117600pt;}
.y9b{bottom:197.175867pt;}
.y14b{bottom:207.349067pt;}
.yff{bottom:207.370000pt;}
.yc9{bottom:207.370133pt;}
.y10f{bottom:207.406000pt;}
.y22{bottom:208.293467pt;}
.yef{bottom:209.192267pt;}
.yfb{bottom:210.246667pt;}
.y9a{bottom:213.623867pt;}
.yee{bottom:222.525600pt;}
.y14a{bottom:223.349067pt;}
.y64{bottom:223.370000pt;}
.yc8{bottom:223.370133pt;}
.y10e{bottom:223.402000pt;}
.y21{bottom:224.289467pt;}
.y99{bottom:230.071867pt;}
.yed{bottom:238.600267pt;}
.y149{bottom:239.349067pt;}
.y5c{bottom:239.370000pt;}
.yc7{bottom:239.370133pt;}
.y10d{bottom:239.398000pt;}
.y20{bottom:240.285467pt;}
.y98{bottom:246.519867pt;}
.yec{bottom:254.674933pt;}
.y148{bottom:255.349067pt;}
.y5b{bottom:255.370000pt;}
.yc6{bottom:255.370133pt;}
.y10c{bottom:255.394000pt;}
.y1f{bottom:256.281467pt;}
.y97{bottom:262.967867pt;}
.yeb{bottom:270.749600pt;}
.y147{bottom:271.349067pt;}
.y5a{bottom:271.370000pt;}
.yc5{bottom:271.370133pt;}
.y10b{bottom:271.390000pt;}
.y96{bottom:279.415867pt;}
.y1e{bottom:279.856533pt;}
.yea{bottom:286.824267pt;}
.y146{bottom:287.349067pt;}
.y59{bottom:287.370000pt;}
.yc4{bottom:287.370133pt;}
.y10a{bottom:287.386000pt;}
.y1d{bottom:295.852533pt;}
.y95{bottom:295.863867pt;}
.ye9{bottom:300.157600pt;}
.y145{bottom:303.349067pt;}
.y58{bottom:303.370000pt;}
.yc3{bottom:303.370133pt;}
.y109{bottom:303.382000pt;}
.y1c{bottom:311.848533pt;}
.y94{bottom:312.311867pt;}
.ye8{bottom:316.232267pt;}
.y144{bottom:319.349067pt;}
.y57{bottom:319.370000pt;}
.yc2{bottom:319.370133pt;}
.y108{bottom:319.378000pt;}
.y1b{bottom:327.844533pt;}
.y93{bottom:328.759867pt;}
.ye7{bottom:332.306933pt;}
.y143{bottom:335.349067pt;}
.y56{bottom:335.370000pt;}
.yc1{bottom:335.370133pt;}
.y107{bottom:335.374000pt;}
.y1a{bottom:343.840533pt;}
.y92{bottom:345.207867pt;}
.ye6{bottom:345.640267pt;}
.y142{bottom:351.349067pt;}
.y55{bottom:351.370000pt;}
.yc0{bottom:351.370133pt;}
.y91{bottom:361.655867pt;}
.ye5{bottom:361.714933pt;}
.y141{bottom:367.349067pt;}
.y54{bottom:367.370000pt;}
.ybf{bottom:367.370133pt;}
.y19{bottom:367.411600pt;}
.y106{bottom:369.548400pt;}
.ye4{bottom:377.789600pt;}
.y90{bottom:378.103867pt;}
.y140{bottom:383.349067pt;}
.y53{bottom:383.370000pt;}
.yd3{bottom:383.370133pt;}
.y18{bottom:383.407600pt;}
.yfd{bottom:392.949733pt;}
.ye3{bottom:393.864267pt;}
.y8f{bottom:394.551867pt;}
.ybe{bottom:396.472400pt;}
.y13f{bottom:399.349067pt;}
.y52{bottom:399.370000pt;}
.yd2{bottom:399.370133pt;}
.y105{bottom:399.374000pt;}
.y17{bottom:399.403600pt;}
.ye2{bottom:409.938933pt;}
.y8e{bottom:410.999867pt;}
.y13e{bottom:415.349067pt;}
.y51{bottom:415.370000pt;}
.yd1{bottom:415.370133pt;}
.y16{bottom:415.399600pt;}
.ye1{bottom:426.013600pt;}
.y8d{bottom:427.447867pt;}
.y13d{bottom:431.349067pt;}
.y50{bottom:431.370000pt;}
.ybd{bottom:431.370133pt;}
.y104{bottom:438.908133pt;}
.y15{bottom:438.962667pt;}
.ye0{bottom:442.088267pt;}
.y8c{bottom:443.895867pt;}
.yfa{bottom:444.472400pt;}
.y13c{bottom:447.349067pt;}
.y4f{bottom:447.370000pt;}
.ybc{bottom:447.370133pt;}
.y14{bottom:454.958667pt;}
.ydf{bottom:458.162933pt;}
.y13b{bottom:463.349067pt;}
.y4e{bottom:463.370000pt;}
.ybb{bottom:463.370133pt;}
.y103{bottom:466.246667pt;}
.y8b{bottom:468.655733pt;}
.yde{bottom:474.237600pt;}
.y13{bottom:478.517733pt;}
.y13a{bottom:479.349067pt;}
.y4d{bottom:479.370000pt;}
.yba{bottom:479.370133pt;}
.ydd{bottom:490.312267pt;}
.y139{bottom:495.349067pt;}
.y4c{bottom:495.370000pt;}
.yb9{bottom:495.370133pt;}
.ydc{bottom:506.386933pt;}
.y138{bottom:511.349067pt;}
.y4b{bottom:511.370000pt;}
.y84{bottom:511.370133pt;}
.ydb{bottom:522.461600pt;}
.y137{bottom:527.349067pt;}
.y4a{bottom:527.370000pt;}
.y83{bottom:527.370133pt;}
.y12{bottom:528.541467pt;}
.yda{bottom:538.536267pt;}
.y136{bottom:543.349067pt;}
.y49{bottom:543.370000pt;}
.y82{bottom:543.370133pt;}
.yf9{bottom:543.958533pt;}
.y11{bottom:544.537467pt;}
.yd9{bottom:554.610933pt;}
.y135{bottom:559.349067pt;}
.y48{bottom:559.370000pt;}
.y81{bottom:559.370133pt;}
.yf8{bottom:559.958533pt;}
.y10{bottom:560.533467pt;}
.yd8{bottom:570.685600pt;}
.yb8{bottom:571.792933pt;}
.y134{bottom:575.349067pt;}
.y47{bottom:575.370000pt;}
.y80{bottom:575.370133pt;}
.yd7{bottom:586.760267pt;}
.yb7{bottom:587.110267pt;}
.y133{bottom:591.349067pt;}
.y46{bottom:591.370000pt;}
.y7f{bottom:591.370133pt;}
.yf{bottom:591.651467pt;}
.yfc{bottom:592.741867pt;}
.yb6{bottom:602.427600pt;}
.yd5{bottom:602.834933pt;}
.y132{bottom:607.349067pt;}
.y45{bottom:607.370000pt;}
.y7e{bottom:607.370133pt;}
.yb5{bottom:617.744933pt;}
.yd6{bottom:618.909600pt;}
.y131{bottom:623.349067pt;}
.y44{bottom:623.370000pt;}
.y7d{bottom:623.370133pt;}
.yb4{bottom:633.062267pt;}
.ye{bottom:634.108267pt;}
.y130{bottom:639.349067pt;}
.y43{bottom:639.370000pt;}
.y7c{bottom:639.370133pt;}
.yd4{bottom:643.664267pt;}
.yb3{bottom:648.379600pt;}
.y12f{bottom:655.349067pt;}
.y42{bottom:655.370000pt;}
.y7b{bottom:655.370133pt;}
.yd{bottom:657.667333pt;}
.yb2{bottom:663.696933pt;}
.y12e{bottom:671.349067pt;}
.y41{bottom:671.370000pt;}
.y7a{bottom:671.370133pt;}
.yc{bottom:673.667333pt;}
.yb1{bottom:679.014267pt;}
.yf7{bottom:683.349867pt;}
.y12d{bottom:687.349067pt;}
.y40{bottom:687.370000pt;}
.y79{bottom:687.370133pt;}
.yb{bottom:689.667333pt;}
.y102{bottom:690.246667pt;}
.yb0{bottom:694.331600pt;}
.y12c{bottom:703.349067pt;}
.y3f{bottom:703.370000pt;}
.y78{bottom:703.370133pt;}
.ya{bottom:705.667333pt;}
.yaf{bottom:709.648933pt;}
.y3e{bottom:719.370000pt;}
.y77{bottom:719.370133pt;}
.y9{bottom:721.667333pt;}
.yae{bottom:724.966267pt;}
.y12b{bottom:730.687600pt;}
.y3d{bottom:735.370000pt;}
.y76{bottom:735.370133pt;}
.y8{bottom:737.667333pt;}
.yad{bottom:740.283600pt;}
.y3c{bottom:751.370000pt;}
.y75{bottom:751.370133pt;}
.y7{bottom:753.667333pt;}
.yac{bottom:755.600933pt;}
.y162{bottom:755.836000pt;}
.y3b{bottom:767.370000pt;}
.y74{bottom:767.370133pt;}
.y6{bottom:769.667333pt;}
.yab{bottom:770.918267pt;}
.y161{bottom:771.836000pt;}
.y3a{bottom:783.370000pt;}
.y73{bottom:783.370133pt;}
.y12a{bottom:783.378000pt;}
.yaa{bottom:786.235600pt;}
.y160{bottom:787.836000pt;}
.y5{bottom:793.226400pt;}
.y39{bottom:799.370000pt;}
.y72{bottom:799.370133pt;}
.y129{bottom:799.374000pt;}
.y120{bottom:799.406000pt;}
.ya9{bottom:801.552933pt;}
.y15f{bottom:803.836000pt;}
.y4{bottom:812.426400pt;}
.y38{bottom:815.370000pt;}
.y71{bottom:815.370133pt;}
.y11f{bottom:815.402000pt;}
.ya8{bottom:816.870267pt;}
.y15e{bottom:819.836000pt;}
.y37{bottom:831.370000pt;}
.y8a{bottom:831.370133pt;}
.y11e{bottom:831.398000pt;}
.ya7{bottom:832.187600pt;}
.y128{bottom:833.548400pt;}
.y15d{bottom:835.836000pt;}
.y70{bottom:844.472533pt;}
.y36{bottom:847.370000pt;}
.y11d{bottom:847.394000pt;}
.ya6{bottom:847.504933pt;}
.y3{bottom:847.625067pt;}
.y15c{bottom:851.836000pt;}
.y114{bottom:856.402000pt;}
.ya5{bottom:862.822267pt;}
.y89{bottom:863.349067pt;}
.y35{bottom:863.370000pt;}
.y127{bottom:863.378000pt;}
.y11c{bottom:863.390000pt;}
.y15b{bottom:867.836000pt;}
.ya4{bottom:878.139600pt;}
.y34{bottom:879.370000pt;}
.y6f{bottom:879.370133pt;}
.y126{bottom:879.374000pt;}
.y11b{bottom:879.386000pt;}
.y2{bottom:881.225067pt;}
.y15a{bottom:883.836000pt;}
.y88{bottom:890.687600pt;}
.ya3{bottom:893.456933pt;}
.y33{bottom:895.370000pt;}
.y6e{bottom:895.370133pt;}
.y125{bottom:895.374000pt;}
.y11a{bottom:895.382000pt;}
.y159{bottom:899.836000pt;}
.ya2{bottom:908.774267pt;}
.y32{bottom:911.370000pt;}
.y6d{bottom:911.370133pt;}
.y124{bottom:911.374000pt;}
.y119{bottom:911.378000pt;}
.y1{bottom:914.825067pt;}
.y158{bottom:915.836000pt;}
.y31{bottom:927.370000pt;}
.y6c{bottom:927.370133pt;}
.y118{bottom:927.374000pt;}
.y157{bottom:931.836000pt;}
.ya1{bottom:932.778267pt;}
.y63{bottom:940.472400pt;}
.y30{bottom:943.370000pt;}
.y87{bottom:943.370133pt;}
.y123{bottom:943.374000pt;}
.y156{bottom:947.836000pt;}
.y6b{bottom:956.472533pt;}
.y2f{bottom:959.370000pt;}
.y86{bottom:959.370133pt;}
.y122{bottom:959.374000pt;}
.y117{bottom:961.548267pt;}
.y155{bottom:963.836000pt;}
.y2e{bottom:975.370000pt;}
.y85{bottom:975.370133pt;}
.y121{bottom:975.374000pt;}
.y154{bottom:979.836000pt;}
.y2d{bottom:991.370000pt;}
.y6a{bottom:991.370133pt;}
.y116{bottom:991.374000pt;}
.y153{bottom:995.836000pt;}
.y2a{bottom:1001.533333pt;}
.y62{bottom:1007.370000pt;}
.y69{bottom:1007.370133pt;}
.y152{bottom:1011.836000pt;}
.y2c{bottom:1020.843867pt;}
.y61{bottom:1023.370000pt;}
.y68{bottom:1023.370133pt;}
.y115{bottom:1025.057333pt;}
.y151{bottom:1027.836000pt;}
.y29{bottom:1036.477600pt;}
.y28{bottom:1052.257600pt;}
.y2b{bottom:1060.905467pt;}
.ha{height:24.511200pt;}
.hb{height:29.180000pt;}
.hc{height:30.175781pt;}
.h10{height:30.464000pt;}
.h6{height:30.549333pt;}
.h5{height:31.125333pt;}
.h11{height:31.968512pt;}
.h4{height:33.664000pt;}
.h8{height:34.368000pt;}
.h7{height:35.160000pt;}
.he{height:38.186667pt;}
.h12{height:39.066667pt;}
.hf{height:42.080000pt;}
.h9{height:46.880000pt;}
.h3{height:48.530571pt;}
.hd{height:54.693333pt;}
.h2{height:82.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.x15{left:86.926800pt;}
.x10{left:98.269600pt;}
.x16{left:102.041467pt;}
.xa{left:124.183467pt;}
.x3{left:129.086933pt;}
.x9{left:132.175600pt;}
.xb{left:143.056133pt;}
.x8{left:148.262000pt;}
.x13{left:158.180133pt;}
.x18{left:160.075067pt;}
.x2{left:188.301333pt;}
.xf{left:194.763067pt;}
.x17{left:199.243067pt;}
.x4{left:225.588133pt;}
.x1a{left:258.936800pt;}
.x5{left:274.560667pt;}
.xe{left:333.851067pt;}
.x14{left:384.846800pt;}
.x6{left:387.789867pt;}
.x11{left:404.856267pt;}
.x19{left:415.744400pt;}
.x12{left:419.970400pt;}
.x7{left:438.176400pt;}
.x1f{left:492.383867pt;}
.x1e{left:497.599867pt;}
.x1d{left:502.581200pt;}
.x1b{left:518.392800pt;}
.xd{left:534.412533pt;}
.xc{left:618.252533pt;}
.x1c{left:670.552800pt;}
}




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