
    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_da55e2834ac544c354c411f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_fbfd8cc5505e64d1e2bce77a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_6a460a29a0457f1ede57e83c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4f232b19c32f810ff8da4126.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_a2214956d18e2ba8330f735d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_ceee100cd40ba00b01563003.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d2fdcaac120bd854b5dc865e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_542e33bb10979e2d1dc1a9ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_30afc7118681a7147c44cd3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_dadcbd5d2bbdaa1a2e80870b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_98c1fd03659136494132805d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-31.500000px;}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.120000px;}
.v1{vertical-align:31.500000px;}
.ls47{letter-spacing:-3.936000px;}
.ls1d{letter-spacing:-3.894000px;}
.ls43{letter-spacing:-3.378000px;}
.ls26{letter-spacing:-2.796000px;}
.ls9{letter-spacing:-2.724000px;}
.ls2e{letter-spacing:-1.758000px;}
.ls4d{letter-spacing:-1.740000px;}
.lsd{letter-spacing:-1.554000px;}
.ls34{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.212000px;}
.ls4b{letter-spacing:-1.026000px;}
.ls2b{letter-spacing:-1.014000px;}
.ls15{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.834000px;}
.lsa{letter-spacing:-0.768000px;}
.ls2c{letter-spacing:-0.756000px;}
.ls1{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.654000px;}
.lsc{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.315000px;}
.ls37{letter-spacing:-0.292200px;}
.ls28{letter-spacing:-0.252000px;}
.ls40{letter-spacing:-0.112200px;}
.lsb{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.090000px;}
.ls3a{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.022500px;}
.ls36{letter-spacing:0.067200px;}
.ls2f{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.252000px;}
.ls49{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.292200px;}
.ls1c{letter-spacing:0.315000px;}
.ls25{letter-spacing:0.427200px;}
.ls1a{letter-spacing:0.450000px;}
.ls22{letter-spacing:0.562800px;}
.ls1e{letter-spacing:0.606000px;}
.ls35{letter-spacing:0.786000px;}
.ls31{letter-spacing:0.864000px;}
.ls14{letter-spacing:0.924000px;}
.ls6{letter-spacing:0.954000px;}
.ls16{letter-spacing:0.960000px;}
.ls3{letter-spacing:0.990000px;}
.ls38{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.122000px;}
.lsf{letter-spacing:1.296000px;}
.ls42{letter-spacing:1.332000px;}
.ls46{letter-spacing:1.404000px;}
.ls4{letter-spacing:1.416000px;}
.ls10{letter-spacing:1.476000px;}
.ls4e{letter-spacing:1.482000px;}
.ls2a{letter-spacing:1.575000px;}
.ls19{letter-spacing:1.578000px;}
.ls3b{letter-spacing:1.656000px;}
.ls4c{letter-spacing:1.737000px;}
.ls48{letter-spacing:1.845000px;}
.ls30{letter-spacing:1.866000px;}
.ls41{letter-spacing:1.890000px;}
.ls44{letter-spacing:1.902000px;}
.ls32{letter-spacing:1.917000px;}
.ls5{letter-spacing:1.966500px;}
.ls27{letter-spacing:1.968000px;}
.ls4a{letter-spacing:2.016000px;}
.ls23{letter-spacing:2.086500px;}
.ls12{letter-spacing:2.142000px;}
.ls11{letter-spacing:2.146500px;}
.ls17{letter-spacing:2.197500px;}
.ls2{letter-spacing:2.388000px;}
.ls8{letter-spacing:2.472000px;}
.ls29{letter-spacing:4.608000px;}
.ls3d{letter-spacing:5.634000px;}
.ls3c{letter-spacing:5.796000px;}
.ls3f{letter-spacing:11.745000px;}
.ls2d{letter-spacing:20.745000px;}
.ls1b{letter-spacing:57.915000px;}
.ls21{letter-spacing:71.919000px;}
.ls24{letter-spacing:78.921000px;}
.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;}
}
.ws19{word-spacing:-49.500000px;}
.ws1a{word-spacing:-40.500000px;}
.ws14{word-spacing:-28.968900px;}
.ws10{word-spacing:-21.390900px;}
.ws13{word-spacing:-20.934900px;}
.ws37{word-spacing:-18.288000px;}
.ws3c{word-spacing:-17.745000px;}
.ws4{word-spacing:-17.727000px;}
.ws38{word-spacing:-17.643000px;}
.wsc{word-spacing:-17.430900px;}
.ws23{word-spacing:-17.121000px;}
.ws20{word-spacing:-16.812000px;}
.ws35{word-spacing:-16.671000px;}
.ws33{word-spacing:-16.488000px;}
.ws30{word-spacing:-16.272000px;}
.ws39{word-spacing:-16.263000px;}
.ws11{word-spacing:-16.245000px;}
.ws3{word-spacing:-16.242900px;}
.wse{word-spacing:-16.179000px;}
.ws26{word-spacing:-16.041000px;}
.ws17{word-spacing:-15.861000px;}
.ws1d{word-spacing:-15.817800px;}
.ws1b{word-spacing:-15.682200px;}
.ws36{word-spacing:-15.570000px;}
.wsd{word-spacing:-15.547200px;}
.ws27{word-spacing:-15.322200px;}
.ws32{word-spacing:-15.277500px;}
.ws2{word-spacing:-15.255000px;}
.ws3a{word-spacing:-15.237000px;}
.ws2c{word-spacing:-15.142800px;}
.ws28{word-spacing:-14.962800px;}
.ws18{word-spacing:-14.601000px;}
.ws1{word-spacing:-14.535000px;}
.ws3b{word-spacing:-14.523000px;}
.ws16{word-spacing:-14.421000px;}
.wsf{word-spacing:-14.355000px;}
.ws21{word-spacing:-14.241000px;}
.ws2d{word-spacing:-14.094000px;}
.ws9{word-spacing:-14.043000px;}
.ws25{word-spacing:-13.815000px;}
.ws8{word-spacing:-13.701000px;}
.ws2e{word-spacing:-13.536000px;}
.ws29{word-spacing:-13.284000px;}
.ws31{word-spacing:-13.089000px;}
.ws5{word-spacing:-12.531000px;}
.ws1c{word-spacing:-12.492900px;}
.ws2b{word-spacing:-12.456000px;}
.wsb{word-spacing:-12.204000px;}
.ws2a{word-spacing:-12.132000px;}
.wsa{word-spacing:-12.096000px;}
.ws7{word-spacing:-11.826000px;}
.ws22{word-spacing:-11.448000px;}
.ws15{word-spacing:-11.361000px;}
.ws34{word-spacing:-11.319000px;}
.ws24{word-spacing:-11.241000px;}
.ws1e{word-spacing:-11.121000px;}
.ws6{word-spacing:-8.136000px;}
.ws1f{word-spacing:-7.884000px;}
.ws2f{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.067500px;}
.ws0{word-spacing:0.000000px;}
._30{margin-left:-8.615100px;}
._b{margin-left:-7.170450px;}
._6{margin-left:-6.057600px;}
._d{margin-left:-4.775700px;}
._7{margin-left:-3.712500px;}
._11{margin-left:-2.709450px;}
._0{margin-left:-1.698450px;}
._1{width:1.175850px;}
._2{width:2.221050px;}
._5{width:3.284100px;}
._10{width:4.388700px;}
._4{width:5.487300px;}
._e{width:6.651450px;}
._9{width:7.665000px;}
._14{width:8.692350px;}
._3{width:10.713300px;}
._a{width:12.614100px;}
._2f{width:13.857900px;}
._2a{width:15.329550px;}
._c{width:16.463550px;}
._29{width:17.800800px;}
._13{width:18.835500px;}
._12{width:20.530950px;}
._25{width:21.602850px;}
._2e{width:23.060550px;}
._24{width:24.502500px;}
._21{width:25.983000px;}
._26{width:27.335400px;}
._38{width:28.373100px;}
._22{width:29.497500px;}
._23{width:30.594600px;}
._32{width:32.713050px;}
._33{width:33.751950px;}
._34{width:37.635300px;}
._28{width:38.792400px;}
._3c{width:41.287650px;}
._37{width:42.329400px;}
._27{width:43.447350px;}
._3b{width:45.933150px;}
._3a{width:47.125650px;}
._3d{width:48.366000px;}
._3e{width:50.462700px;}
._2d{width:51.502500px;}
._2c{width:52.833600px;}
._2b{width:57.002550px;}
._39{width:68.451300px;}
._36{width:69.884250px;}
._35{width:74.241450px;}
._20{width:116.101950px;}
._1b{width:129.439050px;}
._1d{width:133.578000px;}
._19{width:138.136650px;}
._18{width:142.575000px;}
._1a{width:156.105000px;}
._17{width:160.575000px;}
._16{width:178.605000px;}
._1c{width:192.443100px;}
._1e{width:196.545000px;}
._1f{width:200.865000px;}
._15{width:836.738700px;}
._8{width:845.693100px;}
._31{width:848.778000px;}
._f{width:849.795000px;}
.fc5{color:rgb(79,129,189);}
.fc6{color:rgb(34,34,34);}
.fc4{color:rgb(37,37,37);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(69,69,69);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fsb{font-size:49.500000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs5{font-size:67.650000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:85.650000px;}
.fs9{font-size:94.650000px;}
.fsa{font-size:121.650000px;}
.fs0{font-size:130.650000px;}
.fs3{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:4.575000px;}
.y19{bottom:57.412500px;}
.y1a{bottom:64.125000px;}
.y43{bottom:152.025000px;}
.y17c{bottom:153.150000px;}
.y1c9{bottom:154.275000px;}
.y82{bottom:155.400000px;}
.y1d9{bottom:156.525000px;}
.y12f{bottom:157.650000px;}
.y10c{bottom:158.775000px;}
.y1f6{bottom:159.900000px;}
.yfe{bottom:161.025000px;}
.y11a{bottom:162.150000px;}
.yc8{bottom:163.275000px;}
.y208{bottom:165.525000px;}
.y34{bottom:166.650000px;}
.y125{bottom:167.775000px;}
.yde{bottom:168.900000px;}
.yf6{bottom:170.025000px;}
.y1c8{bottom:171.150000px;}
.y1f8{bottom:172.275000px;}
.y1de{bottom:173.400000px;}
.y42{bottom:175.650000px;}
.y1f5{bottom:176.775000px;}
.y17b{bottom:177.900000px;}
.y17{bottom:179.025000px;}
.y1f7{bottom:183.525000px;}
.y1c7{bottom:184.650000px;}
.y41{bottom:185.775000px;}
.yba{bottom:186.900000px;}
.y124{bottom:189.150000px;}
.y1f9{bottom:190.305000px;}
.ye8{bottom:192.570000px;}
.y12e{bottom:193.695000px;}
.y81{bottom:194.820000px;}
.y207{bottom:195.945000px;}
.y1ac{bottom:199.320000px;}
.yf5{bottom:200.445000px;}
.ydd{bottom:201.570000px;}
.ye7{bottom:202.695000px;}
.y17a{bottom:203.820000px;}
.yb9{bottom:204.945000px;}
.y149{bottom:208.320000px;}
.y9d{bottom:209.445000px;}
.y1ae{bottom:210.570000px;}
.y194{bottom:211.695000px;}
.y80{bottom:213.945000px;}
.y1d3{bottom:215.070000px;}
.y1cc{bottom:216.195000px;}
.y33{bottom:217.320000px;}
.y16{bottom:218.445000px;}
.y10b{bottom:220.695000px;}
.y18f{bottom:221.820000px;}
.y1ad{bottom:222.945000px;}
.y1ed{bottom:224.070000px;}
.yc7{bottom:225.195000px;}
.y169{bottom:226.320000px;}
.yb8{bottom:228.570000px;}
.y175{bottom:229.695000px;}
.y1a3{bottom:230.820000px;}
.y1cb{bottom:231.975000px;}
.y51{bottom:233.100000px;}
.y1dd{bottom:234.225000px;}
.ydc{bottom:235.350000px;}
.y179{bottom:237.600000px;}
.y1d4{bottom:238.725000px;}
.y1ef{bottom:239.850000px;}
.y193{bottom:240.975000px;}
.y104{bottom:242.100000px;}
.y15d{bottom:243.225000px;}
.y12d{bottom:244.350000px;}
.y21c{bottom:245.475000px;}
.y1ca{bottom:246.600000px;}
.y32{bottom:247.725000px;}
.y228{bottom:248.850000px;}
.y14c{bottom:249.975000px;}
.y103{bottom:251.100000px;}
.yb7{bottom:252.225000px;}
.y7f{bottom:253.350000px;}
.y1ec{bottom:254.475000px;}
.y206{bottom:255.600000px;}
.y15{bottom:256.725000px;}
.y9c{bottom:257.850000px;}
.y174{bottom:258.975000px;}
.y178{bottom:261.225000px;}
.y58{bottom:263.475000px;}
.y119{bottom:265.725000px;}
.y188{bottom:267.975000px;}
.y167{bottom:269.100000px;}
.ydb{bottom:270.225000px;}
.yb6{bottom:271.350000px;}
.y7e{bottom:272.475000px;}
.y15c{bottom:273.600000px;}
.y102{bottom:274.755000px;}
.y31{bottom:278.130000px;}
.yfd{bottom:280.380000px;}
.y18e{bottom:281.505000px;}
.yf4{bottom:282.630000px;}
.y50{bottom:284.880000px;}
.y205{bottom:286.005000px;}
.y9b{bottom:287.130000px;}
.y7d{bottom:291.630000px;}
.y14{bottom:292.755000px;}
.y165{bottom:293.880000px;}
.y162{bottom:295.005000px;}
.y118{bottom:296.130000px;}
.y187{bottom:297.255000px;}
.ye6{bottom:298.380000px;}
.yb5{bottom:299.505000px;}
.yda{bottom:300.630000px;}
.y196{bottom:301.755000px;}
.y19c{bottom:302.880000px;}
.y1dc{bottom:304.005000px;}
.y12c{bottom:305.130000px;}
.y1eb{bottom:306.255000px;}
.y227{bottom:307.380000px;}
.y30{bottom:308.505000px;}
.y148{bottom:309.630000px;}
.yfc{bottom:310.755000px;}
.y7c{bottom:311.880000px;}
.y1e7{bottom:314.130000px;}
.y57{bottom:315.255000px;}
.y1db{bottom:316.425000px;}
.y9a{bottom:317.550000px;}
.y183{bottom:318.675000px;}
.y173{bottom:320.925000px;}
.y13{bottom:322.050000px;}
.y13e{bottom:323.175000px;}
.y164{bottom:324.300000px;}
.y117{bottom:325.425000px;}
.y15b{bottom:326.550000px;}
.yb4{bottom:327.675000px;}
.ye5{bottom:328.800000px;}
.yd9{bottom:329.925000px;}
.y7b{bottom:331.050000px;}
.y19b{bottom:332.175000px;}
.yf3{bottom:333.300000px;}
.y4f{bottom:335.550000px;}
.y186{bottom:337.800000px;}
.y2f{bottom:338.925000px;}
.y147{bottom:340.050000px;}
.y1af{bottom:341.175000px;}
.y1f3{bottom:342.300000px;}
.y1e6{bottom:344.550000px;}
.y99{bottom:347.925000px;}
.y182{bottom:349.050000px;}
.y7a{bottom:350.175000px;}
.y12{bottom:352.425000px;}
.y13d{bottom:353.550000px;}
.yb3{bottom:355.800000px;}
.y1d2{bottom:356.925000px;}
.ye4{bottom:359.205000px;}
.yd8{bottom:360.330000px;}
.yfb{bottom:361.455000px;}
.y10a{bottom:362.580000px;}
.yf2{bottom:363.705000px;}
.y163{bottom:364.830000px;}
.y56{bottom:365.955000px;}
.y2e{bottom:368.205000px;}
.y79{bottom:369.330000px;}
.y146{bottom:370.455000px;}
.y1b1{bottom:371.580000px;}
.y1a2{bottom:372.705000px;}
.y1d8{bottom:374.955000px;}
.y98{bottom:378.330000px;}
.y15a{bottom:379.455000px;}
.y15e{bottom:380.580000px;}
.y11{bottom:382.830000px;}
.yb2{bottom:383.955000px;}
.y116{bottom:386.205000px;}
.y4e{bottom:387.330000px;}
.y78{bottom:389.580000px;}
.y1a7{bottom:390.705000px;}
.y109{bottom:391.830000px;}
.y18d{bottom:392.955000px;}
.yf1{bottom:394.080000px;}
.y12b{bottom:396.330000px;}
.y204{bottom:397.455000px;}
.y101{bottom:398.580000px;}
.y145{bottom:400.875000px;}
.y1b0{bottom:402.000000px;}
.y1a1{bottom:403.125000px;}
.y1b3{bottom:404.250000px;}
.y1e5{bottom:405.375000px;}
.y77{bottom:408.750000px;}
.y155{bottom:411.000000px;}
.yd7{bottom:412.125000px;}
.y10{bottom:413.250000px;}
.y19a{bottom:414.375000px;}
.y55{bottom:416.625000px;}
.y1b2{bottom:418.875000px;}
.y2d{bottom:420.000000px;}
.y18c{bottom:423.375000px;}
.yf0{bottom:424.500000px;}
.y1ab{bottom:426.750000px;}
.y76{bottom:427.875000px;}
.y100{bottom:429.000000px;}
.y159{bottom:430.125000px;}
.y144{bottom:431.250000px;}
.y1a0{bottom:433.500000px;}
.y13c{bottom:434.625000px;}
.y1e4{bottom:435.750000px;}
.y108{bottom:436.875000px;}
.y4d{bottom:438.000000px;}
.y97{bottom:439.125000px;}
.yb1{bottom:440.250000px;}
.y154{bottom:441.375000px;}
.yd6{bottom:442.545000px;}
.yf{bottom:443.670000px;}
.y199{bottom:444.795000px;}
.y226{bottom:445.920000px;}
.y75{bottom:447.045000px;}
.y1a8{bottom:449.295000px;}
.y2c{bottom:450.420000px;}
.y177{bottom:451.545000px;}
.y1be{bottom:452.670000px;}
.y18b{bottom:453.795000px;}
.yef{bottom:454.920000px;}
.y203{bottom:458.295000px;}
.y180{bottom:459.420000px;}
.y107{bottom:460.545000px;}
.yb0{bottom:461.670000px;}
.y19f{bottom:463.920000px;}
.y13b{bottom:465.045000px;}
.y74{bottom:467.295000px;}
.y54{bottom:468.420000px;}
.y96{bottom:469.545000px;}
.y153{bottom:470.670000px;}
.yd5{bottom:471.795000px;}
.ye{bottom:474.045000px;}
.y115{bottom:477.420000px;}
.y181{bottom:479.670000px;}
.y2b{bottom:480.795000px;}
.y106{bottom:481.920000px;}
.yfa{bottom:483.045000px;}
.y1f2{bottom:484.170000px;}
.y73{bottom:486.450000px;}
.y202{bottom:488.700000px;}
.y4c{bottom:489.825000px;}
.y195{bottom:492.075000px;}
.y18a{bottom:493.200000px;}
.y19e{bottom:494.325000px;}
.y13a{bottom:495.450000px;}
.y95{bottom:498.825000px;}
.yc6{bottom:501.075000px;}
.yd4{bottom:502.200000px;}
.yf9{bottom:504.450000px;}
.y72{bottom:505.575000px;}
.y114{bottom:507.825000px;}
.y1d7{bottom:508.950000px;}
.y2a{bottom:510.075000px;}
.y143{bottom:512.325000px;}
.y189{bottom:514.575000px;}
.y198{bottom:515.700000px;}
.y1e3{bottom:516.825000px;}
.yaf{bottom:519.075000px;}
.y4b{bottom:520.200000px;}
.yd{bottom:521.325000px;}
.y105{bottom:522.450000px;}
.y1a6{bottom:523.575000px;}
.y71{bottom:525.825000px;}
.y94{bottom:529.245000px;}
.y225{bottom:530.370000px;}
.yc5{bottom:531.495000px;}
.yd3{bottom:532.620000px;}
.y210{bottom:534.870000px;}
.yee{bottom:535.995000px;}
.y113{bottom:537.120000px;}
.y12a{bottom:538.245000px;}
.y201{bottom:539.370000px;}
.yff{bottom:540.495000px;}
.y1ee{bottom:541.620000px;}
.y142{bottom:542.745000px;}
.y17f{bottom:543.870000px;}
.y70{bottom:544.995000px;}
.y139{bottom:546.120000px;}
.y1e2{bottom:547.245000px;}
.y4a{bottom:549.495000px;}
.yae{bottom:551.745000px;}
.y152{bottom:552.870000px;}
.y1a5{bottom:553.995000px;}
.y192{bottom:555.120000px;}
.y224{bottom:558.495000px;}
.y93{bottom:559.620000px;}
.y1d6{bottom:560.745000px;}
.y29{bottom:561.870000px;}
.y40{bottom:562.995000px;}
.y6f{bottom:564.120000px;}
.yed{bottom:566.370000px;}
.y112{bottom:567.495000px;}
.y129{bottom:568.650000px;}
.y200{bottom:569.775000px;}
.yc{bottom:570.900000px;}
.y158{bottom:572.025000px;}
.y141{bottom:573.150000px;}
.y176{bottom:574.275000px;}
.yad{bottom:575.400000px;}
.y138{bottom:576.525000px;}
.y1e1{bottom:577.650000px;}
.y53{bottom:579.900000px;}
.y14b{bottom:582.150000px;}
.y6e{bottom:583.275000px;}
.y191{bottom:585.525000px;}
.y172{bottom:588.900000px;}
.y92{bottom:590.025000px;}
.y1d5{bottom:591.150000px;}
.y28{bottom:592.275000px;}
.y1a4{bottom:593.400000px;}
.yac{bottom:594.525000px;}
.y1f1{bottom:595.650000px;}
.yec{bottom:596.775000px;}
.y111{bottom:597.900000px;}
.y128{bottom:599.025000px;}
.y49{bottom:601.275000px;}
.y157{bottom:602.400000px;}
.yb{bottom:603.525000px;}
.y14a{bottom:604.650000px;}
.y137{bottom:606.900000px;}
.y1e0{bottom:608.025000px;}
.y223{bottom:611.445000px;}
.y151{bottom:612.570000px;}
.yc4{bottom:613.695000px;}
.y3f{bottom:614.820000px;}
.y20f{bottom:615.945000px;}
.y171{bottom:619.320000px;}
.y91{bottom:620.445000px;}
.y1da{bottom:621.570000px;}
.y27{bottom:622.695000px;}
.y1bd{bottom:624.945000px;}
.yeb{bottom:626.070000px;}
.y110{bottom:628.320000px;}
.y48{bottom:631.695000px;}
.y140{bottom:632.820000px;}
.y17e{bottom:633.945000px;}
.y136{bottom:637.320000px;}
.y1fb{bottom:639.570000px;}
.y222{bottom:640.695000px;}
.y6d{bottom:641.820000px;}
.yc3{bottom:642.945000px;}
.y3e{bottom:644.070000px;}
.y19d{bottom:645.195000px;}
.y170{bottom:649.695000px;}
.y90{bottom:650.820000px;}
.y1fa{bottom:651.945000px;}
.ya{bottom:653.100000px;}
.y197{bottom:654.225000px;}
.y1c6{bottom:655.350000px;}
.y1f0{bottom:656.475000px;}
.y123{bottom:658.725000px;}
.y21b{bottom:659.850000px;}
.y6c{bottom:660.975000px;}
.y47{bottom:662.100000px;}
.y17d{bottom:664.350000px;}
.yea{bottom:666.600000px;}
.y135{bottom:667.725000px;}
.y1ea{bottom:668.850000px;}
.y156{bottom:672.225000px;}
.yc2{bottom:673.350000px;}
.y3d{bottom:674.475000px;}
.y10f{bottom:680.100000px;}
.y6b{bottom:681.225000px;}
.y26{bottom:682.350000px;}
.yab{bottom:683.475000px;}
.y1bc{bottom:684.600000px;}
.y1c5{bottom:685.725000px;}
.y21a{bottom:687.975000px;}
.ye9{bottom:689.100000px;}
.y46{bottom:692.475000px;}
.y13f{bottom:694.725000px;}
.y134{bottom:698.130000px;}
.y1d1{bottom:699.255000px;}
.y6a{bottom:700.380000px;}
.y16f{bottom:701.505000px;}
.yc1{bottom:703.755000px;}
.yd2{bottom:704.880000px;}
.yaa{bottom:707.130000px;}
.y10e{bottom:709.380000px;}
.y8f{bottom:710.505000px;}
.y1ff{bottom:711.630000px;}
.y25{bottom:712.755000px;}
.y1bb{bottom:715.005000px;}
.y1c4{bottom:716.130000px;}
.y9{bottom:719.505000px;}
.y45{bottom:721.755000px;}
.y221{bottom:724.005000px;}
.y161{bottom:725.130000px;}
.y3c{bottom:726.255000px;}
.y133{bottom:727.380000px;}
.y1d0{bottom:729.630000px;}
.y16e{bottom:730.755000px;}
.yc0{bottom:734.130000px;}
.yd1{bottom:735.255000px;}
.y1f4{bottom:736.380000px;}
.y69{bottom:739.800000px;}
.y8e{bottom:740.925000px;}
.y1fe{bottom:742.050000px;}
.y24{bottom:743.175000px;}
.y219{bottom:744.300000px;}
.y1ba{bottom:745.425000px;}
.y190{bottom:748.800000px;}
.y10d{bottom:749.925000px;}
.y220{bottom:751.050000px;}
.y52{bottom:752.175000px;}
.ya9{bottom:754.425000px;}
.y150{bottom:755.550000px;}
.y68{bottom:758.925000px;}
.y1cf{bottom:760.050000px;}
.y16d{bottom:761.175000px;}
.ybf{bottom:764.550000px;}
.yd0{bottom:765.675000px;}
.y8d{bottom:771.300000px;}
.y1fd{bottom:772.425000px;}
.y23{bottom:773.550000px;}
.y1b9{bottom:775.800000px;}
.y3b{bottom:776.925000px;}
.y67{bottom:778.050000px;}
.y132{bottom:779.205000px;}
.y20e{bottom:781.455000px;}
.ya8{bottom:782.580000px;}
.y14f{bottom:784.830000px;}
.y8{bottom:785.955000px;}
.y1e9{bottom:790.455000px;}
.y16c{bottom:791.580000px;}
.ye3{bottom:794.955000px;}
.ycf{bottom:796.080000px;}
.y66{bottom:797.205000px;}
.y122{bottom:800.580000px;}
.y8c{bottom:801.705000px;}
.y1df{bottom:802.830000px;}
.y22{bottom:803.955000px;}
.y21f{bottom:805.080000px;}
.y160{bottom:806.205000px;}
.y1c3{bottom:807.330000px;}
.y131{bottom:809.580000px;}
.ya7{bottom:810.705000px;}
.y1ce{bottom:812.955000px;}
.y14e{bottom:815.205000px;}
.y65{bottom:817.455000px;}
.y185{bottom:819.705000px;}
.y16b{bottom:822.000000px;}
.ybe{bottom:823.125000px;}
.ye2{bottom:824.250000px;}
.y1b8{bottom:826.500000px;}
.y218{bottom:827.625000px;}
.y3a{bottom:828.750000px;}
.y1e8{bottom:829.875000px;}
.y127{bottom:831.000000px;}
.y8b{bottom:832.125000px;}
.y1fc{bottom:833.250000px;}
.y7{bottom:834.375000px;}
.y64{bottom:836.625000px;}
.y1c2{bottom:837.750000px;}
.y184{bottom:841.125000px;}
.ya6{bottom:843.375000px;}
.y14d{bottom:845.625000px;}
.yce{bottom:847.875000px;}
.y121{bottom:852.375000px;}
.y166{bottom:854.625000px;}
.y63{bottom:855.750000px;}
.y1b7{bottom:856.875000px;}
.y21e{bottom:860.250000px;}
.y126{bottom:861.375000px;}
.y8a{bottom:862.500000px;}
.y6{bottom:863.670000px;}
.y21{bottom:864.795000px;}
.y15f{bottom:867.045000px;}
.y1c1{bottom:868.170000px;}
.ya5{bottom:869.295000px;}
.y1aa{bottom:873.795000px;}
.y62{bottom:874.920000px;}
.ye1{bottom:876.045000px;}
.y39{bottom:879.420000px;}
.y120{bottom:882.795000px;}
.y168{bottom:885.045000px;}
.y217{bottom:886.170000px;}
.y1b6{bottom:887.295000px;}
.y21d{bottom:888.420000px;}
.ycd{bottom:889.545000px;}
.y20d{bottom:890.670000px;}
.ybd{bottom:891.795000px;}
.y89{bottom:892.920000px;}
.y5{bottom:894.045000px;}
.y61{bottom:895.170000px;}
.yf8{bottom:897.420000px;}
.y1c0{bottom:898.545000px;}
.y1a9{bottom:903.045000px;}
.ycc{bottom:906.450000px;}
.y11f{bottom:913.200000px;}
.y60{bottom:914.325000px;}
.y20{bottom:915.450000px;}
.y1b5{bottom:916.575000px;}
.ya4{bottom:917.700000px;}
.y20c{bottom:919.950000px;}
.y88{bottom:922.200000px;}
.y4{bottom:925.575000px;}
.yf7{bottom:927.825000px;}
.y38{bottom:931.200000px;}
.y5f{bottom:933.450000px;}
.ye0{bottom:936.825000px;}
.ya3{bottom:941.325000px;}
.y11e{bottom:942.450000px;}
.y216{bottom:943.575000px;}
.y1f{bottom:945.825000px;}
.y20b{bottom:946.950000px;}
.y87{bottom:952.620000px;}
.y5e{bottom:953.745000px;}
.y3{bottom:957.120000px;}
.y1bf{bottom:958.245000px;}
.y1b4{bottom:961.620000px;}
.y16a{bottom:963.870000px;}
.ya2{bottom:966.120000px;}
.ydf{bottom:967.245000px;}
.ybc{bottom:968.370000px;}
.y215{bottom:970.620000px;}
.y5d{bottom:972.870000px;}
.y44{bottom:976.245000px;}
.y37{bottom:981.870000px;}
.y86{bottom:982.995000px;}
.y20a{bottom:985.245000px;}
.ycb{bottom:987.495000px;}
.ya1{bottom:989.775000px;}
.y5c{bottom:992.025000px;}
.y11d{bottom:994.275000px;}
.y22b{bottom:995.400000px;}
.y1e{bottom:996.525000px;}
.y214{bottom:998.775000px;}
.y2{bottom:1002.150000px;}
.y5b{bottom:1011.150000px;}
.y85{bottom:1013.400000px;}
.ya0{bottom:1014.525000px;}
.y1cd{bottom:1015.650000px;}
.yca{bottom:1017.900000px;}
.y22a{bottom:1022.400000px;}
.y209{bottom:1023.525000px;}
.y11c{bottom:1024.650000px;}
.y213{bottom:1025.775000px;}
.y1d{bottom:1026.900000px;}
.y5a{bottom:1031.400000px;}
.y36{bottom:1033.695000px;}
.y9f{bottom:1034.820000px;}
.y84{bottom:1040.445000px;}
.ybb{bottom:1043.820000px;}
.yc9{bottom:1048.320000px;}
.y59{bottom:1050.570000px;}
.y229{bottom:1051.695000px;}
.y212{bottom:1053.945000px;}
.y83{bottom:1058.445000px;}
.y1{bottom:1062.945000px;}
.y130{bottom:1065.195000px;}
.y9e{bottom:1070.820000px;}
.y18{bottom:1073.070000px;}
.y35{bottom:1076.475000px;}
.y11b{bottom:1077.600000px;}
.y1c{bottom:1078.725000px;}
.y211{bottom:1079.850000px;}
.ha{height:22.500000px;}
.he{height:29.689453px;}
.h18{height:34.013672px;}
.h16{height:37.415039px;}
.h11{height:38.126953px;}
.h1d{height:42.240234px;}
.hf{height:44.534180px;}
.h12{height:46.768799px;}
.h10{height:47.658691px;}
.h19{height:50.835938px;}
.h22{height:51.943359px;}
.h4{height:55.667725px;}
.hb{height:55.791431px;}
.h1b{height:56.689453px;}
.h17{height:56.809453px;}
.h1e{height:56.869453px;}
.h5{height:59.378906px;}
.h23{height:59.741279px;}
.h13{height:60.095215px;}
.h8{height:60.473584px;}
.h1c{height:61.013672px;}
.hd{height:64.900635px;}
.h1f{height:65.020635px;}
.h1a{height:65.080635px;}
.h15{height:66.828076px;}
.h21{height:69.379363px;}
.h9{height:70.400391px;}
.h24{height:72.322998px;}
.h20{height:74.004654px;}
.hc{height:75.093750px;}
.h14{height:85.891553px;}
.h25{height:89.162988px;}
.h2{height:92.246045px;}
.h6{height:101.777783px;}
.h3{height:107.747974px;}
.h7{height:118.881519px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:67.500000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:24.705000px;}
.x10{left:26.955000px;}
.xf{left:28.080000px;}
.x11{left:29.205000px;}
.xe{left:30.330000px;}
.xd{left:32.580000px;}
.x4{left:148.687500px;}
.x6{left:171.225000px;}
.x13{left:175.725000px;}
.x14{left:201.645000px;}
.x16{left:202.770000px;}
.x5{left:203.895000px;}
.x2{left:280.470000px;}
.x7{left:282.750000px;}
.x1{left:297.375000px;}
.x9{left:300.750000px;}
.x1d{left:305.250000px;}
.x21{left:317.655000px;}
.x24{left:337.905000px;}
.x27{left:353.700000px;}
.x23{left:370.620000px;}
.x1b{left:382.995000px;}
.xb{left:425.775000px;}
.x8{left:452.820000px;}
.xa{left:467.475000px;}
.x3{left:478.725000px;}
.x1c{left:649.950000px;}
.x1a{left:660.075000px;}
.x22{left:701.775000px;}
.x26{left:744.570000px;}
.x20{left:759.225000px;}
.x18{left:763.725000px;}
.x25{left:765.975000px;}
.x19{left:786.255000px;}
.x17{left:787.380000px;}
.x1f{left:799.755000px;}
.x1e{left:806.505000px;}
.x15{left:808.755000px;}
.xc{left:816.750000px;}
@media print{
.v2{vertical-align:-28.000000pt;}
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.106667pt;}
.v1{vertical-align:28.000000pt;}
.ls47{letter-spacing:-3.498667pt;}
.ls1d{letter-spacing:-3.461333pt;}
.ls43{letter-spacing:-3.002667pt;}
.ls26{letter-spacing:-2.485333pt;}
.ls9{letter-spacing:-2.421333pt;}
.ls2e{letter-spacing:-1.562667pt;}
.ls4d{letter-spacing:-1.546667pt;}
.lsd{letter-spacing:-1.381333pt;}
.ls34{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.077333pt;}
.ls4b{letter-spacing:-0.912000pt;}
.ls2b{letter-spacing:-0.901333pt;}
.ls15{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.741333pt;}
.lsa{letter-spacing:-0.682667pt;}
.ls2c{letter-spacing:-0.672000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.581333pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.280000pt;}
.ls37{letter-spacing:-0.259733pt;}
.ls28{letter-spacing:-0.224000pt;}
.ls40{letter-spacing:-0.099733pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.080000pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.020000pt;}
.ls36{letter-spacing:0.059733pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.224000pt;}
.ls49{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.259733pt;}
.ls1c{letter-spacing:0.280000pt;}
.ls25{letter-spacing:0.379733pt;}
.ls1a{letter-spacing:0.400000pt;}
.ls22{letter-spacing:0.500267pt;}
.ls1e{letter-spacing:0.538667pt;}
.ls35{letter-spacing:0.698667pt;}
.ls31{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.821333pt;}
.ls6{letter-spacing:0.848000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls3{letter-spacing:0.880000pt;}
.ls38{letter-spacing:0.960000pt;}
.ls20{letter-spacing:0.997333pt;}
.lsf{letter-spacing:1.152000pt;}
.ls42{letter-spacing:1.184000pt;}
.ls46{letter-spacing:1.248000pt;}
.ls4{letter-spacing:1.258667pt;}
.ls10{letter-spacing:1.312000pt;}
.ls4e{letter-spacing:1.317333pt;}
.ls2a{letter-spacing:1.400000pt;}
.ls19{letter-spacing:1.402667pt;}
.ls3b{letter-spacing:1.472000pt;}
.ls4c{letter-spacing:1.544000pt;}
.ls48{letter-spacing:1.640000pt;}
.ls30{letter-spacing:1.658667pt;}
.ls41{letter-spacing:1.680000pt;}
.ls44{letter-spacing:1.690667pt;}
.ls32{letter-spacing:1.704000pt;}
.ls5{letter-spacing:1.748000pt;}
.ls27{letter-spacing:1.749333pt;}
.ls4a{letter-spacing:1.792000pt;}
.ls23{letter-spacing:1.854667pt;}
.ls12{letter-spacing:1.904000pt;}
.ls11{letter-spacing:1.908000pt;}
.ls17{letter-spacing:1.953333pt;}
.ls2{letter-spacing:2.122667pt;}
.ls8{letter-spacing:2.197333pt;}
.ls29{letter-spacing:4.096000pt;}
.ls3d{letter-spacing:5.008000pt;}
.ls3c{letter-spacing:5.152000pt;}
.ls3f{letter-spacing:10.440000pt;}
.ls2d{letter-spacing:18.440000pt;}
.ls1b{letter-spacing:51.480000pt;}
.ls21{letter-spacing:63.928000pt;}
.ls24{letter-spacing:70.152000pt;}
.ws19{word-spacing:-44.000000pt;}
.ws1a{word-spacing:-36.000000pt;}
.ws14{word-spacing:-25.750133pt;}
.ws10{word-spacing:-19.014133pt;}
.ws13{word-spacing:-18.608800pt;}
.ws37{word-spacing:-16.256000pt;}
.ws3c{word-spacing:-15.773333pt;}
.ws4{word-spacing:-15.757333pt;}
.ws38{word-spacing:-15.682667pt;}
.wsc{word-spacing:-15.494133pt;}
.ws23{word-spacing:-15.218667pt;}
.ws20{word-spacing:-14.944000pt;}
.ws35{word-spacing:-14.818667pt;}
.ws33{word-spacing:-14.656000pt;}
.ws30{word-spacing:-14.464000pt;}
.ws39{word-spacing:-14.456000pt;}
.ws11{word-spacing:-14.440000pt;}
.ws3{word-spacing:-14.438133pt;}
.wse{word-spacing:-14.381333pt;}
.ws26{word-spacing:-14.258667pt;}
.ws17{word-spacing:-14.098667pt;}
.ws1d{word-spacing:-14.060267pt;}
.ws1b{word-spacing:-13.939733pt;}
.ws36{word-spacing:-13.840000pt;}
.wsd{word-spacing:-13.819733pt;}
.ws27{word-spacing:-13.619733pt;}
.ws32{word-spacing:-13.580000pt;}
.ws2{word-spacing:-13.560000pt;}
.ws3a{word-spacing:-13.544000pt;}
.ws2c{word-spacing:-13.460267pt;}
.ws28{word-spacing:-13.300267pt;}
.ws18{word-spacing:-12.978667pt;}
.ws1{word-spacing:-12.920000pt;}
.ws3b{word-spacing:-12.909333pt;}
.ws16{word-spacing:-12.818667pt;}
.wsf{word-spacing:-12.760000pt;}
.ws21{word-spacing:-12.658667pt;}
.ws2d{word-spacing:-12.528000pt;}
.ws9{word-spacing:-12.482667pt;}
.ws25{word-spacing:-12.280000pt;}
.ws8{word-spacing:-12.178667pt;}
.ws2e{word-spacing:-12.032000pt;}
.ws29{word-spacing:-11.808000pt;}
.ws31{word-spacing:-11.634667pt;}
.ws5{word-spacing:-11.138667pt;}
.ws1c{word-spacing:-11.104800pt;}
.ws2b{word-spacing:-11.072000pt;}
.wsb{word-spacing:-10.848000pt;}
.ws2a{word-spacing:-10.784000pt;}
.wsa{word-spacing:-10.752000pt;}
.ws7{word-spacing:-10.512000pt;}
.ws22{word-spacing:-10.176000pt;}
.ws15{word-spacing:-10.098667pt;}
.ws34{word-spacing:-10.061333pt;}
.ws24{word-spacing:-9.992000pt;}
.ws1e{word-spacing:-9.885333pt;}
.ws6{word-spacing:-7.232000pt;}
.ws1f{word-spacing:-7.008000pt;}
.ws2f{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.060000pt;}
.ws0{word-spacing:0.000000pt;}
._30{margin-left:-7.657867pt;}
._b{margin-left:-6.373733pt;}
._6{margin-left:-5.384533pt;}
._d{margin-left:-4.245067pt;}
._7{margin-left:-3.300000pt;}
._11{margin-left:-2.408400pt;}
._0{margin-left:-1.509733pt;}
._1{width:1.045200pt;}
._2{width:1.974267pt;}
._5{width:2.919200pt;}
._10{width:3.901067pt;}
._4{width:4.877600pt;}
._e{width:5.912400pt;}
._9{width:6.813333pt;}
._14{width:7.726533pt;}
._3{width:9.522933pt;}
._a{width:11.212533pt;}
._2f{width:12.318133pt;}
._2a{width:13.626267pt;}
._c{width:14.634267pt;}
._29{width:15.822933pt;}
._13{width:16.742667pt;}
._12{width:18.249733pt;}
._25{width:19.202533pt;}
._2e{width:20.498267pt;}
._24{width:21.780000pt;}
._21{width:23.096000pt;}
._26{width:24.298133pt;}
._38{width:25.220533pt;}
._22{width:26.220000pt;}
._23{width:27.195200pt;}
._32{width:29.078267pt;}
._33{width:30.001733pt;}
._34{width:33.453600pt;}
._28{width:34.482133pt;}
._3c{width:36.700133pt;}
._37{width:37.626133pt;}
._27{width:38.619867pt;}
._3b{width:40.829467pt;}
._3a{width:41.889467pt;}
._3d{width:42.992000pt;}
._3e{width:44.855733pt;}
._2d{width:45.780000pt;}
._2c{width:46.963200pt;}
._2b{width:50.668933pt;}
._39{width:60.845600pt;}
._36{width:62.119333pt;}
._35{width:65.992400pt;}
._20{width:103.201733pt;}
._1b{width:115.056933pt;}
._1d{width:118.736000pt;}
._19{width:122.788133pt;}
._18{width:126.733333pt;}
._1a{width:138.760000pt;}
._17{width:142.733333pt;}
._16{width:158.760000pt;}
._1c{width:171.060533pt;}
._1e{width:174.706667pt;}
._1f{width:178.546667pt;}
._15{width:743.767733pt;}
._8{width:751.727200pt;}
._31{width:754.469333pt;}
._f{width:755.373333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fsb{font-size:44.000000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:60.133333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:76.133333pt;}
.fs9{font-size:84.133333pt;}
.fsa{font-size:108.133333pt;}
.fs0{font-size:116.133333pt;}
.fs3{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:4.066667pt;}
.y19{bottom:51.033333pt;}
.y1a{bottom:57.000000pt;}
.y43{bottom:135.133333pt;}
.y17c{bottom:136.133333pt;}
.y1c9{bottom:137.133333pt;}
.y82{bottom:138.133333pt;}
.y1d9{bottom:139.133333pt;}
.y12f{bottom:140.133333pt;}
.y10c{bottom:141.133333pt;}
.y1f6{bottom:142.133333pt;}
.yfe{bottom:143.133333pt;}
.y11a{bottom:144.133333pt;}
.yc8{bottom:145.133333pt;}
.y208{bottom:147.133333pt;}
.y34{bottom:148.133333pt;}
.y125{bottom:149.133333pt;}
.yde{bottom:150.133333pt;}
.yf6{bottom:151.133333pt;}
.y1c8{bottom:152.133333pt;}
.y1f8{bottom:153.133333pt;}
.y1de{bottom:154.133333pt;}
.y42{bottom:156.133333pt;}
.y1f5{bottom:157.133333pt;}
.y17b{bottom:158.133333pt;}
.y17{bottom:159.133333pt;}
.y1f7{bottom:163.133333pt;}
.y1c7{bottom:164.133333pt;}
.y41{bottom:165.133333pt;}
.yba{bottom:166.133333pt;}
.y124{bottom:168.133333pt;}
.y1f9{bottom:169.160000pt;}
.ye8{bottom:171.173333pt;}
.y12e{bottom:172.173333pt;}
.y81{bottom:173.173333pt;}
.y207{bottom:174.173333pt;}
.y1ac{bottom:177.173333pt;}
.yf5{bottom:178.173333pt;}
.ydd{bottom:179.173333pt;}
.ye7{bottom:180.173333pt;}
.y17a{bottom:181.173333pt;}
.yb9{bottom:182.173333pt;}
.y149{bottom:185.173333pt;}
.y9d{bottom:186.173333pt;}
.y1ae{bottom:187.173333pt;}
.y194{bottom:188.173333pt;}
.y80{bottom:190.173333pt;}
.y1d3{bottom:191.173333pt;}
.y1cc{bottom:192.173333pt;}
.y33{bottom:193.173333pt;}
.y16{bottom:194.173333pt;}
.y10b{bottom:196.173333pt;}
.y18f{bottom:197.173333pt;}
.y1ad{bottom:198.173333pt;}
.y1ed{bottom:199.173333pt;}
.yc7{bottom:200.173333pt;}
.y169{bottom:201.173333pt;}
.yb8{bottom:203.173333pt;}
.y175{bottom:204.173333pt;}
.y1a3{bottom:205.173333pt;}
.y1cb{bottom:206.200000pt;}
.y51{bottom:207.200000pt;}
.y1dd{bottom:208.200000pt;}
.ydc{bottom:209.200000pt;}
.y179{bottom:211.200000pt;}
.y1d4{bottom:212.200000pt;}
.y1ef{bottom:213.200000pt;}
.y193{bottom:214.200000pt;}
.y104{bottom:215.200000pt;}
.y15d{bottom:216.200000pt;}
.y12d{bottom:217.200000pt;}
.y21c{bottom:218.200000pt;}
.y1ca{bottom:219.200000pt;}
.y32{bottom:220.200000pt;}
.y228{bottom:221.200000pt;}
.y14c{bottom:222.200000pt;}
.y103{bottom:223.200000pt;}
.yb7{bottom:224.200000pt;}
.y7f{bottom:225.200000pt;}
.y1ec{bottom:226.200000pt;}
.y206{bottom:227.200000pt;}
.y15{bottom:228.200000pt;}
.y9c{bottom:229.200000pt;}
.y174{bottom:230.200000pt;}
.y178{bottom:232.200000pt;}
.y58{bottom:234.200000pt;}
.y119{bottom:236.200000pt;}
.y188{bottom:238.200000pt;}
.y167{bottom:239.200000pt;}
.ydb{bottom:240.200000pt;}
.yb6{bottom:241.200000pt;}
.y7e{bottom:242.200000pt;}
.y15c{bottom:243.200000pt;}
.y102{bottom:244.226667pt;}
.y31{bottom:247.226667pt;}
.yfd{bottom:249.226667pt;}
.y18e{bottom:250.226667pt;}
.yf4{bottom:251.226667pt;}
.y50{bottom:253.226667pt;}
.y205{bottom:254.226667pt;}
.y9b{bottom:255.226667pt;}
.y7d{bottom:259.226667pt;}
.y14{bottom:260.226667pt;}
.y165{bottom:261.226667pt;}
.y162{bottom:262.226667pt;}
.y118{bottom:263.226667pt;}
.y187{bottom:264.226667pt;}
.ye6{bottom:265.226667pt;}
.yb5{bottom:266.226667pt;}
.yda{bottom:267.226667pt;}
.y196{bottom:268.226667pt;}
.y19c{bottom:269.226667pt;}
.y1dc{bottom:270.226667pt;}
.y12c{bottom:271.226667pt;}
.y1eb{bottom:272.226667pt;}
.y227{bottom:273.226667pt;}
.y30{bottom:274.226667pt;}
.y148{bottom:275.226667pt;}
.yfc{bottom:276.226667pt;}
.y7c{bottom:277.226667pt;}
.y1e7{bottom:279.226667pt;}
.y57{bottom:280.226667pt;}
.y1db{bottom:281.266667pt;}
.y9a{bottom:282.266667pt;}
.y183{bottom:283.266667pt;}
.y173{bottom:285.266667pt;}
.y13{bottom:286.266667pt;}
.y13e{bottom:287.266667pt;}
.y164{bottom:288.266667pt;}
.y117{bottom:289.266667pt;}
.y15b{bottom:290.266667pt;}
.yb4{bottom:291.266667pt;}
.ye5{bottom:292.266667pt;}
.yd9{bottom:293.266667pt;}
.y7b{bottom:294.266667pt;}
.y19b{bottom:295.266667pt;}
.yf3{bottom:296.266667pt;}
.y4f{bottom:298.266667pt;}
.y186{bottom:300.266667pt;}
.y2f{bottom:301.266667pt;}
.y147{bottom:302.266667pt;}
.y1af{bottom:303.266667pt;}
.y1f3{bottom:304.266667pt;}
.y1e6{bottom:306.266667pt;}
.y99{bottom:309.266667pt;}
.y182{bottom:310.266667pt;}
.y7a{bottom:311.266667pt;}
.y12{bottom:313.266667pt;}
.y13d{bottom:314.266667pt;}
.yb3{bottom:316.266667pt;}
.y1d2{bottom:317.266667pt;}
.ye4{bottom:319.293333pt;}
.yd8{bottom:320.293333pt;}
.yfb{bottom:321.293333pt;}
.y10a{bottom:322.293333pt;}
.yf2{bottom:323.293333pt;}
.y163{bottom:324.293333pt;}
.y56{bottom:325.293333pt;}
.y2e{bottom:327.293333pt;}
.y79{bottom:328.293333pt;}
.y146{bottom:329.293333pt;}
.y1b1{bottom:330.293333pt;}
.y1a2{bottom:331.293333pt;}
.y1d8{bottom:333.293333pt;}
.y98{bottom:336.293333pt;}
.y15a{bottom:337.293333pt;}
.y15e{bottom:338.293333pt;}
.y11{bottom:340.293333pt;}
.yb2{bottom:341.293333pt;}
.y116{bottom:343.293333pt;}
.y4e{bottom:344.293333pt;}
.y78{bottom:346.293333pt;}
.y1a7{bottom:347.293333pt;}
.y109{bottom:348.293333pt;}
.y18d{bottom:349.293333pt;}
.yf1{bottom:350.293333pt;}
.y12b{bottom:352.293333pt;}
.y204{bottom:353.293333pt;}
.y101{bottom:354.293333pt;}
.y145{bottom:356.333333pt;}
.y1b0{bottom:357.333333pt;}
.y1a1{bottom:358.333333pt;}
.y1b3{bottom:359.333333pt;}
.y1e5{bottom:360.333333pt;}
.y77{bottom:363.333333pt;}
.y155{bottom:365.333333pt;}
.yd7{bottom:366.333333pt;}
.y10{bottom:367.333333pt;}
.y19a{bottom:368.333333pt;}
.y55{bottom:370.333333pt;}
.y1b2{bottom:372.333333pt;}
.y2d{bottom:373.333333pt;}
.y18c{bottom:376.333333pt;}
.yf0{bottom:377.333333pt;}
.y1ab{bottom:379.333333pt;}
.y76{bottom:380.333333pt;}
.y100{bottom:381.333333pt;}
.y159{bottom:382.333333pt;}
.y144{bottom:383.333333pt;}
.y1a0{bottom:385.333333pt;}
.y13c{bottom:386.333333pt;}
.y1e4{bottom:387.333333pt;}
.y108{bottom:388.333333pt;}
.y4d{bottom:389.333333pt;}
.y97{bottom:390.333333pt;}
.yb1{bottom:391.333333pt;}
.y154{bottom:392.333333pt;}
.yd6{bottom:393.373333pt;}
.yf{bottom:394.373333pt;}
.y199{bottom:395.373333pt;}
.y226{bottom:396.373333pt;}
.y75{bottom:397.373333pt;}
.y1a8{bottom:399.373333pt;}
.y2c{bottom:400.373333pt;}
.y177{bottom:401.373333pt;}
.y1be{bottom:402.373333pt;}
.y18b{bottom:403.373333pt;}
.yef{bottom:404.373333pt;}
.y203{bottom:407.373333pt;}
.y180{bottom:408.373333pt;}
.y107{bottom:409.373333pt;}
.yb0{bottom:410.373333pt;}
.y19f{bottom:412.373333pt;}
.y13b{bottom:413.373333pt;}
.y74{bottom:415.373333pt;}
.y54{bottom:416.373333pt;}
.y96{bottom:417.373333pt;}
.y153{bottom:418.373333pt;}
.yd5{bottom:419.373333pt;}
.ye{bottom:421.373333pt;}
.y115{bottom:424.373333pt;}
.y181{bottom:426.373333pt;}
.y2b{bottom:427.373333pt;}
.y106{bottom:428.373333pt;}
.yfa{bottom:429.373333pt;}
.y1f2{bottom:430.373333pt;}
.y73{bottom:432.400000pt;}
.y202{bottom:434.400000pt;}
.y4c{bottom:435.400000pt;}
.y195{bottom:437.400000pt;}
.y18a{bottom:438.400000pt;}
.y19e{bottom:439.400000pt;}
.y13a{bottom:440.400000pt;}
.y95{bottom:443.400000pt;}
.yc6{bottom:445.400000pt;}
.yd4{bottom:446.400000pt;}
.yf9{bottom:448.400000pt;}
.y72{bottom:449.400000pt;}
.y114{bottom:451.400000pt;}
.y1d7{bottom:452.400000pt;}
.y2a{bottom:453.400000pt;}
.y143{bottom:455.400000pt;}
.y189{bottom:457.400000pt;}
.y198{bottom:458.400000pt;}
.y1e3{bottom:459.400000pt;}
.yaf{bottom:461.400000pt;}
.y4b{bottom:462.400000pt;}
.yd{bottom:463.400000pt;}
.y105{bottom:464.400000pt;}
.y1a6{bottom:465.400000pt;}
.y71{bottom:467.400000pt;}
.y94{bottom:470.440000pt;}
.y225{bottom:471.440000pt;}
.yc5{bottom:472.440000pt;}
.yd3{bottom:473.440000pt;}
.y210{bottom:475.440000pt;}
.yee{bottom:476.440000pt;}
.y113{bottom:477.440000pt;}
.y12a{bottom:478.440000pt;}
.y201{bottom:479.440000pt;}
.yff{bottom:480.440000pt;}
.y1ee{bottom:481.440000pt;}
.y142{bottom:482.440000pt;}
.y17f{bottom:483.440000pt;}
.y70{bottom:484.440000pt;}
.y139{bottom:485.440000pt;}
.y1e2{bottom:486.440000pt;}
.y4a{bottom:488.440000pt;}
.yae{bottom:490.440000pt;}
.y152{bottom:491.440000pt;}
.y1a5{bottom:492.440000pt;}
.y192{bottom:493.440000pt;}
.y224{bottom:496.440000pt;}
.y93{bottom:497.440000pt;}
.y1d6{bottom:498.440000pt;}
.y29{bottom:499.440000pt;}
.y40{bottom:500.440000pt;}
.y6f{bottom:501.440000pt;}
.yed{bottom:503.440000pt;}
.y112{bottom:504.440000pt;}
.y129{bottom:505.466667pt;}
.y200{bottom:506.466667pt;}
.yc{bottom:507.466667pt;}
.y158{bottom:508.466667pt;}
.y141{bottom:509.466667pt;}
.y176{bottom:510.466667pt;}
.yad{bottom:511.466667pt;}
.y138{bottom:512.466667pt;}
.y1e1{bottom:513.466667pt;}
.y53{bottom:515.466667pt;}
.y14b{bottom:517.466667pt;}
.y6e{bottom:518.466667pt;}
.y191{bottom:520.466667pt;}
.y172{bottom:523.466667pt;}
.y92{bottom:524.466667pt;}
.y1d5{bottom:525.466667pt;}
.y28{bottom:526.466667pt;}
.y1a4{bottom:527.466667pt;}
.yac{bottom:528.466667pt;}
.y1f1{bottom:529.466667pt;}
.yec{bottom:530.466667pt;}
.y111{bottom:531.466667pt;}
.y128{bottom:532.466667pt;}
.y49{bottom:534.466667pt;}
.y157{bottom:535.466667pt;}
.yb{bottom:536.466667pt;}
.y14a{bottom:537.466667pt;}
.y137{bottom:539.466667pt;}
.y1e0{bottom:540.466667pt;}
.y223{bottom:543.506667pt;}
.y151{bottom:544.506667pt;}
.yc4{bottom:545.506667pt;}
.y3f{bottom:546.506667pt;}
.y20f{bottom:547.506667pt;}
.y171{bottom:550.506667pt;}
.y91{bottom:551.506667pt;}
.y1da{bottom:552.506667pt;}
.y27{bottom:553.506667pt;}
.y1bd{bottom:555.506667pt;}
.yeb{bottom:556.506667pt;}
.y110{bottom:558.506667pt;}
.y48{bottom:561.506667pt;}
.y140{bottom:562.506667pt;}
.y17e{bottom:563.506667pt;}
.y136{bottom:566.506667pt;}
.y1fb{bottom:568.506667pt;}
.y222{bottom:569.506667pt;}
.y6d{bottom:570.506667pt;}
.yc3{bottom:571.506667pt;}
.y3e{bottom:572.506667pt;}
.y19d{bottom:573.506667pt;}
.y170{bottom:577.506667pt;}
.y90{bottom:578.506667pt;}
.y1fa{bottom:579.506667pt;}
.ya{bottom:580.533333pt;}
.y197{bottom:581.533333pt;}
.y1c6{bottom:582.533333pt;}
.y1f0{bottom:583.533333pt;}
.y123{bottom:585.533333pt;}
.y21b{bottom:586.533333pt;}
.y6c{bottom:587.533333pt;}
.y47{bottom:588.533333pt;}
.y17d{bottom:590.533333pt;}
.yea{bottom:592.533333pt;}
.y135{bottom:593.533333pt;}
.y1ea{bottom:594.533333pt;}
.y156{bottom:597.533333pt;}
.yc2{bottom:598.533333pt;}
.y3d{bottom:599.533333pt;}
.y10f{bottom:604.533333pt;}
.y6b{bottom:605.533333pt;}
.y26{bottom:606.533333pt;}
.yab{bottom:607.533333pt;}
.y1bc{bottom:608.533333pt;}
.y1c5{bottom:609.533333pt;}
.y21a{bottom:611.533333pt;}
.ye9{bottom:612.533333pt;}
.y46{bottom:615.533333pt;}
.y13f{bottom:617.533333pt;}
.y134{bottom:620.560000pt;}
.y1d1{bottom:621.560000pt;}
.y6a{bottom:622.560000pt;}
.y16f{bottom:623.560000pt;}
.yc1{bottom:625.560000pt;}
.yd2{bottom:626.560000pt;}
.yaa{bottom:628.560000pt;}
.y10e{bottom:630.560000pt;}
.y8f{bottom:631.560000pt;}
.y1ff{bottom:632.560000pt;}
.y25{bottom:633.560000pt;}
.y1bb{bottom:635.560000pt;}
.y1c4{bottom:636.560000pt;}
.y9{bottom:639.560000pt;}
.y45{bottom:641.560000pt;}
.y221{bottom:643.560000pt;}
.y161{bottom:644.560000pt;}
.y3c{bottom:645.560000pt;}
.y133{bottom:646.560000pt;}
.y1d0{bottom:648.560000pt;}
.y16e{bottom:649.560000pt;}
.yc0{bottom:652.560000pt;}
.yd1{bottom:653.560000pt;}
.y1f4{bottom:654.560000pt;}
.y69{bottom:657.600000pt;}
.y8e{bottom:658.600000pt;}
.y1fe{bottom:659.600000pt;}
.y24{bottom:660.600000pt;}
.y219{bottom:661.600000pt;}
.y1ba{bottom:662.600000pt;}
.y190{bottom:665.600000pt;}
.y10d{bottom:666.600000pt;}
.y220{bottom:667.600000pt;}
.y52{bottom:668.600000pt;}
.ya9{bottom:670.600000pt;}
.y150{bottom:671.600000pt;}
.y68{bottom:674.600000pt;}
.y1cf{bottom:675.600000pt;}
.y16d{bottom:676.600000pt;}
.ybf{bottom:679.600000pt;}
.yd0{bottom:680.600000pt;}
.y8d{bottom:685.600000pt;}
.y1fd{bottom:686.600000pt;}
.y23{bottom:687.600000pt;}
.y1b9{bottom:689.600000pt;}
.y3b{bottom:690.600000pt;}
.y67{bottom:691.600000pt;}
.y132{bottom:692.626667pt;}
.y20e{bottom:694.626667pt;}
.ya8{bottom:695.626667pt;}
.y14f{bottom:697.626667pt;}
.y8{bottom:698.626667pt;}
.y1e9{bottom:702.626667pt;}
.y16c{bottom:703.626667pt;}
.ye3{bottom:706.626667pt;}
.ycf{bottom:707.626667pt;}
.y66{bottom:708.626667pt;}
.y122{bottom:711.626667pt;}
.y8c{bottom:712.626667pt;}
.y1df{bottom:713.626667pt;}
.y22{bottom:714.626667pt;}
.y21f{bottom:715.626667pt;}
.y160{bottom:716.626667pt;}
.y1c3{bottom:717.626667pt;}
.y131{bottom:719.626667pt;}
.ya7{bottom:720.626667pt;}
.y1ce{bottom:722.626667pt;}
.y14e{bottom:724.626667pt;}
.y65{bottom:726.626667pt;}
.y185{bottom:728.626667pt;}
.y16b{bottom:730.666667pt;}
.ybe{bottom:731.666667pt;}
.ye2{bottom:732.666667pt;}
.y1b8{bottom:734.666667pt;}
.y218{bottom:735.666667pt;}
.y3a{bottom:736.666667pt;}
.y1e8{bottom:737.666667pt;}
.y127{bottom:738.666667pt;}
.y8b{bottom:739.666667pt;}
.y1fc{bottom:740.666667pt;}
.y7{bottom:741.666667pt;}
.y64{bottom:743.666667pt;}
.y1c2{bottom:744.666667pt;}
.y184{bottom:747.666667pt;}
.ya6{bottom:749.666667pt;}
.y14d{bottom:751.666667pt;}
.yce{bottom:753.666667pt;}
.y121{bottom:757.666667pt;}
.y166{bottom:759.666667pt;}
.y63{bottom:760.666667pt;}
.y1b7{bottom:761.666667pt;}
.y21e{bottom:764.666667pt;}
.y126{bottom:765.666667pt;}
.y8a{bottom:766.666667pt;}
.y6{bottom:767.706667pt;}
.y21{bottom:768.706667pt;}
.y15f{bottom:770.706667pt;}
.y1c1{bottom:771.706667pt;}
.ya5{bottom:772.706667pt;}
.y1aa{bottom:776.706667pt;}
.y62{bottom:777.706667pt;}
.ye1{bottom:778.706667pt;}
.y39{bottom:781.706667pt;}
.y120{bottom:784.706667pt;}
.y168{bottom:786.706667pt;}
.y217{bottom:787.706667pt;}
.y1b6{bottom:788.706667pt;}
.y21d{bottom:789.706667pt;}
.ycd{bottom:790.706667pt;}
.y20d{bottom:791.706667pt;}
.ybd{bottom:792.706667pt;}
.y89{bottom:793.706667pt;}
.y5{bottom:794.706667pt;}
.y61{bottom:795.706667pt;}
.yf8{bottom:797.706667pt;}
.y1c0{bottom:798.706667pt;}
.y1a9{bottom:802.706667pt;}
.ycc{bottom:805.733333pt;}
.y11f{bottom:811.733333pt;}
.y60{bottom:812.733333pt;}
.y20{bottom:813.733333pt;}
.y1b5{bottom:814.733333pt;}
.ya4{bottom:815.733333pt;}
.y20c{bottom:817.733333pt;}
.y88{bottom:819.733333pt;}
.y4{bottom:822.733333pt;}
.yf7{bottom:824.733333pt;}
.y38{bottom:827.733333pt;}
.y5f{bottom:829.733333pt;}
.ye0{bottom:832.733333pt;}
.ya3{bottom:836.733333pt;}
.y11e{bottom:837.733333pt;}
.y216{bottom:838.733333pt;}
.y1f{bottom:840.733333pt;}
.y20b{bottom:841.733333pt;}
.y87{bottom:846.773333pt;}
.y5e{bottom:847.773333pt;}
.y3{bottom:850.773333pt;}
.y1bf{bottom:851.773333pt;}
.y1b4{bottom:854.773333pt;}
.y16a{bottom:856.773333pt;}
.ya2{bottom:858.773333pt;}
.ydf{bottom:859.773333pt;}
.ybc{bottom:860.773333pt;}
.y215{bottom:862.773333pt;}
.y5d{bottom:864.773333pt;}
.y44{bottom:867.773333pt;}
.y37{bottom:872.773333pt;}
.y86{bottom:873.773333pt;}
.y20a{bottom:875.773333pt;}
.ycb{bottom:877.773333pt;}
.ya1{bottom:879.800000pt;}
.y5c{bottom:881.800000pt;}
.y11d{bottom:883.800000pt;}
.y22b{bottom:884.800000pt;}
.y1e{bottom:885.800000pt;}
.y214{bottom:887.800000pt;}
.y2{bottom:890.800000pt;}
.y5b{bottom:898.800000pt;}
.y85{bottom:900.800000pt;}
.ya0{bottom:901.800000pt;}
.y1cd{bottom:902.800000pt;}
.yca{bottom:904.800000pt;}
.y22a{bottom:908.800000pt;}
.y209{bottom:909.800000pt;}
.y11c{bottom:910.800000pt;}
.y213{bottom:911.800000pt;}
.y1d{bottom:912.800000pt;}
.y5a{bottom:916.800000pt;}
.y36{bottom:918.840000pt;}
.y9f{bottom:919.840000pt;}
.y84{bottom:924.840000pt;}
.ybb{bottom:927.840000pt;}
.yc9{bottom:931.840000pt;}
.y59{bottom:933.840000pt;}
.y229{bottom:934.840000pt;}
.y212{bottom:936.840000pt;}
.y83{bottom:940.840000pt;}
.y1{bottom:944.840000pt;}
.y130{bottom:946.840000pt;}
.y9e{bottom:951.840000pt;}
.y18{bottom:953.840000pt;}
.y35{bottom:956.866667pt;}
.y11b{bottom:957.866667pt;}
.y1c{bottom:958.866667pt;}
.y211{bottom:959.866667pt;}
.ha{height:20.000000pt;}
.he{height:26.390625pt;}
.h18{height:30.234375pt;}
.h16{height:33.257812pt;}
.h11{height:33.890625pt;}
.h1d{height:37.546875pt;}
.hf{height:39.585938pt;}
.h12{height:41.572266pt;}
.h10{height:42.363281pt;}
.h19{height:45.187500pt;}
.h22{height:46.171875pt;}
.h4{height:49.482422pt;}
.hb{height:49.592383pt;}
.h1b{height:50.390625pt;}
.h17{height:50.497292pt;}
.h1e{height:50.550625pt;}
.h5{height:52.781250pt;}
.h23{height:53.103359pt;}
.h13{height:53.417969pt;}
.h8{height:53.754297pt;}
.h1c{height:54.234375pt;}
.hd{height:57.689453pt;}
.h1f{height:57.796120pt;}
.h1a{height:57.849453pt;}
.h15{height:59.402734pt;}
.h21{height:61.670545pt;}
.h9{height:62.578125pt;}
.h24{height:64.287109pt;}
.h20{height:65.781915pt;}
.hc{height:66.750000pt;}
.h14{height:76.348047pt;}
.h25{height:79.255990pt;}
.h2{height:81.996484pt;}
.h6{height:90.469141pt;}
.h3{height:95.775977pt;}
.h7{height:105.672461pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:60.000000pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:21.960000pt;}
.x10{left:23.960000pt;}
.xf{left:24.960000pt;}
.x11{left:25.960000pt;}
.xe{left:26.960000pt;}
.xd{left:28.960000pt;}
.x4{left:132.166667pt;}
.x6{left:152.200000pt;}
.x13{left:156.200000pt;}
.x14{left:179.240000pt;}
.x16{left:180.240000pt;}
.x5{left:181.240000pt;}
.x2{left:249.306667pt;}
.x7{left:251.333333pt;}
.x1{left:264.333333pt;}
.x9{left:267.333333pt;}
.x1d{left:271.333333pt;}
.x21{left:282.360000pt;}
.x24{left:300.360000pt;}
.x27{left:314.400000pt;}
.x23{left:329.440000pt;}
.x1b{left:340.440000pt;}
.xb{left:378.466667pt;}
.x8{left:402.506667pt;}
.xa{left:415.533333pt;}
.x3{left:425.533333pt;}
.x1c{left:577.733333pt;}
.x1a{left:586.733333pt;}
.x22{left:623.800000pt;}
.x26{left:661.840000pt;}
.x20{left:674.866667pt;}
.x18{left:678.866667pt;}
.x25{left:680.866667pt;}
.x19{left:698.893333pt;}
.x17{left:699.893333pt;}
.x1f{left:710.893333pt;}
.x1e{left:716.893333pt;}
.x15{left:718.893333pt;}
.xc{left:726.000000pt;}
}




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