
    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_868e9f0716fb2782a02f5beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_ba7a896c8236e35258520cfe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_6cd893479ebdfc1406451f9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_c6c3e676d495ad94f9346668.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_0caad9085b9ce543d88a4e69.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_48ebe0b90104a0ed986e0f0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_a5c7c21ece7bf621ad3f10a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_a0eef148b57888b7c8c3fb06.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041992;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_15e245154e59d783712ee0df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976111;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_89b9aabcfa9eb517326c4594.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_b7838784a3e08cd7da855adf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_ac1c057a45964a225743fe12.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976113;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:ffd;src:url('chunks/assets/font_420f19111b52ab83cc88d07e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.770020;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:ffe;src:url('chunks/assets/font_675adf178bacb72d452d8fb8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.102000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:30.000000px;}
.ls16{letter-spacing:-7.236000px;}
.lse{letter-spacing:-4.320000px;}
.ls15{letter-spacing:-3.240000px;}
.lsa{letter-spacing:-1.200000px;}
.ls20{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.020000px;}
.ls13{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.691200px;}
.ls1b{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.408000px;}
.ls6{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.192390px;}
.ls1d{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.027600px;}
.ls2{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.480000px;}
.ls17{letter-spacing:19.620000px;}
.ls0{letter-spacing:42.659364px;}
.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;}
}
.ws9{word-spacing:-17.928000px;}
.ws9f{word-spacing:-16.434000px;}
.ws49{word-spacing:-15.180000px;}
.ws7{word-spacing:-14.940000px;}
.ws5c{word-spacing:-14.880000px;}
.wsa{word-spacing:-14.700000px;}
.ws26{word-spacing:-14.580000px;}
.ws5d{word-spacing:-14.520000px;}
.wsc5{word-spacing:-14.340000px;}
.wsc6{word-spacing:-14.280000px;}
.ws27{word-spacing:-14.220000px;}
.ws47{word-spacing:-14.160000px;}
.ws46{word-spacing:-13.980000px;}
.ws78{word-spacing:-13.920000px;}
.ws8b{word-spacing:-13.860000px;}
.ws25{word-spacing:-13.800000px;}
.ws9e{word-spacing:-13.740000px;}
.wse9{word-spacing:-13.680000px;}
.ws24{word-spacing:-13.500000px;}
.ws70{word-spacing:-13.446000px;}
.ws6f{word-spacing:-13.392000px;}
.wsba{word-spacing:-13.284000px;}
.ws58{word-spacing:-13.230000px;}
.wsbb{word-spacing:-12.582000px;}
.wsb{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.wsc{word-spacing:-10.992000px;}
.ws5{word-spacing:-10.896000px;}
.ws23{word-spacing:-10.800000px;}
.ws6{word-spacing:-9.892800px;}
.ws4{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.ws3{word-spacing:-9.350154px;}
.ws3e{word-spacing:-9.126000px;}
.ws48{word-spacing:-8.675040px;}
.wsad{word-spacing:-7.807536px;}
.wsd0{word-spacing:-6.300000px;}
.ws61{word-spacing:-5.040000px;}
.ws60{word-spacing:-4.980000px;}
.wsde{word-spacing:-4.920000px;}
.wsd9{word-spacing:-4.620000px;}
.wsa8{word-spacing:-4.560000px;}
.wsa7{word-spacing:-4.500000px;}
.ws34{word-spacing:-4.260000px;}
.ws33{word-spacing:-4.200000px;}
.ws112{word-spacing:-3.780000px;}
.ws116{word-spacing:-3.420000px;}
.ws117{word-spacing:-3.360000px;}
.ws41{word-spacing:-3.348000px;}
.ws106{word-spacing:-3.240000px;}
.wsf3{word-spacing:-3.180000px;}
.wsb1{word-spacing:-3.132000px;}
.ws53{word-spacing:-2.700000px;}
.ws111{word-spacing:-2.640000px;}
.ws38{word-spacing:-2.580000px;}
.ws77{word-spacing:-2.538000px;}
.ws6b{word-spacing:-2.376000px;}
.wsfd{word-spacing:-2.340000px;}
.ws6c{word-spacing:-2.322000px;}
.ws43{word-spacing:-2.268000px;}
.ws42{word-spacing:-2.214000px;}
.ws90{word-spacing:-2.100000px;}
.ws57{word-spacing:-2.040000px;}
.ws35{word-spacing:-1.920000px;}
.wsbe{word-spacing:-1.890000px;}
.ws31{word-spacing:-1.800000px;}
.ws30{word-spacing:-1.740000px;}
.wsf4{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.620000px;}
.wsa3{word-spacing:-1.500000px;}
.ws55{word-spacing:-1.380000px;}
.ws3f{word-spacing:-1.350000px;}
.ws40{word-spacing:-1.296000px;}
.ws11{word-spacing:-1.254000px;}
.ws2d{word-spacing:-1.140000px;}
.ws44{word-spacing:-1.080000px;}
.ws45{word-spacing:-1.026000px;}
.ws39{word-spacing:-1.020000px;}
.ws9a{word-spacing:-0.960000px;}
.ws20{word-spacing:-0.720000px;}
.wsa9{word-spacing:-0.600000px;}
.ws3a{word-spacing:-0.480000px;}
.ws36{word-spacing:-0.420000px;}
.ws91{word-spacing:-0.300000px;}
.wsc3{word-spacing:-0.270000px;}
.ws54{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.wsab{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.120000px;}
.wsf{word-spacing:-0.102000px;}
.wsd{word-spacing:0.000000px;}
.wsbd{word-spacing:0.108000px;}
.wsbf{word-spacing:0.162000px;}
.ws2e{word-spacing:0.180000px;}
.ws99{word-spacing:0.240000px;}
.wsae{word-spacing:0.270000px;}
.ws32{word-spacing:0.300000px;}
.wse{word-spacing:0.408000px;}
.ws69{word-spacing:0.420000px;}
.ws37{word-spacing:0.480000px;}
.ws75{word-spacing:0.486000px;}
.ws8f{word-spacing:0.540000px;}
.wsaa{word-spacing:0.600000px;}
.wsb6{word-spacing:0.648000px;}
.wsa4{word-spacing:0.660000px;}
.ws13{word-spacing:0.691200px;}
.ws15{word-spacing:0.702000px;}
.ws2f{word-spacing:0.720000px;}
.wsdb{word-spacing:0.780000px;}
.wsc0{word-spacing:0.810000px;}
.ws84{word-spacing:0.840000px;}
.ws6e{word-spacing:0.864000px;}
.ws62{word-spacing:0.900000px;}
.ws6d{word-spacing:0.960000px;}
.ws4f{word-spacing:1.020000px;}
.ws14{word-spacing:1.080000px;}
.ws80{word-spacing:1.140000px;}
.ws2a{word-spacing:1.200000px;}
.ws68{word-spacing:1.260000px;}
.wsc2{word-spacing:1.350000px;}
.wsda{word-spacing:1.440000px;}
.wsfa{word-spacing:1.560000px;}
.wsb3{word-spacing:1.620000px;}
.wsac{word-spacing:1.680000px;}
.wsa5{word-spacing:1.860000px;}
.ws4e{word-spacing:1.920000px;}
.ws97{word-spacing:1.980000px;}
.ws50{word-spacing:2.040000px;}
.ws8d{word-spacing:2.160000px;}
.ws94{word-spacing:2.280000px;}
.ws51{word-spacing:2.400000px;}
.ws4d{word-spacing:2.640000px;}
.wsb4{word-spacing:2.700000px;}
.ws92{word-spacing:2.760000px;}
.wsc4{word-spacing:2.808000px;}
.ws56{word-spacing:2.820000px;}
.wsc1{word-spacing:2.916000px;}
.wsb2{word-spacing:2.970000px;}
.wsdf{word-spacing:3.000000px;}
.ws98{word-spacing:3.180000px;}
.wsbc{word-spacing:3.294000px;}
.wsa6{word-spacing:3.300000px;}
.ws8c{word-spacing:3.360000px;}
.wsb0{word-spacing:3.402000px;}
.ws8e{word-spacing:3.420000px;}
.ws4a{word-spacing:3.480000px;}
.ws6a{word-spacing:3.540000px;}
.ws5b{word-spacing:3.564000px;}
.ws10c{word-spacing:3.660000px;}
.ws9d{word-spacing:3.720000px;}
.ws74{word-spacing:3.726000px;}
.ws28{word-spacing:3.840000px;}
.ws81{word-spacing:3.900000px;}
.ws7a{word-spacing:4.020000px;}
.ws7d{word-spacing:4.080000px;}
.ws16{word-spacing:4.212000px;}
.ws21{word-spacing:4.380000px;}
.wsb9{word-spacing:4.428000px;}
.ws8a{word-spacing:4.440000px;}
.wsf7{word-spacing:4.560000px;}
.ws17{word-spacing:4.860000px;}
.ws18{word-spacing:4.914000px;}
.ws9b{word-spacing:4.920000px;}
.wsca{word-spacing:5.040000px;}
.wsc9{word-spacing:5.100000px;}
.ws2b{word-spacing:5.280000px;}
.ws19{word-spacing:5.400000px;}
.ws1a{word-spacing:5.454000px;}
.wsdc{word-spacing:5.520000px;}
.wsd6{word-spacing:5.580000px;}
.ws95{word-spacing:5.640000px;}
.ws59{word-spacing:5.700000px;}
.ws9c{word-spacing:5.820000px;}
.ws2c{word-spacing:5.880000px;}
.ws3c{word-spacing:6.060000px;}
.ws3d{word-spacing:6.120000px;}
.ws72{word-spacing:6.210000px;}
.ws73{word-spacing:6.264000px;}
.ws10{word-spacing:6.270000px;}
.ws71{word-spacing:6.318000px;}
.ws96{word-spacing:6.360000px;}
.wsdd{word-spacing:6.420000px;}
.ws115{word-spacing:6.480000px;}
.ws52{word-spacing:6.540000px;}
.ws79{word-spacing:6.600000px;}
.wsd3{word-spacing:6.720000px;}
.wsf0{word-spacing:6.780000px;}
.wsaf{word-spacing:6.966000px;}
.ws64{word-spacing:7.020000px;}
.ws63{word-spacing:7.080000px;}
.ws1b{word-spacing:7.128000px;}
.wsfe{word-spacing:7.140000px;}
.ws5a{word-spacing:7.320000px;}
.wsd4{word-spacing:7.440000px;}
.ws93{word-spacing:7.620000px;}
.ws65{word-spacing:7.680000px;}
.ws76{word-spacing:7.722000px;}
.ws4b{word-spacing:7.800000px;}
.ws7c{word-spacing:7.860000px;}
.wsef{word-spacing:7.920000px;}
.wsee{word-spacing:7.980000px;}
.wsff{word-spacing:8.100000px;}
.wsf6{word-spacing:8.160000px;}
.wsb7{word-spacing:8.262000px;}
.ws1f{word-spacing:8.820000px;}
.ws105{word-spacing:9.240000px;}
.ws104{word-spacing:9.300000px;}
.wsb8{word-spacing:9.612000px;}
.ws103{word-spacing:9.660000px;}
.wsfc{word-spacing:9.720000px;}
.wsa0{word-spacing:9.780000px;}
.wsa1{word-spacing:9.840000px;}
.wsd1{word-spacing:9.900000px;}
.ws1c{word-spacing:10.044000px;}
.wse8{word-spacing:10.440000px;}
.wsc7{word-spacing:10.500000px;}
.ws1e{word-spacing:10.584000px;}
.ws1d{word-spacing:10.638000px;}
.ws67{word-spacing:10.800000px;}
.ws66{word-spacing:10.860000px;}
.ws102{word-spacing:10.920000px;}
.ws7b{word-spacing:11.040000px;}
.ws118{word-spacing:12.120000px;}
.ws86{word-spacing:12.180000px;}
.ws87{word-spacing:12.240000px;}
.wsa2{word-spacing:12.540000px;}
.wsf5{word-spacing:12.720000px;}
.ws110{word-spacing:12.900000px;}
.ws10f{word-spacing:12.960000px;}
.ws29{word-spacing:13.320000px;}
.ws7f{word-spacing:13.560000px;}
.ws7e{word-spacing:13.620000px;}
.ws4c{word-spacing:13.860000px;}
.ws88{word-spacing:13.980000px;}
.wsf9{word-spacing:14.340000px;}
.wse2{word-spacing:15.240000px;}
.wse3{word-spacing:15.300000px;}
.ws100{word-spacing:15.360000px;}
.ws101{word-spacing:15.420000px;}
.ws89{word-spacing:15.720000px;}
.wscb{word-spacing:16.200000px;}
.wscc{word-spacing:16.260000px;}
.wsf1{word-spacing:16.920000px;}
.wsf2{word-spacing:16.980000px;}
.wsec{word-spacing:17.040000px;}
.wsed{word-spacing:17.100000px;}
.wsd7{word-spacing:17.520000px;}
.wsd8{word-spacing:17.580000px;}
.wsea{word-spacing:18.000000px;}
.wseb{word-spacing:18.060000px;}
.wsd2{word-spacing:18.480000px;}
.wsd5{word-spacing:18.960000px;}
.ws10d{word-spacing:19.740000px;}
.ws10e{word-spacing:19.860000px;}
.wse4{word-spacing:19.920000px;}
.wse5{word-spacing:19.980000px;}
.ws83{word-spacing:20.400000px;}
.ws85{word-spacing:20.520000px;}
.ws82{word-spacing:20.640000px;}
.wsce{word-spacing:21.120000px;}
.wscf{word-spacing:21.240000px;}
.wse6{word-spacing:21.420000px;}
.wse7{word-spacing:21.480000px;}
.wsc8{word-spacing:21.600000px;}
.ws113{word-spacing:23.640000px;}
.ws114{word-spacing:23.760000px;}
.wsb5{word-spacing:24.570000px;}
.wsfb{word-spacing:25.020000px;}
.wscd{word-spacing:25.260000px;}
.wsf8{word-spacing:27.240000px;}
.ws108{word-spacing:28.140000px;}
.ws107{word-spacing:29.460000px;}
.ws2{word-spacing:33.512895px;}
.ws0{word-spacing:33.513495px;}
.wse0{word-spacing:37.140000px;}
.wse1{word-spacing:37.320000px;}
.ws10b{word-spacing:38.640000px;}
.ws109{word-spacing:38.880000px;}
.ws10a{word-spacing:39.060000px;}
.ws5f{word-spacing:481.248000px;}
.ws5e{word-spacing:587.764800px;}
._e{margin-left:-11.028600px;}
._0{margin-left:-9.067800px;}
._27{margin-left:-8.057922px;}
._10{margin-left:-6.838200px;}
._4{margin-left:-4.896000px;}
._7{margin-left:-3.569400px;}
._5{margin-left:-2.569278px;}
._1{margin-left:-1.499400px;}
._2{width:1.315800px;}
._3{width:2.448000px;}
._8{width:4.062600px;}
._a{width:5.149800px;}
._9{width:6.543000px;}
._b{width:7.824000px;}
._c{width:8.838000px;}
._d{width:10.290000px;}
._f{width:11.652000px;}
._11{width:12.834000px;}
._2d{width:13.859400px;}
._2a{width:16.709400px;}
._2b{width:18.629400px;}
._29{width:20.418600px;}
._28{width:21.989400px;}
._25{width:23.014800px;}
._24{width:24.802200px;}
._2e{width:26.202678px;}
._2f{width:27.572922px;}
._31{width:28.601400px;}
._30{width:29.610000px;}
._6{width:36.369600px;}
._2c{width:37.390200px;}
._32{width:39.697722px;}
._22{width:43.705878px;}
._23{width:45.144600px;}
._21{width:62.077956px;}
._26{width:91.665000px;}
._20{width:247.691400px;}
._14{width:279.035478px;}
._13{width:371.424000px;}
._1f{width:454.080000px;}
._15{width:477.856878px;}
._17{width:525.408000px;}
._1b{width:578.592000px;}
._19{width:582.960000px;}
._18{width:618.672000px;}
._1c{width:716.832000px;}
._1a{width:735.168000px;}
._12{width:772.603200px;}
._1e{width:788.640000px;}
._1d{width:843.408000px;}
._16{width:857.040000px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.040050px;}
.y114{bottom:112.790850px;}
.ye9{bottom:112.958850px;}
.yc2{bottom:113.066850px;}
.y9e{bottom:113.078700px;}
.y6c{bottom:113.078850px;}
.y12{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.yb2{bottom:117.485700px;}
.yb6{bottom:120.486300px;}
.y6f{bottom:120.493500px;}
.yb1{bottom:124.985700px;}
.y11{bottom:131.601450px;}
.y113{bottom:133.796850px;}
.ye8{bottom:133.964850px;}
.yc1{bottom:134.072850px;}
.y9d{bottom:134.078700px;}
.y6b{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.yb5{bottom:140.290800px;}
.y6e{bottom:140.298000px;}
.y10{bottom:145.997850px;}
.yb0{bottom:153.821700px;}
.y112{bottom:154.802850px;}
.ye7{bottom:154.970850px;}
.y9c{bottom:155.078700px;}
.y6a{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yb4{bottom:160.095300px;}
.y6d{bottom:160.102500px;}
.yf{bottom:160.397850px;}
.yaf{bottom:175.157700px;}
.y111{bottom:175.808850px;}
.ye6{bottom:175.976850px;}
.y9b{bottom:176.078700px;}
.y69{bottom:176.078850px;}
.yb3{bottom:179.899800px;}
.y28{bottom:180.212550px;}
.yc0{bottom:181.529400px;}
.yae{bottom:196.493700px;}
.y110{bottom:196.814850px;}
.ye5{bottom:196.982850px;}
.y9a{bottom:197.078700px;}
.y68{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y38{bottom:203.447400px;}
.y10f{bottom:217.820850px;}
.yad{bottom:217.829700px;}
.ye4{bottom:217.988850px;}
.y99{bottom:218.078700px;}
.y67{bottom:218.078850px;}
.y37{bottom:221.442900px;}
.y26{bottom:222.212550px;}
.y10e{bottom:238.826850px;}
.ye3{bottom:238.994850px;}
.y98{bottom:239.078700px;}
.y66{bottom:239.078850px;}
.yac{bottom:239.165700px;}
.y36{bottom:239.438400px;}
.y25{bottom:243.212550px;}
.ybf{bottom:244.529400px;}
.y35{bottom:257.433900px;}
.y10d{bottom:259.832850px;}
.ye2{bottom:260.000850px;}
.y97{bottom:260.078700px;}
.y65{bottom:260.078850px;}
.yab{bottom:260.501700px;}
.y24{bottom:264.212550px;}
.y34{bottom:275.429400px;}
.y10c{bottom:280.838850px;}
.ye1{bottom:281.006850px;}
.y96{bottom:281.078700px;}
.y64{bottom:281.078850px;}
.yaa{bottom:281.837700px;}
.y23{bottom:285.212550px;}
.y33{bottom:293.424900px;}
.y10b{bottom:301.844850px;}
.ye0{bottom:302.012850px;}
.y95{bottom:302.078700px;}
.y63{bottom:302.078850px;}
.ya9{bottom:303.473700px;}
.y22{bottom:306.212550px;}
.ybe{bottom:307.529400px;}
.y32{bottom:311.420400px;}
.ya2{bottom:317.187450px;}
.y10a{bottom:322.850850px;}
.ydf{bottom:323.018850px;}
.y94{bottom:323.078700px;}
.y62{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y31{bottom:329.415900px;}
.ya8{bottom:333.951150px;}
.ya1{bottom:336.991950px;}
.y109{bottom:343.856850px;}
.yde{bottom:344.024850px;}
.yb9{bottom:344.078700px;}
.y61{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.ya7{bottom:353.755650px;}
.ya0{bottom:356.796450px;}
.y93{bottom:358.440900px;}
.y30{bottom:364.421400px;}
.y108{bottom:364.862850px;}
.ydd{bottom:365.030850px;}
.yb8{bottom:365.078700px;}
.y60{bottom:365.078850px;}
.ybd{bottom:370.937100px;}
.y9f{bottom:376.600950px;}
.y2f{bottom:382.421400px;}
.y107{bottom:385.868850px;}
.ydc{bottom:386.036850px;}
.y1f{bottom:386.048550px;}
.yb7{bottom:386.078700px;}
.y5f{bottom:386.078850px;}
.y2e{bottom:400.421400px;}
.ybc{bottom:400.441050px;}
.y106{bottom:406.874850px;}
.ydb{bottom:407.042850px;}
.y92{bottom:407.078700px;}
.y5e{bottom:407.078850px;}
.y2d{bottom:418.425900px;}
.y105{bottom:427.880850px;}
.yda{bottom:428.048850px;}
.y91{bottom:428.078700px;}
.y5d{bottom:428.078850px;}
.y2c{bottom:436.421400px;}
.y104{bottom:448.886850px;}
.yd9{bottom:449.054850px;}
.y90{bottom:449.078700px;}
.y5c{bottom:449.078850px;}
.y116{bottom:463.441050px;}
.y103{bottom:469.892850px;}
.yd8{bottom:470.060850px;}
.y8f{bottom:470.078700px;}
.y5b{bottom:470.078850px;}
.y1e{bottom:470.823450px;}
.y1d{bottom:490.627950px;}
.y102{bottom:490.898850px;}
.yd7{bottom:491.066850px;}
.y8e{bottom:491.078700px;}
.y5a{bottom:491.078850px;}
.y101{bottom:511.904850px;}
.yd6{bottom:512.072850px;}
.y8d{bottom:512.078700px;}
.ya6{bottom:512.078850px;}
.y59{bottom:526.441050px;}
.y1c{bottom:531.656400px;}
.y100{bottom:532.910850px;}
.y8c{bottom:533.078700px;}
.ya5{bottom:533.078850px;}
.y1b{bottom:551.460900px;}
.yff{bottom:553.916850px;}
.y8b{bottom:554.078700px;}
.ya4{bottom:554.078850px;}
.yd5{bottom:568.441050px;}
.y1a{bottom:571.265400px;}
.yfe{bottom:574.922850px;}
.y8a{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.y19{bottom:591.069900px;}
.yfd{bottom:595.928850px;}
.y89{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y18{bottom:610.874400px;}
.yba{bottom:615.265200px;}
.yfc{bottom:616.934850px;}
.yd4{bottom:617.072850px;}
.y88{bottom:617.078700px;}
.y56{bottom:617.078850px;}
.y17{bottom:630.678900px;}
.yfb{bottom:637.940850px;}
.y87{bottom:638.078700px;}
.y55{bottom:638.078850px;}
.y16{bottom:650.483400px;}
.yfa{bottom:658.946850px;}
.y86{bottom:659.078700px;}
.y54{bottom:659.078850px;}
.yd3{bottom:664.529400px;}
.y15{bottom:670.287900px;}
.ybb{bottom:673.441050px;}
.yf9{bottom:679.952850px;}
.y85{bottom:680.078700px;}
.y53{bottom:680.078850px;}
.ya3{bottom:694.441050px;}
.yf8{bottom:700.958850px;}
.yd2{bottom:701.072850px;}
.y84{bottom:701.078700px;}
.y52{bottom:701.078850px;}
.y14{bottom:701.385300px;}
.yf7{bottom:721.964850px;}
.yd1{bottom:722.072850px;}
.y83{bottom:722.078700px;}
.y51{bottom:722.078850px;}
.yf6{bottom:742.970850px;}
.yd0{bottom:743.072850px;}
.y82{bottom:743.078700px;}
.y50{bottom:743.078850px;}
.yf5{bottom:763.976850px;}
.ycf{bottom:764.072850px;}
.y81{bottom:764.078700px;}
.y4f{bottom:764.078850px;}
.ye{bottom:780.666900px;}
.yf4{bottom:784.982850px;}
.yce{bottom:785.072850px;}
.y80{bottom:785.078700px;}
.y4e{bottom:785.078850px;}
.yd{bottom:798.666900px;}
.yf3{bottom:805.988850px;}
.y7f{bottom:806.078700px;}
.y4d{bottom:806.078850px;}
.yc{bottom:816.666900px;}
.yf2{bottom:826.994850px;}
.y7e{bottom:827.078700px;}
.y4c{bottom:827.078850px;}
.ycd{bottom:832.529250px;}
.yb{bottom:834.666900px;}
.yf1{bottom:848.000850px;}
.y7d{bottom:848.078700px;}
.y4b{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.yf0{bottom:869.006850px;}
.ycc{bottom:869.060850px;}
.y7c{bottom:869.078700px;}
.y4a{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y8{bottom:888.666900px;}
.yef{bottom:890.012850px;}
.ycb{bottom:890.066850px;}
.y7b{bottom:890.078700px;}
.y49{bottom:890.078850px;}
.y7{bottom:906.666900px;}
.yee{bottom:911.018850px;}
.yca{bottom:911.072850px;}
.y7a{bottom:911.078700px;}
.y48{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.yed{bottom:932.024850px;}
.y79{bottom:932.078700px;}
.y47{bottom:932.078850px;}
.yec{bottom:953.030850px;}
.y78{bottom:953.078700px;}
.y46{bottom:953.078850px;}
.yc9{bottom:958.529250px;}
.y5{bottom:959.674800px;}
.yeb{bottom:974.036850px;}
.y77{bottom:974.078700px;}
.y45{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yea{bottom:995.042850px;}
.yc8{bottom:995.072850px;}
.y76{bottom:995.078700px;}
.y44{bottom:995.078850px;}
.yc7{bottom:1016.048850px;}
.y75{bottom:1016.078700px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yc6{bottom:1037.054850px;}
.y74{bottom:1037.078700px;}
.y42{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yc5{bottom:1058.060850px;}
.y73{bottom:1058.078700px;}
.y41{bottom:1058.078850px;}
.yc4{bottom:1079.066850px;}
.y72{bottom:1079.078700px;}
.y40{bottom:1079.078850px;}
.yc3{bottom:1100.072850px;}
.y71{bottom:1100.078700px;}
.y3f{bottom:1100.078850px;}
.y13{bottom:1109.815500px;}
.y115{bottom:1112.149650px;}
.y70{bottom:1121.078700px;}
.y3e{bottom:1121.078850px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y3d{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h11{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h12{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h16{height:43.899000px;}
.h15{height:43.995000px;}
.h9{height:47.343750px;}
.hc{height:48.750000px;}
.h14{height:50.176758px;}
.h10{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h13{height:69.000000px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.071650px;}
.xd{left:108.285450px;}
.xf{left:112.257450px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xe{left:155.637450px;}
.x5{left:300.189000px;}
.xc{left:317.199000px;}
.x4{left:396.050700px;}
.x10{left:625.161450px;}
.xa{left:645.894150px;}
.x9{left:678.786150px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.090667pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:26.666667pt;}
.ls16{letter-spacing:-6.432000pt;}
.lse{letter-spacing:-3.840000pt;}
.ls15{letter-spacing:-2.880000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls20{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.906667pt;}
.ls13{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.614400pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls6{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.171013pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024533pt;}
.ls2{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.426667pt;}
.ls17{letter-spacing:17.440000pt;}
.ls0{letter-spacing:37.919435pt;}
.ws9{word-spacing:-15.936000pt;}
.ws9f{word-spacing:-14.608000pt;}
.ws49{word-spacing:-13.493333pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5c{word-spacing:-13.226667pt;}
.wsa{word-spacing:-13.066667pt;}
.ws26{word-spacing:-12.960000pt;}
.ws5d{word-spacing:-12.906667pt;}
.wsc5{word-spacing:-12.746667pt;}
.wsc6{word-spacing:-12.693333pt;}
.ws27{word-spacing:-12.640000pt;}
.ws47{word-spacing:-12.586667pt;}
.ws46{word-spacing:-12.426667pt;}
.ws78{word-spacing:-12.373333pt;}
.ws8b{word-spacing:-12.320000pt;}
.ws25{word-spacing:-12.266667pt;}
.ws9e{word-spacing:-12.213333pt;}
.wse9{word-spacing:-12.160000pt;}
.ws24{word-spacing:-12.000000pt;}
.ws70{word-spacing:-11.952000pt;}
.ws6f{word-spacing:-11.904000pt;}
.wsba{word-spacing:-11.808000pt;}
.ws58{word-spacing:-11.760000pt;}
.wsbb{word-spacing:-11.184000pt;}
.wsb{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.wsc{word-spacing:-9.770667pt;}
.ws5{word-spacing:-9.685333pt;}
.ws23{word-spacing:-9.600000pt;}
.ws6{word-spacing:-8.793600pt;}
.ws4{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws3{word-spacing:-8.311248pt;}
.ws3e{word-spacing:-8.112000pt;}
.ws48{word-spacing:-7.711147pt;}
.wsad{word-spacing:-6.940032pt;}
.wsd0{word-spacing:-5.600000pt;}
.ws61{word-spacing:-4.480000pt;}
.ws60{word-spacing:-4.426667pt;}
.wsde{word-spacing:-4.373333pt;}
.wsd9{word-spacing:-4.106667pt;}
.wsa8{word-spacing:-4.053333pt;}
.wsa7{word-spacing:-4.000000pt;}
.ws34{word-spacing:-3.786667pt;}
.ws33{word-spacing:-3.733333pt;}
.ws112{word-spacing:-3.360000pt;}
.ws116{word-spacing:-3.040000pt;}
.ws117{word-spacing:-2.986667pt;}
.ws41{word-spacing:-2.976000pt;}
.ws106{word-spacing:-2.880000pt;}
.wsf3{word-spacing:-2.826667pt;}
.wsb1{word-spacing:-2.784000pt;}
.ws53{word-spacing:-2.400000pt;}
.ws111{word-spacing:-2.346667pt;}
.ws38{word-spacing:-2.293333pt;}
.ws77{word-spacing:-2.256000pt;}
.ws6b{word-spacing:-2.112000pt;}
.wsfd{word-spacing:-2.080000pt;}
.ws6c{word-spacing:-2.064000pt;}
.ws43{word-spacing:-2.016000pt;}
.ws42{word-spacing:-1.968000pt;}
.ws90{word-spacing:-1.866667pt;}
.ws57{word-spacing:-1.813333pt;}
.ws35{word-spacing:-1.706667pt;}
.wsbe{word-spacing:-1.680000pt;}
.ws31{word-spacing:-1.600000pt;}
.ws30{word-spacing:-1.546667pt;}
.wsf4{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.440000pt;}
.wsa3{word-spacing:-1.333333pt;}
.ws55{word-spacing:-1.226667pt;}
.ws3f{word-spacing:-1.200000pt;}
.ws40{word-spacing:-1.152000pt;}
.ws11{word-spacing:-1.114667pt;}
.ws2d{word-spacing:-1.013333pt;}
.ws44{word-spacing:-0.960000pt;}
.ws45{word-spacing:-0.912000pt;}
.ws39{word-spacing:-0.906667pt;}
.ws9a{word-spacing:-0.853333pt;}
.ws20{word-spacing:-0.640000pt;}
.wsa9{word-spacing:-0.533333pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws36{word-spacing:-0.373333pt;}
.ws91{word-spacing:-0.266667pt;}
.wsc3{word-spacing:-0.240000pt;}
.ws54{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.wsab{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.106667pt;}
.wsf{word-spacing:-0.090667pt;}
.wsd{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.096000pt;}
.wsbf{word-spacing:0.144000pt;}
.ws2e{word-spacing:0.160000pt;}
.ws99{word-spacing:0.213333pt;}
.wsae{word-spacing:0.240000pt;}
.ws32{word-spacing:0.266667pt;}
.wse{word-spacing:0.362667pt;}
.ws69{word-spacing:0.373333pt;}
.ws37{word-spacing:0.426667pt;}
.ws75{word-spacing:0.432000pt;}
.ws8f{word-spacing:0.480000pt;}
.wsaa{word-spacing:0.533333pt;}
.wsb6{word-spacing:0.576000pt;}
.wsa4{word-spacing:0.586667pt;}
.ws13{word-spacing:0.614400pt;}
.ws15{word-spacing:0.624000pt;}
.ws2f{word-spacing:0.640000pt;}
.wsdb{word-spacing:0.693333pt;}
.wsc0{word-spacing:0.720000pt;}
.ws84{word-spacing:0.746667pt;}
.ws6e{word-spacing:0.768000pt;}
.ws62{word-spacing:0.800000pt;}
.ws6d{word-spacing:0.853333pt;}
.ws4f{word-spacing:0.906667pt;}
.ws14{word-spacing:0.960000pt;}
.ws80{word-spacing:1.013333pt;}
.ws2a{word-spacing:1.066667pt;}
.ws68{word-spacing:1.120000pt;}
.wsc2{word-spacing:1.200000pt;}
.wsda{word-spacing:1.280000pt;}
.wsfa{word-spacing:1.386667pt;}
.wsb3{word-spacing:1.440000pt;}
.wsac{word-spacing:1.493333pt;}
.wsa5{word-spacing:1.653333pt;}
.ws4e{word-spacing:1.706667pt;}
.ws97{word-spacing:1.760000pt;}
.ws50{word-spacing:1.813333pt;}
.ws8d{word-spacing:1.920000pt;}
.ws94{word-spacing:2.026667pt;}
.ws51{word-spacing:2.133333pt;}
.ws4d{word-spacing:2.346667pt;}
.wsb4{word-spacing:2.400000pt;}
.ws92{word-spacing:2.453333pt;}
.wsc4{word-spacing:2.496000pt;}
.ws56{word-spacing:2.506667pt;}
.wsc1{word-spacing:2.592000pt;}
.wsb2{word-spacing:2.640000pt;}
.wsdf{word-spacing:2.666667pt;}
.ws98{word-spacing:2.826667pt;}
.wsbc{word-spacing:2.928000pt;}
.wsa6{word-spacing:2.933333pt;}
.ws8c{word-spacing:2.986667pt;}
.wsb0{word-spacing:3.024000pt;}
.ws8e{word-spacing:3.040000pt;}
.ws4a{word-spacing:3.093333pt;}
.ws6a{word-spacing:3.146667pt;}
.ws5b{word-spacing:3.168000pt;}
.ws10c{word-spacing:3.253333pt;}
.ws9d{word-spacing:3.306667pt;}
.ws74{word-spacing:3.312000pt;}
.ws28{word-spacing:3.413333pt;}
.ws81{word-spacing:3.466667pt;}
.ws7a{word-spacing:3.573333pt;}
.ws7d{word-spacing:3.626667pt;}
.ws16{word-spacing:3.744000pt;}
.ws21{word-spacing:3.893333pt;}
.wsb9{word-spacing:3.936000pt;}
.ws8a{word-spacing:3.946667pt;}
.wsf7{word-spacing:4.053333pt;}
.ws17{word-spacing:4.320000pt;}
.ws18{word-spacing:4.368000pt;}
.ws9b{word-spacing:4.373333pt;}
.wsca{word-spacing:4.480000pt;}
.wsc9{word-spacing:4.533333pt;}
.ws2b{word-spacing:4.693333pt;}
.ws19{word-spacing:4.800000pt;}
.ws1a{word-spacing:4.848000pt;}
.wsdc{word-spacing:4.906667pt;}
.wsd6{word-spacing:4.960000pt;}
.ws95{word-spacing:5.013333pt;}
.ws59{word-spacing:5.066667pt;}
.ws9c{word-spacing:5.173333pt;}
.ws2c{word-spacing:5.226667pt;}
.ws3c{word-spacing:5.386667pt;}
.ws3d{word-spacing:5.440000pt;}
.ws72{word-spacing:5.520000pt;}
.ws73{word-spacing:5.568000pt;}
.ws10{word-spacing:5.573333pt;}
.ws71{word-spacing:5.616000pt;}
.ws96{word-spacing:5.653333pt;}
.wsdd{word-spacing:5.706667pt;}
.ws115{word-spacing:5.760000pt;}
.ws52{word-spacing:5.813333pt;}
.ws79{word-spacing:5.866667pt;}
.wsd3{word-spacing:5.973333pt;}
.wsf0{word-spacing:6.026667pt;}
.wsaf{word-spacing:6.192000pt;}
.ws64{word-spacing:6.240000pt;}
.ws63{word-spacing:6.293333pt;}
.ws1b{word-spacing:6.336000pt;}
.wsfe{word-spacing:6.346667pt;}
.ws5a{word-spacing:6.506667pt;}
.wsd4{word-spacing:6.613333pt;}
.ws93{word-spacing:6.773333pt;}
.ws65{word-spacing:6.826667pt;}
.ws76{word-spacing:6.864000pt;}
.ws4b{word-spacing:6.933333pt;}
.ws7c{word-spacing:6.986667pt;}
.wsef{word-spacing:7.040000pt;}
.wsee{word-spacing:7.093333pt;}
.wsff{word-spacing:7.200000pt;}
.wsf6{word-spacing:7.253333pt;}
.wsb7{word-spacing:7.344000pt;}
.ws1f{word-spacing:7.840000pt;}
.ws105{word-spacing:8.213333pt;}
.ws104{word-spacing:8.266667pt;}
.wsb8{word-spacing:8.544000pt;}
.ws103{word-spacing:8.586667pt;}
.wsfc{word-spacing:8.640000pt;}
.wsa0{word-spacing:8.693333pt;}
.wsa1{word-spacing:8.746667pt;}
.wsd1{word-spacing:8.800000pt;}
.ws1c{word-spacing:8.928000pt;}
.wse8{word-spacing:9.280000pt;}
.wsc7{word-spacing:9.333333pt;}
.ws1e{word-spacing:9.408000pt;}
.ws1d{word-spacing:9.456000pt;}
.ws67{word-spacing:9.600000pt;}
.ws66{word-spacing:9.653333pt;}
.ws102{word-spacing:9.706667pt;}
.ws7b{word-spacing:9.813333pt;}
.ws118{word-spacing:10.773333pt;}
.ws86{word-spacing:10.826667pt;}
.ws87{word-spacing:10.880000pt;}
.wsa2{word-spacing:11.146667pt;}
.wsf5{word-spacing:11.306667pt;}
.ws110{word-spacing:11.466667pt;}
.ws10f{word-spacing:11.520000pt;}
.ws29{word-spacing:11.840000pt;}
.ws7f{word-spacing:12.053333pt;}
.ws7e{word-spacing:12.106667pt;}
.ws4c{word-spacing:12.320000pt;}
.ws88{word-spacing:12.426667pt;}
.wsf9{word-spacing:12.746667pt;}
.wse2{word-spacing:13.546667pt;}
.wse3{word-spacing:13.600000pt;}
.ws100{word-spacing:13.653333pt;}
.ws101{word-spacing:13.706667pt;}
.ws89{word-spacing:13.973333pt;}
.wscb{word-spacing:14.400000pt;}
.wscc{word-spacing:14.453333pt;}
.wsf1{word-spacing:15.040000pt;}
.wsf2{word-spacing:15.093333pt;}
.wsec{word-spacing:15.146667pt;}
.wsed{word-spacing:15.200000pt;}
.wsd7{word-spacing:15.573333pt;}
.wsd8{word-spacing:15.626667pt;}
.wsea{word-spacing:16.000000pt;}
.wseb{word-spacing:16.053333pt;}
.wsd2{word-spacing:16.426667pt;}
.wsd5{word-spacing:16.853333pt;}
.ws10d{word-spacing:17.546667pt;}
.ws10e{word-spacing:17.653333pt;}
.wse4{word-spacing:17.706667pt;}
.wse5{word-spacing:17.760000pt;}
.ws83{word-spacing:18.133333pt;}
.ws85{word-spacing:18.240000pt;}
.ws82{word-spacing:18.346667pt;}
.wsce{word-spacing:18.773333pt;}
.wscf{word-spacing:18.880000pt;}
.wse6{word-spacing:19.040000pt;}
.wse7{word-spacing:19.093333pt;}
.wsc8{word-spacing:19.200000pt;}
.ws113{word-spacing:21.013333pt;}
.ws114{word-spacing:21.120000pt;}
.wsb5{word-spacing:21.840000pt;}
.wsfb{word-spacing:22.240000pt;}
.wscd{word-spacing:22.453333pt;}
.wsf8{word-spacing:24.213333pt;}
.ws108{word-spacing:25.013333pt;}
.ws107{word-spacing:26.186667pt;}
.ws2{word-spacing:29.789240pt;}
.ws0{word-spacing:29.789773pt;}
.wse0{word-spacing:33.013333pt;}
.wse1{word-spacing:33.173333pt;}
.ws10b{word-spacing:34.346667pt;}
.ws109{word-spacing:34.560000pt;}
.ws10a{word-spacing:34.720000pt;}
.ws5f{word-spacing:427.776000pt;}
.ws5e{word-spacing:522.457600pt;}
._e{margin-left:-9.803200pt;}
._0{margin-left:-8.060267pt;}
._27{margin-left:-7.162597pt;}
._10{margin-left:-6.078400pt;}
._4{margin-left:-4.352000pt;}
._7{margin-left:-3.172800pt;}
._5{margin-left:-2.283803pt;}
._1{margin-left:-1.332800pt;}
._2{width:1.169600pt;}
._3{width:2.176000pt;}
._8{width:3.611200pt;}
._a{width:4.577600pt;}
._9{width:5.816000pt;}
._b{width:6.954667pt;}
._c{width:7.856000pt;}
._d{width:9.146667pt;}
._f{width:10.357333pt;}
._11{width:11.408000pt;}
._2d{width:12.319467pt;}
._2a{width:14.852800pt;}
._2b{width:16.559467pt;}
._29{width:18.149867pt;}
._28{width:19.546133pt;}
._25{width:20.457600pt;}
._24{width:22.046400pt;}
._2e{width:23.291269pt;}
._2f{width:24.509264pt;}
._31{width:25.423467pt;}
._30{width:26.320000pt;}
._6{width:32.328533pt;}
._2c{width:33.235733pt;}
._32{width:35.286864pt;}
._22{width:38.849669pt;}
._23{width:40.128533pt;}
._21{width:55.180405pt;}
._26{width:81.480000pt;}
._20{width:220.170133pt;}
._14{width:248.031536pt;}
._13{width:330.154667pt;}
._1f{width:403.626667pt;}
._15{width:424.761669pt;}
._17{width:467.029333pt;}
._1b{width:514.304000pt;}
._19{width:518.186667pt;}
._18{width:549.930667pt;}
._1c{width:637.184000pt;}
._1a{width:653.482667pt;}
._12{width:686.758400pt;}
._1e{width:701.013333pt;}
._1d{width:749.696000pt;}
._16{width:761.813333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.702267pt;}
.y114{bottom:100.258533pt;}
.ye9{bottom:100.407867pt;}
.yc2{bottom:100.503867pt;}
.y9e{bottom:100.514400pt;}
.y6c{bottom:100.514533pt;}
.y12{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.yb2{bottom:104.431733pt;}
.yb6{bottom:107.098933pt;}
.y6f{bottom:107.105333pt;}
.yb1{bottom:111.098400pt;}
.y11{bottom:116.979067pt;}
.y113{bottom:118.930533pt;}
.ye8{bottom:119.079867pt;}
.yc1{bottom:119.175867pt;}
.y9d{bottom:119.181067pt;}
.y6b{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.yb5{bottom:124.702933pt;}
.y6e{bottom:124.709333pt;}
.y10{bottom:129.775867pt;}
.yb0{bottom:136.730400pt;}
.y112{bottom:137.602533pt;}
.ye7{bottom:137.751867pt;}
.y9c{bottom:137.847733pt;}
.y6a{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yb4{bottom:142.306933pt;}
.y6d{bottom:142.313333pt;}
.yf{bottom:142.575867pt;}
.yaf{bottom:155.695733pt;}
.y111{bottom:156.274533pt;}
.ye6{bottom:156.423867pt;}
.y9b{bottom:156.514400pt;}
.y69{bottom:156.514533pt;}
.yb3{bottom:159.910933pt;}
.y28{bottom:160.188933pt;}
.yc0{bottom:161.359467pt;}
.yae{bottom:174.661067pt;}
.y110{bottom:174.946533pt;}
.ye5{bottom:175.095867pt;}
.y9a{bottom:175.181067pt;}
.y68{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y38{bottom:180.842133pt;}
.y10f{bottom:193.618533pt;}
.yad{bottom:193.626400pt;}
.ye4{bottom:193.767867pt;}
.y99{bottom:193.847733pt;}
.y67{bottom:193.847867pt;}
.y37{bottom:196.838133pt;}
.y26{bottom:197.522267pt;}
.y10e{bottom:212.290533pt;}
.ye3{bottom:212.439867pt;}
.y98{bottom:212.514400pt;}
.y66{bottom:212.514533pt;}
.yac{bottom:212.591733pt;}
.y36{bottom:212.834133pt;}
.y25{bottom:216.188933pt;}
.ybf{bottom:217.359467pt;}
.y35{bottom:228.830133pt;}
.y10d{bottom:230.962533pt;}
.ye2{bottom:231.111867pt;}
.y97{bottom:231.181067pt;}
.y65{bottom:231.181200pt;}
.yab{bottom:231.557067pt;}
.y24{bottom:234.855600pt;}
.y34{bottom:244.826133pt;}
.y10c{bottom:249.634533pt;}
.ye1{bottom:249.783867pt;}
.y96{bottom:249.847733pt;}
.y64{bottom:249.847867pt;}
.yaa{bottom:250.522400pt;}
.y23{bottom:253.522267pt;}
.y33{bottom:260.822133pt;}
.y10b{bottom:268.306533pt;}
.ye0{bottom:268.455867pt;}
.y95{bottom:268.514400pt;}
.y63{bottom:268.514533pt;}
.ya9{bottom:269.754400pt;}
.y22{bottom:272.188933pt;}
.ybe{bottom:273.359467pt;}
.y32{bottom:276.818133pt;}
.ya2{bottom:281.944400pt;}
.y10a{bottom:286.978533pt;}
.ydf{bottom:287.127867pt;}
.y94{bottom:287.181067pt;}
.y62{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y31{bottom:292.814133pt;}
.ya8{bottom:296.845467pt;}
.ya1{bottom:299.548400pt;}
.y109{bottom:305.650533pt;}
.yde{bottom:305.799867pt;}
.yb9{bottom:305.847733pt;}
.y61{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.ya7{bottom:314.449467pt;}
.ya0{bottom:317.152400pt;}
.y93{bottom:318.614133pt;}
.y30{bottom:323.930133pt;}
.y108{bottom:324.322533pt;}
.ydd{bottom:324.471867pt;}
.yb8{bottom:324.514400pt;}
.y60{bottom:324.514533pt;}
.ybd{bottom:329.721867pt;}
.y9f{bottom:334.756400pt;}
.y2f{bottom:339.930133pt;}
.y107{bottom:342.994533pt;}
.ydc{bottom:343.143867pt;}
.y1f{bottom:343.154267pt;}
.yb7{bottom:343.181067pt;}
.y5f{bottom:343.181200pt;}
.y2e{bottom:355.930133pt;}
.ybc{bottom:355.947600pt;}
.y106{bottom:361.666533pt;}
.ydb{bottom:361.815867pt;}
.y92{bottom:361.847733pt;}
.y5e{bottom:361.847867pt;}
.y2d{bottom:371.934133pt;}
.y105{bottom:380.338533pt;}
.yda{bottom:380.487867pt;}
.y91{bottom:380.514400pt;}
.y5d{bottom:380.514533pt;}
.y2c{bottom:387.930133pt;}
.y104{bottom:399.010533pt;}
.yd9{bottom:399.159867pt;}
.y90{bottom:399.181067pt;}
.y5c{bottom:399.181200pt;}
.y116{bottom:411.947600pt;}
.y103{bottom:417.682533pt;}
.yd8{bottom:417.831867pt;}
.y8f{bottom:417.847733pt;}
.y5b{bottom:417.847867pt;}
.y1e{bottom:418.509733pt;}
.y1d{bottom:436.113733pt;}
.y102{bottom:436.354533pt;}
.yd7{bottom:436.503867pt;}
.y8e{bottom:436.514400pt;}
.y5a{bottom:436.514533pt;}
.y101{bottom:455.026533pt;}
.yd6{bottom:455.175867pt;}
.y8d{bottom:455.181067pt;}
.ya6{bottom:455.181200pt;}
.y59{bottom:467.947600pt;}
.y1c{bottom:472.583467pt;}
.y100{bottom:473.698533pt;}
.y8c{bottom:473.847733pt;}
.ya5{bottom:473.847867pt;}
.y1b{bottom:490.187467pt;}
.yff{bottom:492.370533pt;}
.y8b{bottom:492.514400pt;}
.ya4{bottom:492.514533pt;}
.yd5{bottom:505.280933pt;}
.y1a{bottom:507.791467pt;}
.yfe{bottom:511.042533pt;}
.y8a{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.y19{bottom:525.395467pt;}
.yfd{bottom:529.714533pt;}
.y89{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y18{bottom:542.999467pt;}
.yba{bottom:546.902400pt;}
.yfc{bottom:548.386533pt;}
.yd4{bottom:548.509200pt;}
.y88{bottom:548.514400pt;}
.y56{bottom:548.514533pt;}
.y17{bottom:560.603467pt;}
.yfb{bottom:567.058533pt;}
.y87{bottom:567.181067pt;}
.y55{bottom:567.181200pt;}
.y16{bottom:578.207467pt;}
.yfa{bottom:585.730533pt;}
.y86{bottom:585.847733pt;}
.y54{bottom:585.847867pt;}
.yd3{bottom:590.692800pt;}
.y15{bottom:595.811467pt;}
.ybb{bottom:598.614267pt;}
.yf9{bottom:604.402533pt;}
.y85{bottom:604.514400pt;}
.y53{bottom:604.514533pt;}
.ya3{bottom:617.280933pt;}
.yf8{bottom:623.074533pt;}
.yd2{bottom:623.175867pt;}
.y84{bottom:623.181067pt;}
.y52{bottom:623.181200pt;}
.y14{bottom:623.453600pt;}
.yf7{bottom:641.746533pt;}
.yd1{bottom:641.842533pt;}
.y83{bottom:641.847733pt;}
.y51{bottom:641.847867pt;}
.yf6{bottom:660.418533pt;}
.yd0{bottom:660.509200pt;}
.y82{bottom:660.514400pt;}
.y50{bottom:660.514533pt;}
.yf5{bottom:679.090533pt;}
.ycf{bottom:679.175867pt;}
.y81{bottom:679.181067pt;}
.y4f{bottom:679.181200pt;}
.ye{bottom:693.926133pt;}
.yf4{bottom:697.762533pt;}
.yce{bottom:697.842533pt;}
.y80{bottom:697.847733pt;}
.y4e{bottom:697.847867pt;}
.yd{bottom:709.926133pt;}
.yf3{bottom:716.434533pt;}
.y7f{bottom:716.514400pt;}
.y4d{bottom:716.514533pt;}
.yc{bottom:725.926133pt;}
.yf2{bottom:735.106533pt;}
.y7e{bottom:735.181067pt;}
.y4c{bottom:735.181200pt;}
.ycd{bottom:740.026000pt;}
.yb{bottom:741.926133pt;}
.yf1{bottom:753.778533pt;}
.y7d{bottom:753.847733pt;}
.y4b{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.yf0{bottom:772.450533pt;}
.ycc{bottom:772.498533pt;}
.y7c{bottom:772.514400pt;}
.y4a{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y8{bottom:789.926133pt;}
.yef{bottom:791.122533pt;}
.ycb{bottom:791.170533pt;}
.y7b{bottom:791.181067pt;}
.y49{bottom:791.181200pt;}
.y7{bottom:805.926133pt;}
.yee{bottom:809.794533pt;}
.yca{bottom:809.842533pt;}
.y7a{bottom:809.847733pt;}
.y48{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.yed{bottom:828.466533pt;}
.y79{bottom:828.514400pt;}
.y47{bottom:828.514533pt;}
.yec{bottom:847.138533pt;}
.y78{bottom:847.181067pt;}
.y46{bottom:847.181200pt;}
.yc9{bottom:852.026000pt;}
.y5{bottom:853.044267pt;}
.yeb{bottom:865.810533pt;}
.y77{bottom:865.847733pt;}
.y45{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yea{bottom:884.482533pt;}
.yc8{bottom:884.509200pt;}
.y76{bottom:884.514400pt;}
.y44{bottom:884.514533pt;}
.yc7{bottom:903.154533pt;}
.y75{bottom:903.181067pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yc6{bottom:921.826533pt;}
.y74{bottom:921.847733pt;}
.y42{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yc5{bottom:940.498533pt;}
.y73{bottom:940.514400pt;}
.y41{bottom:940.514533pt;}
.yc4{bottom:959.170533pt;}
.y72{bottom:959.181067pt;}
.y40{bottom:959.181200pt;}
.yc3{bottom:977.842533pt;}
.y71{bottom:977.847733pt;}
.y3f{bottom:977.847867pt;}
.y13{bottom:986.502667pt;}
.y115{bottom:988.577467pt;}
.y70{bottom:996.514400pt;}
.y3e{bottom:996.514533pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y3d{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h11{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h12{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h16{height:39.021333pt;}
.h15{height:39.106667pt;}
.h9{height:42.083333pt;}
.hc{height:43.333333pt;}
.h14{height:44.601562pt;}
.h10{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h13{height:61.333333pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.174800pt;}
.xd{left:96.253733pt;}
.xf{left:99.784400pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xe{left:138.344400pt;}
.x5{left:266.834667pt;}
.xc{left:281.954667pt;}
.x4{left:352.045067pt;}
.x10{left:555.699067pt;}
.xa{left:574.128133pt;}
.x9{left:603.365467pt;}
.x1{left:717.405733pt;}
}




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