
    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_768489744329306d92bb6ef1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_574a225b3c9dc28d036c466c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.377930;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_62f3ccc704ef66363b8027cd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_7343e4f7a161369419b75a99.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_abb1667e4722ee40b23620b8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.016113;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_90417e2f4e934f89f3ba7387.woff')format("woff");}.ff6{font-family:ff6;line-height:1.377930;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_63b31b59cec29d2f37144d1f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.016113;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_d894c0997aac8a274bb0bfff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.377930;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_cc6e60346c305ff8cb5b1e65.woff')format("woff");}.ff9{font-family:ff9;line-height:1.070312;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);}
.v2{vertical-align:-11.982000px;}
.v6{vertical-align:-8.808600px;}
.v5{vertical-align:-5.958000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.935800px;}
.v4{vertical-align:17.050800px;}
.v1{vertical-align:29.866200px;}
.lsa{letter-spacing:-10.584000px;}
.lsf{letter-spacing:-5.712000px;}
.ls6{letter-spacing:-5.184000px;}
.ls35{letter-spacing:-3.657000px;}
.ls26{letter-spacing:-3.360000px;}
.ls4d{letter-spacing:-3.036000px;}
.ls4a{letter-spacing:-2.553000px;}
.ls1e{letter-spacing:-2.538000px;}
.ls1d{letter-spacing:-2.277000px;}
.ls1c{letter-spacing:-2.220000px;}
.ls52{letter-spacing:-2.079000px;}
.ls3b{letter-spacing:-2.040000px;}
.ls49{letter-spacing:-2.001000px;}
.ls12{letter-spacing:-1.980000px;}
.ls8{letter-spacing:-1.944000px;}
.lse{letter-spacing:-1.932000px;}
.ls7{letter-spacing:-1.836000px;}
.ls28{letter-spacing:-1.725000px;}
.lsb{letter-spacing:-1.620000px;}
.ls10{letter-spacing:-1.596000px;}
.ls4e{letter-spacing:-1.518000px;}
.ls5{letter-spacing:-1.512000px;}
.lsd{letter-spacing:-1.428000px;}
.ls51{letter-spacing:-1.386000px;}
.ls32{letter-spacing:-1.350000px;}
.ls2f{letter-spacing:-1.242000px;}
.lsc{letter-spacing:-1.176000px;}
.ls24{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.660000px;}
.ls2e{letter-spacing:-0.621000px;}
.ls41{letter-spacing:-0.552000px;}
.ls31{letter-spacing:-0.486000px;}
.ls30{letter-spacing:-0.345000px;}
.ls25{letter-spacing:-0.300000px;}
.ls33{letter-spacing:-0.270000px;}
.ls22{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000300px;}
.ls34{letter-spacing:0.007758px;}
.ls23{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.712800px;}
.ls55{letter-spacing:0.960000px;}
.ls15{letter-spacing:1.074600px;}
.ls2{letter-spacing:1.260000px;}
.ls1f{letter-spacing:1.296000px;}
.ls3d{letter-spacing:1.320000px;}
.ls54{letter-spacing:1.380000px;}
.ls4{letter-spacing:1.620000px;}
.ls9{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.376000px;}
.ls17{letter-spacing:2.400000px;}
.ls2b{letter-spacing:2.430000px;}
.ls38{letter-spacing:2.553000px;}
.ls43{letter-spacing:2.835213px;}
.ls2d{letter-spacing:3.300000px;}
.ls45{letter-spacing:3.478413px;}
.ls44{letter-spacing:3.479013px;}
.ls14{letter-spacing:4.200000px;}
.ls39{letter-spacing:4.275000px;}
.ls48{letter-spacing:4.533300px;}
.ls40{letter-spacing:4.650000px;}
.ls21{letter-spacing:4.830000px;}
.ls19{letter-spacing:5.460000px;}
.ls4f{letter-spacing:5.670000px;}
.ls47{letter-spacing:5.713200px;}
.ls1b{letter-spacing:5.760000px;}
.ls11{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls4c{letter-spacing:6.300000px;}
.ls53{letter-spacing:6.396000px;}
.ls18{letter-spacing:6.675000px;}
.ls4b{letter-spacing:7.200000px;}
.ls50{letter-spacing:7.500000px;}
.ls3e{letter-spacing:8.160156px;}
.ls3f{letter-spacing:8.160756px;}
.ls42{letter-spacing:8.175000px;}
.ls1a{letter-spacing:8.700000px;}
.ls2a{letter-spacing:8.901000px;}
.ls46{letter-spacing:9.915300px;}
.ls20{letter-spacing:12.609000px;}
.ls36{letter-spacing:157.380000px;}
.ls37{letter-spacing:199.380000px;}
.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;}
}
.ws4{word-spacing:-32.508000px;}
.ws47{word-spacing:-29.250000px;}
.ws55{word-spacing:-28.575000px;}
.ws3{word-spacing:-28.404000px;}
.ws0{word-spacing:-28.296000px;}
.ws4d{word-spacing:-28.275000px;}
.ws15{word-spacing:-27.750000px;}
.ws1{word-spacing:-26.676000px;}
.ws43{word-spacing:-25.725000px;}
.ws3c{word-spacing:-25.350000px;}
.ws2e{word-spacing:-24.375000px;}
.ws50{word-spacing:-23.373000px;}
.ws58{word-spacing:-22.860000px;}
.ws9{word-spacing:-22.740000px;}
.ws17{word-spacing:-22.620000px;}
.ws2{word-spacing:-21.492000px;}
.ws5{word-spacing:-19.764000px;}
.ws31{word-spacing:-19.389000px;}
.ws6{word-spacing:-19.320000px;}
.ws8{word-spacing:-19.152000px;}
.ws7{word-spacing:-18.816000px;}
.ws52{word-spacing:-17.703000px;}
.ws16{word-spacing:-17.262000px;}
.ws19{word-spacing:-17.043000px;}
.ws18{word-spacing:-16.860000px;}
.ws30{word-spacing:-16.698000px;}
.ws27{word-spacing:-16.560000px;}
.ws2f{word-spacing:-16.422000px;}
.ws40{word-spacing:-16.140000px;}
.ws51{word-spacing:-15.561000px;}
.ws4f{word-spacing:-15.525000px;}
.ws29{word-spacing:-15.318000px;}
.ws1c{word-spacing:-15.174000px;}
.ws49{word-spacing:-15.111000px;}
.ws48{word-spacing:-15.042000px;}
.wsa{word-spacing:-14.820000px;}
.ws1a{word-spacing:-14.766000px;}
.ws4a{word-spacing:-14.490000px;}
.ws26{word-spacing:-13.980000px;}
.ws28{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.338000px;}
.ws35{word-spacing:-13.068000px;}
.ws33{word-spacing:-12.852000px;}
.wsb{word-spacing:-12.840000px;}
.ws3e{word-spacing:-12.780000px;}
.ws34{word-spacing:-11.988000px;}
.ws32{word-spacing:-11.303787px;}
.ws1d{word-spacing:-10.800000px;}
.ws1e{word-spacing:-8.846442px;}
.ws21{word-spacing:-8.700000px;}
.ws59{word-spacing:-7.500000px;}
.ws54{word-spacing:-6.300000px;}
.wsd{word-spacing:-6.000000px;}
.ws4e{word-spacing:-5.037000px;}
.ws23{word-spacing:-4.200000px;}
.ws38{word-spacing:-2.754000px;}
.ws3a{word-spacing:-2.430000px;}
.ws1f{word-spacing:-2.400000px;}
.ws24{word-spacing:-1.296000px;}
.wse{word-spacing:-1.260000px;}
.ws4b{word-spacing:-0.759000px;}
.ws42{word-spacing:-0.540000px;}
.ws2b{word-spacing:-0.120000px;}
.wsc{word-spacing:0.000000px;}
.ws41{word-spacing:0.180000px;}
.ws2a{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws46{word-spacing:0.552000px;}
.ws2d{word-spacing:0.660000px;}
.wsf{word-spacing:0.720000px;}
.ws25{word-spacing:0.756000px;}
.ws13{word-spacing:1.176000px;}
.ws36{word-spacing:1.242000px;}
.ws56{word-spacing:1.386000px;}
.ws10{word-spacing:1.512000px;}
.ws12{word-spacing:1.620000px;}
.ws44{word-spacing:1.725000px;}
.ws11{word-spacing:1.836000px;}
.ws4c{word-spacing:1.932000px;}
.ws57{word-spacing:2.079000px;}
.ws22{word-spacing:2.220000px;}
.ws39{word-spacing:2.430000px;}
.ws53{word-spacing:3.036000px;}
.ws3b{word-spacing:3.657000px;}
.ws14{word-spacing:5.712000px;}
.ws37{word-spacing:8.970000px;}
.ws45{word-spacing:9.384000px;}
.ws3d{word-spacing:103.704000px;}
.ws3f{word-spacing:183.822000px;}
.ws20{word-spacing:256.410000px;}
._30{margin-left:-18.459300px;}
._25{margin-left:-15.257100px;}
._18{margin-left:-12.849600px;}
._b{margin-left:-10.086000px;}
._12{margin-left:-8.633400px;}
._27{margin-left:-7.611600px;}
._13{margin-left:-6.390000px;}
._a{margin-left:-5.299800px;}
._4{margin-left:-3.874500px;}
._3{margin-left:-2.664900px;}
._9{margin-left:-1.396200px;}
._5{width:1.330200px;}
._1{width:2.400000px;}
._e{width:4.312200px;}
._6{width:5.741400px;}
._7{width:6.743100px;}
._8{width:8.199900px;}
._f{width:9.382200px;}
._d{width:10.739400px;}
._1a{width:11.800200px;}
._c{width:12.873600px;}
._1d{width:13.947714px;}
._15{width:15.082200px;}
._19{width:16.820700px;}
._16{width:17.928000px;}
._2f{width:19.228800px;}
._1b{width:20.868000px;}
._24{width:24.894000px;}
._2e{width:25.943400px;}
._21{width:27.732000px;}
._2d{width:29.757000px;}
._23{width:32.669958px;}
._2c{width:35.695800px;}
._10{width:43.445160px;}
._2b{width:49.721100px;}
._2a{width:57.124800px;}
._29{width:62.566200px;}
._22{width:63.774000px;}
._14{width:85.554000px;}
._1f{width:121.999200px;}
._26{width:492.457200px;}
._28{width:494.430000px;}
._11{width:501.390000px;}
._1c{width:503.820000px;}
._0{width:578.400000px;}
._17{width:993.706200px;}
._1e{width:996.331200px;}
._20{width:1000.381200px;}
._2{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fsc{font-size:36.729000px;}
.fsb{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y6e{bottom:106.047600px;}
.y194{bottom:106.223700px;}
.y20{bottom:106.281300px;}
.y16e{bottom:106.287450px;}
.y14a{bottom:106.290450px;}
.y1d5{bottom:106.293150px;}
.yff{bottom:106.293300px;}
.ybb{bottom:106.293450px;}
.ydd{bottom:106.296300px;}
.y124{bottom:106.296450px;}
.y47{bottom:106.308750px;}
.y96{bottom:109.294950px;}
.y1f{bottom:123.534300px;}
.y16d{bottom:123.540450px;}
.y149{bottom:123.543450px;}
.yfe{bottom:123.546300px;}
.yba{bottom:123.546450px;}
.y46{bottom:124.344750px;}
.ydc{bottom:126.544800px;}
.y123{bottom:126.544950px;}
.y193{bottom:126.647700px;}
.y6d{bottom:126.713100px;}
.y1d4{bottom:127.303650px;}
.y95{bottom:127.771500px;}
.y1f3{bottom:127.896450px;}
.y1e{bottom:140.787300px;}
.y16c{bottom:140.793450px;}
.y148{bottom:140.796450px;}
.y45{bottom:142.380750px;}
.yfd{bottom:143.794800px;}
.yb9{bottom:143.794950px;}
.y94{bottom:145.024500px;}
.y192{bottom:147.071700px;}
.y6c{bottom:147.378600px;}
.y122{bottom:148.047000px;}
.y1b7{bottom:153.369000px;}
.y1d3{bottom:156.819150px;}
.y1f2{bottom:158.010450px;}
.y1d{bottom:158.040300px;}
.y16b{bottom:158.046450px;}
.y147{bottom:161.044950px;}
.y93{bottom:162.277500px;}
.yb8{bottom:162.289500px;}
.y121{bottom:166.550700px;}
.y191{bottom:167.495700px;}
.y6b{bottom:168.044100px;}
.ydb{bottom:170.612400px;}
.y1b6{bottom:173.620500px;}
.y1c{bottom:175.293300px;}
.y16a{bottom:175.299450px;}
.y44{bottom:178.500900px;}
.y22d{bottom:179.184750px;}
.y92{bottom:179.530500px;}
.yb7{bottom:179.542500px;}
.y1f1{bottom:179.619450px;}
.y146{bottom:182.547000px;}
.y1d2{bottom:186.334650px;}
.y120{bottom:186.799200px;}
.yfc{bottom:187.823550px;}
.y190{bottom:187.919700px;}
.y6a{bottom:188.709600px;}
.yda{bottom:191.398650px;}
.y1b{bottom:192.546300px;}
.y1b5{bottom:193.872000px;}
.y43{bottom:196.536900px;}
.y91{bottom:196.783500px;}
.yb6{bottom:196.795500px;}
.y22c{bottom:199.434750px;}
.y145{bottom:201.032700px;}
.y1d1{bottom:207.345150px;}
.y18f{bottom:208.343700px;}
.y69{bottom:209.375100px;}
.y1f0{bottom:209.733450px;}
.yd9{bottom:212.184900px;}
.y1a{bottom:212.794800px;}
.y90{bottom:214.036500px;}
.yb5{bottom:214.048500px;}
.y1b4{bottom:214.123500px;}
.y42{bottom:214.572900px;}
.y144{bottom:218.285700px;}
.y22b{bottom:219.684750px;}
.yfb{bottom:227.000550px;}
.y18e{bottom:228.767700px;}
.y68{bottom:230.040600px;}
.y11f{bottom:230.756700px;}
.y8f{bottom:231.289500px;}
.y1ef{bottom:231.342450px;}
.y41{bottom:232.608900px;}
.yd8{bottom:232.971150px;}
.yb4{bottom:234.297000px;}
.y1b3{bottom:234.375000px;}
.y143{bottom:235.538700px;}
.y1d0{bottom:236.860650px;}
.y22a{bottom:239.934750px;}
.y169{bottom:243.061350px;}
.yfa{bottom:246.589050px;}
.y8e{bottom:248.542500px;}
.y18d{bottom:249.191700px;}
.y40{bottom:250.644900px;}
.y67{bottom:250.706100px;}
.y11e{bottom:251.059950px;}
.y142{bottom:252.791700px;}
.yd7{bottom:253.757400px;}
.y1b2{bottom:254.626500px;}
.y19{bottom:256.808850px;}
.y1cf{bottom:257.871150px;}
.y229{bottom:260.184750px;}
.y1ee{bottom:261.456450px;}
.y168{bottom:263.675100px;}
.y8d{bottom:265.795500px;}
.yf9{bottom:266.177550px;}
.y3f{bottom:268.680900px;}
.y18c{bottom:269.615700px;}
.y141{bottom:270.044700px;}
.y11d{bottom:271.363200px;}
.y66{bottom:271.371600px;}
.yd6{bottom:274.543650px;}
.y1b1{bottom:274.878000px;}
.y18{bottom:276.758850px;}
.yb3{bottom:278.181300px;}
.y1ed{bottom:283.022850px;}
.y8c{bottom:283.048500px;}
.y167{bottom:284.288850px;}
.yf8{bottom:285.766050px;}
.y3e{bottom:286.728450px;}
.y140{bottom:287.297700px;}
.y1ce{bottom:287.386650px;}
.y18b{bottom:290.039700px;}
.y11c{bottom:291.666450px;}
.y65{bottom:292.037100px;}
.y228{bottom:293.184750px;}
.y1b0{bottom:295.129500px;}
.yd5{bottom:295.329900px;}
.y17{bottom:296.708850px;}
.yb2{bottom:299.002050px;}
.y8b{bottom:303.297000px;}
.y13f{bottom:304.550700px;}
.y3d{bottom:304.764450px;}
.y166{bottom:304.902600px;}
.yf7{bottom:305.354550px;}
.y1cd{bottom:308.397150px;}
.y18a{bottom:310.463700px;}
.y11b{bottom:311.969700px;}
.y20c{bottom:312.286350px;}
.y64{bottom:312.702600px;}
.y1ec{bottom:313.136850px;}
.y1af{bottom:315.381000px;}
.yd4{bottom:316.116150px;}
.y16{bottom:316.658850px;}
.yb1{bottom:319.822800px;}
.y8a{bottom:321.800700px;}
.y3c{bottom:322.800450px;}
.y13e{bottom:324.799200px;}
.yf6{bottom:324.943050px;}
.y165{bottom:325.516350px;}
.y189{bottom:330.887700px;}
.y11a{bottom:332.272950px;}
.y20b{bottom:332.540850px;}
.y63{bottom:333.368100px;}
.y227{bottom:334.689750px;}
.y1eb{bottom:334.745850px;}
.y1ae{bottom:335.632500px;}
.y15{bottom:336.608850px;}
.yd3{bottom:336.902400px;}
.y1cc{bottom:337.912650px;}
.yb0{bottom:340.643550px;}
.y3b{bottom:340.882500px;}
.y89{bottom:342.049200px;}
.yf5{bottom:344.531550px;}
.y164{bottom:346.130100px;}
.y188{bottom:351.311700px;}
.y119{bottom:352.576200px;}
.y20a{bottom:352.795350px;}
.y226{bottom:354.189750px;}
.y1ad{bottom:355.884000px;}
.y14{bottom:356.558850px;}
.yd2{bottom:357.688650px;}
.y1cb{bottom:358.923150px;}
.y88{bottom:360.549750px;}
.y3a{bottom:361.168500px;}
.yaf{bottom:361.464300px;}
.yf4{bottom:364.120050px;}
.y1ea{bottom:364.859850px;}
.y163{bottom:366.743850px;}
.y13d{bottom:368.869350px;}
.y187{bottom:371.735700px;}
.y118{bottom:372.879450px;}
.y225{bottom:373.689750px;}
.y62{bottom:374.681850px;}
.y1ac{bottom:376.135500px;}
.y13{bottom:376.508850px;}
.y87{bottom:377.802750px;}
.y1ca{bottom:379.933650px;}
.y39{bottom:381.454500px;}
.y209{bottom:381.554850px;}
.yae{bottom:382.285050px;}
.y1e9{bottom:386.468850px;}
.y162{bottom:387.357600px;}
.y13c{bottom:389.396850px;}
.y186{bottom:392.159700px;}
.y117{bottom:393.182700px;}
.y224{bottom:393.189750px;}
.y61{bottom:395.347350px;}
.y1ab{bottom:396.387000px;}
.y12{bottom:396.458850px;}
.y86{bottom:398.051250px;}
.yd1{bottom:399.261150px;}
.y38{bottom:401.740500px;}
.y208{bottom:401.809350px;}
.yad{bottom:403.105800px;}
.yf3{bottom:407.802900px;}
.y161{bottom:407.971350px;}
.y1c9{bottom:409.449150px;}
.y13b{bottom:409.924350px;}
.y185{bottom:412.583700px;}
.y223{bottom:412.689750px;}
.y116{bottom:413.432100px;}
.y60{bottom:416.012850px;}
.y11{bottom:416.408850px;}
.y1e8{bottom:416.582850px;}
.y1aa{bottom:416.638500px;}
.yd0{bottom:420.047400px;}
.y37{bottom:422.026500px;}
.y207{bottom:422.063850px;}
.yac{bottom:423.926550px;}
.y160{bottom:428.585100px;}
.yf2{bottom:429.641400px;}
.y13a{bottom:430.451850px;}
.y222{bottom:432.189750px;}
.y184{bottom:433.007700px;}
.y115{bottom:433.735350px;}
.y10{bottom:436.358850px;}
.y5f{bottom:436.678350px;}
.y1e7{bottom:438.191850px;}
.y1c8{bottom:438.964650px;}
.ycf{bottom:440.833650px;}
.y85{bottom:442.014150px;}
.y36{bottom:442.312500px;}
.yab{bottom:444.747300px;}
.y15f{bottom:449.198850px;}
.y206{bottom:450.823350px;}
.y139{bottom:450.979350px;}
.yf1{bottom:451.479900px;}
.y221{bottom:451.689750px;}
.y114{bottom:454.038600px;}
.yf{bottom:456.308850px;}
.y1a9{bottom:457.141500px;}
.y5e{bottom:457.343850px;}
.y1e6{bottom:459.800850px;}
.y1c7{bottom:459.975150px;}
.yce{bottom:461.619900px;}
.y35{bottom:462.598500px;}
.y84{bottom:462.955650px;}
.yaa{bottom:465.568050px;}
.y15e{bottom:469.812600px;}
.y205{bottom:471.077850px;}
.y220{bottom:471.189750px;}
.y138{bottom:471.506850px;}
.yf0{bottom:473.318400px;}
.y183{bottom:473.855700px;}
.y113{bottom:474.341850px;}
.ye{bottom:476.258850px;}
.y1a8{bottom:477.393000px;}
.y5d{bottom:478.009350px;}
.ycd{bottom:482.406150px;}
.y34{bottom:482.884500px;}
.y83{bottom:483.897150px;}
.ya9{bottom:486.388800px;}
.y1c6{bottom:489.490650px;}
.y1e5{bottom:489.914850px;}
.y15d{bottom:490.426350px;}
.y21f{bottom:490.689750px;}
.y137{bottom:492.034350px;}
.y182{bottom:494.279700px;}
.y112{bottom:494.645100px;}
.y1a7{bottom:497.644500px;}
.y5c{bottom:498.674850px;}
.y204{bottom:499.837350px;}
.ycc{bottom:503.192400px;}
.y82{bottom:504.838650px;}
.ya8{bottom:507.209550px;}
.yd{bottom:508.958850px;}
.y21e{bottom:510.189750px;}
.y1c5{bottom:510.501150px;}
.y15c{bottom:511.040100px;}
.y1e4{bottom:511.523850px;}
.y136{bottom:512.561850px;}
.y181{bottom:514.703700px;}
.y111{bottom:514.948350px;}
.yef{bottom:517.011600px;}
.y1a6{bottom:517.896000px;}
.y5b{bottom:519.340350px;}
.y203{bottom:520.091850px;}
.y33{bottom:523.461600px;}
.ycb{bottom:523.978650px;}
.y81{bottom:525.780150px;}
.ya7{bottom:528.030300px;}
.y21d{bottom:529.689750px;}
.y15b{bottom:531.653850px;}
.y135{bottom:533.108850px;}
.y180{bottom:535.127700px;}
.y110{bottom:535.251600px;}
.yee{bottom:536.600100px;}
.y1a5{bottom:538.147500px;}
.y5a{bottom:540.005850px;}
.y1c4{bottom:540.016650px;}
.y1e3{bottom:541.637850px;}
.y32{bottom:544.506600px;}
.yca{bottom:544.764900px;}
.y80{bottom:546.721650px;}
.ya6{bottom:548.851050px;}
.y202{bottom:548.851350px;}
.y21c{bottom:549.189750px;}
.y15a{bottom:552.267600px;}
.y134{bottom:553.636350px;}
.y17f{bottom:555.544800px;}
.y10f{bottom:555.554850px;}
.yed{bottom:556.188600px;}
.y1a4{bottom:558.399000px;}
.y59{bottom:560.671350px;}
.y1e2{bottom:563.246850px;}
.y31{bottom:565.551600px;}
.yc9{bottom:565.569450px;}
.yc{bottom:567.177900px;}
.y7f{bottom:567.663150px;}
.y21b{bottom:568.689750px;}
.y201{bottom:569.105850px;}
.y1c3{bottom:569.532150px;}
.ya5{bottom:569.671800px;}
.y159{bottom:572.881350px;}
.y133{bottom:574.163850px;}
.yec{bottom:575.777100px;}
.y10e{bottom:575.851350px;}
.y17e{bottom:575.968800px;}
.y1a3{bottom:578.650500px;}
.y58{bottom:581.336850px;}
.yc8{bottom:586.355700px;}
.y30{bottom:586.557750px;}
.y21a{bottom:588.189750px;}
.y7e{bottom:588.604650px;}
.ya4{bottom:590.492550px;}
.y1c2{bottom:590.542650px;}
.y1e1{bottom:593.360850px;}
.y158{bottom:593.495100px;}
.yb{bottom:594.624900px;}
.y132{bottom:594.771600px;}
.yeb{bottom:595.365600px;}
.y10d{bottom:596.154600px;}
.y17d{bottom:596.389500px;}
.y200{bottom:597.865350px;}
.y1a2{bottom:598.902000px;}
.y57{bottom:602.002350px;}
.y2f{bottom:606.102750px;}
.yc7{bottom:607.141950px;}
.y219{bottom:607.689750px;}
.y7d{bottom:609.546150px;}
.ya3{bottom:611.313300px;}
.y157{bottom:614.108850px;}
.yea{bottom:614.954100px;}
.y1e0{bottom:614.969850px;}
.y131{bottom:615.299100px;}
.y10c{bottom:616.406250px;}
.y17c{bottom:616.765350px;}
.y1ff{bottom:618.119850px;}
.y1a1{bottom:619.153500px;}
.y1c1{bottom:620.058150px;}
.y56{bottom:622.667850px;}
.y2e{bottom:625.647750px;}
.y218{bottom:627.189750px;}
.yc6{bottom:627.928200px;}
.y7c{bottom:630.487650px;}
.ya2{bottom:632.078850px;}
.y10b{bottom:634.455750px;}
.ye9{bottom:634.542600px;}
.y156{bottom:634.722600px;}
.y130{bottom:635.826600px;}
.y1df{bottom:636.578850px;}
.y17b{bottom:637.189350px;}
.y1fe{bottom:638.374350px;}
.y1a0{bottom:639.405000px;}
.y55{bottom:643.333350px;}
.ya{bottom:643.358400px;}
.y2d{bottom:645.192750px;}
.y217{bottom:646.689750px;}
.yc5{bottom:648.714450px;}
.y7b{bottom:651.429150px;}
.y10a{bottom:652.505250px;}
.ya1{bottom:652.899600px;}
.ye8{bottom:654.131100px;}
.y155{bottom:655.336350px;}
.y12f{bottom:656.354100px;}
.y17a{bottom:657.613350px;}
.y1fd{bottom:658.628850px;}
.y19f{bottom:659.683350px;}
.y54{bottom:663.998850px;}
.y2c{bottom:664.737750px;}
.y216{bottom:666.189750px;}
.y1de{bottom:666.692850px;}
.yc4{bottom:669.500700px;}
.y109{bottom:670.554750px;}
.y7a{bottom:672.370650px;}
.ye7{bottom:673.719600px;}
.ya0{bottom:673.720350px;}
.y9{bottom:675.299400px;}
.y154{bottom:675.950100px;}
.y12e{bottom:676.881600px;}
.y179{bottom:678.037350px;}
.y19e{bottom:679.934850px;}
.y2b{bottom:684.282750px;}
.y53{bottom:684.664350px;}
.y215{bottom:685.689750px;}
.y1fc{bottom:687.388350px;}
.y1dd{bottom:688.301850px;}
.yc3{bottom:690.286950px;}
.ye6{bottom:693.308100px;}
.y79{bottom:693.312150px;}
.y9f{bottom:694.541100px;}
.y153{bottom:696.563850px;}
.y178{bottom:698.461350px;}
.y19d{bottom:700.186350px;}
.y2a{bottom:703.827750px;}
.y214{bottom:705.189750px;}
.y52{bottom:705.329850px;}
.y108{bottom:706.653750px;}
.y8{bottom:707.240400px;}
.y1fb{bottom:707.642850px;}
.yc2{bottom:711.073200px;}
.y1c0{bottom:713.606850px;}
.y78{bottom:714.253650px;}
.y9e{bottom:715.361850px;}
.y152{bottom:717.177600px;}
.y12d{bottom:717.953850px;}
.y1dc{bottom:718.415850px;}
.y177{bottom:718.885350px;}
.y19c{bottom:720.437850px;}
.y29{bottom:723.372750px;}
.y213{bottom:724.689750px;}
.y107{bottom:724.703250px;}
.y51{bottom:725.995350px;}
.ye5{bottom:732.485100px;}
.y1bf{bottom:734.617350px;}
.y77{bottom:735.195150px;}
.y9d{bottom:736.182600px;}
.y1fa{bottom:736.402350px;}
.y151{bottom:737.791350px;}
.y12c{bottom:738.481350px;}
.y7{bottom:739.181400px;}
.y176{bottom:739.309350px;}
.y19b{bottom:740.689350px;}
.y106{bottom:742.752750px;}
.y28{bottom:742.917750px;}
.y212{bottom:744.189750px;}
.y50{bottom:746.660850px;}
.y1db{bottom:748.529850px;}
.ye4{bottom:752.073600px;}
.y1be{bottom:755.627850px;}
.y76{bottom:756.129300px;}
.y1f9{bottom:756.656850px;}
.y9c{bottom:757.003350px;}
.yc1{bottom:757.372350px;}
.y12b{bottom:759.008850px;}
.y175{bottom:759.733350px;}
.y105{bottom:760.802250px;}
.y19a{bottom:760.940850px;}
.y27{bottom:762.462750px;}
.y211{bottom:763.689750px;}
.y4f{bottom:767.326350px;}
.y1da{bottom:770.138850px;}
.ye3{bottom:771.670350px;}
.yc0{bottom:775.852350px;}
.y1bd{bottom:776.638350px;}
.y75{bottom:777.070800px;}
.y9b{bottom:777.794100px;}
.y150{bottom:779.018850px;}
.y12a{bottom:779.536350px;}
.y174{bottom:780.157350px;}
.y199{bottom:781.192350px;}
.y26{bottom:782.007750px;}
.y210{bottom:783.189750px;}
.y1f8{bottom:785.416350px;}
.y4e{bottom:787.991850px;}
.ye2{bottom:793.508850px;}
.ybf{bottom:794.332350px;}
.y104{bottom:796.901250px;}
.y1bc{bottom:797.648850px;}
.y74{bottom:797.993850px;}
.y9a{bottom:798.614850px;}
.y14f{bottom:799.632600px;}
.y129{bottom:800.063850px;}
.y1d9{bottom:800.252850px;}
.y173{bottom:800.581350px;}
.y6{bottom:800.889750px;}
.y25{bottom:801.552750px;}
.y4d{bottom:808.657350px;}
.ybe{bottom:812.812350px;}
.y1f7{bottom:814.175850px;}
.y103{bottom:814.950750px;}
.ye1{bottom:815.347350px;}
.y20f{bottom:815.439750px;}
.y1bb{bottom:818.659350px;}
.y73{bottom:818.935350px;}
.y99{bottom:819.435600px;}
.y14e{bottom:820.246350px;}
.y128{bottom:820.591350px;}
.y172{bottom:821.005350px;}
.y198{bottom:821.695350px;}
.y1d8{bottom:821.861850px;}
.y5{bottom:830.844750px;}
.y102{bottom:833.000250px;}
.y24{bottom:833.847750px;}
.ye0{bottom:837.185850px;}
.y1ba{bottom:839.669850px;}
.y72{bottom:839.876850px;}
.y98{bottom:840.256350px;}
.y14d{bottom:840.860100px;}
.y127{bottom:841.118850px;}
.y171{bottom:841.429350px;}
.y197{bottom:841.946850px;}
.y1f6{bottom:842.935350px;}
.y4c{bottom:849.953250px;}
.y101{bottom:851.049750px;}
.y1d7{bottom:851.975850px;}
.y4{bottom:852.294750px;}
.ydf{bottom:859.024350px;}
.y1b9{bottom:860.680350px;}
.y71{bottom:860.818350px;}
.ybd{bottom:861.128850px;}
.y14c{bottom:861.473850px;}
.y126{bottom:861.646350px;}
.y170{bottom:861.853350px;}
.y196{bottom:862.198350px;}
.y1f5{bottom:863.189850px;}
.y4b{bottom:868.367250px;}
.y20e{bottom:873.201450px;}
.y1d6{bottom:873.584850px;}
.yde{bottom:880.862850px;}
.y1b8{bottom:881.690850px;}
.y70{bottom:881.759850px;}
.y97{bottom:881.880600px;}
.ybc{bottom:881.915100px;}
.y14b{bottom:882.087600px;}
.y125{bottom:882.173850px;}
.y3{bottom:882.249750px;}
.y16f{bottom:882.277350px;}
.y195{bottom:882.449850px;}
.y23{bottom:883.152750px;}
.y1f4{bottom:883.444350px;}
.y4a{bottom:886.781250px;}
.y100{bottom:887.148750px;}
.y20d{bottom:900.207450px;}
.y6f{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.193550px;}
.y49{bottom:905.195250px;}
.y21{bottom:948.189000px;}
.y48{bottom:966.189000px;}
.h12{height:37.983820px;}
.h15{height:42.292969px;}
.hc{height:44.414062px;}
.h9{height:48.530695px;}
.hb{height:49.965820px;}
.h16{height:54.041016px;}
.h4{height:55.517578px;}
.h3{height:58.293457px;}
.ha{height:60.512695px;}
.hf{height:63.845215px;}
.h13{height:63.965215px;}
.h17{height:64.060615px;}
.h14{height:64.066015px;}
.h8{height:67.236328px;}
.hd{height:67.253128px;}
.h2{height:69.396973px;}
.h1b{height:70.598145px;}
.h1c{height:70.768545px;}
.he{height:77.321777px;}
.h19{height:77.334977px;}
.h1a{height:77.349377px;}
.h11{height:77.351177px;}
.h10{height:77.395577px;}
.h18{height:77.514377px;}
.h7{height:94.130859px;}
.h6{height:99.931641px;}
.h5{height:121.025391px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x11{left:80.586750px;}
.x7{left:82.214250px;}
.x8{left:83.896050px;}
.x1{left:85.039350px;}
.x9{left:95.036100px;}
.xc{left:102.100800px;}
.x5{left:105.030600px;}
.x6{left:106.596150px;}
.xb{left:113.190900px;}
.xa{left:114.773100px;}
.xd{left:171.785400px;}
.x2{left:231.287850px;}
.x4{left:232.835700px;}
.x3{left:233.925750px;}
.xf{left:328.910400px;}
.xe{left:423.995400px;}
.x10{left:475.685400px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v6{vertical-align:-7.829867pt;}
.v5{vertical-align:-5.296000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.609600pt;}
.v4{vertical-align:15.156267pt;}
.v1{vertical-align:26.547733pt;}
.lsa{letter-spacing:-9.408000pt;}
.lsf{letter-spacing:-5.077333pt;}
.ls6{letter-spacing:-4.608000pt;}
.ls35{letter-spacing:-3.250667pt;}
.ls26{letter-spacing:-2.986667pt;}
.ls4d{letter-spacing:-2.698667pt;}
.ls4a{letter-spacing:-2.269333pt;}
.ls1e{letter-spacing:-2.256000pt;}
.ls1d{letter-spacing:-2.024000pt;}
.ls1c{letter-spacing:-1.973333pt;}
.ls52{letter-spacing:-1.848000pt;}
.ls3b{letter-spacing:-1.813333pt;}
.ls49{letter-spacing:-1.778667pt;}
.ls12{letter-spacing:-1.760000pt;}
.ls8{letter-spacing:-1.728000pt;}
.lse{letter-spacing:-1.717333pt;}
.ls7{letter-spacing:-1.632000pt;}
.ls28{letter-spacing:-1.533333pt;}
.lsb{letter-spacing:-1.440000pt;}
.ls10{letter-spacing:-1.418667pt;}
.ls4e{letter-spacing:-1.349333pt;}
.ls5{letter-spacing:-1.344000pt;}
.lsd{letter-spacing:-1.269333pt;}
.ls51{letter-spacing:-1.232000pt;}
.ls32{letter-spacing:-1.200000pt;}
.ls2f{letter-spacing:-1.104000pt;}
.lsc{letter-spacing:-1.045333pt;}
.ls24{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls2e{letter-spacing:-0.552000pt;}
.ls41{letter-spacing:-0.490667pt;}
.ls31{letter-spacing:-0.432000pt;}
.ls30{letter-spacing:-0.306667pt;}
.ls25{letter-spacing:-0.266667pt;}
.ls33{letter-spacing:-0.240000pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000267pt;}
.ls34{letter-spacing:0.006896pt;}
.ls23{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.633600pt;}
.ls55{letter-spacing:0.853333pt;}
.ls15{letter-spacing:0.955200pt;}
.ls2{letter-spacing:1.120000pt;}
.ls1f{letter-spacing:1.152000pt;}
.ls3d{letter-spacing:1.173333pt;}
.ls54{letter-spacing:1.226667pt;}
.ls4{letter-spacing:1.440000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:2.112000pt;}
.ls17{letter-spacing:2.133333pt;}
.ls2b{letter-spacing:2.160000pt;}
.ls38{letter-spacing:2.269333pt;}
.ls43{letter-spacing:2.520189pt;}
.ls2d{letter-spacing:2.933333pt;}
.ls45{letter-spacing:3.091923pt;}
.ls44{letter-spacing:3.092456pt;}
.ls14{letter-spacing:3.733333pt;}
.ls39{letter-spacing:3.800000pt;}
.ls48{letter-spacing:4.029600pt;}
.ls40{letter-spacing:4.133333pt;}
.ls21{letter-spacing:4.293333pt;}
.ls19{letter-spacing:4.853333pt;}
.ls4f{letter-spacing:5.040000pt;}
.ls47{letter-spacing:5.078400pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls11{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls4c{letter-spacing:5.600000pt;}
.ls53{letter-spacing:5.685333pt;}
.ls18{letter-spacing:5.933333pt;}
.ls4b{letter-spacing:6.400000pt;}
.ls50{letter-spacing:6.666667pt;}
.ls3e{letter-spacing:7.253472pt;}
.ls3f{letter-spacing:7.254005pt;}
.ls42{letter-spacing:7.266667pt;}
.ls1a{letter-spacing:7.733333pt;}
.ls2a{letter-spacing:7.912000pt;}
.ls46{letter-spacing:8.813600pt;}
.ls20{letter-spacing:11.208000pt;}
.ls36{letter-spacing:139.893333pt;}
.ls37{letter-spacing:177.226667pt;}
.ws4{word-spacing:-28.896000pt;}
.ws47{word-spacing:-26.000000pt;}
.ws55{word-spacing:-25.400000pt;}
.ws3{word-spacing:-25.248000pt;}
.ws0{word-spacing:-25.152000pt;}
.ws4d{word-spacing:-25.133333pt;}
.ws15{word-spacing:-24.666667pt;}
.ws1{word-spacing:-23.712000pt;}
.ws43{word-spacing:-22.866667pt;}
.ws3c{word-spacing:-22.533333pt;}
.ws2e{word-spacing:-21.666667pt;}
.ws50{word-spacing:-20.776000pt;}
.ws58{word-spacing:-20.320000pt;}
.ws9{word-spacing:-20.213333pt;}
.ws17{word-spacing:-20.106667pt;}
.ws2{word-spacing:-19.104000pt;}
.ws5{word-spacing:-17.568000pt;}
.ws31{word-spacing:-17.234667pt;}
.ws6{word-spacing:-17.173333pt;}
.ws8{word-spacing:-17.024000pt;}
.ws7{word-spacing:-16.725333pt;}
.ws52{word-spacing:-15.736000pt;}
.ws16{word-spacing:-15.344000pt;}
.ws19{word-spacing:-15.149333pt;}
.ws18{word-spacing:-14.986667pt;}
.ws30{word-spacing:-14.842667pt;}
.ws27{word-spacing:-14.720000pt;}
.ws2f{word-spacing:-14.597333pt;}
.ws40{word-spacing:-14.346667pt;}
.ws51{word-spacing:-13.832000pt;}
.ws4f{word-spacing:-13.800000pt;}
.ws29{word-spacing:-13.616000pt;}
.ws1c{word-spacing:-13.488000pt;}
.ws49{word-spacing:-13.432000pt;}
.ws48{word-spacing:-13.370667pt;}
.wsa{word-spacing:-13.173333pt;}
.ws1a{word-spacing:-13.125333pt;}
.ws4a{word-spacing:-12.880000pt;}
.ws26{word-spacing:-12.426667pt;}
.ws28{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.856000pt;}
.ws35{word-spacing:-11.616000pt;}
.ws33{word-spacing:-11.424000pt;}
.wsb{word-spacing:-11.413333pt;}
.ws3e{word-spacing:-11.360000pt;}
.ws34{word-spacing:-10.656000pt;}
.ws32{word-spacing:-10.047811pt;}
.ws1d{word-spacing:-9.600000pt;}
.ws1e{word-spacing:-7.863504pt;}
.ws21{word-spacing:-7.733333pt;}
.ws59{word-spacing:-6.666667pt;}
.ws54{word-spacing:-5.600000pt;}
.wsd{word-spacing:-5.333333pt;}
.ws4e{word-spacing:-4.477333pt;}
.ws23{word-spacing:-3.733333pt;}
.ws38{word-spacing:-2.448000pt;}
.ws3a{word-spacing:-2.160000pt;}
.ws1f{word-spacing:-2.133333pt;}
.ws24{word-spacing:-1.152000pt;}
.wse{word-spacing:-1.120000pt;}
.ws4b{word-spacing:-0.674667pt;}
.ws42{word-spacing:-0.480000pt;}
.ws2b{word-spacing:-0.106667pt;}
.wsc{word-spacing:0.000000pt;}
.ws41{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws46{word-spacing:0.490667pt;}
.ws2d{word-spacing:0.586667pt;}
.wsf{word-spacing:0.640000pt;}
.ws25{word-spacing:0.672000pt;}
.ws13{word-spacing:1.045333pt;}
.ws36{word-spacing:1.104000pt;}
.ws56{word-spacing:1.232000pt;}
.ws10{word-spacing:1.344000pt;}
.ws12{word-spacing:1.440000pt;}
.ws44{word-spacing:1.533333pt;}
.ws11{word-spacing:1.632000pt;}
.ws4c{word-spacing:1.717333pt;}
.ws57{word-spacing:1.848000pt;}
.ws22{word-spacing:1.973333pt;}
.ws39{word-spacing:2.160000pt;}
.ws53{word-spacing:2.698667pt;}
.ws3b{word-spacing:3.250667pt;}
.ws14{word-spacing:5.077333pt;}
.ws37{word-spacing:7.973333pt;}
.ws45{word-spacing:8.341333pt;}
.ws3d{word-spacing:92.181333pt;}
.ws3f{word-spacing:163.397333pt;}
.ws20{word-spacing:227.920000pt;}
._30{margin-left:-16.408267pt;}
._25{margin-left:-13.561867pt;}
._18{margin-left:-11.421867pt;}
._b{margin-left:-8.965333pt;}
._12{margin-left:-7.674133pt;}
._27{margin-left:-6.765867pt;}
._13{margin-left:-5.680000pt;}
._a{margin-left:-4.710933pt;}
._4{margin-left:-3.444000pt;}
._3{margin-left:-2.368800pt;}
._9{margin-left:-1.241067pt;}
._5{width:1.182400pt;}
._1{width:2.133333pt;}
._e{width:3.833067pt;}
._6{width:5.103467pt;}
._7{width:5.993867pt;}
._8{width:7.288800pt;}
._f{width:8.339733pt;}
._d{width:9.546133pt;}
._1a{width:10.489067pt;}
._c{width:11.443200pt;}
._1d{width:12.397968pt;}
._15{width:13.406400pt;}
._19{width:14.951733pt;}
._16{width:15.936000pt;}
._2f{width:17.092267pt;}
._1b{width:18.549333pt;}
._24{width:22.128000pt;}
._2e{width:23.060800pt;}
._21{width:24.650667pt;}
._2d{width:26.450667pt;}
._23{width:29.039963pt;}
._2c{width:31.729600pt;}
._10{width:38.617920pt;}
._2b{width:44.196533pt;}
._2a{width:50.777600pt;}
._29{width:55.614400pt;}
._22{width:56.688000pt;}
._14{width:76.048000pt;}
._1f{width:108.443733pt;}
._26{width:437.739733pt;}
._28{width:439.493333pt;}
._11{width:445.680000pt;}
._1c{width:447.840000pt;}
._0{width:514.133333pt;}
._17{width:883.294400pt;}
._1e{width:885.627733pt;}
._20{width:889.227733pt;}
._2{width:890.987733pt;}
.fs6{font-size:27.984000pt;}
.fsc{font-size:32.648000pt;}
.fsb{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y6e{bottom:94.264533pt;}
.y194{bottom:94.421067pt;}
.y20{bottom:94.472267pt;}
.y16e{bottom:94.477733pt;}
.y14a{bottom:94.480400pt;}
.y1d5{bottom:94.482800pt;}
.yff{bottom:94.482933pt;}
.ybb{bottom:94.483067pt;}
.ydd{bottom:94.485600pt;}
.y124{bottom:94.485733pt;}
.y47{bottom:94.496667pt;}
.y96{bottom:97.151067pt;}
.y1f{bottom:109.808267pt;}
.y16d{bottom:109.813733pt;}
.y149{bottom:109.816400pt;}
.yfe{bottom:109.818933pt;}
.yba{bottom:109.819067pt;}
.y46{bottom:110.528667pt;}
.ydc{bottom:112.484267pt;}
.y123{bottom:112.484400pt;}
.y193{bottom:112.575733pt;}
.y6d{bottom:112.633867pt;}
.y1d4{bottom:113.158800pt;}
.y95{bottom:113.574667pt;}
.y1f3{bottom:113.685733pt;}
.y1e{bottom:125.144267pt;}
.y16c{bottom:125.149733pt;}
.y148{bottom:125.152400pt;}
.y45{bottom:126.560667pt;}
.yfd{bottom:127.817600pt;}
.yb9{bottom:127.817733pt;}
.y94{bottom:128.910667pt;}
.y192{bottom:130.730400pt;}
.y6c{bottom:131.003200pt;}
.y122{bottom:131.597333pt;}
.y1b7{bottom:136.328000pt;}
.y1d3{bottom:139.394800pt;}
.y1f2{bottom:140.453733pt;}
.y1d{bottom:140.480267pt;}
.y16b{bottom:140.485733pt;}
.y147{bottom:143.151067pt;}
.y93{bottom:144.246667pt;}
.yb8{bottom:144.257333pt;}
.y121{bottom:148.045067pt;}
.y191{bottom:148.885067pt;}
.y6b{bottom:149.372533pt;}
.ydb{bottom:151.655467pt;}
.y1b6{bottom:154.329333pt;}
.y1c{bottom:155.816267pt;}
.y16a{bottom:155.821733pt;}
.y44{bottom:158.667467pt;}
.y22d{bottom:159.275333pt;}
.y92{bottom:159.582667pt;}
.yb7{bottom:159.593333pt;}
.y1f1{bottom:159.661733pt;}
.y146{bottom:162.264000pt;}
.y1d2{bottom:165.630800pt;}
.y120{bottom:166.043733pt;}
.yfc{bottom:166.954267pt;}
.y190{bottom:167.039733pt;}
.y6a{bottom:167.741867pt;}
.yda{bottom:170.132133pt;}
.y1b{bottom:171.152267pt;}
.y1b5{bottom:172.330667pt;}
.y43{bottom:174.699467pt;}
.y91{bottom:174.918667pt;}
.yb6{bottom:174.929333pt;}
.y22c{bottom:177.275333pt;}
.y145{bottom:178.695733pt;}
.y1d1{bottom:184.306800pt;}
.y18f{bottom:185.194400pt;}
.y69{bottom:186.111200pt;}
.y1f0{bottom:186.429733pt;}
.yd9{bottom:188.608800pt;}
.y1a{bottom:189.150933pt;}
.y90{bottom:190.254667pt;}
.yb5{bottom:190.265333pt;}
.y1b4{bottom:190.332000pt;}
.y42{bottom:190.731467pt;}
.y144{bottom:194.031733pt;}
.y22b{bottom:195.275333pt;}
.yfb{bottom:201.778267pt;}
.y18e{bottom:203.349067pt;}
.y68{bottom:204.480533pt;}
.y11f{bottom:205.117067pt;}
.y8f{bottom:205.590667pt;}
.y1ef{bottom:205.637733pt;}
.y41{bottom:206.763467pt;}
.yd8{bottom:207.085467pt;}
.yb4{bottom:208.264000pt;}
.y1b3{bottom:208.333333pt;}
.y143{bottom:209.367733pt;}
.y1d0{bottom:210.542800pt;}
.y22a{bottom:213.275333pt;}
.y169{bottom:216.054533pt;}
.yfa{bottom:219.190267pt;}
.y8e{bottom:220.926667pt;}
.y18d{bottom:221.503733pt;}
.y40{bottom:222.795467pt;}
.y67{bottom:222.849867pt;}
.y11e{bottom:223.164400pt;}
.y142{bottom:224.703733pt;}
.yd7{bottom:225.562133pt;}
.y1b2{bottom:226.334667pt;}
.y19{bottom:228.274533pt;}
.y1cf{bottom:229.218800pt;}
.y229{bottom:231.275333pt;}
.y1ee{bottom:232.405733pt;}
.y168{bottom:234.377867pt;}
.y8d{bottom:236.262667pt;}
.yf9{bottom:236.602267pt;}
.y3f{bottom:238.827467pt;}
.y18c{bottom:239.658400pt;}
.y141{bottom:240.039733pt;}
.y11d{bottom:241.211733pt;}
.y66{bottom:241.219200pt;}
.yd6{bottom:244.038800pt;}
.y1b1{bottom:244.336000pt;}
.y18{bottom:246.007867pt;}
.yb3{bottom:247.272267pt;}
.y1ed{bottom:251.575867pt;}
.y8c{bottom:251.598667pt;}
.y167{bottom:252.701200pt;}
.yf8{bottom:254.014267pt;}
.y3e{bottom:254.869733pt;}
.y140{bottom:255.375733pt;}
.y1ce{bottom:255.454800pt;}
.y18b{bottom:257.813067pt;}
.y11c{bottom:259.259067pt;}
.y65{bottom:259.588533pt;}
.y228{bottom:260.608667pt;}
.y1b0{bottom:262.337333pt;}
.yd5{bottom:262.515467pt;}
.y17{bottom:263.741200pt;}
.yb2{bottom:265.779600pt;}
.y8b{bottom:269.597333pt;}
.y13f{bottom:270.711733pt;}
.y3d{bottom:270.901733pt;}
.y166{bottom:271.024533pt;}
.yf7{bottom:271.426267pt;}
.y1cd{bottom:274.130800pt;}
.y18a{bottom:275.967733pt;}
.y11b{bottom:277.306400pt;}
.y20c{bottom:277.587867pt;}
.y64{bottom:277.957867pt;}
.y1ec{bottom:278.343867pt;}
.y1af{bottom:280.338667pt;}
.yd4{bottom:280.992133pt;}
.y16{bottom:281.474533pt;}
.yb1{bottom:284.286933pt;}
.y8a{bottom:286.045067pt;}
.y3c{bottom:286.933733pt;}
.y13e{bottom:288.710400pt;}
.yf6{bottom:288.838267pt;}
.y165{bottom:289.347867pt;}
.y189{bottom:294.122400pt;}
.y11a{bottom:295.353733pt;}
.y20b{bottom:295.591867pt;}
.y63{bottom:296.327200pt;}
.y227{bottom:297.502000pt;}
.y1eb{bottom:297.551867pt;}
.y1ae{bottom:298.340000pt;}
.y15{bottom:299.207867pt;}
.yd3{bottom:299.468800pt;}
.y1cc{bottom:300.366800pt;}
.yb0{bottom:302.794267pt;}
.y3b{bottom:303.006667pt;}
.y89{bottom:304.043733pt;}
.yf5{bottom:306.250267pt;}
.y164{bottom:307.671200pt;}
.y188{bottom:312.277067pt;}
.y119{bottom:313.401067pt;}
.y20a{bottom:313.595867pt;}
.y226{bottom:314.835333pt;}
.y1ad{bottom:316.341333pt;}
.y14{bottom:316.941200pt;}
.yd2{bottom:317.945467pt;}
.y1cb{bottom:319.042800pt;}
.y88{bottom:320.488667pt;}
.y3a{bottom:321.038667pt;}
.yaf{bottom:321.301600pt;}
.yf4{bottom:323.662267pt;}
.y1ea{bottom:324.319867pt;}
.y163{bottom:325.994533pt;}
.y13d{bottom:327.883867pt;}
.y187{bottom:330.431733pt;}
.y118{bottom:331.448400pt;}
.y225{bottom:332.168667pt;}
.y62{bottom:333.050533pt;}
.y1ac{bottom:334.342667pt;}
.y13{bottom:334.674533pt;}
.y87{bottom:335.824667pt;}
.y1ca{bottom:337.718800pt;}
.y39{bottom:339.070667pt;}
.y209{bottom:339.159867pt;}
.yae{bottom:339.808933pt;}
.y1e9{bottom:343.527867pt;}
.y162{bottom:344.317867pt;}
.y13c{bottom:346.130533pt;}
.y186{bottom:348.586400pt;}
.y117{bottom:349.495733pt;}
.y224{bottom:349.502000pt;}
.y61{bottom:351.419867pt;}
.y1ab{bottom:352.344000pt;}
.y12{bottom:352.407867pt;}
.y86{bottom:353.823333pt;}
.yd1{bottom:354.898800pt;}
.y38{bottom:357.102667pt;}
.y208{bottom:357.163867pt;}
.yad{bottom:358.316267pt;}
.yf3{bottom:362.491467pt;}
.y161{bottom:362.641200pt;}
.y1c9{bottom:363.954800pt;}
.y13b{bottom:364.377200pt;}
.y185{bottom:366.741067pt;}
.y223{bottom:366.835333pt;}
.y116{bottom:367.495200pt;}
.y60{bottom:369.789200pt;}
.y11{bottom:370.141200pt;}
.y1e8{bottom:370.295867pt;}
.y1aa{bottom:370.345333pt;}
.yd0{bottom:373.375467pt;}
.y37{bottom:375.134667pt;}
.y207{bottom:375.167867pt;}
.yac{bottom:376.823600pt;}
.y160{bottom:380.964533pt;}
.yf2{bottom:381.903467pt;}
.y13a{bottom:382.623867pt;}
.y222{bottom:384.168667pt;}
.y184{bottom:384.895733pt;}
.y115{bottom:385.542533pt;}
.y10{bottom:387.874533pt;}
.y5f{bottom:388.158533pt;}
.y1e7{bottom:389.503867pt;}
.y1c8{bottom:390.190800pt;}
.ycf{bottom:391.852133pt;}
.y85{bottom:392.901467pt;}
.y36{bottom:393.166667pt;}
.yab{bottom:395.330933pt;}
.y15f{bottom:399.287867pt;}
.y206{bottom:400.731867pt;}
.y139{bottom:400.870533pt;}
.yf1{bottom:401.315467pt;}
.y221{bottom:401.502000pt;}
.y114{bottom:403.589867pt;}
.yf{bottom:405.607867pt;}
.y1a9{bottom:406.348000pt;}
.y5e{bottom:406.527867pt;}
.y1e6{bottom:408.711867pt;}
.y1c7{bottom:408.866800pt;}
.yce{bottom:410.328800pt;}
.y35{bottom:411.198667pt;}
.y84{bottom:411.516133pt;}
.yaa{bottom:413.838267pt;}
.y15e{bottom:417.611200pt;}
.y205{bottom:418.735867pt;}
.y220{bottom:418.835333pt;}
.y138{bottom:419.117200pt;}
.yf0{bottom:420.727467pt;}
.y183{bottom:421.205067pt;}
.y113{bottom:421.637200pt;}
.ye{bottom:423.341200pt;}
.y1a8{bottom:424.349333pt;}
.y5d{bottom:424.897200pt;}
.ycd{bottom:428.805467pt;}
.y34{bottom:429.230667pt;}
.y83{bottom:430.130800pt;}
.ya9{bottom:432.345600pt;}
.y1c6{bottom:435.102800pt;}
.y1e5{bottom:435.479867pt;}
.y15d{bottom:435.934533pt;}
.y21f{bottom:436.168667pt;}
.y137{bottom:437.363867pt;}
.y182{bottom:439.359733pt;}
.y112{bottom:439.684533pt;}
.y1a7{bottom:442.350667pt;}
.y5c{bottom:443.266533pt;}
.y204{bottom:444.299867pt;}
.ycc{bottom:447.282133pt;}
.y82{bottom:448.745467pt;}
.ya8{bottom:450.852933pt;}
.yd{bottom:452.407867pt;}
.y21e{bottom:453.502000pt;}
.y1c5{bottom:453.778800pt;}
.y15c{bottom:454.257867pt;}
.y1e4{bottom:454.687867pt;}
.y136{bottom:455.610533pt;}
.y181{bottom:457.514400pt;}
.y111{bottom:457.731867pt;}
.yef{bottom:459.565867pt;}
.y1a6{bottom:460.352000pt;}
.y5b{bottom:461.635867pt;}
.y203{bottom:462.303867pt;}
.y33{bottom:465.299200pt;}
.ycb{bottom:465.758800pt;}
.y81{bottom:467.360133pt;}
.ya7{bottom:469.360267pt;}
.y21d{bottom:470.835333pt;}
.y15b{bottom:472.581200pt;}
.y135{bottom:473.874533pt;}
.y180{bottom:475.669067pt;}
.y110{bottom:475.779200pt;}
.yee{bottom:476.977867pt;}
.y1a5{bottom:478.353333pt;}
.y5a{bottom:480.005200pt;}
.y1c4{bottom:480.014800pt;}
.y1e3{bottom:481.455867pt;}
.y32{bottom:484.005867pt;}
.yca{bottom:484.235467pt;}
.y80{bottom:485.974800pt;}
.ya6{bottom:487.867600pt;}
.y202{bottom:487.867867pt;}
.y21c{bottom:488.168667pt;}
.y15a{bottom:490.904533pt;}
.y134{bottom:492.121200pt;}
.y17f{bottom:493.817600pt;}
.y10f{bottom:493.826533pt;}
.yed{bottom:494.389867pt;}
.y1a4{bottom:496.354667pt;}
.y59{bottom:498.374533pt;}
.y1e2{bottom:500.663867pt;}
.y31{bottom:502.712533pt;}
.yc9{bottom:502.728400pt;}
.yc{bottom:504.158133pt;}
.y7f{bottom:504.589467pt;}
.y21b{bottom:505.502000pt;}
.y201{bottom:505.871867pt;}
.y1c3{bottom:506.250800pt;}
.ya5{bottom:506.374933pt;}
.y159{bottom:509.227867pt;}
.y133{bottom:510.367867pt;}
.yec{bottom:511.801867pt;}
.y10e{bottom:511.867867pt;}
.y17e{bottom:511.972267pt;}
.y1a3{bottom:514.356000pt;}
.y58{bottom:516.743867pt;}
.yc8{bottom:521.205067pt;}
.y30{bottom:521.384667pt;}
.y21a{bottom:522.835333pt;}
.y7e{bottom:523.204133pt;}
.ya4{bottom:524.882267pt;}
.y1c2{bottom:524.926800pt;}
.y1e1{bottom:527.431867pt;}
.y158{bottom:527.551200pt;}
.yb{bottom:528.555467pt;}
.y132{bottom:528.685867pt;}
.yeb{bottom:529.213867pt;}
.y10d{bottom:529.915200pt;}
.y17d{bottom:530.124000pt;}
.y200{bottom:531.435867pt;}
.y1a2{bottom:532.357333pt;}
.y57{bottom:535.113200pt;}
.y2f{bottom:538.758000pt;}
.yc7{bottom:539.681733pt;}
.y219{bottom:540.168667pt;}
.y7d{bottom:541.818800pt;}
.ya3{bottom:543.389600pt;}
.y157{bottom:545.874533pt;}
.yea{bottom:546.625867pt;}
.y1e0{bottom:546.639867pt;}
.y131{bottom:546.932533pt;}
.y10c{bottom:547.916667pt;}
.y17c{bottom:548.235867pt;}
.y1ff{bottom:549.439867pt;}
.y1a1{bottom:550.358667pt;}
.y1c1{bottom:551.162800pt;}
.y56{bottom:553.482533pt;}
.y2e{bottom:556.131333pt;}
.y218{bottom:557.502000pt;}
.yc6{bottom:558.158400pt;}
.y7c{bottom:560.433467pt;}
.ya2{bottom:561.847867pt;}
.y10b{bottom:563.960667pt;}
.ye9{bottom:564.037867pt;}
.y156{bottom:564.197867pt;}
.y130{bottom:565.179200pt;}
.y1df{bottom:565.847867pt;}
.y17b{bottom:566.390533pt;}
.y1fe{bottom:567.443867pt;}
.y1a0{bottom:568.360000pt;}
.y55{bottom:571.851867pt;}
.ya{bottom:571.874133pt;}
.y2d{bottom:573.504667pt;}
.y217{bottom:574.835333pt;}
.yc5{bottom:576.635067pt;}
.y7b{bottom:579.048133pt;}
.y10a{bottom:580.004667pt;}
.ya1{bottom:580.355200pt;}
.ye8{bottom:581.449867pt;}
.y155{bottom:582.521200pt;}
.y12f{bottom:583.425867pt;}
.y17a{bottom:584.545200pt;}
.y1fd{bottom:585.447867pt;}
.y19f{bottom:586.385200pt;}
.y54{bottom:590.221200pt;}
.y2c{bottom:590.878000pt;}
.y216{bottom:592.168667pt;}
.y1de{bottom:592.615867pt;}
.yc4{bottom:595.111733pt;}
.y109{bottom:596.048667pt;}
.y7a{bottom:597.662800pt;}
.ye7{bottom:598.861867pt;}
.ya0{bottom:598.862533pt;}
.y9{bottom:600.266133pt;}
.y154{bottom:600.844533pt;}
.y12e{bottom:601.672533pt;}
.y179{bottom:602.699867pt;}
.y19e{bottom:604.386533pt;}
.y2b{bottom:608.251333pt;}
.y53{bottom:608.590533pt;}
.y215{bottom:609.502000pt;}
.y1fc{bottom:611.011867pt;}
.y1dd{bottom:611.823867pt;}
.yc3{bottom:613.588400pt;}
.ye6{bottom:616.273867pt;}
.y79{bottom:616.277467pt;}
.y9f{bottom:617.369867pt;}
.y153{bottom:619.167867pt;}
.y178{bottom:620.854533pt;}
.y19d{bottom:622.387867pt;}
.y2a{bottom:625.624667pt;}
.y214{bottom:626.835333pt;}
.y52{bottom:626.959867pt;}
.y108{bottom:628.136667pt;}
.y8{bottom:628.658133pt;}
.y1fb{bottom:629.015867pt;}
.yc2{bottom:632.065067pt;}
.y1c0{bottom:634.317200pt;}
.y78{bottom:634.892133pt;}
.y9e{bottom:635.877200pt;}
.y152{bottom:637.491200pt;}
.y12d{bottom:638.181200pt;}
.y1dc{bottom:638.591867pt;}
.y177{bottom:639.009200pt;}
.y19c{bottom:640.389200pt;}
.y29{bottom:642.998000pt;}
.y213{bottom:644.168667pt;}
.y107{bottom:644.180667pt;}
.y51{bottom:645.329200pt;}
.ye5{bottom:651.097867pt;}
.y1bf{bottom:652.993200pt;}
.y77{bottom:653.506800pt;}
.y9d{bottom:654.384533pt;}
.y1fa{bottom:654.579867pt;}
.y151{bottom:655.814533pt;}
.y12c{bottom:656.427867pt;}
.y7{bottom:657.050133pt;}
.y176{bottom:657.163867pt;}
.y19b{bottom:658.390533pt;}
.y106{bottom:660.224667pt;}
.y28{bottom:660.371333pt;}
.y212{bottom:661.502000pt;}
.y50{bottom:663.698533pt;}
.y1db{bottom:665.359867pt;}
.ye4{bottom:668.509867pt;}
.y1be{bottom:671.669200pt;}
.y76{bottom:672.114933pt;}
.y1f9{bottom:672.583867pt;}
.y9c{bottom:672.891867pt;}
.yc1{bottom:673.219867pt;}
.y12b{bottom:674.674533pt;}
.y175{bottom:675.318533pt;}
.y105{bottom:676.268667pt;}
.y19a{bottom:676.391867pt;}
.y27{bottom:677.744667pt;}
.y211{bottom:678.835333pt;}
.y4f{bottom:682.067867pt;}
.y1da{bottom:684.567867pt;}
.ye3{bottom:685.929200pt;}
.yc0{bottom:689.646533pt;}
.y1bd{bottom:690.345200pt;}
.y75{bottom:690.729600pt;}
.y9b{bottom:691.372533pt;}
.y150{bottom:692.461200pt;}
.y12a{bottom:692.921200pt;}
.y174{bottom:693.473200pt;}
.y199{bottom:694.393200pt;}
.y26{bottom:695.118000pt;}
.y210{bottom:696.168667pt;}
.y1f8{bottom:698.147867pt;}
.y4e{bottom:700.437200pt;}
.ye2{bottom:705.341200pt;}
.ybf{bottom:706.073200pt;}
.y104{bottom:708.356667pt;}
.y1bc{bottom:709.021200pt;}
.y74{bottom:709.327867pt;}
.y9a{bottom:709.879867pt;}
.y14f{bottom:710.784533pt;}
.y129{bottom:711.167867pt;}
.y1d9{bottom:711.335867pt;}
.y173{bottom:711.627867pt;}
.y6{bottom:711.902000pt;}
.y25{bottom:712.491333pt;}
.y4d{bottom:718.806533pt;}
.ybe{bottom:722.499867pt;}
.y1f7{bottom:723.711867pt;}
.y103{bottom:724.400667pt;}
.ye1{bottom:724.753200pt;}
.y20f{bottom:724.835333pt;}
.y1bb{bottom:727.697200pt;}
.y73{bottom:727.942533pt;}
.y99{bottom:728.387200pt;}
.y14e{bottom:729.107867pt;}
.y128{bottom:729.414533pt;}
.y172{bottom:729.782533pt;}
.y198{bottom:730.395867pt;}
.y1d8{bottom:730.543867pt;}
.y5{bottom:738.528667pt;}
.y102{bottom:740.444667pt;}
.y24{bottom:741.198000pt;}
.ye0{bottom:744.165200pt;}
.y1ba{bottom:746.373200pt;}
.y72{bottom:746.557200pt;}
.y98{bottom:746.894533pt;}
.y14d{bottom:747.431200pt;}
.y127{bottom:747.661200pt;}
.y171{bottom:747.937200pt;}
.y197{bottom:748.397200pt;}
.y1f6{bottom:749.275867pt;}
.y4c{bottom:755.514000pt;}
.y101{bottom:756.488667pt;}
.y1d7{bottom:757.311867pt;}
.y4{bottom:757.595333pt;}
.ydf{bottom:763.577200pt;}
.y1b9{bottom:765.049200pt;}
.y71{bottom:765.171867pt;}
.ybd{bottom:765.447867pt;}
.y14c{bottom:765.754533pt;}
.y126{bottom:765.907867pt;}
.y170{bottom:766.091867pt;}
.y196{bottom:766.398533pt;}
.y1f5{bottom:767.279867pt;}
.y4b{bottom:771.882000pt;}
.y20e{bottom:776.179067pt;}
.y1d6{bottom:776.519867pt;}
.yde{bottom:782.989200pt;}
.y1b8{bottom:783.725200pt;}
.y70{bottom:783.786533pt;}
.y97{bottom:783.893867pt;}
.ybc{bottom:783.924533pt;}
.y14b{bottom:784.077867pt;}
.y125{bottom:784.154533pt;}
.y3{bottom:784.222000pt;}
.y16f{bottom:784.246533pt;}
.y195{bottom:784.399867pt;}
.y23{bottom:785.024667pt;}
.y1f4{bottom:785.283867pt;}
.y4a{bottom:788.250000pt;}
.y100{bottom:788.576667pt;}
.y20d{bottom:800.184400pt;}
.y6f{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.727600pt;}
.y49{bottom:804.618000pt;}
.y21{bottom:842.834667pt;}
.y48{bottom:858.834667pt;}
.h12{height:33.763396pt;}
.h15{height:37.593750pt;}
.hc{height:39.479167pt;}
.h9{height:43.138396pt;}
.hb{height:44.414062pt;}
.h16{height:48.036458pt;}
.h4{height:49.348958pt;}
.h3{height:51.816406pt;}
.ha{height:53.789062pt;}
.hf{height:56.751302pt;}
.h13{height:56.857969pt;}
.h17{height:56.942769pt;}
.h14{height:56.947569pt;}
.h8{height:59.765625pt;}
.hd{height:59.780558pt;}
.h2{height:61.686198pt;}
.h1b{height:62.753906pt;}
.h1c{height:62.905373pt;}
.he{height:68.730469pt;}
.h19{height:68.742202pt;}
.h1a{height:68.755002pt;}
.h11{height:68.756602pt;}
.h10{height:68.796069pt;}
.h18{height:68.901669pt;}
.h7{height:83.671875pt;}
.h6{height:88.828125pt;}
.h5{height:107.578125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x11{left:71.632667pt;}
.x7{left:73.079333pt;}
.x8{left:74.574267pt;}
.x1{left:75.590533pt;}
.x9{left:84.476533pt;}
.xc{left:90.756267pt;}
.x5{left:93.360533pt;}
.x6{left:94.752133pt;}
.xb{left:100.614133pt;}
.xa{left:102.020533pt;}
.xd{left:152.698133pt;}
.x2{left:205.589200pt;}
.x4{left:206.965067pt;}
.x3{left:207.934000pt;}
.xf{left:292.364800pt;}
.xe{left:376.884800pt;}
.x10{left:422.831467pt;}
}




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