
    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_86e0691702deefd99c687222.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e40d08b5e61c4910dc1d557c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_7156fd069c469dc433074964.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_423a22992179367c36762b73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_195bbf1e501e53fb30fdc543.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_57984ae01b33154bb5ff793b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3c1e91e8fe3752e3f8317439.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.213000;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_e9523a3cd3e96a0fe68b2daf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.256000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_06d0a14d94a8b117a533075f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2ab45c1a8b8720a80d8f73f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.230000;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:fff;src:url('chunks/assets/font_adba3665d6451d00d0434714.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_346e624e75f2f1c0036f4c50.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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:ff11;src:url('chunks/assets/font_89b1f21d8f9a199b5a6d3081.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200073px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls8{letter-spacing:-12.000000px;}
.ls7{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000092px;}
.ls6{letter-spacing:0.000549px;}
.ls3{letter-spacing:0.000583px;}
.ls1{letter-spacing:3.360000px;}
.ls9{letter-spacing:30.703191px;}
.ls2{letter-spacing:53.015985px;}
.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;}
}
.ws3{word-spacing:-15.000000px;}
.wsb7{word-spacing:-13.800000px;}
.wsc5{word-spacing:-13.332000px;}
.ws4{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.120000px;}
.ws5b{word-spacing:-12.000000px;}
.ws1{word-spacing:-9.408000px;}
.wsc4{word-spacing:-9.216000px;}
.ws5{word-spacing:-8.694000px;}
.wsd5{word-spacing:-8.400000px;}
.ws72{word-spacing:-4.200000px;}
.ws2b{word-spacing:-3.780000px;}
.ws34{word-spacing:-3.660000px;}
.ws2c{word-spacing:-3.600000px;}
.wsbe{word-spacing:-3.360000px;}
.ws51{word-spacing:-2.940000px;}
.ws29{word-spacing:-2.760000px;}
.ws45{word-spacing:-2.700000px;}
.ws24{word-spacing:-2.640000px;}
.wsb0{word-spacing:-2.580000px;}
.ws4b{word-spacing:-2.520000px;}
.ws5c{word-spacing:-2.460000px;}
.ws4c{word-spacing:-2.400000px;}
.wsba{word-spacing:-2.280000px;}
.ws87{word-spacing:-2.220000px;}
.ws58{word-spacing:-2.160000px;}
.wsa6{word-spacing:-2.100000px;}
.wsb8{word-spacing:-2.040000px;}
.ws28{word-spacing:-1.980000px;}
.ws26{word-spacing:-1.860000px;}
.ws6e{word-spacing:-1.740000px;}
.ws5f{word-spacing:-1.680000px;}
.wsbc{word-spacing:-1.620000px;}
.ws68{word-spacing:-1.584000px;}
.wsc1{word-spacing:-1.500000px;}
.ws50{word-spacing:-1.440000px;}
.wscf{word-spacing:-1.392000px;}
.ws70{word-spacing:-1.380000px;}
.ws3b{word-spacing:-1.320000px;}
.wsad{word-spacing:-1.260000px;}
.ws1e{word-spacing:-1.200000px;}
.wsd3{word-spacing:-1.152000px;}
.ws19{word-spacing:-1.140000px;}
.ws6c{word-spacing:-1.080000px;}
.ws56{word-spacing:-1.020000px;}
.ws76{word-spacing:-0.960000px;}
.ws49{word-spacing:-0.900000px;}
.ws25{word-spacing:-0.840000px;}
.wsd1{word-spacing:-0.768000px;}
.wsb9{word-spacing:-0.720000px;}
.ws2a{word-spacing:-0.600000px;}
.wsa3{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.480000px;}
.ws6d{word-spacing:-0.420000px;}
.ws7{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.300000px;}
.ws55{word-spacing:-0.240000px;}
.ws2e{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.120000px;}
.ws18{word-spacing:-0.060000px;}
.wsd4{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws8f{word-spacing:0.060000px;}
.ws96{word-spacing:0.120000px;}
.ws6f{word-spacing:0.180000px;}
.ws39{word-spacing:0.300000px;}
.ws97{word-spacing:0.360000px;}
.ws32{word-spacing:0.420000px;}
.ws27{word-spacing:0.480000px;}
.ws1c{word-spacing:0.540000px;}
.wsd2{word-spacing:0.576000px;}
.wsac{word-spacing:0.600000px;}
.ws6a{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.ws30{word-spacing:0.780000px;}
.ws3c{word-spacing:0.840000px;}
.ws81{word-spacing:0.900000px;}
.ws38{word-spacing:1.080000px;}
.ws47{word-spacing:1.140000px;}
.wsa7{word-spacing:1.200000px;}
.ws3a{word-spacing:1.260000px;}
.ws41{word-spacing:1.320000px;}
.ws8a{word-spacing:1.380000px;}
.ws40{word-spacing:1.440000px;}
.wsce{word-spacing:1.488000px;}
.ws42{word-spacing:1.500000px;}
.wsc8{word-spacing:1.680000px;}
.wsa4{word-spacing:1.740000px;}
.wsca{word-spacing:1.776000px;}
.wsb1{word-spacing:1.800000px;}
.ws57{word-spacing:1.860000px;}
.ws89{word-spacing:1.920000px;}
.ws90{word-spacing:1.980000px;}
.wsb6{word-spacing:2.040000px;}
.ws53{word-spacing:2.100000px;}
.ws1f{word-spacing:2.160000px;}
.wsc9{word-spacing:2.208000px;}
.ws46{word-spacing:2.220000px;}
.ws7f{word-spacing:2.340000px;}
.ws7c{word-spacing:2.400000px;}
.ws12{word-spacing:2.460000px;}
.ws3f{word-spacing:2.520000px;}
.ws8e{word-spacing:2.580000px;}
.ws5d{word-spacing:2.700000px;}
.ws20{word-spacing:2.760000px;}
.ws14{word-spacing:2.820000px;}
.ws15{word-spacing:2.832000px;}
.ws82{word-spacing:2.880000px;}
.ws65{word-spacing:2.940000px;}
.ws35{word-spacing:3.000000px;}
.ws4a{word-spacing:3.060000px;}
.ws3e{word-spacing:3.120000px;}
.ws1b{word-spacing:3.180000px;}
.ws7e{word-spacing:3.240000px;}
.ws88{word-spacing:3.300000px;}
.ws8d{word-spacing:3.360000px;}
.ws60{word-spacing:3.420000px;}
.wscb{word-spacing:3.456000px;}
.ws91{word-spacing:3.480000px;}
.ws1d{word-spacing:3.540000px;}
.wsb2{word-spacing:3.600000px;}
.ws8b{word-spacing:3.660000px;}
.wsa5{word-spacing:3.720000px;}
.ws52{word-spacing:3.780000px;}
.ws37{word-spacing:3.840000px;}
.wsc3{word-spacing:3.900000px;}
.ws6b{word-spacing:3.960000px;}
.ws69{word-spacing:4.020000px;}
.ws48{word-spacing:4.080000px;}
.ws79{word-spacing:4.140000px;}
.ws8c{word-spacing:4.200000px;}
.ws98{word-spacing:4.260000px;}
.ws4e{word-spacing:4.320000px;}
.ws71{word-spacing:4.380000px;}
.wscd{word-spacing:4.416000px;}
.ws10{word-spacing:4.500000px;}
.ws7a{word-spacing:4.560000px;}
.ws33{word-spacing:4.620000px;}
.ws4f{word-spacing:4.680000px;}
.wsae{word-spacing:4.740000px;}
.wsd{word-spacing:4.800000px;}
.wsa{word-spacing:4.860000px;}
.ws1a{word-spacing:4.920000px;}
.wse{word-spacing:5.100000px;}
.ws93{word-spacing:5.160000px;}
.wsa9{word-spacing:5.220000px;}
.ws7b{word-spacing:5.280000px;}
.ws5a{word-spacing:5.340000px;}
.ws86{word-spacing:5.400000px;}
.ws66{word-spacing:5.460000px;}
.wsb5{word-spacing:5.520000px;}
.wsf{word-spacing:5.580000px;}
.wsaa{word-spacing:5.640000px;}
.wsbb{word-spacing:5.700000px;}
.ws77{word-spacing:5.760000px;}
.ws43{word-spacing:5.880000px;}
.ws36{word-spacing:5.940000px;}
.wsb{word-spacing:6.000000px;}
.wsaf{word-spacing:6.060000px;}
.ws78{word-spacing:6.120000px;}
.ws80{word-spacing:6.180000px;}
.ws83{word-spacing:6.240000px;}
.wsd0{word-spacing:6.336000px;}
.ws59{word-spacing:6.360000px;}
.wsc6{word-spacing:6.480000px;}
.ws16{word-spacing:6.540000px;}
.ws13{word-spacing:6.600000px;}
.wscc{word-spacing:6.624000px;}
.ws67{word-spacing:6.660000px;}
.ws84{word-spacing:6.720000px;}
.ws17{word-spacing:6.780000px;}
.ws74{word-spacing:6.840000px;}
.ws63{word-spacing:6.900000px;}
.wsbf{word-spacing:6.960000px;}
.ws62{word-spacing:7.080000px;}
.ws75{word-spacing:7.200000px;}
.ws9{word-spacing:7.260000px;}
.ws23{word-spacing:7.320000px;}
.wsc0{word-spacing:7.440000px;}
.ws2f{word-spacing:7.500000px;}
.wsc2{word-spacing:7.560000px;}
.ws64{word-spacing:7.860000px;}
.ws2d{word-spacing:7.980000px;}
.ws92{word-spacing:8.100000px;}
.ws21{word-spacing:8.160000px;}
.ws85{word-spacing:8.280000px;}
.ws54{word-spacing:8.340000px;}
.ws61{word-spacing:8.460000px;}
.wsb4{word-spacing:8.760000px;}
.ws5e{word-spacing:9.000000px;}
.ws8{word-spacing:9.180000px;}
.ws4d{word-spacing:9.480000px;}
.wsab{word-spacing:9.780000px;}
.ws22{word-spacing:10.020000px;}
.ws73{word-spacing:10.140000px;}
.wsc{word-spacing:10.260000px;}
.wsb3{word-spacing:10.620000px;}
.wsbd{word-spacing:11.880000px;}
.wsc7{word-spacing:12.000000px;}
.wsa8{word-spacing:18.480000px;}
.ws7d{word-spacing:18.660000px;}
.ws11{word-spacing:19.668000px;}
.ws9d{word-spacing:60.220791px;}
.wsa2{word-spacing:65.548791px;}
.wsa0{word-spacing:78.892791px;}
.ws99{word-spacing:97.275599px;}
.ws9b{word-spacing:102.892791px;}
.ws95{word-spacing:106.695072px;}
.ws9a{word-spacing:126.892791px;}
.ws9c{word-spacing:166.587599px;}
.ws9e{word-spacing:168.647991px;}
.wsa1{word-spacing:186.118799px;}
.ws94{word-spacing:198.892791px;}
.ws9f{word-spacing:209.259599px;}
._1f{margin-left:-66.351585px;}
._1e{margin-left:-12.000000px;}
._13{margin-left:-8.529635px;}
._12{margin-left:-7.170000px;}
._10{margin-left:-5.664010px;}
._2{margin-left:-4.200000px;}
._4{margin-left:-2.448000px;}
._0{margin-left:-1.012800px;}
._1{width:1.051200px;}
._3{width:2.166000px;}
._7{width:3.336000px;}
._9{width:4.500000px;}
._b{width:5.628000px;}
._5{width:6.726000px;}
._6{width:8.310000px;}
._11{width:9.425999px;}
._c{width:10.440000px;}
._a{width:12.253170px;}
._d{width:14.386224px;}
._14{width:16.326000px;}
._8{width:17.518203px;}
._f{width:18.660000px;}
._e{width:19.668000px;}
._19{width:35.895072px;}
._20{width:56.255991px;}
._17{width:59.895072px;}
._16{width:61.084791px;}
._1b{width:72.220791px;}
._1d{width:76.689591px;}
._1a{width:83.895072px;}
._18{width:138.892791px;}
._1c{width:180.436791px;}
._15{width:558.106127px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:46.736100px;}
.y74{bottom:46.771650px;}
.y5{bottom:66.525004px;}
.y76{bottom:90.001350px;}
.y44{bottom:90.001499px;}
.y73{bottom:90.425102px;}
.y99{bottom:94.678499px;}
.y4{bottom:97.125005px;}
.y15d{bottom:97.854904px;}
.y75{bottom:104.251350px;}
.y72{bottom:108.425102px;}
.y98{bottom:108.928505px;}
.y15c{bottom:112.104904px;}
.y123{bottom:112.175102px;}
.y97{bottom:123.178505px;}
.y15b{bottom:126.354904px;}
.y71{bottom:126.425102px;}
.y96{bottom:137.428505px;}
.y22{bottom:139.264499px;}
.y15a{bottom:140.604904px;}
.y122{bottom:140.675102px;}
.y70{bottom:144.425102px;}
.y95{bottom:151.678505px;}
.yee{bottom:153.102745px;}
.y159{bottom:154.854904px;}
.y121{bottom:154.925102px;}
.y3d{bottom:158.173199px;}
.y6f{bottom:162.425102px;}
.yed{bottom:167.352745px;}
.y94{bottom:168.502796px;}
.y158{bottom:169.104904px;}
.y120{bottom:169.175102px;}
.y3c{bottom:176.173199px;}
.y6e{bottom:180.425102px;}
.yec{bottom:181.602745px;}
.y93{bottom:182.752796px;}
.y157{bottom:183.354904px;}
.y11f{bottom:183.425102px;}
.y15f{bottom:183.729904px;}
.y3b{bottom:194.173210px;}
.yeb{bottom:195.852745px;}
.y19{bottom:196.933500px;}
.y92{bottom:197.002808px;}
.y156{bottom:197.604904px;}
.y11e{bottom:197.675102px;}
.y15e{bottom:197.979904px;}
.y6d{bottom:198.425102px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yea{bottom:210.102745px;}
.y91{bottom:211.252808px;}
.y155{bottom:211.854904px;}
.y11d{bottom:211.925102px;}
.y6c{bottom:216.425102px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y154{bottom:226.104904px;}
.y11c{bottom:226.175102px;}
.ye9{bottom:226.927048px;}
.y90{bottom:228.076950px;}
.y3a{bottom:230.173210px;}
.y6b{bottom:234.425102px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y153{bottom:240.354904px;}
.y11b{bottom:240.425102px;}
.ye8{bottom:241.177048px;}
.y8f{bottom:242.326950px;}
.y6a{bottom:252.425102px;}
.y152{bottom:254.604904px;}
.y11a{bottom:254.675102px;}
.ye7{bottom:255.427048px;}
.y8e{bottom:256.576950px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y151{bottom:268.854904px;}
.y119{bottom:268.925102px;}
.ye6{bottom:269.677048px;}
.y69{bottom:270.425102px;}
.y8d{bottom:270.826950px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y150{bottom:283.104904px;}
.y118{bottom:283.175102px;}
.ye5{bottom:283.927048px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y8c{bottom:287.651253px;}
.y68{bottom:288.425102px;}
.y14f{bottom:297.354904px;}
.y117{bottom:297.425102px;}
.ye4{bottom:300.751190px;}
.y39{bottom:301.328705px;}
.y8b{bottom:301.901253px;}
.yc2{bottom:305.899796px;}
.y67{bottom:306.425102px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y14e{bottom:311.604904px;}
.y116{bottom:311.675102px;}
.ye3{bottom:315.001190px;}
.y8a{bottom:316.151253px;}
.y38{bottom:319.328705px;}
.yc1{bottom:320.149796px;}
.yfb{bottom:322.723961px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y66{bottom:324.425102px;}
.y14d{bottom:325.854904px;}
.y115{bottom:325.925102px;}
.ye2{bottom:329.251190px;}
.y89{bottom:332.975555px;}
.yc0{bottom:334.399796px;}
.yfa{bottom:336.973961px;}
.y14c{bottom:340.104904px;}
.y114{bottom:340.175102px;}
.y65{bottom:342.425102px;}
.ye1{bottom:346.075493px;}
.y88{bottom:347.225555px;}
.y10{bottom:348.133500px;}
.y78{bottom:348.241356px;}
.ybf{bottom:348.649796px;}
.yf9{bottom:351.223961px;}
.y79{bottom:352.561500px;}
.y14b{bottom:354.354904px;}
.y113{bottom:354.425102px;}
.y37{bottom:355.328705px;}
.ye0{bottom:360.325493px;}
.y64{bottom:360.425102px;}
.y87{bottom:361.475555px;}
.ybe{bottom:365.473961px;}
.y14a{bottom:368.604904px;}
.y112{bottom:368.675102px;}
.y36{bottom:373.328705px;}
.ydf{bottom:374.575493px;}
.y86{bottom:375.725555px;}
.y63{bottom:378.425102px;}
.ybd{bottom:379.723961px;}
.y77{bottom:382.291489px;}
.yf8{bottom:382.298241px;}
.y149{bottom:382.854904px;}
.y111{bottom:382.925102px;}
.yf{bottom:386.785499px;}
.y35{bottom:391.328705px;}
.yde{bottom:391.399796px;}
.y85{bottom:392.549698px;}
.ybc{bottom:393.973938px;}
.y62{bottom:396.425079px;}
.yf7{bottom:396.548264px;}
.y148{bottom:397.104904px;}
.y110{bottom:397.175079px;}
.ydd{bottom:405.649796px;}
.y84{bottom:406.799698px;}
.ye{bottom:408.044999px;}
.y34{bottom:409.328705px;}
.ybb{bottom:410.798264px;}
.y147{bottom:411.354904px;}
.y10f{bottom:411.425079px;}
.y61{bottom:414.425079px;}
.ydc{bottom:419.899796px;}
.y83{bottom:421.049698px;}
.yba{bottom:425.048264px;}
.y146{bottom:425.604904px;}
.y10e{bottom:425.675079px;}
.y33{bottom:427.328705px;}
.y60{bottom:432.425079px;}
.y82{bottom:435.299698px;}
.ydb{bottom:436.723938px;}
.yb9{bottom:439.298264px;}
.y145{bottom:439.854904px;}
.y10d{bottom:439.925079px;}
.yf6{bottom:441.872543px;}
.y32{bottom:445.328705px;}
.y5f{bottom:450.425079px;}
.yda{bottom:450.973938px;}
.y81{bottom:452.123978px;}
.y144{bottom:454.104904px;}
.y10c{bottom:454.175079px;}
.yb8{bottom:456.122543px;}
.y31{bottom:463.328705px;}
.yd9{bottom:465.223938px;}
.y80{bottom:466.373978px;}
.y143{bottom:468.354904px;}
.y5e{bottom:468.425079px;}
.yb7{bottom:470.372543px;}
.y7f{bottom:480.623978px;}
.y7d{bottom:480.817337px;}
.y30{bottom:481.328705px;}
.yd8{bottom:482.048264px;}
.y142{bottom:482.604904px;}
.yb6{bottom:484.622543px;}
.yd{bottom:484.864502px;}
.y5d{bottom:486.425079px;}
.y7e{bottom:494.873978px;}
.y7c{bottom:495.067337px;}
.yd7{bottom:496.298264px;}
.yd5{bottom:496.491577px;}
.y141{bottom:496.854904px;}
.yb5{bottom:498.872543px;}
.y2f{bottom:499.328705px;}
.yf5{bottom:501.446869px;}
.yc{bottom:502.864502px;}
.y5c{bottom:504.425079px;}
.yd6{bottom:510.548264px;}
.yd4{bottom:510.741577px;}
.y140{bottom:511.104904px;}
.y7b{bottom:512.442307px;}
.yb4{bottom:513.122543px;}
.yf4{bottom:515.696869px;}
.y2e{bottom:517.328705px;}
.yb{bottom:520.864502px;}
.y5b{bottom:522.425079px;}
.y13f{bottom:525.354904px;}
.y7a{bottom:526.692307px;}
.yd3{bottom:527.372543px;}
.yb3{bottom:529.946869px;}
.y2d{bottom:535.328705px;}
.ya{bottom:538.864499px;}
.y13e{bottom:539.604904px;}
.y5a{bottom:540.425079px;}
.yd2{bottom:541.622543px;}
.y9a{bottom:544.154388px;}
.yb2{bottom:544.196869px;}
.y2c{bottom:553.328705px;}
.y13d{bottom:553.854904px;}
.yd1{bottom:555.872543px;}
.y10b{bottom:556.176590px;}
.y9{bottom:556.864499px;}
.y59{bottom:558.425079px;}
.yb1{bottom:558.446869px;}
.yf3{bottom:561.021011px;}
.y13c{bottom:568.104904px;}
.y10a{bottom:570.426590px;}
.y2b{bottom:571.328705px;}
.yb0{bottom:572.696869px;}
.yf2{bottom:575.271011px;}
.y58{bottom:576.425079px;}
.y13b{bottom:582.354904px;}
.y109{bottom:584.676590px;}
.yd0{bottom:586.946869px;}
.y2a{bottom:589.328705px;}
.yaf{bottom:589.521011px;}
.y57{bottom:594.425079px;}
.y13a{bottom:596.604904px;}
.y108{bottom:598.926590px;}
.ycf{bottom:601.196869px;}
.yae{bottom:603.771011px;}
.yf1{bottom:606.345291px;}
.y29{bottom:607.328705px;}
.y139{bottom:610.854904px;}
.y56{bottom:612.425079px;}
.y107{bottom:613.176590px;}
.yce{bottom:615.446869px;}
.yad{bottom:618.021011px;}
.yf0{bottom:620.595291px;}
.y138{bottom:625.104904px;}
.y28{bottom:625.328705px;}
.y106{bottom:627.426590px;}
.y55{bottom:630.425079px;}
.ycd{bottom:632.271011px;}
.yac{bottom:634.845291px;}
.y137{bottom:639.354904px;}
.y105{bottom:641.676590px;}
.y27{bottom:643.328705px;}
.y16a{bottom:644.042084px;}
.y8{bottom:645.510000px;}
.ycc{bottom:646.521011px;}
.y54{bottom:648.425079px;}
.yab{bottom:649.095291px;}
.y136{bottom:653.604904px;}
.y104{bottom:655.926590px;}
.ycb{bottom:660.771011px;}
.y26{bottom:661.328705px;}
.y169{bottom:663.092102px;}
.yaa{bottom:663.345291px;}
.y53{bottom:666.425079px;}
.y7{bottom:666.771000px;}
.y135{bottom:667.854904px;}
.y103{bottom:670.176590px;}
.ya9{bottom:677.595291px;}
.y168{bottom:680.042084px;}
.yef{bottom:680.169434px;}
.y134{bottom:682.104904px;}
.y52{bottom:684.425079px;}
.yca{bottom:691.845291px;}
.ya8{bottom:694.419434px;}
.y133{bottom:696.354904px;}
.y167{bottom:699.092102px;}
.y51{bottom:702.425079px;}
.yc9{bottom:706.095291px;}
.ya7{bottom:708.669434px;}
.y132{bottom:710.604904px;}
.y40{bottom:710.846420px;}
.y102{bottom:716.675079px;}
.yc8{bottom:720.345291px;}
.y50{bottom:720.425079px;}
.y166{bottom:720.842102px;}
.ya6{bottom:722.919434px;}
.y131{bottom:724.854904px;}
.y3f{bottom:725.096420px;}
.y6{bottom:726.298500px;}
.y101{bottom:730.925079px;}
.ya5{bottom:737.169434px;}
.yc7{bottom:737.169617px;}
.y4f{bottom:738.425079px;}
.y130{bottom:739.104904px;}
.y3e{bottom:739.346420px;}
.y165{bottom:745.174072px;}
.yc6{bottom:751.419617px;}
.y3{bottom:752.599495px;}
.y12f{bottom:753.354904px;}
.ya4{bottom:753.993759px;}
.y4e{bottom:756.425079px;}
.y164{bottom:759.424072px;}
.y100{bottom:763.175079px;}
.yc5{bottom:765.669617px;}
.y12e{bottom:767.604904px;}
.ya3{bottom:768.243713px;}
.y4d{bottom:774.425079px;}
.yff{bottom:777.425079px;}
.y163{bottom:781.174072px;}
.y43{bottom:781.237244px;}
.y12d{bottom:781.854858px;}
.ya2{bottom:782.493713px;}
.y4c{bottom:792.425079px;}
.y162{bottom:795.424072px;}
.y12c{bottom:796.104858px;}
.ya1{bottom:796.743713px;}
.yfe{bottom:809.675079px;}
.y12b{bottom:810.354858px;}
.y4b{bottom:810.425079px;}
.ya0{bottom:813.568085px;}
.y161{bottom:817.174072px;}
.y42{bottom:823.686035px;}
.y12a{bottom:824.604858px;}
.y9f{bottom:827.818085px;}
.y4a{bottom:828.425079px;}
.y160{bottom:831.424072px;}
.y129{bottom:838.854858px;}
.yfd{bottom:841.925079px;}
.y9e{bottom:842.068085px;}
.y41{bottom:846.186035px;}
.y49{bottom:846.425079px;}
.y128{bottom:853.104858px;}
.yfc{bottom:856.175079px;}
.y9d{bottom:856.318085px;}
.y48{bottom:864.425079px;}
.y127{bottom:867.354858px;}
.y9c{bottom:873.461060px;}
.y2{bottom:879.369000px;}
.y126{bottom:881.604858px;}
.y47{bottom:882.425079px;}
.y9b{bottom:887.711060px;}
.y125{bottom:895.854858px;}
.y23{bottom:899.681122px;}
.y46{bottom:900.425079px;}
.yc4{bottom:905.944611px;}
.yc3{bottom:909.425079px;}
.y124{bottom:910.104858px;}
.y25{bottom:924.938965px;}
.y24{bottom:939.188965px;}
.y1{bottom:966.726000px;}
.h1b{height:23.346094px;}
.h7{height:32.130000px;}
.h18{height:32.531250px;}
.h12{height:33.351562px;}
.h1a{height:34.687500px;}
.h14{height:41.660156px;}
.hd{height:41.689453px;}
.hb{height:45.456000px;}
.h6{height:45.900000px;}
.h15{height:46.224000px;}
.ha{height:46.656000px;}
.h19{height:47.472000px;}
.h3{height:48.195000px;}
.h16{height:50.027344px;}
.h2{height:55.080000px;}
.he{height:57.780000px;}
.h17{height:58.800000px;}
.hc{height:59.340000px;}
.h11{height:64.824000px;}
.hf{height:65.274000px;}
.h13{height:72.000000px;}
.h10{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x5{left:80.907303px;}
.xf{left:90.123299px;}
.x9{left:93.543303px;}
.x10{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:165.846302px;}
.x4{left:203.484001px;}
.xd{left:231.229500px;}
.xe{left:426.748032px;}
.x3{left:454.959000px;}
.x8{left:507.479828px;}
.xc{left:509.725800px;}
.x7{left:521.162704px;}
.xa{left:565.923019px;}
@media print{
.v2{vertical-align:-17.066732pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls8{letter-spacing:-10.666667pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000081pt;}
.ls6{letter-spacing:0.000488pt;}
.ls3{letter-spacing:0.000518pt;}
.ls1{letter-spacing:2.986667pt;}
.ls9{letter-spacing:27.291725pt;}
.ls2{letter-spacing:47.125320pt;}
.ws3{word-spacing:-13.333333pt;}
.wsb7{word-spacing:-12.266667pt;}
.wsc5{word-spacing:-11.850667pt;}
.ws4{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.773333pt;}
.ws5b{word-spacing:-10.666667pt;}
.ws1{word-spacing:-8.362667pt;}
.wsc4{word-spacing:-8.192000pt;}
.ws5{word-spacing:-7.728000pt;}
.wsd5{word-spacing:-7.466667pt;}
.ws72{word-spacing:-3.733333pt;}
.ws2b{word-spacing:-3.360000pt;}
.ws34{word-spacing:-3.253333pt;}
.ws2c{word-spacing:-3.200000pt;}
.wsbe{word-spacing:-2.986667pt;}
.ws51{word-spacing:-2.613333pt;}
.ws29{word-spacing:-2.453333pt;}
.ws45{word-spacing:-2.400000pt;}
.ws24{word-spacing:-2.346667pt;}
.wsb0{word-spacing:-2.293333pt;}
.ws4b{word-spacing:-2.240000pt;}
.ws5c{word-spacing:-2.186667pt;}
.ws4c{word-spacing:-2.133333pt;}
.wsba{word-spacing:-2.026667pt;}
.ws87{word-spacing:-1.973333pt;}
.ws58{word-spacing:-1.920000pt;}
.wsa6{word-spacing:-1.866667pt;}
.wsb8{word-spacing:-1.813333pt;}
.ws28{word-spacing:-1.760000pt;}
.ws26{word-spacing:-1.653333pt;}
.ws6e{word-spacing:-1.546667pt;}
.ws5f{word-spacing:-1.493333pt;}
.wsbc{word-spacing:-1.440000pt;}
.ws68{word-spacing:-1.408000pt;}
.wsc1{word-spacing:-1.333333pt;}
.ws50{word-spacing:-1.280000pt;}
.wscf{word-spacing:-1.237333pt;}
.ws70{word-spacing:-1.226667pt;}
.ws3b{word-spacing:-1.173333pt;}
.wsad{word-spacing:-1.120000pt;}
.ws1e{word-spacing:-1.066667pt;}
.wsd3{word-spacing:-1.024000pt;}
.ws19{word-spacing:-1.013333pt;}
.ws6c{word-spacing:-0.960000pt;}
.ws56{word-spacing:-0.906667pt;}
.ws76{word-spacing:-0.853333pt;}
.ws49{word-spacing:-0.800000pt;}
.ws25{word-spacing:-0.746667pt;}
.wsd1{word-spacing:-0.682667pt;}
.wsb9{word-spacing:-0.640000pt;}
.ws2a{word-spacing:-0.533333pt;}
.wsa3{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws6d{word-spacing:-0.373333pt;}
.ws7{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.266667pt;}
.ws55{word-spacing:-0.213333pt;}
.ws2e{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.106667pt;}
.ws18{word-spacing:-0.053333pt;}
.wsd4{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.053333pt;}
.ws96{word-spacing:0.106667pt;}
.ws6f{word-spacing:0.160000pt;}
.ws39{word-spacing:0.266667pt;}
.ws97{word-spacing:0.320000pt;}
.ws32{word-spacing:0.373333pt;}
.ws27{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.480000pt;}
.wsd2{word-spacing:0.512000pt;}
.wsac{word-spacing:0.533333pt;}
.ws6a{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.ws30{word-spacing:0.693333pt;}
.ws3c{word-spacing:0.746667pt;}
.ws81{word-spacing:0.800000pt;}
.ws38{word-spacing:0.960000pt;}
.ws47{word-spacing:1.013333pt;}
.wsa7{word-spacing:1.066667pt;}
.ws3a{word-spacing:1.120000pt;}
.ws41{word-spacing:1.173333pt;}
.ws8a{word-spacing:1.226667pt;}
.ws40{word-spacing:1.280000pt;}
.wsce{word-spacing:1.322667pt;}
.ws42{word-spacing:1.333333pt;}
.wsc8{word-spacing:1.493333pt;}
.wsa4{word-spacing:1.546667pt;}
.wsca{word-spacing:1.578667pt;}
.wsb1{word-spacing:1.600000pt;}
.ws57{word-spacing:1.653333pt;}
.ws89{word-spacing:1.706667pt;}
.ws90{word-spacing:1.760000pt;}
.wsb6{word-spacing:1.813333pt;}
.ws53{word-spacing:1.866667pt;}
.ws1f{word-spacing:1.920000pt;}
.wsc9{word-spacing:1.962667pt;}
.ws46{word-spacing:1.973333pt;}
.ws7f{word-spacing:2.080000pt;}
.ws7c{word-spacing:2.133333pt;}
.ws12{word-spacing:2.186667pt;}
.ws3f{word-spacing:2.240000pt;}
.ws8e{word-spacing:2.293333pt;}
.ws5d{word-spacing:2.400000pt;}
.ws20{word-spacing:2.453333pt;}
.ws14{word-spacing:2.506667pt;}
.ws15{word-spacing:2.517333pt;}
.ws82{word-spacing:2.560000pt;}
.ws65{word-spacing:2.613333pt;}
.ws35{word-spacing:2.666667pt;}
.ws4a{word-spacing:2.720000pt;}
.ws3e{word-spacing:2.773333pt;}
.ws1b{word-spacing:2.826667pt;}
.ws7e{word-spacing:2.880000pt;}
.ws88{word-spacing:2.933333pt;}
.ws8d{word-spacing:2.986667pt;}
.ws60{word-spacing:3.040000pt;}
.wscb{word-spacing:3.072000pt;}
.ws91{word-spacing:3.093333pt;}
.ws1d{word-spacing:3.146667pt;}
.wsb2{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.253333pt;}
.wsa5{word-spacing:3.306667pt;}
.ws52{word-spacing:3.360000pt;}
.ws37{word-spacing:3.413333pt;}
.wsc3{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.520000pt;}
.ws69{word-spacing:3.573333pt;}
.ws48{word-spacing:3.626667pt;}
.ws79{word-spacing:3.680000pt;}
.ws8c{word-spacing:3.733333pt;}
.ws98{word-spacing:3.786667pt;}
.ws4e{word-spacing:3.840000pt;}
.ws71{word-spacing:3.893333pt;}
.wscd{word-spacing:3.925333pt;}
.ws10{word-spacing:4.000000pt;}
.ws7a{word-spacing:4.053333pt;}
.ws33{word-spacing:4.106667pt;}
.ws4f{word-spacing:4.160000pt;}
.wsae{word-spacing:4.213333pt;}
.wsd{word-spacing:4.266667pt;}
.wsa{word-spacing:4.320000pt;}
.ws1a{word-spacing:4.373333pt;}
.wse{word-spacing:4.533333pt;}
.ws93{word-spacing:4.586667pt;}
.wsa9{word-spacing:4.640000pt;}
.ws7b{word-spacing:4.693333pt;}
.ws5a{word-spacing:4.746667pt;}
.ws86{word-spacing:4.800000pt;}
.ws66{word-spacing:4.853333pt;}
.wsb5{word-spacing:4.906667pt;}
.wsf{word-spacing:4.960000pt;}
.wsaa{word-spacing:5.013333pt;}
.wsbb{word-spacing:5.066667pt;}
.ws77{word-spacing:5.120000pt;}
.ws43{word-spacing:5.226667pt;}
.ws36{word-spacing:5.280000pt;}
.wsb{word-spacing:5.333333pt;}
.wsaf{word-spacing:5.386667pt;}
.ws78{word-spacing:5.440000pt;}
.ws80{word-spacing:5.493333pt;}
.ws83{word-spacing:5.546667pt;}
.wsd0{word-spacing:5.632000pt;}
.ws59{word-spacing:5.653333pt;}
.wsc6{word-spacing:5.760000pt;}
.ws16{word-spacing:5.813333pt;}
.ws13{word-spacing:5.866667pt;}
.wscc{word-spacing:5.888000pt;}
.ws67{word-spacing:5.920000pt;}
.ws84{word-spacing:5.973333pt;}
.ws17{word-spacing:6.026667pt;}
.ws74{word-spacing:6.080000pt;}
.ws63{word-spacing:6.133333pt;}
.wsbf{word-spacing:6.186667pt;}
.ws62{word-spacing:6.293333pt;}
.ws75{word-spacing:6.400000pt;}
.ws9{word-spacing:6.453333pt;}
.ws23{word-spacing:6.506667pt;}
.wsc0{word-spacing:6.613333pt;}
.ws2f{word-spacing:6.666667pt;}
.wsc2{word-spacing:6.720000pt;}
.ws64{word-spacing:6.986667pt;}
.ws2d{word-spacing:7.093333pt;}
.ws92{word-spacing:7.200000pt;}
.ws21{word-spacing:7.253333pt;}
.ws85{word-spacing:7.360000pt;}
.ws54{word-spacing:7.413333pt;}
.ws61{word-spacing:7.520000pt;}
.wsb4{word-spacing:7.786667pt;}
.ws5e{word-spacing:8.000000pt;}
.ws8{word-spacing:8.160000pt;}
.ws4d{word-spacing:8.426667pt;}
.wsab{word-spacing:8.693333pt;}
.ws22{word-spacing:8.906667pt;}
.ws73{word-spacing:9.013333pt;}
.wsc{word-spacing:9.120000pt;}
.wsb3{word-spacing:9.440000pt;}
.wsbd{word-spacing:10.560000pt;}
.wsc7{word-spacing:10.666667pt;}
.wsa8{word-spacing:16.426667pt;}
.ws7d{word-spacing:16.586667pt;}
.ws11{word-spacing:17.482667pt;}
.ws9d{word-spacing:53.529592pt;}
.wsa2{word-spacing:58.265592pt;}
.wsa0{word-spacing:70.126925pt;}
.ws99{word-spacing:86.467199pt;}
.ws9b{word-spacing:91.460259pt;}
.ws95{word-spacing:94.840064pt;}
.ws9a{word-spacing:112.793592pt;}
.ws9c{word-spacing:148.077866pt;}
.ws9e{word-spacing:149.909326pt;}
.wsa1{word-spacing:165.438932pt;}
.ws94{word-spacing:176.793592pt;}
.ws9f{word-spacing:186.008532pt;}
._1f{margin-left:-58.979187pt;}
._1e{margin-left:-10.666667pt;}
._13{margin-left:-7.581897pt;}
._12{margin-left:-6.373333pt;}
._10{margin-left:-5.034675pt;}
._2{margin-left:-3.733333pt;}
._4{margin-left:-2.176000pt;}
._0{margin-left:-0.900267pt;}
._1{width:0.934400pt;}
._3{width:1.925333pt;}
._7{width:2.965333pt;}
._9{width:4.000000pt;}
._b{width:5.002667pt;}
._5{width:5.978667pt;}
._6{width:7.386667pt;}
._11{width:8.378666pt;}
._c{width:9.280000pt;}
._a{width:10.891707pt;}
._d{width:12.787754pt;}
._14{width:14.512000pt;}
._8{width:15.571736pt;}
._f{width:16.586667pt;}
._e{width:17.482667pt;}
._19{width:31.906730pt;}
._20{width:50.005325pt;}
._17{width:53.240064pt;}
._16{width:54.297592pt;}
._1b{width:64.196259pt;}
._1d{width:68.168525pt;}
._1a{width:74.573397pt;}
._18{width:123.460259pt;}
._1c{width:160.388259pt;}
._15{width:496.094335pt;}
.fs9{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:41.543200pt;}
.y74{bottom:41.574800pt;}
.y5{bottom:59.133337pt;}
.y76{bottom:80.001200pt;}
.y44{bottom:80.001333pt;}
.y73{bottom:80.377869pt;}
.y99{bottom:84.158666pt;}
.y4{bottom:86.333337pt;}
.y15d{bottom:86.982137pt;}
.y75{bottom:92.667867pt;}
.y72{bottom:96.377869pt;}
.y98{bottom:96.825338pt;}
.y15c{bottom:99.648804pt;}
.y123{bottom:99.711202pt;}
.y97{bottom:109.492004pt;}
.y15b{bottom:112.315470pt;}
.y71{bottom:112.377869pt;}
.y96{bottom:122.158671pt;}
.y22{bottom:123.790666pt;}
.y15a{bottom:124.982137pt;}
.y122{bottom:125.044535pt;}
.y70{bottom:128.377869pt;}
.y95{bottom:134.825338pt;}
.yee{bottom:136.091329pt;}
.y159{bottom:137.648804pt;}
.y121{bottom:137.711202pt;}
.y3d{bottom:140.598399pt;}
.y6f{bottom:144.377869pt;}
.yed{bottom:148.757996pt;}
.y94{bottom:149.780263pt;}
.y158{bottom:150.315470pt;}
.y120{bottom:150.377869pt;}
.y3c{bottom:156.598399pt;}
.y6e{bottom:160.377869pt;}
.yec{bottom:161.424662pt;}
.y93{bottom:162.446930pt;}
.y157{bottom:162.982137pt;}
.y11f{bottom:163.044535pt;}
.y15f{bottom:163.315470pt;}
.y3b{bottom:172.598409pt;}
.yeb{bottom:174.091329pt;}
.y19{bottom:175.052000pt;}
.y92{bottom:175.113607pt;}
.y156{bottom:175.648804pt;}
.y11e{bottom:175.711202pt;}
.y15e{bottom:175.982137pt;}
.y6d{bottom:176.377869pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yea{bottom:186.757996pt;}
.y91{bottom:187.780273pt;}
.y155{bottom:188.315470pt;}
.y11d{bottom:188.377869pt;}
.y6c{bottom:192.377869pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y154{bottom:200.982137pt;}
.y11c{bottom:201.044535pt;}
.ye9{bottom:201.712931pt;}
.y90{bottom:202.735067pt;}
.y3a{bottom:204.598409pt;}
.y6b{bottom:208.377869pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y153{bottom:213.648804pt;}
.y11b{bottom:213.711202pt;}
.ye8{bottom:214.379598pt;}
.y8f{bottom:215.401733pt;}
.y6a{bottom:224.377869pt;}
.y152{bottom:226.315470pt;}
.y11a{bottom:226.377869pt;}
.ye7{bottom:227.046265pt;}
.y8e{bottom:228.068400pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y151{bottom:238.982137pt;}
.y119{bottom:239.044535pt;}
.ye6{bottom:239.712931pt;}
.y69{bottom:240.377869pt;}
.y8d{bottom:240.735067pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y150{bottom:251.648804pt;}
.y118{bottom:251.711202pt;}
.ye5{bottom:252.379598pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y8c{bottom:255.690002pt;}
.y68{bottom:256.377869pt;}
.y14f{bottom:264.315470pt;}
.y117{bottom:264.377869pt;}
.ye4{bottom:267.334391pt;}
.y39{bottom:267.847738pt;}
.y8b{bottom:268.356669pt;}
.yc2{bottom:271.910929pt;}
.y67{bottom:272.377869pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y14e{bottom:276.982137pt;}
.y116{bottom:277.044535pt;}
.ye3{bottom:280.001058pt;}
.y8a{bottom:281.023336pt;}
.y38{bottom:283.847738pt;}
.yc1{bottom:284.577596pt;}
.yfb{bottom:286.865743pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y66{bottom:288.377869pt;}
.y14d{bottom:289.648804pt;}
.y115{bottom:289.711202pt;}
.ye2{bottom:292.667725pt;}
.y89{bottom:295.978271pt;}
.yc0{bottom:297.244263pt;}
.yfa{bottom:299.532410pt;}
.y14c{bottom:302.315470pt;}
.y114{bottom:302.377869pt;}
.y65{bottom:304.377869pt;}
.ye1{bottom:307.622660pt;}
.y88{bottom:308.644938pt;}
.y10{bottom:309.452000pt;}
.y78{bottom:309.547872pt;}
.ybf{bottom:309.910929pt;}
.yf9{bottom:312.199076pt;}
.y79{bottom:313.388000pt;}
.y14b{bottom:314.982137pt;}
.y113{bottom:315.044535pt;}
.y37{bottom:315.847738pt;}
.ye0{bottom:320.289327pt;}
.y64{bottom:320.377869pt;}
.y87{bottom:321.311605pt;}
.ybe{bottom:324.865743pt;}
.y14a{bottom:327.648804pt;}
.y112{bottom:327.711202pt;}
.y36{bottom:331.847738pt;}
.ydf{bottom:332.955994pt;}
.y86{bottom:333.978271pt;}
.y63{bottom:336.377869pt;}
.ybd{bottom:337.532410pt;}
.y77{bottom:339.814657pt;}
.yf8{bottom:339.820658pt;}
.y149{bottom:340.315470pt;}
.y111{bottom:340.377869pt;}
.yf{bottom:343.809333pt;}
.y35{bottom:347.847738pt;}
.yde{bottom:347.910929pt;}
.y85{bottom:348.933065pt;}
.ybc{bottom:350.199056pt;}
.y62{bottom:352.377848pt;}
.yf7{bottom:352.487345pt;}
.y148{bottom:352.982137pt;}
.y110{bottom:353.044515pt;}
.ydd{bottom:360.577596pt;}
.y84{bottom:361.599731pt;}
.ye{bottom:362.706666pt;}
.y34{bottom:363.847738pt;}
.ybb{bottom:365.154012pt;}
.y147{bottom:365.648804pt;}
.y10f{bottom:365.711182pt;}
.y61{bottom:368.377848pt;}
.ydc{bottom:373.244263pt;}
.y83{bottom:374.266398pt;}
.yba{bottom:377.820679pt;}
.y146{bottom:378.315470pt;}
.y10e{bottom:378.377848pt;}
.y33{bottom:379.847738pt;}
.y60{bottom:384.377848pt;}
.y82{bottom:386.933065pt;}
.ydb{bottom:388.199056pt;}
.yb9{bottom:390.487345pt;}
.y145{bottom:390.982137pt;}
.y10d{bottom:391.044515pt;}
.yf6{bottom:392.775594pt;}
.y32{bottom:395.847738pt;}
.y5f{bottom:400.377848pt;}
.yda{bottom:400.865723pt;}
.y81{bottom:401.887980pt;}
.y144{bottom:403.648804pt;}
.y10c{bottom:403.711182pt;}
.yb8{bottom:405.442261pt;}
.y31{bottom:411.847738pt;}
.yd9{bottom:413.532389pt;}
.y80{bottom:414.554647pt;}
.y143{bottom:416.315470pt;}
.y5e{bottom:416.377848pt;}
.yb7{bottom:418.108927pt;}
.y7f{bottom:427.221313pt;}
.y7d{bottom:427.393188pt;}
.y30{bottom:427.847738pt;}
.yd8{bottom:428.487345pt;}
.y142{bottom:428.982137pt;}
.yb6{bottom:430.775594pt;}
.yd{bottom:430.990669pt;}
.y5d{bottom:432.377848pt;}
.y7e{bottom:439.887980pt;}
.y7c{bottom:440.059855pt;}
.yd7{bottom:441.154012pt;}
.yd5{bottom:441.325846pt;}
.y141{bottom:441.648804pt;}
.yb5{bottom:443.442261pt;}
.y2f{bottom:443.847738pt;}
.yf5{bottom:445.730550pt;}
.yc{bottom:446.990669pt;}
.y5c{bottom:448.377848pt;}
.yd6{bottom:453.820679pt;}
.yd4{bottom:453.992513pt;}
.y140{bottom:454.315470pt;}
.y7b{bottom:455.504272pt;}
.yb4{bottom:456.108927pt;}
.yf4{bottom:458.397217pt;}
.y2e{bottom:459.847738pt;}
.yb{bottom:462.990669pt;}
.y5b{bottom:464.377848pt;}
.y13f{bottom:466.982137pt;}
.y7a{bottom:468.170939pt;}
.yd3{bottom:468.775594pt;}
.yb3{bottom:471.063883pt;}
.y2d{bottom:475.847738pt;}
.ya{bottom:478.990666pt;}
.y13e{bottom:479.648804pt;}
.y5a{bottom:480.377848pt;}
.yd2{bottom:481.442261pt;}
.y9a{bottom:483.692790pt;}
.yb2{bottom:483.730550pt;}
.y2c{bottom:491.847738pt;}
.y13d{bottom:492.315470pt;}
.yd1{bottom:494.108927pt;}
.y10b{bottom:494.379191pt;}
.y9{bottom:494.990666pt;}
.y59{bottom:496.377848pt;}
.yb1{bottom:496.397217pt;}
.yf3{bottom:498.685343pt;}
.y13c{bottom:504.982137pt;}
.y10a{bottom:507.045858pt;}
.y2b{bottom:507.847738pt;}
.yb0{bottom:509.063883pt;}
.yf2{bottom:511.352010pt;}
.y58{bottom:512.377848pt;}
.y13b{bottom:517.648804pt;}
.y109{bottom:519.712524pt;}
.yd0{bottom:521.730550pt;}
.y2a{bottom:523.847738pt;}
.yaf{bottom:524.018677pt;}
.y57{bottom:528.377848pt;}
.y13a{bottom:530.315470pt;}
.y108{bottom:532.379191pt;}
.ycf{bottom:534.397217pt;}
.yae{bottom:536.685343pt;}
.yf1{bottom:538.973592pt;}
.y29{bottom:539.847738pt;}
.y139{bottom:542.982137pt;}
.y56{bottom:544.377848pt;}
.y107{bottom:545.045858pt;}
.yce{bottom:547.063883pt;}
.yad{bottom:549.352010pt;}
.yf0{bottom:551.640259pt;}
.y138{bottom:555.648804pt;}
.y28{bottom:555.847738pt;}
.y106{bottom:557.712524pt;}
.y55{bottom:560.377848pt;}
.ycd{bottom:562.018677pt;}
.yac{bottom:564.306925pt;}
.y137{bottom:568.315470pt;}
.y105{bottom:570.379191pt;}
.y27{bottom:571.847738pt;}
.y16a{bottom:572.481852pt;}
.y8{bottom:573.786667pt;}
.ycc{bottom:574.685343pt;}
.y54{bottom:576.377848pt;}
.yab{bottom:576.973592pt;}
.y136{bottom:580.982137pt;}
.y104{bottom:583.045858pt;}
.ycb{bottom:587.352010pt;}
.y26{bottom:587.847738pt;}
.y169{bottom:589.415202pt;}
.yaa{bottom:589.640259pt;}
.y53{bottom:592.377848pt;}
.y7{bottom:592.685334pt;}
.y135{bottom:593.648804pt;}
.y103{bottom:595.712524pt;}
.ya9{bottom:602.306925pt;}
.y168{bottom:604.481852pt;}
.yef{bottom:604.595052pt;}
.y134{bottom:606.315470pt;}
.y52{bottom:608.377848pt;}
.yca{bottom:614.973592pt;}
.ya8{bottom:617.261719pt;}
.y133{bottom:618.982137pt;}
.y167{bottom:621.415202pt;}
.y51{bottom:624.377848pt;}
.yc9{bottom:627.640259pt;}
.ya7{bottom:629.928385pt;}
.y132{bottom:631.648804pt;}
.y40{bottom:631.863485pt;}
.y102{bottom:637.044515pt;}
.yc8{bottom:640.306925pt;}
.y50{bottom:640.377848pt;}
.y166{bottom:640.748535pt;}
.ya6{bottom:642.595052pt;}
.y131{bottom:644.315470pt;}
.y3f{bottom:644.530151pt;}
.y6{bottom:645.598667pt;}
.y101{bottom:649.711182pt;}
.ya5{bottom:655.261719pt;}
.yc7{bottom:655.261882pt;}
.y4f{bottom:656.377848pt;}
.y130{bottom:656.982137pt;}
.y3e{bottom:657.196818pt;}
.y165{bottom:662.376953pt;}
.yc6{bottom:667.928548pt;}
.y3{bottom:668.977329pt;}
.y12f{bottom:669.648804pt;}
.ya4{bottom:670.216675pt;}
.y4e{bottom:672.377848pt;}
.y164{bottom:675.043620pt;}
.y100{bottom:678.377848pt;}
.yc5{bottom:680.595215pt;}
.y12e{bottom:682.315470pt;}
.ya3{bottom:682.883301pt;}
.y4d{bottom:688.377848pt;}
.yff{bottom:691.044515pt;}
.y163{bottom:694.376953pt;}
.y43{bottom:694.433105pt;}
.y12d{bottom:694.982096pt;}
.ya2{bottom:695.549967pt;}
.y4c{bottom:704.377848pt;}
.y162{bottom:707.043620pt;}
.y12c{bottom:707.648763pt;}
.ya1{bottom:708.216634pt;}
.yfe{bottom:719.711182pt;}
.y12b{bottom:720.315430pt;}
.y4b{bottom:720.377848pt;}
.ya0{bottom:723.171631pt;}
.y161{bottom:726.376953pt;}
.y42{bottom:732.165365pt;}
.y12a{bottom:732.982096pt;}
.y9f{bottom:735.838298pt;}
.y4a{bottom:736.377848pt;}
.y160{bottom:739.043620pt;}
.y129{bottom:745.648763pt;}
.yfd{bottom:748.377848pt;}
.y9e{bottom:748.504964pt;}
.y41{bottom:752.165365pt;}
.y49{bottom:752.377848pt;}
.y128{bottom:758.315430pt;}
.yfc{bottom:761.044515pt;}
.y9d{bottom:761.171631pt;}
.y48{bottom:768.377848pt;}
.y127{bottom:770.982096pt;}
.y9c{bottom:776.409831pt;}
.y2{bottom:781.661334pt;}
.y126{bottom:783.648763pt;}
.y47{bottom:784.377848pt;}
.y9b{bottom:789.076497pt;}
.y125{bottom:796.315430pt;}
.y23{bottom:799.716553pt;}
.y46{bottom:800.377848pt;}
.yc4{bottom:805.284098pt;}
.yc3{bottom:808.377848pt;}
.y124{bottom:808.982096pt;}
.y25{bottom:822.167969pt;}
.y24{bottom:834.834635pt;}
.y1{bottom:859.312000pt;}
.h1b{height:20.752083pt;}
.h7{height:28.560000pt;}
.h18{height:28.916667pt;}
.h12{height:29.645833pt;}
.h1a{height:30.833333pt;}
.h14{height:37.031250pt;}
.hd{height:37.057292pt;}
.hb{height:40.405333pt;}
.h6{height:40.800000pt;}
.h15{height:41.088000pt;}
.ha{height:41.472000pt;}
.h19{height:42.197333pt;}
.h3{height:42.840000pt;}
.h16{height:44.468750pt;}
.h2{height:48.960000pt;}
.he{height:51.360000pt;}
.h17{height:52.266667pt;}
.hc{height:52.746667pt;}
.h11{height:57.621333pt;}
.hf{height:58.021333pt;}
.h13{height:64.000000pt;}
.h10{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x5{left:71.917603pt;}
.xf{left:80.109599pt;}
.x9{left:83.149602pt;}
.x10{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:147.418935pt;}
.x4{left:180.874667pt;}
.xd{left:205.537333pt;}
.xe{left:379.331584pt;}
.x3{left:404.408000pt;}
.x8{left:451.093180pt;}
.xc{left:453.089600pt;}
.x7{left:463.255737pt;}
.xa{left:503.042684pt;}
}




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