
    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_8bd5861905b26bddf35344bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.745000;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_87ebb475aa09521aab958220.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.870000;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_849bcbd0b4926ebb992715a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_59d056e2cff39d3f89ad23a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_4e32bac389d23777f2ba4f82.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_597141e587ff309c29acea22.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_cb4216cfc585ed1b6453f32d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.688965;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_66992a3a3a34ee22b4067676.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.680176;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_a263efbb49180ed98dfaf9c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_fe5143d473e217fd225f3486.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_a263efbb49180ed98dfaf9c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;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_295e00f833b3096ea5e7a7d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693359;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_46860bda25dd8a52d586c7d3.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;}
.m3{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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:-13.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:16.800000px;}
.ls1d{letter-spacing:-3.240000px;}
.ls47{letter-spacing:-1.980000px;}
.ls2f{letter-spacing:-1.670400px;}
.ls43{letter-spacing:-1.620000px;}
.ls15{letter-spacing:-1.080000px;}
.ls30{letter-spacing:-1.030080px;}
.ls3a{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.900000px;}
.ls41{letter-spacing:-0.840000px;}
.ls3d{letter-spacing:-0.810000px;}
.ls44{letter-spacing:-0.780000px;}
.ls36{letter-spacing:-0.756000px;}
.ls2b{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.600000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.480000px;}
.ls35{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.384000px;}
.ls3e{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls3b{letter-spacing:-0.174000px;}
.lsb{letter-spacing:-0.162000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.120000px;}
.ls32{letter-spacing:-0.108000px;}
.ls31{letter-spacing:-0.104400px;}
.ls2d{letter-spacing:-0.096000px;}
.lse{letter-spacing:-0.060000px;}
.ls34{letter-spacing:-0.054000px;}
.ls2e{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.004800px;}
.ls8{letter-spacing:0.022200px;}
.ls3{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.060000px;}
.ls3c{letter-spacing:0.104400px;}
.ls7{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.162000px;}
.ls27{letter-spacing:0.174000px;}
.ls29{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.545400px;}
.ls22{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.630000px;}
.ls24{letter-spacing:0.660000px;}
.ls3f{letter-spacing:0.720000px;}
.ls45{letter-spacing:0.780000px;}
.ls40{letter-spacing:0.840000px;}
.ls39{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.900000px;}
.ls1{letter-spacing:0.918000px;}
.ls46{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.020000px;}
.ls42{letter-spacing:1.140000px;}
.ls38{letter-spacing:96.223200px;}
.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;}
}
.ws2{word-spacing:-54.918000px;}
.ws3{word-spacing:-54.540000px;}
.ws4c{word-spacing:-16.002000px;}
.ws4d{word-spacing:-15.840000px;}
.ws3f{word-spacing:-15.180000px;}
.ws44{word-spacing:-15.000000px;}
.ws49{word-spacing:-14.700000px;}
.ws10{word-spacing:-13.500000px;}
.wse{word-spacing:-12.144000px;}
.ws45{word-spacing:-12.000000px;}
.ws1d{word-spacing:-10.626000px;}
.wsf{word-spacing:-8.986560px;}
.ws40{word-spacing:-8.804400px;}
.ws11{word-spacing:-8.700000px;}
.ws36{word-spacing:-8.595600px;}
.ws3e{word-spacing:-8.526000px;}
.ws37{word-spacing:-7.830000px;}
.ws34{word-spacing:-7.029600px;}
.ws12{word-spacing:-6.960000px;}
.ws35{word-spacing:-5.929920px;}
.ws51{word-spacing:-3.000000px;}
.ws5e{word-spacing:-2.640000px;}
.ws47{word-spacing:-2.220000px;}
.ws4e{word-spacing:-1.560000px;}
.ws5c{word-spacing:-1.140000px;}
.ws2a{word-spacing:-1.020000px;}
.ws60{word-spacing:-0.960000px;}
.ws6{word-spacing:-0.918000px;}
.ws29{word-spacing:-0.900000px;}
.ws42{word-spacing:-0.864000px;}
.ws52{word-spacing:-0.840000px;}
.ws5b{word-spacing:-0.780000px;}
.ws4f{word-spacing:-0.720000px;}
.ws2d{word-spacing:-0.660000px;}
.ws5{word-spacing:-0.630000px;}
.ws2b{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.420000px;}
.ws22{word-spacing:-0.360000px;}
.ws28{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.162000px;}
.ws2e{word-spacing:-0.120000px;}
.wsc{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.090000px;}
.ws1f{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.ws33{word-spacing:0.048000px;}
.ws3a{word-spacing:0.054000px;}
.ws15{word-spacing:0.060000px;}
.ws43{word-spacing:0.090000px;}
.ws32{word-spacing:0.096000px;}
.ws38{word-spacing:0.108000px;}
.ws17{word-spacing:0.120000px;}
.ws26{word-spacing:0.144000px;}
.wsb{word-spacing:0.162000px;}
.ws16{word-spacing:0.180000px;}
.ws39{word-spacing:0.216000px;}
.ws19{word-spacing:0.240000px;}
.ws4b{word-spacing:0.270000px;}
.ws1b{word-spacing:0.288000px;}
.ws18{word-spacing:0.300000px;}
.ws3d{word-spacing:0.324000px;}
.ws14{word-spacing:0.360000px;}
.ws48{word-spacing:0.378000px;}
.ws27{word-spacing:0.384000px;}
.ws21{word-spacing:0.420000px;}
.ws3b{word-spacing:0.432000px;}
.ws1a{word-spacing:0.480000px;}
.ws24{word-spacing:0.540000px;}
.ws13{word-spacing:0.600000px;}
.ws4a{word-spacing:0.630000px;}
.ws1e{word-spacing:0.660000px;}
.ws1{word-spacing:0.663000px;}
.ws31{word-spacing:0.720000px;}
.ws3c{word-spacing:0.756000px;}
.ws59{word-spacing:0.780000px;}
.ws23{word-spacing:0.810000px;}
.ws57{word-spacing:0.840000px;}
.ws41{word-spacing:0.960000px;}
.ws1c{word-spacing:0.990000px;}
.ws5f{word-spacing:1.020000px;}
.ws58{word-spacing:1.530000px;}
.ws5d{word-spacing:1.890000px;}
.ws5a{word-spacing:2.880000px;}
.ws25{word-spacing:3.150000px;}
.ws56{word-spacing:3.540000px;}
.ws55{word-spacing:3.720000px;}
.ws62{word-spacing:4.320000px;}
.ws50{word-spacing:4.500000px;}
.ws54{word-spacing:4.920000px;}
.ws46{word-spacing:4.980000px;}
.ws61{word-spacing:6.300000px;}
.ws63{word-spacing:6.420000px;}
._e{margin-left:-11.397533px;}
._6{margin-left:-7.726200px;}
._4{margin-left:-6.184200px;}
._5{margin-left:-5.065800px;}
._c{margin-left:-3.675600px;}
._3{margin-left:-2.334600px;}
._0{margin-left:-1.050600px;}
._2{width:1.402800px;}
._a{width:2.494800px;}
._b{width:3.580200px;}
._9{width:4.617000px;}
._8{width:5.860200px;}
._7{width:7.542600px;}
._1{width:9.592800px;}
._13{width:53.361000px;}
._14{width:54.432000px;}
._10{width:58.086000px;}
._12{width:59.601600px;}
._f{width:62.622000px;}
._11{width:96.240000px;}
._d{width:110.159400px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.840000px;}
.fsc{font-size:31.320000px;}
.fsa{font-size:34.800000px;}
.fs9{font-size:35.520000px;}
.fs1{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:82.108800px;}
.y1b{bottom:125.675400px;}
.y42{bottom:125.675550px;}
.y74{bottom:125.709750px;}
.y70{bottom:126.193950px;}
.y1be{bottom:126.384150px;}
.y10b{bottom:127.659750px;}
.y19a{bottom:129.035400px;}
.y65{bottom:129.035550px;}
.y41{bottom:140.675550px;}
.y81{bottom:141.951300px;}
.yaa{bottom:144.035550px;}
.y82{bottom:145.311300px;}
.y205{bottom:145.419600px;}
.y229{bottom:145.434150px;}
.y10a{bottom:145.659750px;}
.y73{bottom:146.709750px;}
.y199{bottom:146.759700px;}
.y6f{bottom:147.194100px;}
.y1bd{bottom:147.384150px;}
.y1e0{bottom:148.860600px;}
.y80{bottom:156.651300px;}
.ya9{bottom:156.951300px;}
.y40{bottom:159.035550px;}
.y12f{bottom:160.311300px;}
.y1a{bottom:160.480800px;}
.yca{bottom:161.586900px;}
.y109{bottom:163.659750px;}
.y204{bottom:164.919600px;}
.y228{bottom:164.934150px;}
.y64{bottom:167.709750px;}
.y198{bottom:167.844000px;}
.y6e{bottom:167.894100px;}
.y1df{bottom:168.360600px;}
.y1bc{bottom:168.384150px;}
.ya8{bottom:171.951300px;}
.y12e{bottom:173.226900px;}
.y7f{bottom:174.711300px;}
.y14e{bottom:176.586900px;}
.yc9{bottom:177.862650px;}
.y19{bottom:178.480800px;}
.ya7{bottom:186.951300px;}
.y7e{bottom:187.327050px;}
.y6d{bottom:188.593950px;}
.y203{bottom:188.671500px;}
.y227{bottom:188.686200px;}
.y63{bottom:188.709750px;}
.y197{bottom:188.928150px;}
.y1bb{bottom:189.384150px;}
.y12d{bottom:191.586900px;}
.y1de{bottom:192.112500px;}
.y3f{bottom:193.245900px;}
.y170{bottom:195.609750px;}
.y18{bottom:196.480800px;}
.y176{bottom:198.609750px;}
.ya4{bottom:198.684150px;}
.y108{bottom:199.659750px;}
.ya6{bottom:201.951300px;}
.y7d{bottom:202.027050px;}
.y12c{bottom:204.502650px;}
.ye6{bottom:207.309750px;}
.y202{bottom:208.171500px;}
.y226{bottom:208.186200px;}
.y6c{bottom:209.294100px;}
.y62{bottom:209.709750px;}
.y196{bottom:210.012600px;}
.y1ba{bottom:210.384150px;}
.y1dd{bottom:211.612500px;}
.y3e{bottom:214.245900px;}
.y17{bottom:214.480800px;}
.y16f{bottom:216.609750px;}
.y7c{bottom:216.727050px;}
.yc8{bottom:218.109750px;}
.ya3{bottom:219.384150px;}
.y12b{bottom:219.502650px;}
.y14d{bottom:219.609750px;}
.ya5{bottom:220.311300px;}
.y107{bottom:220.509750px;}
.ye5{bottom:227.709750px;}
.y6b{bottom:229.993950px;}
.y61{bottom:230.709750px;}
.y195{bottom:231.096750px;}
.y1dc{bottom:231.112500px;}
.y1b9{bottom:231.384150px;}
.y7b{bottom:231.427050px;}
.y201{bottom:231.923550px;}
.y225{bottom:231.938100px;}
.y16{bottom:232.480800px;}
.y3d{bottom:235.245900px;}
.y16e{bottom:237.609750px;}
.y12a{bottom:237.862650px;}
.yc7{bottom:238.809750px;}
.y14c{bottom:239.709750px;}
.ya2{bottom:240.084150px;}
.y175{bottom:240.309750px;}
.y106{bottom:241.359750px;}
.y7a{bottom:246.127050px;}
.ye4{bottom:248.709750px;}
.y15{bottom:250.480800px;}
.y200{bottom:251.423550px;}
.y224{bottom:251.438100px;}
.y60{bottom:251.709750px;}
.y194{bottom:252.181050px;}
.y1b8{bottom:252.384150px;}
.y1db{bottom:254.864550px;}
.y3c{bottom:256.245900px;}
.y16d{bottom:258.609750px;}
.yc6{bottom:259.509750px;}
.ya1{bottom:260.784150px;}
.y79{bottom:260.827050px;}
.y174{bottom:261.009750px;}
.y105{bottom:262.209750px;}
.y6a{bottom:267.701850px;}
.y14{bottom:268.480800px;}
.ye3{bottom:269.709750px;}
.y129{bottom:270.749850px;}
.y5f{bottom:272.709750px;}
.y193{bottom:273.265350px;}
.y1b7{bottom:273.384150px;}
.y1da{bottom:274.364550px;}
.y1ff{bottom:275.175450px;}
.y223{bottom:275.190150px;}
.y78{bottom:275.527050px;}
.y3b{bottom:277.245900px;}
.y14b{bottom:277.809750px;}
.y16c{bottom:279.609750px;}
.yc5{bottom:280.209750px;}
.ya0{bottom:281.484150px;}
.y173{bottom:281.709750px;}
.y104{bottom:283.059750px;}
.y69{bottom:285.701850px;}
.y13{bottom:286.480800px;}
.y77{bottom:290.227050px;}
.ye2{bottom:290.709750px;}
.y128{bottom:291.449850px;}
.y5e{bottom:293.709750px;}
.y192{bottom:294.349650px;}
.y1b6{bottom:294.384150px;}
.y1fe{bottom:294.675450px;}
.y222{bottom:294.690150px;}
.y1d9{bottom:298.116450px;}
.y3a{bottom:298.245900px;}
.y16b{bottom:299.709750px;}
.yc4{bottom:300.909750px;}
.y9f{bottom:302.184150px;}
.y172{bottom:302.409750px;}
.y68{bottom:303.701850px;}
.y103{bottom:303.909750px;}
.y76{bottom:304.927050px;}
.ye1{bottom:311.709750px;}
.y127{bottom:312.149850px;}
.y1fd{bottom:314.175450px;}
.y221{bottom:314.190150px;}
.y72{bottom:314.709750px;}
.y1b5{bottom:315.384150px;}
.y191{bottom:315.433950px;}
.y1d8{bottom:317.616450px;}
.y39{bottom:319.245900px;}
.y16a{bottom:319.809750px;}
.yc3{bottom:321.609750px;}
.y67{bottom:321.701850px;}
.y14a{bottom:322.809750px;}
.y9e{bottom:322.884150px;}
.y75{bottom:322.987050px;}
.y171{bottom:323.109750px;}
.y102{bottom:324.759750px;}
.y12{bottom:330.984750px;}
.y5d{bottom:332.709750px;}
.y126{bottom:332.849850px;}
.y220{bottom:333.690150px;}
.y71{bottom:335.709750px;}
.y1b4{bottom:336.384150px;}
.y190{bottom:336.518250px;}
.y1fc{bottom:337.927350px;}
.y169{bottom:339.909750px;}
.y38{bottom:340.245900px;}
.y1d7{bottom:341.368350px;}
.yc2{bottom:342.309750px;}
.y9d{bottom:343.584150px;}
.y149{bottom:343.809750px;}
.y101{bottom:345.609750px;}
.y11{bottom:353.236650px;}
.y125{bottom:353.549850px;}
.ye0{bottom:353.709750px;}
.y66{bottom:356.709750px;}
.y1b3{bottom:357.384150px;}
.y1fb{bottom:357.427350px;}
.y21f{bottom:357.442050px;}
.y18f{bottom:357.602550px;}
.y168{bottom:360.009750px;}
.y1d6{bottom:360.868350px;}
.y37{bottom:361.245900px;}
.yc1{bottom:363.009750px;}
.y9c{bottom:364.284150px;}
.y148{bottom:364.509750px;}
.y100{bottom:366.459750px;}
.y10{bottom:371.236650px;}
.y124{bottom:374.249850px;}
.ydf{bottom:374.709750px;}
.y1fa{bottom:376.927350px;}
.y21e{bottom:376.942050px;}
.y5c{bottom:377.709750px;}
.y1b2{bottom:378.384150px;}
.y18e{bottom:378.686850px;}
.y167{bottom:380.109750px;}
.y1d5{bottom:380.368350px;}
.y36{bottom:382.245900px;}
.yc0{bottom:383.709750px;}
.y9b{bottom:384.984150px;}
.y147{bottom:385.209750px;}
.yff{bottom:387.309750px;}
.yf{bottom:389.236650px;}
.y123{bottom:394.949850px;}
.yde{bottom:395.709750px;}
.y5b{bottom:398.709750px;}
.y1b1{bottom:399.384150px;}
.y18d{bottom:399.771150px;}
.y166{bottom:400.209750px;}
.y1f9{bottom:400.679400px;}
.y21d{bottom:400.694100px;}
.y35{bottom:403.245900px;}
.y1d4{bottom:404.120400px;}
.ybf{bottom:404.409750px;}
.y9a{bottom:405.684150px;}
.y146{bottom:405.909750px;}
.ye{bottom:407.236650px;}
.yfe{bottom:408.159750px;}
.y122{bottom:415.649850px;}
.ydd{bottom:416.709750px;}
.y5a{bottom:419.709750px;}
.y1f8{bottom:420.179400px;}
.y21c{bottom:420.194100px;}
.y165{bottom:420.309750px;}
.y1b0{bottom:420.384150px;}
.y18c{bottom:420.855450px;}
.y1d3{bottom:423.620400px;}
.y34{bottom:424.245900px;}
.ybe{bottom:425.109750px;}
.yd{bottom:425.236650px;}
.y99{bottom:426.384150px;}
.y145{bottom:426.609750px;}
.yfd{bottom:429.009750px;}
.y121{bottom:436.349850px;}
.ydc{bottom:437.709750px;}
.y1f7{bottom:439.679400px;}
.y21b{bottom:439.694100px;}
.y164{bottom:440.409750px;}
.y59{bottom:440.709750px;}
.y1af{bottom:441.384150px;}
.y18b{bottom:441.939750px;}
.yc{bottom:443.236650px;}
.y33{bottom:445.245900px;}
.ybd{bottom:445.809750px;}
.y98{bottom:447.084150px;}
.y144{bottom:447.309750px;}
.y1d2{bottom:447.372450px;}
.yfc{bottom:449.859750px;}
.y120{bottom:457.049850px;}
.ydb{bottom:458.709750px;}
.y1f6{bottom:459.179400px;}
.y21a{bottom:459.194100px;}
.y163{bottom:460.509750px;}
.yb{bottom:461.236650px;}
.y58{bottom:461.709750px;}
.y1ae{bottom:462.384150px;}
.y18a{bottom:463.023900px;}
.y32{bottom:466.245900px;}
.ybc{bottom:466.509750px;}
.y1d1{bottom:466.872450px;}
.y97{bottom:467.784150px;}
.y143{bottom:468.009750px;}
.yfb{bottom:470.709750px;}
.y11f{bottom:477.749850px;}
.ya{bottom:479.236650px;}
.yda{bottom:479.709750px;}
.y162{bottom:480.609750px;}
.y57{bottom:482.709750px;}
.y1f5{bottom:482.931300px;}
.y219{bottom:482.946000px;}
.y1ad{bottom:483.384150px;}
.y189{bottom:484.108350px;}
.ybb{bottom:487.209750px;}
.y31{bottom:487.245900px;}
.y96{bottom:488.484150px;}
.y142{bottom:488.709750px;}
.y1d0{bottom:490.624350px;}
.yfa{bottom:491.559750px;}
.y9{bottom:497.236650px;}
.y11e{bottom:498.449850px;}
.yd9{bottom:500.709750px;}
.y1f4{bottom:502.431300px;}
.y218{bottom:502.446000px;}
.y56{bottom:503.709750px;}
.y1ac{bottom:504.384150px;}
.y188{bottom:505.192500px;}
.yba{bottom:507.909750px;}
.y30{bottom:508.245900px;}
.y95{bottom:509.184150px;}
.y141{bottom:509.409750px;}
.y1cf{bottom:510.124350px;}
.yf9{bottom:512.409750px;}
.y8{bottom:515.236650px;}
.y11d{bottom:519.149850px;}
.y161{bottom:520.809750px;}
.yd8{bottom:521.709750px;}
.y1f3{bottom:521.931300px;}
.y55{bottom:524.709750px;}
.y1ab{bottom:525.384150px;}
.y217{bottom:526.197900px;}
.y187{bottom:526.276800px;}
.yb9{bottom:528.609750px;}
.y2f{bottom:529.245900px;}
.y1ce{bottom:529.624350px;}
.y94{bottom:529.884150px;}
.y140{bottom:530.109750px;}
.y7{bottom:533.236650px;}
.yf8{bottom:533.259750px;}
.y11c{bottom:539.849850px;}
.y160{bottom:540.909750px;}
.y1f2{bottom:541.431300px;}
.yd7{bottom:542.709750px;}
.y216{bottom:545.697900px;}
.y54{bottom:545.709750px;}
.y1aa{bottom:546.384150px;}
.y186{bottom:547.361100px;}
.y1cd{bottom:549.124350px;}
.yb8{bottom:549.309750px;}
.y2e{bottom:550.245900px;}
.y93{bottom:550.584150px;}
.y13f{bottom:550.809750px;}
.yf7{bottom:554.109750px;}
.y11b{bottom:560.549850px;}
.y15f{bottom:561.009750px;}
.yd6{bottom:563.709750px;}
.y1f1{bottom:565.183350px;}
.y215{bottom:565.197900px;}
.y53{bottom:566.709750px;}
.y1a9{bottom:567.384150px;}
.y185{bottom:568.445400px;}
.y1cc{bottom:568.624350px;}
.yb7{bottom:570.009750px;}
.y2d{bottom:571.245900px;}
.y92{bottom:571.284150px;}
.y13e{bottom:571.509750px;}
.yf6{bottom:574.959750px;}
.y15e{bottom:581.109750px;}
.y11a{bottom:581.249850px;}
.y1f0{bottom:584.683350px;}
.yd5{bottom:584.709750px;}
.y52{bottom:587.709750px;}
.y1cb{bottom:588.124350px;}
.y1a8{bottom:588.384150px;}
.y214{bottom:588.949950px;}
.y184{bottom:589.529700px;}
.yb6{bottom:590.709750px;}
.y91{bottom:591.984150px;}
.y13d{bottom:592.209750px;}
.y2c{bottom:592.245900px;}
.yf5{bottom:595.809750px;}
.y15d{bottom:601.209750px;}
.y119{bottom:601.949850px;}
.y1ef{bottom:604.183350px;}
.y213{bottom:608.449950px;}
.y51{bottom:608.709750px;}
.y1a7{bottom:609.384150px;}
.y183{bottom:610.614000px;}
.yb5{bottom:611.409750px;}
.y1ca{bottom:611.876250px;}
.y90{bottom:612.684150px;}
.y13c{bottom:612.909750px;}
.y2b{bottom:613.245900px;}
.yf4{bottom:616.659750px;}
.y15c{bottom:621.309750px;}
.y118{bottom:622.649850px;}
.yd4{bottom:623.709750px;}
.y1ee{bottom:627.935250px;}
.y212{bottom:627.949950px;}
.y50{bottom:629.709750px;}
.y1a6{bottom:630.384150px;}
.y1c9{bottom:631.376250px;}
.yb4{bottom:632.109750px;}
.y8f{bottom:633.384150px;}
.y13b{bottom:633.609750px;}
.y2a{bottom:634.245900px;}
.y6{bottom:635.236650px;}
.yf3{bottom:637.509750px;}
.y15b{bottom:641.409750px;}
.yd3{bottom:641.709750px;}
.y117{bottom:643.349850px;}
.y1ed{bottom:647.435250px;}
.y182{bottom:649.698300px;}
.y4f{bottom:650.709750px;}
.y1c8{bottom:650.876250px;}
.y1a5{bottom:651.384150px;}
.y211{bottom:651.702000px;}
.yb3{bottom:652.809750px;}
.y8e{bottom:654.084150px;}
.y13a{bottom:654.309750px;}
.y29{bottom:655.245900px;}
.y5{bottom:656.236650px;}
.yf2{bottom:657.909750px;}
.yd2{bottom:659.709750px;}
.y15a{bottom:661.509750px;}
.y116{bottom:664.049850px;}
.y1ec{bottom:666.935250px;}
.y181{bottom:667.782600px;}
.y1c7{bottom:670.376250px;}
.y210{bottom:671.202000px;}
.y4e{bottom:671.709750px;}
.y1a4{bottom:672.384150px;}
.yb2{bottom:673.509750px;}
.y8d{bottom:674.784150px;}
.y139{bottom:675.009750px;}
.y28{bottom:676.245900px;}
.yd1{bottom:677.709750px;}
.yf1{bottom:678.309750px;}
.y159{bottom:681.609750px;}
.y115{bottom:684.749850px;}
.y180{bottom:685.866900px;}
.y1eb{bottom:686.435250px;}
.y4d{bottom:692.709750px;}
.y1a3{bottom:693.384150px;}
.y1c6{bottom:694.128300px;}
.yb1{bottom:694.209750px;}
.y20f{bottom:694.953900px;}
.y8c{bottom:695.484150px;}
.yd0{bottom:695.709750px;}
.y27{bottom:697.245900px;}
.yf0{bottom:698.709750px;}
.y4{bottom:701.236650px;}
.y158{bottom:701.709750px;}
.y17f{bottom:703.951200px;}
.y114{bottom:705.449850px;}
.y1ea{bottom:710.187300px;}
.y1c5{bottom:713.628300px;}
.y4c{bottom:713.709750px;}
.y1a2{bottom:714.384150px;}
.y20e{bottom:714.453900px;}
.yb0{bottom:714.909750px;}
.y8b{bottom:716.184150px;}
.y138{bottom:716.409750px;}
.y26{bottom:718.245900px;}
.yef{bottom:719.109750px;}
.y157{bottom:721.809750px;}
.y17e{bottom:722.035500px;}
.y3{bottom:725.236650px;}
.y113{bottom:726.149850px;}
.y1e9{bottom:729.687300px;}
.ycf{bottom:731.709750px;}
.y1c4{bottom:733.128300px;}
.y4b{bottom:734.709750px;}
.y1a1{bottom:735.384150px;}
.yaf{bottom:735.609750px;}
.y8a{bottom:736.884150px;}
.y137{bottom:737.109750px;}
.y20d{bottom:738.205800px;}
.y25{bottom:739.245900px;}
.yee{bottom:739.509750px;}
.y17d{bottom:740.119800px;}
.y156{bottom:741.909750px;}
.y112{bottom:746.849850px;}
.y2{bottom:749.236650px;}
.yce{bottom:749.709750px;}
.y1e8{bottom:753.439200px;}
.y4a{bottom:755.709750px;}
.yae{bottom:756.309750px;}
.y1a0{bottom:756.384150px;}
.y1c3{bottom:756.880350px;}
.y89{bottom:757.584150px;}
.y20c{bottom:757.705800px;}
.y136{bottom:757.809750px;}
.yed{bottom:759.909750px;}
.y24{bottom:760.245900px;}
.y155{bottom:762.009750px;}
.y111{bottom:767.549850px;}
.ycd{bottom:767.709750px;}
.y1e7{bottom:772.939200px;}
.y17c{bottom:776.204100px;}
.y1c2{bottom:776.380350px;}
.y49{bottom:776.709750px;}
.yad{bottom:777.009750px;}
.y20b{bottom:777.205800px;}
.y19f{bottom:777.384150px;}
.y88{bottom:778.284150px;}
.y135{bottom:778.509750px;}
.yec{bottom:780.309750px;}
.y23{bottom:781.245900px;}
.y154{bottom:782.109750px;}
.ycc{bottom:785.709750px;}
.y110{bottom:788.249850px;}
.y1c1{bottom:795.880350px;}
.y1e6{bottom:796.691100px;}
.y17b{bottom:797.288400px;}
.y48{bottom:797.709750px;}
.y19e{bottom:798.384150px;}
.y87{bottom:798.984150px;}
.y134{bottom:799.209750px;}
.yeb{bottom:800.709750px;}
.y20a{bottom:800.957850px;}
.y153{bottom:802.209750px;}
.y22{bottom:802.245900px;}
.ycb{bottom:803.709750px;}
.y10f{bottom:808.949850px;}
.yac{bottom:815.709750px;}
.y1e5{bottom:816.191100px;}
.y17a{bottom:818.372550px;}
.y47{bottom:818.709750px;}
.y19d{bottom:819.384150px;}
.y1c0{bottom:819.632250px;}
.y86{bottom:819.684150px;}
.y133{bottom:819.909750px;}
.y209{bottom:820.457850px;}
.yea{bottom:821.109750px;}
.y152{bottom:822.309750px;}
.y10e{bottom:829.649850px;}
.yab{bottom:836.709750px;}
.y1bf{bottom:839.132250px;}
.y179{bottom:839.456850px;}
.y46{bottom:839.709750px;}
.y1e4{bottom:839.943150px;}
.y208{bottom:839.957850px;}
.y19c{bottom:840.384150px;}
.y132{bottom:840.609750px;}
.ye9{bottom:841.509750px;}
.y151{bottom:842.409750px;}
.y85{bottom:858.384150px;}
.y1e3{bottom:859.443150px;}
.y178{bottom:860.541300px;}
.y45{bottom:860.709750px;}
.y131{bottom:861.309750px;}
.y19b{bottom:861.384150px;}
.ye8{bottom:861.909750px;}
.y150{bottom:862.509750px;}
.y21{bottom:863.497800px;}
.y207{bottom:863.709750px;}
.y10d{bottom:868.349850px;}
.y84{bottom:879.384150px;}
.y177{bottom:881.625450px;}
.y44{bottom:881.709750px;}
.y130{bottom:882.009750px;}
.ye7{bottom:882.309750px;}
.y14f{bottom:882.609750px;}
.y1e2{bottom:883.195200px;}
.y206{bottom:883.209750px;}
.y20{bottom:885.749850px;}
.y10c{bottom:886.049850px;}
.y83{bottom:900.384150px;}
.y1e1{bottom:902.695200px;}
.y43{bottom:902.709750px;}
.y1f{bottom:903.749850px;}
.y1e{bottom:943.809900px;}
.y1c{bottom:947.529900px;}
.y1d{bottom:958.809900px;}
.hc{height:28.677187px;}
.h10{height:28.794375px;}
.h2{height:31.920000px;}
.he{height:36.480000px;}
.h8{height:39.484863px;}
.h11{height:40.664062px;}
.h12{height:41.660156px;}
.hd{height:42.117188px;}
.ha{height:44.736000px;}
.h6{height:47.381836px;}
.h7{height:47.513672px;}
.hb{height:52.646484px;}
.h5{height:52.792969px;}
.h4{height:55.278809px;}
.hf{height:57.960000px;}
.h9{height:65.970000px;}
.h3{height:77.280000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x7{left:68.031450px;}
.x8{left:75.499950px;}
.xb{left:97.795200px;}
.xf{left:102.047250px;}
.x9{left:123.307050px;}
.x3{left:125.365050px;}
.x1{left:127.908300px;}
.x10{left:131.811000px;}
.x11{left:136.063050px;}
.x4{left:157.204950px;}
.x2{left:180.545400px;}
.x6{left:220.414500px;}
.x12{left:240.122400px;}
.x5{left:241.659750px;}
.xd{left:276.300900px;}
.xe{left:314.452500px;}
.xc{left:543.629700px;}
@media print{
.v2{vertical-align:-11.946667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:14.933333pt;}
.ls1d{letter-spacing:-2.880000pt;}
.ls47{letter-spacing:-1.760000pt;}
.ls2f{letter-spacing:-1.484800pt;}
.ls43{letter-spacing:-1.440000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls30{letter-spacing:-0.915627pt;}
.ls3a{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.800000pt;}
.ls41{letter-spacing:-0.746667pt;}
.ls3d{letter-spacing:-0.720000pt;}
.ls44{letter-spacing:-0.693333pt;}
.ls36{letter-spacing:-0.672000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls35{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.341333pt;}
.ls3e{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls3b{letter-spacing:-0.154667pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls31{letter-spacing:-0.092800pt;}
.ls2d{letter-spacing:-0.085333pt;}
.lse{letter-spacing:-0.053333pt;}
.ls34{letter-spacing:-0.048000pt;}
.ls2e{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.004267pt;}
.ls8{letter-spacing:0.019733pt;}
.ls3{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.053333pt;}
.ls3c{letter-spacing:0.092800pt;}
.ls7{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.144000pt;}
.ls27{letter-spacing:0.154667pt;}
.ls29{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.484800pt;}
.ls22{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.560000pt;}
.ls24{letter-spacing:0.586667pt;}
.ls3f{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.693333pt;}
.ls40{letter-spacing:0.746667pt;}
.ls39{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls1{letter-spacing:0.816000pt;}
.ls46{letter-spacing:0.853333pt;}
.ls21{letter-spacing:0.906667pt;}
.ls42{letter-spacing:1.013333pt;}
.ls38{letter-spacing:85.531733pt;}
.ws2{word-spacing:-48.816000pt;}
.ws3{word-spacing:-48.480000pt;}
.ws4c{word-spacing:-14.224000pt;}
.ws4d{word-spacing:-14.080000pt;}
.ws3f{word-spacing:-13.493333pt;}
.ws44{word-spacing:-13.333333pt;}
.ws49{word-spacing:-13.066667pt;}
.ws10{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.794667pt;}
.ws45{word-spacing:-10.666667pt;}
.ws1d{word-spacing:-9.445333pt;}
.wsf{word-spacing:-7.988053pt;}
.ws40{word-spacing:-7.826133pt;}
.ws11{word-spacing:-7.733333pt;}
.ws36{word-spacing:-7.640533pt;}
.ws3e{word-spacing:-7.578667pt;}
.ws37{word-spacing:-6.960000pt;}
.ws34{word-spacing:-6.248533pt;}
.ws12{word-spacing:-6.186667pt;}
.ws35{word-spacing:-5.271040pt;}
.ws51{word-spacing:-2.666667pt;}
.ws5e{word-spacing:-2.346667pt;}
.ws47{word-spacing:-1.973333pt;}
.ws4e{word-spacing:-1.386667pt;}
.ws5c{word-spacing:-1.013333pt;}
.ws2a{word-spacing:-0.906667pt;}
.ws60{word-spacing:-0.853333pt;}
.ws6{word-spacing:-0.816000pt;}
.ws29{word-spacing:-0.800000pt;}
.ws42{word-spacing:-0.768000pt;}
.ws52{word-spacing:-0.746667pt;}
.ws5b{word-spacing:-0.693333pt;}
.ws4f{word-spacing:-0.640000pt;}
.ws2d{word-spacing:-0.586667pt;}
.ws5{word-spacing:-0.560000pt;}
.ws2b{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws22{word-spacing:-0.320000pt;}
.ws28{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.144000pt;}
.ws2e{word-spacing:-0.106667pt;}
.wsc{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.080000pt;}
.ws1f{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.ws33{word-spacing:0.042667pt;}
.ws3a{word-spacing:0.048000pt;}
.ws15{word-spacing:0.053333pt;}
.ws43{word-spacing:0.080000pt;}
.ws32{word-spacing:0.085333pt;}
.ws38{word-spacing:0.096000pt;}
.ws17{word-spacing:0.106667pt;}
.ws26{word-spacing:0.128000pt;}
.wsb{word-spacing:0.144000pt;}
.ws16{word-spacing:0.160000pt;}
.ws39{word-spacing:0.192000pt;}
.ws19{word-spacing:0.213333pt;}
.ws4b{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.256000pt;}
.ws18{word-spacing:0.266667pt;}
.ws3d{word-spacing:0.288000pt;}
.ws14{word-spacing:0.320000pt;}
.ws48{word-spacing:0.336000pt;}
.ws27{word-spacing:0.341333pt;}
.ws21{word-spacing:0.373333pt;}
.ws3b{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.426667pt;}
.ws24{word-spacing:0.480000pt;}
.ws13{word-spacing:0.533333pt;}
.ws4a{word-spacing:0.560000pt;}
.ws1e{word-spacing:0.586667pt;}
.ws1{word-spacing:0.589333pt;}
.ws31{word-spacing:0.640000pt;}
.ws3c{word-spacing:0.672000pt;}
.ws59{word-spacing:0.693333pt;}
.ws23{word-spacing:0.720000pt;}
.ws57{word-spacing:0.746667pt;}
.ws41{word-spacing:0.853333pt;}
.ws1c{word-spacing:0.880000pt;}
.ws5f{word-spacing:0.906667pt;}
.ws58{word-spacing:1.360000pt;}
.ws5d{word-spacing:1.680000pt;}
.ws5a{word-spacing:2.560000pt;}
.ws25{word-spacing:2.800000pt;}
.ws56{word-spacing:3.146667pt;}
.ws55{word-spacing:3.306667pt;}
.ws62{word-spacing:3.840000pt;}
.ws50{word-spacing:4.000000pt;}
.ws54{word-spacing:4.373333pt;}
.ws46{word-spacing:4.426667pt;}
.ws61{word-spacing:5.600000pt;}
.ws63{word-spacing:5.706667pt;}
._e{margin-left:-10.131141pt;}
._6{margin-left:-6.867733pt;}
._4{margin-left:-5.497067pt;}
._5{margin-left:-4.502933pt;}
._c{margin-left:-3.267200pt;}
._3{margin-left:-2.075200pt;}
._0{margin-left:-0.933867pt;}
._2{width:1.246933pt;}
._a{width:2.217600pt;}
._b{width:3.182400pt;}
._9{width:4.104000pt;}
._8{width:5.209067pt;}
._7{width:6.704533pt;}
._1{width:8.526933pt;}
._13{width:47.432000pt;}
._14{width:48.384000pt;}
._10{width:51.632000pt;}
._12{width:52.979200pt;}
._f{width:55.664000pt;}
._11{width:85.546667pt;}
._d{width:97.919467pt;}
.fsb{font-size:24.746667pt;}
.fsc{font-size:27.840000pt;}
.fsa{font-size:30.933333pt;}
.fs9{font-size:31.573333pt;}
.fs1{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:72.985600pt;}
.y1b{bottom:111.711467pt;}
.y42{bottom:111.711600pt;}
.y74{bottom:111.742000pt;}
.y70{bottom:112.172400pt;}
.y1be{bottom:112.341467pt;}
.y10b{bottom:113.475333pt;}
.y19a{bottom:114.698133pt;}
.y65{bottom:114.698267pt;}
.y41{bottom:125.044933pt;}
.y81{bottom:126.178933pt;}
.yaa{bottom:128.031600pt;}
.y82{bottom:129.165600pt;}
.y205{bottom:129.261867pt;}
.y229{bottom:129.274800pt;}
.y10a{bottom:129.475333pt;}
.y73{bottom:130.408667pt;}
.y199{bottom:130.453067pt;}
.y6f{bottom:130.839200pt;}
.y1bd{bottom:131.008133pt;}
.y1e0{bottom:132.320533pt;}
.y80{bottom:139.245600pt;}
.ya9{bottom:139.512267pt;}
.y40{bottom:141.364933pt;}
.y12f{bottom:142.498933pt;}
.y1a{bottom:142.649600pt;}
.yca{bottom:143.632800pt;}
.y109{bottom:145.475333pt;}
.y204{bottom:146.595200pt;}
.y228{bottom:146.608133pt;}
.y64{bottom:149.075333pt;}
.y198{bottom:149.194667pt;}
.y6e{bottom:149.239200pt;}
.y1df{bottom:149.653867pt;}
.y1bc{bottom:149.674800pt;}
.ya8{bottom:152.845600pt;}
.y12e{bottom:153.979467pt;}
.y7f{bottom:155.298933pt;}
.y14e{bottom:156.966133pt;}
.yc9{bottom:158.100133pt;}
.y19{bottom:158.649600pt;}
.ya7{bottom:166.178933pt;}
.y7e{bottom:166.512933pt;}
.y6d{bottom:167.639067pt;}
.y203{bottom:167.708000pt;}
.y227{bottom:167.721067pt;}
.y63{bottom:167.742000pt;}
.y197{bottom:167.936133pt;}
.y1bb{bottom:168.341467pt;}
.y12d{bottom:170.299467pt;}
.y1de{bottom:170.766667pt;}
.y3f{bottom:171.774133pt;}
.y170{bottom:173.875333pt;}
.y18{bottom:174.649600pt;}
.y176{bottom:176.542000pt;}
.ya4{bottom:176.608133pt;}
.y108{bottom:177.475333pt;}
.ya6{bottom:179.512267pt;}
.y7d{bottom:179.579600pt;}
.y12c{bottom:181.780133pt;}
.ye6{bottom:184.275333pt;}
.y202{bottom:185.041333pt;}
.y226{bottom:185.054400pt;}
.y6c{bottom:186.039200pt;}
.y62{bottom:186.408667pt;}
.y196{bottom:186.677867pt;}
.y1ba{bottom:187.008133pt;}
.y1dd{bottom:188.100000pt;}
.y3e{bottom:190.440800pt;}
.y17{bottom:190.649600pt;}
.y16f{bottom:192.542000pt;}
.y7c{bottom:192.646267pt;}
.yc8{bottom:193.875333pt;}
.ya3{bottom:195.008133pt;}
.y12b{bottom:195.113467pt;}
.y14d{bottom:195.208667pt;}
.ya5{bottom:195.832267pt;}
.y107{bottom:196.008667pt;}
.ye5{bottom:202.408667pt;}
.y6b{bottom:204.439067pt;}
.y61{bottom:205.075333pt;}
.y195{bottom:205.419333pt;}
.y1dc{bottom:205.433333pt;}
.y1b9{bottom:205.674800pt;}
.y7b{bottom:205.712933pt;}
.y201{bottom:206.154267pt;}
.y225{bottom:206.167200pt;}
.y16{bottom:206.649600pt;}
.y3d{bottom:209.107467pt;}
.y16e{bottom:211.208667pt;}
.y12a{bottom:211.433467pt;}
.yc7{bottom:212.275333pt;}
.y14c{bottom:213.075333pt;}
.ya2{bottom:213.408133pt;}
.y175{bottom:213.608667pt;}
.y106{bottom:214.542000pt;}
.y7a{bottom:218.779600pt;}
.ye4{bottom:221.075333pt;}
.y15{bottom:222.649600pt;}
.y200{bottom:223.487600pt;}
.y224{bottom:223.500533pt;}
.y60{bottom:223.742000pt;}
.y194{bottom:224.160933pt;}
.y1b8{bottom:224.341467pt;}
.y1db{bottom:226.546267pt;}
.y3c{bottom:227.774133pt;}
.y16d{bottom:229.875333pt;}
.yc6{bottom:230.675333pt;}
.ya1{bottom:231.808133pt;}
.y79{bottom:231.846267pt;}
.y174{bottom:232.008667pt;}
.y105{bottom:233.075333pt;}
.y6a{bottom:237.957200pt;}
.y14{bottom:238.649600pt;}
.ye3{bottom:239.742000pt;}
.y129{bottom:240.666533pt;}
.y5f{bottom:242.408667pt;}
.y193{bottom:242.902533pt;}
.y1b7{bottom:243.008133pt;}
.y1da{bottom:243.879600pt;}
.y1ff{bottom:244.600400pt;}
.y223{bottom:244.613467pt;}
.y78{bottom:244.912933pt;}
.y3b{bottom:246.440800pt;}
.y14b{bottom:246.942000pt;}
.y16c{bottom:248.542000pt;}
.yc5{bottom:249.075333pt;}
.ya0{bottom:250.208133pt;}
.y173{bottom:250.408667pt;}
.y104{bottom:251.608667pt;}
.y69{bottom:253.957200pt;}
.y13{bottom:254.649600pt;}
.y77{bottom:257.979600pt;}
.ye2{bottom:258.408667pt;}
.y128{bottom:259.066533pt;}
.y5e{bottom:261.075333pt;}
.y192{bottom:261.644133pt;}
.y1b6{bottom:261.674800pt;}
.y1fe{bottom:261.933733pt;}
.y222{bottom:261.946800pt;}
.y1d9{bottom:264.992400pt;}
.y3a{bottom:265.107467pt;}
.y16b{bottom:266.408667pt;}
.yc4{bottom:267.475333pt;}
.y9f{bottom:268.608133pt;}
.y172{bottom:268.808667pt;}
.y68{bottom:269.957200pt;}
.y103{bottom:270.142000pt;}
.y76{bottom:271.046267pt;}
.ye1{bottom:277.075333pt;}
.y127{bottom:277.466533pt;}
.y1fd{bottom:279.267067pt;}
.y221{bottom:279.280133pt;}
.y72{bottom:279.742000pt;}
.y1b5{bottom:280.341467pt;}
.y191{bottom:280.385733pt;}
.y1d8{bottom:282.325733pt;}
.y39{bottom:283.774133pt;}
.y16a{bottom:284.275333pt;}
.yc3{bottom:285.875333pt;}
.y67{bottom:285.957200pt;}
.y14a{bottom:286.942000pt;}
.y9e{bottom:287.008133pt;}
.y75{bottom:287.099600pt;}
.y171{bottom:287.208667pt;}
.y102{bottom:288.675333pt;}
.y12{bottom:294.208667pt;}
.y5d{bottom:295.742000pt;}
.y126{bottom:295.866533pt;}
.y220{bottom:296.613467pt;}
.y71{bottom:298.408667pt;}
.y1b4{bottom:299.008133pt;}
.y190{bottom:299.127333pt;}
.y1fc{bottom:300.379867pt;}
.y169{bottom:302.142000pt;}
.y38{bottom:302.440800pt;}
.y1d7{bottom:303.438533pt;}
.yc2{bottom:304.275333pt;}
.y9d{bottom:305.408133pt;}
.y149{bottom:305.608667pt;}
.y101{bottom:307.208667pt;}
.y11{bottom:313.988133pt;}
.y125{bottom:314.266533pt;}
.ye0{bottom:314.408667pt;}
.y66{bottom:317.075333pt;}
.y1b3{bottom:317.674800pt;}
.y1fb{bottom:317.713200pt;}
.y21f{bottom:317.726267pt;}
.y18f{bottom:317.868933pt;}
.y168{bottom:320.008667pt;}
.y1d6{bottom:320.771867pt;}
.y37{bottom:321.107467pt;}
.yc1{bottom:322.675333pt;}
.y9c{bottom:323.808133pt;}
.y148{bottom:324.008667pt;}
.y100{bottom:325.742000pt;}
.y10{bottom:329.988133pt;}
.y124{bottom:332.666533pt;}
.ydf{bottom:333.075333pt;}
.y1fa{bottom:335.046533pt;}
.y21e{bottom:335.059600pt;}
.y5c{bottom:335.742000pt;}
.y1b2{bottom:336.341467pt;}
.y18e{bottom:336.610533pt;}
.y167{bottom:337.875333pt;}
.y1d5{bottom:338.105200pt;}
.y36{bottom:339.774133pt;}
.yc0{bottom:341.075333pt;}
.y9b{bottom:342.208133pt;}
.y147{bottom:342.408667pt;}
.yff{bottom:344.275333pt;}
.yf{bottom:345.988133pt;}
.y123{bottom:351.066533pt;}
.yde{bottom:351.742000pt;}
.y5b{bottom:354.408667pt;}
.y1b1{bottom:355.008133pt;}
.y18d{bottom:355.352133pt;}
.y166{bottom:355.742000pt;}
.y1f9{bottom:356.159467pt;}
.y21d{bottom:356.172533pt;}
.y35{bottom:358.440800pt;}
.y1d4{bottom:359.218133pt;}
.ybf{bottom:359.475333pt;}
.y9a{bottom:360.608133pt;}
.y146{bottom:360.808667pt;}
.ye{bottom:361.988133pt;}
.yfe{bottom:362.808667pt;}
.y122{bottom:369.466533pt;}
.ydd{bottom:370.408667pt;}
.y5a{bottom:373.075333pt;}
.y1f8{bottom:373.492800pt;}
.y21c{bottom:373.505867pt;}
.y165{bottom:373.608667pt;}
.y1b0{bottom:373.674800pt;}
.y18c{bottom:374.093733pt;}
.y1d3{bottom:376.551467pt;}
.y34{bottom:377.107467pt;}
.ybe{bottom:377.875333pt;}
.yd{bottom:377.988133pt;}
.y99{bottom:379.008133pt;}
.y145{bottom:379.208667pt;}
.yfd{bottom:381.342000pt;}
.y121{bottom:387.866533pt;}
.ydc{bottom:389.075333pt;}
.y1f7{bottom:390.826133pt;}
.y21b{bottom:390.839200pt;}
.y164{bottom:391.475333pt;}
.y59{bottom:391.742000pt;}
.y1af{bottom:392.341467pt;}
.y18b{bottom:392.835333pt;}
.yc{bottom:393.988133pt;}
.y33{bottom:395.774133pt;}
.ybd{bottom:396.275333pt;}
.y98{bottom:397.408133pt;}
.y144{bottom:397.608667pt;}
.y1d2{bottom:397.664400pt;}
.yfc{bottom:399.875333pt;}
.y120{bottom:406.266533pt;}
.ydb{bottom:407.742000pt;}
.y1f6{bottom:408.159467pt;}
.y21a{bottom:408.172533pt;}
.y163{bottom:409.342000pt;}
.yb{bottom:409.988133pt;}
.y58{bottom:410.408667pt;}
.y1ae{bottom:411.008133pt;}
.y18a{bottom:411.576800pt;}
.y32{bottom:414.440800pt;}
.ybc{bottom:414.675333pt;}
.y1d1{bottom:414.997733pt;}
.y97{bottom:415.808133pt;}
.y143{bottom:416.008667pt;}
.yfb{bottom:418.408667pt;}
.y11f{bottom:424.666533pt;}
.ya{bottom:425.988133pt;}
.yda{bottom:426.408667pt;}
.y162{bottom:427.208667pt;}
.y57{bottom:429.075333pt;}
.y1f5{bottom:429.272267pt;}
.y219{bottom:429.285333pt;}
.y1ad{bottom:429.674800pt;}
.y189{bottom:430.318533pt;}
.ybb{bottom:433.075333pt;}
.y31{bottom:433.107467pt;}
.y96{bottom:434.208133pt;}
.y142{bottom:434.408667pt;}
.y1d0{bottom:436.110533pt;}
.yfa{bottom:436.942000pt;}
.y9{bottom:441.988133pt;}
.y11e{bottom:443.066533pt;}
.yd9{bottom:445.075333pt;}
.y1f4{bottom:446.605600pt;}
.y218{bottom:446.618667pt;}
.y56{bottom:447.742000pt;}
.y1ac{bottom:448.341467pt;}
.y188{bottom:449.060000pt;}
.yba{bottom:451.475333pt;}
.y30{bottom:451.774133pt;}
.y95{bottom:452.608133pt;}
.y141{bottom:452.808667pt;}
.y1cf{bottom:453.443867pt;}
.yf9{bottom:455.475333pt;}
.y8{bottom:457.988133pt;}
.y11d{bottom:461.466533pt;}
.y161{bottom:462.942000pt;}
.yd8{bottom:463.742000pt;}
.y1f3{bottom:463.938933pt;}
.y55{bottom:466.408667pt;}
.y1ab{bottom:467.008133pt;}
.y217{bottom:467.731467pt;}
.y187{bottom:467.801600pt;}
.yb9{bottom:469.875333pt;}
.y2f{bottom:470.440800pt;}
.y1ce{bottom:470.777200pt;}
.y94{bottom:471.008133pt;}
.y140{bottom:471.208667pt;}
.y7{bottom:473.988133pt;}
.yf8{bottom:474.008667pt;}
.y11c{bottom:479.866533pt;}
.y160{bottom:480.808667pt;}
.y1f2{bottom:481.272267pt;}
.yd7{bottom:482.408667pt;}
.y216{bottom:485.064800pt;}
.y54{bottom:485.075333pt;}
.y1aa{bottom:485.674800pt;}
.y186{bottom:486.543200pt;}
.y1cd{bottom:488.110533pt;}
.yb8{bottom:488.275333pt;}
.y2e{bottom:489.107467pt;}
.y93{bottom:489.408133pt;}
.y13f{bottom:489.608667pt;}
.yf7{bottom:492.542000pt;}
.y11b{bottom:498.266533pt;}
.y15f{bottom:498.675333pt;}
.yd6{bottom:501.075333pt;}
.y1f1{bottom:502.385200pt;}
.y215{bottom:502.398133pt;}
.y53{bottom:503.742000pt;}
.y1a9{bottom:504.341467pt;}
.y185{bottom:505.284800pt;}
.y1cc{bottom:505.443867pt;}
.yb7{bottom:506.675333pt;}
.y2d{bottom:507.774133pt;}
.y92{bottom:507.808133pt;}
.y13e{bottom:508.008667pt;}
.yf6{bottom:511.075333pt;}
.y15e{bottom:516.542000pt;}
.y11a{bottom:516.666533pt;}
.y1f0{bottom:519.718533pt;}
.yd5{bottom:519.742000pt;}
.y52{bottom:522.408667pt;}
.y1cb{bottom:522.777200pt;}
.y1a8{bottom:523.008133pt;}
.y214{bottom:523.511067pt;}
.y184{bottom:524.026400pt;}
.yb6{bottom:525.075333pt;}
.y91{bottom:526.208133pt;}
.y13d{bottom:526.408667pt;}
.y2c{bottom:526.440800pt;}
.yf5{bottom:529.608667pt;}
.y15d{bottom:534.408667pt;}
.y119{bottom:535.066533pt;}
.y1ef{bottom:537.051867pt;}
.y213{bottom:540.844400pt;}
.y51{bottom:541.075333pt;}
.y1a7{bottom:541.674800pt;}
.y183{bottom:542.768000pt;}
.yb5{bottom:543.475333pt;}
.y1ca{bottom:543.890000pt;}
.y90{bottom:544.608133pt;}
.y13c{bottom:544.808667pt;}
.y2b{bottom:545.107467pt;}
.yf4{bottom:548.142000pt;}
.y15c{bottom:552.275333pt;}
.y118{bottom:553.466533pt;}
.yd4{bottom:554.408667pt;}
.y1ee{bottom:558.164667pt;}
.y212{bottom:558.177733pt;}
.y50{bottom:559.742000pt;}
.y1a6{bottom:560.341467pt;}
.y1c9{bottom:561.223333pt;}
.yb4{bottom:561.875333pt;}
.y8f{bottom:563.008133pt;}
.y13b{bottom:563.208667pt;}
.y2a{bottom:563.774133pt;}
.y6{bottom:564.654800pt;}
.yf3{bottom:566.675333pt;}
.y15b{bottom:570.142000pt;}
.yd3{bottom:570.408667pt;}
.y117{bottom:571.866533pt;}
.y1ed{bottom:575.498000pt;}
.y182{bottom:577.509600pt;}
.y4f{bottom:578.408667pt;}
.y1c8{bottom:578.556667pt;}
.y1a5{bottom:579.008133pt;}
.y211{bottom:579.290667pt;}
.yb3{bottom:580.275333pt;}
.y8e{bottom:581.408133pt;}
.y13a{bottom:581.608667pt;}
.y29{bottom:582.440800pt;}
.y5{bottom:583.321467pt;}
.yf2{bottom:584.808667pt;}
.yd2{bottom:586.408667pt;}
.y15a{bottom:588.008667pt;}
.y116{bottom:590.266533pt;}
.y1ec{bottom:592.831333pt;}
.y181{bottom:593.584533pt;}
.y1c7{bottom:595.890000pt;}
.y210{bottom:596.624000pt;}
.y4e{bottom:597.075333pt;}
.y1a4{bottom:597.674800pt;}
.yb2{bottom:598.675333pt;}
.y8d{bottom:599.808133pt;}
.y139{bottom:600.008667pt;}
.y28{bottom:601.107467pt;}
.yd1{bottom:602.408667pt;}
.yf1{bottom:602.942000pt;}
.y159{bottom:605.875333pt;}
.y115{bottom:608.666533pt;}
.y180{bottom:609.659467pt;}
.y1eb{bottom:610.164667pt;}
.y4d{bottom:615.742000pt;}
.y1a3{bottom:616.341467pt;}
.y1c6{bottom:617.002933pt;}
.yb1{bottom:617.075333pt;}
.y20f{bottom:617.736800pt;}
.y8c{bottom:618.208133pt;}
.yd0{bottom:618.408667pt;}
.y27{bottom:619.774133pt;}
.yf0{bottom:621.075333pt;}
.y4{bottom:623.321467pt;}
.y158{bottom:623.742000pt;}
.y17f{bottom:625.734400pt;}
.y114{bottom:627.066533pt;}
.y1ea{bottom:631.277600pt;}
.y1c5{bottom:634.336267pt;}
.y4c{bottom:634.408667pt;}
.y1a2{bottom:635.008133pt;}
.y20e{bottom:635.070133pt;}
.yb0{bottom:635.475333pt;}
.y8b{bottom:636.608133pt;}
.y138{bottom:636.808667pt;}
.y26{bottom:638.440800pt;}
.yef{bottom:639.208667pt;}
.y157{bottom:641.608667pt;}
.y17e{bottom:641.809333pt;}
.y3{bottom:644.654800pt;}
.y113{bottom:645.466533pt;}
.y1e9{bottom:648.610933pt;}
.ycf{bottom:650.408667pt;}
.y1c4{bottom:651.669600pt;}
.y4b{bottom:653.075333pt;}
.y1a1{bottom:653.674800pt;}
.yaf{bottom:653.875333pt;}
.y8a{bottom:655.008133pt;}
.y137{bottom:655.208667pt;}
.y20d{bottom:656.182933pt;}
.y25{bottom:657.107467pt;}
.yee{bottom:657.342000pt;}
.y17d{bottom:657.884267pt;}
.y156{bottom:659.475333pt;}
.y112{bottom:663.866533pt;}
.y2{bottom:665.988133pt;}
.yce{bottom:666.408667pt;}
.y1e8{bottom:669.723733pt;}
.y4a{bottom:671.742000pt;}
.yae{bottom:672.275333pt;}
.y1a0{bottom:672.341467pt;}
.y1c3{bottom:672.782533pt;}
.y89{bottom:673.408133pt;}
.y20c{bottom:673.516267pt;}
.y136{bottom:673.608667pt;}
.yed{bottom:675.475333pt;}
.y24{bottom:675.774133pt;}
.y155{bottom:677.342000pt;}
.y111{bottom:682.266533pt;}
.ycd{bottom:682.408667pt;}
.y1e7{bottom:687.057067pt;}
.y17c{bottom:689.959200pt;}
.y1c2{bottom:690.115867pt;}
.y49{bottom:690.408667pt;}
.yad{bottom:690.675333pt;}
.y20b{bottom:690.849600pt;}
.y19f{bottom:691.008133pt;}
.y88{bottom:691.808133pt;}
.y135{bottom:692.008667pt;}
.yec{bottom:693.608667pt;}
.y23{bottom:694.440800pt;}
.y154{bottom:695.208667pt;}
.ycc{bottom:698.408667pt;}
.y110{bottom:700.666533pt;}
.y1c1{bottom:707.449200pt;}
.y1e6{bottom:708.169867pt;}
.y17b{bottom:708.700800pt;}
.y48{bottom:709.075333pt;}
.y19e{bottom:709.674800pt;}
.y87{bottom:710.208133pt;}
.y134{bottom:710.408667pt;}
.yeb{bottom:711.742000pt;}
.y20a{bottom:711.962533pt;}
.y153{bottom:713.075333pt;}
.y22{bottom:713.107467pt;}
.ycb{bottom:714.408667pt;}
.y10f{bottom:719.066533pt;}
.yac{bottom:725.075333pt;}
.y1e5{bottom:725.503200pt;}
.y17a{bottom:727.442267pt;}
.y47{bottom:727.742000pt;}
.y19d{bottom:728.341467pt;}
.y1c0{bottom:728.562000pt;}
.y86{bottom:728.608133pt;}
.y133{bottom:728.808667pt;}
.y209{bottom:729.295867pt;}
.yea{bottom:729.875333pt;}
.y152{bottom:730.942000pt;}
.y10e{bottom:737.466533pt;}
.yab{bottom:743.742000pt;}
.y1bf{bottom:745.895333pt;}
.y179{bottom:746.183867pt;}
.y46{bottom:746.408667pt;}
.y1e4{bottom:746.616133pt;}
.y208{bottom:746.629200pt;}
.y19c{bottom:747.008133pt;}
.y132{bottom:747.208667pt;}
.ye9{bottom:748.008667pt;}
.y151{bottom:748.808667pt;}
.y85{bottom:763.008133pt;}
.y1e3{bottom:763.949467pt;}
.y178{bottom:764.925600pt;}
.y45{bottom:765.075333pt;}
.y131{bottom:765.608667pt;}
.y19b{bottom:765.674800pt;}
.ye8{bottom:766.142000pt;}
.y150{bottom:766.675333pt;}
.y21{bottom:767.553600pt;}
.y207{bottom:767.742000pt;}
.y10d{bottom:771.866533pt;}
.y84{bottom:781.674800pt;}
.y177{bottom:783.667067pt;}
.y44{bottom:783.742000pt;}
.y130{bottom:784.008667pt;}
.ye7{bottom:784.275333pt;}
.y14f{bottom:784.542000pt;}
.y1e2{bottom:785.062400pt;}
.y206{bottom:785.075333pt;}
.y20{bottom:787.333200pt;}
.y10c{bottom:787.599867pt;}
.y83{bottom:800.341467pt;}
.y1e1{bottom:802.395733pt;}
.y43{bottom:802.408667pt;}
.y1f{bottom:803.333200pt;}
.y1e{bottom:838.942133pt;}
.y1c{bottom:842.248800pt;}
.y1d{bottom:852.275467pt;}
.hc{height:25.490833pt;}
.h10{height:25.595000pt;}
.h2{height:28.373333pt;}
.he{height:32.426667pt;}
.h8{height:35.097656pt;}
.h11{height:36.145833pt;}
.h12{height:37.031250pt;}
.hd{height:37.437500pt;}
.ha{height:39.765333pt;}
.h6{height:42.117188pt;}
.h7{height:42.234375pt;}
.hb{height:46.796875pt;}
.h5{height:46.927083pt;}
.h4{height:49.136719pt;}
.hf{height:51.520000pt;}
.h9{height:58.640000pt;}
.h3{height:68.693333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x7{left:60.472400pt;}
.x8{left:67.111067pt;}
.xb{left:86.929067pt;}
.xf{left:90.708667pt;}
.x9{left:109.606267pt;}
.x3{left:111.435600pt;}
.x1{left:113.696267pt;}
.x10{left:117.165333pt;}
.x11{left:120.944933pt;}
.x4{left:139.737733pt;}
.x2{left:160.484800pt;}
.x6{left:195.924000pt;}
.x12{left:213.442133pt;}
.x5{left:214.808667pt;}
.xd{left:245.600800pt;}
.xe{left:279.513333pt;}
.xc{left:483.226400pt;}
}




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