
    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_2df17ee6a889e45a864e9067.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_edf72519535e053c02edc5d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc9ef6a369ebfb40f0a6093a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c05c22b4c82b01acb70429e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.790000px;}
.v4{vertical-align:22.770000px;}
.v1{vertical-align:26.730000px;}
.ls31{letter-spacing:-2.622000px;}
.ls26{letter-spacing:-2.001000px;}
.ls27{letter-spacing:-1.725000px;}
.ls22{letter-spacing:-1.656000px;}
.ls29{letter-spacing:-1.587000px;}
.ls2c{letter-spacing:-1.449000px;}
.ls23{letter-spacing:-1.380000px;}
.ls2d{letter-spacing:-1.311000px;}
.ls2a{letter-spacing:-1.242000px;}
.ls28{letter-spacing:-1.173000px;}
.ls32{letter-spacing:-1.140000px;}
.ls24{letter-spacing:-0.966000px;}
.ls25{letter-spacing:-0.897000px;}
.ls1f{letter-spacing:-0.828000px;}
.ls2b{letter-spacing:-0.759000px;}
.ls33{letter-spacing:-0.741000px;}
.ls1d{letter-spacing:-0.690000px;}
.ls34{letter-spacing:-0.570000px;}
.ls20{letter-spacing:-0.552000px;}
.ls19{letter-spacing:-0.483000px;}
.ls1e{letter-spacing:-0.448500px;}
.ls3a{letter-spacing:-0.414000px;}
.ls18{letter-spacing:-0.345000px;}
.ls30{letter-spacing:-0.276000px;}
.ls42{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.207000px;}
.ls5{letter-spacing:-0.189000px;}
.ls10{letter-spacing:-0.138000px;}
.ls40{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.069000px;}
.lsb{letter-spacing:-0.063000px;}
.lsf{letter-spacing:-0.044850px;}
.ls4{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.063000px;}
.ls14{letter-spacing:0.069000px;}
.ls1{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.138000px;}
.ls41{letter-spacing:0.189000px;}
.ls3{letter-spacing:0.204750px;}
.ls6{letter-spacing:0.207000px;}
.ls3e{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.276000px;}
.ls2{letter-spacing:0.315000px;}
.ls9{letter-spacing:0.345000px;}
.ls8{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.414000px;}
.ls3d{letter-spacing:0.441000px;}
.ls13{letter-spacing:0.483000px;}
.ls1c{letter-spacing:0.552000px;}
.ls2f{letter-spacing:0.621000px;}
.ls0{letter-spacing:0.630000px;}
.ls16{letter-spacing:0.690000px;}
.ls3b{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.759000px;}
.ls2e{letter-spacing:0.828000px;}
.ls11{letter-spacing:0.897000px;}
.ls1a{letter-spacing:0.966000px;}
.ls17{letter-spacing:1.035000px;}
.ls15{letter-spacing:1.104000px;}
.ls12{letter-spacing:1.173000px;}
.ls1b{letter-spacing:1.242000px;}
.ls36{letter-spacing:1.311000px;}
.ls35{letter-spacing:1.380000px;}
.ls38{letter-spacing:1.518000px;}
.ls37{letter-spacing:1.587000px;}
.ls39{letter-spacing:1.656000px;}
.ls3f{letter-spacing:2.205000px;}
.ls43{letter-spacing:3.150000px;}
.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;}
}
.ws1{word-spacing:-20.250000px;}
.ws3b{word-spacing:-17.250000px;}
.ws4{word-spacing:-15.750000px;}
.ws62{word-spacing:-15.624000px;}
.ws49{word-spacing:-14.628000px;}
.ws2{word-spacing:-13.162500px;}
.ws0{word-spacing:-12.750000px;}
.ws3a{word-spacing:-11.212500px;}
.ws1d{word-spacing:-11.167650px;}
.ws36{word-spacing:-10.764000px;}
.ws5{word-spacing:-10.442250px;}
.ws3{word-spacing:-10.237500px;}
.ws6{word-spacing:-9.262500px;}
.ws63{word-spacing:-2.205000px;}
.ws5b{word-spacing:-1.587000px;}
.ws57{word-spacing:-1.380000px;}
.ws5a{word-spacing:-1.311000px;}
.ws2a{word-spacing:-1.173000px;}
.ws2e{word-spacing:-1.104000px;}
.ws30{word-spacing:-1.035000px;}
.ws80{word-spacing:-1.008000px;}
.ws5e{word-spacing:-0.966000px;}
.ws27{word-spacing:-0.897000px;}
.ws4a{word-spacing:-0.828000px;}
.ws47{word-spacing:-0.759000px;}
.ws65{word-spacing:-0.756000px;}
.ws2f{word-spacing:-0.690000px;}
.wsc{word-spacing:-0.630000px;}
.ws50{word-spacing:-0.621000px;}
.ws32{word-spacing:-0.552000px;}
.ws26{word-spacing:-0.483000px;}
.ws66{word-spacing:-0.441000px;}
.ws4b{word-spacing:-0.414000px;}
.wsa{word-spacing:-0.405000px;}
.ws15{word-spacing:-0.378000px;}
.ws17{word-spacing:-0.345000px;}
.ws11{word-spacing:-0.315000px;}
.ws1c{word-spacing:-0.276000px;}
.ws68{word-spacing:-0.252000px;}
.ws18{word-spacing:-0.207000px;}
.ws6d{word-spacing:-0.189000px;}
.ws19{word-spacing:-0.138000px;}
.ws10{word-spacing:-0.126000px;}
.ws52{word-spacing:-0.069000px;}
.ws67{word-spacing:-0.063000px;}
.ws9{word-spacing:0.000000px;}
.ws1b{word-spacing:0.063000px;}
.ws20{word-spacing:0.069000px;}
.ws64{word-spacing:0.126000px;}
.ws23{word-spacing:0.138000px;}
.wsf{word-spacing:0.189000px;}
.ws1f{word-spacing:0.207000px;}
.ws7b{word-spacing:0.252000px;}
.ws53{word-spacing:0.276000px;}
.ws28{word-spacing:0.345000px;}
.ws61{word-spacing:0.414000px;}
.ws12{word-spacing:0.441000px;}
.ws29{word-spacing:0.483000px;}
.ws39{word-spacing:0.552000px;}
.ws56{word-spacing:0.570000px;}
.ws79{word-spacing:0.630000px;}
.ws35{word-spacing:0.690000px;}
.ws55{word-spacing:0.741000px;}
.ws45{word-spacing:0.759000px;}
.ws38{word-spacing:0.828000px;}
.ws3f{word-spacing:0.897000px;}
.ws3e{word-spacing:0.966000px;}
.ws71{word-spacing:1.008000px;}
.ws54{word-spacing:1.140000px;}
.ws42{word-spacing:1.173000px;}
.ws78{word-spacing:1.197000px;}
.ws44{word-spacing:1.242000px;}
.ws48{word-spacing:1.311000px;}
.ws3d{word-spacing:1.380000px;}
.ws46{word-spacing:1.449000px;}
.ws77{word-spacing:1.575000px;}
.ws43{word-spacing:1.587000px;}
.ws3c{word-spacing:1.656000px;}
.ws41{word-spacing:1.725000px;}
.ws76{word-spacing:1.890000px;}
.ws82{word-spacing:1.953000px;}
.ws40{word-spacing:2.001000px;}
.ws6e{word-spacing:2.016000px;}
.ws1e{word-spacing:2.208000px;}
.ws7a{word-spacing:2.394000px;}
.ws81{word-spacing:2.457000px;}
.ws6a{word-spacing:2.520000px;}
.ws7{word-spacing:2.550000px;}
.ws24{word-spacing:2.553000px;}
.ws83{word-spacing:2.772000px;}
.ws37{word-spacing:2.829000px;}
.ws69{word-spacing:2.835000px;}
.ws1a{word-spacing:2.898000px;}
.wse{word-spacing:3.150000px;}
.ws14{word-spacing:3.300000px;}
.ws51{word-spacing:3.312000px;}
.ws7c{word-spacing:3.339000px;}
.ws13{word-spacing:3.402000px;}
.ws16{word-spacing:3.450000px;}
.ws4d{word-spacing:3.657000px;}
.ws86{word-spacing:3.969000px;}
.ws8{word-spacing:4.050000px;}
.ws7f{word-spacing:4.410000px;}
.wsd{word-spacing:4.473000px;}
.ws7d{word-spacing:4.599000px;}
.ws6f{word-spacing:4.851000px;}
.ws73{word-spacing:4.914000px;}
.ws85{word-spacing:5.103000px;}
.ws84{word-spacing:5.229000px;}
.ws22{word-spacing:5.244000px;}
.ws74{word-spacing:5.355000px;}
.ws59{word-spacing:5.658000px;}
.ws87{word-spacing:5.796000px;}
.ws70{word-spacing:5.859000px;}
.ws75{word-spacing:6.237000px;}
.ws72{word-spacing:6.741000px;}
.ws7e{word-spacing:6.993000px;}
.ws25{word-spacing:7.107000px;}
.ws6c{word-spacing:7.119000px;}
.ws4c{word-spacing:7.245000px;}
.ws34{word-spacing:7.383000px;}
.wsb{word-spacing:7.749000px;}
.ws6b{word-spacing:7.875000px;}
.ws2d{word-spacing:8.625000px;}
.ws5f{word-spacing:8.694000px;}
.ws21{word-spacing:9.246000px;}
.ws58{word-spacing:10.764000px;}
.ws2c{word-spacing:10.833000px;}
.ws33{word-spacing:11.247000px;}
.ws60{word-spacing:12.144000px;}
.ws2b{word-spacing:13.593000px;}
.ws4e{word-spacing:15.801000px;}
.ws4f{word-spacing:19.596000px;}
.ws31{word-spacing:21.528000px;}
.ws5c{word-spacing:26.151000px;}
.ws5d{word-spacing:28.773000px;}
._10{margin-left:-17.250000px;}
._16{margin-left:-15.792000px;}
._f{margin-left:-13.633200px;}
._5{margin-left:-10.424700px;}
._c{margin-left:-8.145900px;}
._2{margin-left:-6.496200px;}
._20{margin-left:-5.487000px;}
._1{margin-left:-4.463100px;}
._d{margin-left:-3.292800px;}
._0{margin-left:-1.892100px;}
._8{width:1.638000px;}
._4{width:2.956800px;}
._3{width:4.022400px;}
._6{width:5.632800px;}
._7{width:7.030200px;}
._9{width:8.382000px;}
._e{width:9.464100px;}
._11{width:10.632900px;}
._19{width:11.715300px;}
._b{width:12.791100px;}
._a{width:13.862100px;}
._15{width:15.111000px;}
._1b{width:16.228800px;}
._17{width:17.248200px;}
._14{width:19.182000px;}
._18{width:20.223900px;}
._13{width:21.272700px;}
._12{width:22.335300px;}
._1d{width:24.046500px;}
._1c{width:25.709400px;}
._1e{width:28.821300px;}
._1f{width:30.807000px;}
._1a{width:36.245700px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:37.050000px;}
.fs5{font-size:40.950000px;}
.fs9{font-size:44.850000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:52.650000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y119{bottom:93.986250px;}
.y5a{bottom:94.181250px;}
.yd3{bottom:97.261950px;}
.y2d{bottom:99.096300px;}
.y128{bottom:102.947550px;}
.yaf{bottom:104.010600px;}
.y84{bottom:107.536200px;}
.y10c{bottom:107.945100px;}
.y118{bottom:109.736250px;}
.y13e{bottom:112.443900px;}
.y2c{bottom:114.846300px;}
.y1c4{bottom:116.977650px;}
.yd2{bottom:117.511950px;}
.y127{bottom:123.197550px;}
.yae{bottom:124.260600px;}
.y117{bottom:125.486250px;}
.ydf{bottom:126.283500px;}
.y191{bottom:126.512100px;}
.y83{bottom:127.786200px;}
.y10b{bottom:128.195100px;}
.y2b{bottom:130.596300px;}
.y167{bottom:130.938450px;}
.y13d{bottom:132.693900px;}
.y1c3{bottom:134.977650px;}
.yd1{bottom:137.761950px;}
.y58{bottom:140.330250px;}
.y116{bottom:141.236250px;}
.yde{bottom:142.033500px;}
.yad{bottom:144.510600px;}
.y190{bottom:144.512100px;}
.y59{bottom:146.022750px;}
.y2a{bottom:146.346450px;}
.y82{bottom:148.036200px;}
.y10a{bottom:148.445100px;}
.y166{bottom:151.188450px;}
.y13c{bottom:152.943900px;}
.y1c2{bottom:152.977650px;}
.yb4{bottom:153.692400px;}
.y29{bottom:157.394100px;}
.yd0{bottom:158.011950px;}
.y57{bottom:160.580250px;}
.y126{bottom:161.447550px;}
.y18f{bottom:162.512100px;}
.yac{bottom:164.760600px;}
.y109{bottom:168.695100px;}
.yb3{bottom:169.442400px;}
.y1c1{bottom:170.977650px;}
.y165{bottom:171.438450px;}
.y28{bottom:173.144100px;}
.y13b{bottom:173.193900px;}
.y27{bottom:177.846600px;}
.ycf{bottom:178.261950px;}
.y18e{bottom:180.512100px;}
.y56{bottom:180.830250px;}
.y81{bottom:185.294100px;}
.y108{bottom:188.945100px;}
.y1c0{bottom:188.977650px;}
.y164{bottom:191.688450px;}
.y13a{bottom:193.443900px;}
.y18d{bottom:198.512100px;}
.y55{bottom:201.080250px;}
.y80{bottom:202.544100px;}
.yab{bottom:203.010600px;}
.y1bf{bottom:206.977650px;}
.yce{bottom:207.015900px;}
.y163{bottom:211.938450px;}
.y139{bottom:213.693900px;}
.y12a{bottom:215.987700px;}
.y18c{bottom:216.512100px;}
.y107{bottom:217.698900px;}
.y26{bottom:217.729500px;}
.y7f{bottom:219.794100px;}
.y54{bottom:221.330250px;}
.y1be{bottom:224.977650px;}
.ycd{bottom:227.265900px;}
.y129{bottom:231.737700px;}
.y162{bottom:232.188450px;}
.y138{bottom:233.943900px;}
.y18b{bottom:234.512100px;}
.y25{bottom:235.729500px;}
.y106{bottom:237.948900px;}
.y53{bottom:241.580250px;}
.y1bd{bottom:242.977650px;}
.ycc{bottom:247.515900px;}
.y161{bottom:252.438450px;}
.y24{bottom:253.729500px;}
.y7e{bottom:254.052000px;}
.y137{bottom:254.193900px;}
.y105{bottom:258.198900px;}
.yaa{bottom:259.261950px;}
.y1bc{bottom:260.977650px;}
.y52{bottom:261.830100px;}
.y18a{bottom:267.393900px;}
.ycb{bottom:267.765900px;}
.y23{bottom:271.729500px;}
.y160{bottom:272.688450px;}
.y7d{bottom:274.302000px;}
.y136{bottom:274.443900px;}
.y104{bottom:278.449050px;}
.y1bb{bottom:278.977650px;}
.ya9{bottom:279.511950px;}
.y51{bottom:282.080100px;}
.yd8{bottom:284.669250px;}
.yca{bottom:288.015900px;}
.y22{bottom:289.729500px;}
.y15f{bottom:292.938450px;}
.y7c{bottom:294.552000px;}
.y135{bottom:294.693900px;}
.y1ba{bottom:296.977650px;}
.y1ee{bottom:297.296400px;}
.y103{bottom:298.699050px;}
.ya8{bottom:299.761950px;}
.yd7{bottom:300.419250px;}
.y50{bottom:302.330100px;}
.y21{bottom:307.729500px;}
.yc9{bottom:308.265900px;}
.y15e{bottom:313.188450px;}
.y7b{bottom:314.802000px;}
.y134{bottom:314.943900px;}
.y1b9{bottom:314.977650px;}
.y1ed{bottom:315.296400px;}
.y189{bottom:317.407800px;}
.y102{bottom:318.949050px;}
.ya7{bottom:320.011950px;}
.yc8{bottom:328.515900px;}
.y1b8{bottom:332.977650px;}
.y1ec{bottom:333.296400px;}
.y15d{bottom:333.438450px;}
.y7a{bottom:335.052000px;}
.y133{bottom:335.193900px;}
.y188{bottom:335.407800px;}
.y101{bottom:339.199050px;}
.y4f{bottom:339.588000px;}
.ya6{bottom:340.261950px;}
.y20{bottom:343.729500px;}
.yc7{bottom:348.765900px;}
.y1b7{bottom:350.977650px;}
.y1eb{bottom:351.296400px;}
.y187{bottom:353.407800px;}
.y79{bottom:355.302000px;}
.y132{bottom:355.443900px;}
.y4e{bottom:356.838000px;}
.y100{bottom:359.449050px;}
.ya5{bottom:360.511950px;}
.y1f{bottom:361.729500px;}
.y15c{bottom:362.192400px;}
.y1b6{bottom:368.977650px;}
.yc6{bottom:369.015900px;}
.y1ea{bottom:369.296400px;}
.y186{bottom:371.407800px;}
.y4d{bottom:374.088000px;}
.y78{bottom:375.552000px;}
.y131{bottom:375.693900px;}
.yff{bottom:379.699050px;}
.y1e{bottom:379.729500px;}
.ya4{bottom:380.761950px;}
.y15b{bottom:382.442400px;}
.y1b5{bottom:386.977650px;}
.y1e9{bottom:387.296400px;}
.yc5{bottom:389.265900px;}
.y185{bottom:389.407800px;}
.y4c{bottom:391.338000px;}
.y77{bottom:395.802000px;}
.y1d{bottom:397.729500px;}
.yfe{bottom:399.949050px;}
.ya3{bottom:401.011950px;}
.y15a{bottom:402.692400px;}
.y1b4{bottom:404.977650px;}
.y1e8{bottom:405.296400px;}
.y184{bottom:407.407800px;}
.y4b{bottom:408.588000px;}
.yc4{bottom:409.515900px;}
.y115{bottom:412.390500px;}
.y130{bottom:413.944500px;}
.y1c{bottom:415.729500px;}
.y76{bottom:416.052000px;}
.yfd{bottom:420.199050px;}
.ya2{bottom:421.261950px;}
.y159{bottom:422.942400px;}
.y1b3{bottom:422.977650px;}
.y1e7{bottom:423.296400px;}
.y183{bottom:425.407800px;}
.y4a{bottom:425.838000px;}
.y114{bottom:428.140500px;}
.yc3{bottom:429.765900px;}
.y1b{bottom:433.729500px;}
.y75{bottom:436.302000px;}
.yfc{bottom:440.449050px;}
.y1b2{bottom:440.977650px;}
.y1e6{bottom:441.296400px;}
.ya1{bottom:441.511950px;}
.y49{bottom:443.088000px;}
.y158{bottom:443.192400px;}
.y182{bottom:443.407800px;}
.y113{bottom:443.890500px;}
.yc2{bottom:450.015900px;}
.y1a{bottom:451.729500px;}
.y74{bottom:456.552000px;}
.y1b1{bottom:458.977650px;}
.y1e5{bottom:459.296400px;}
.yfb{bottom:460.699050px;}
.y181{bottom:461.407800px;}
.ya0{bottom:461.761950px;}
.y157{bottom:463.442400px;}
.y19{bottom:469.729500px;}
.yc1{bottom:470.265900px;}
.y73{bottom:476.802000px;}
.y1b0{bottom:476.977650px;}
.y1e4{bottom:477.296400px;}
.y48{bottom:477.345900px;}
.y180{bottom:479.407800px;}
.yfa{bottom:480.949050px;}
.y9f{bottom:482.011950px;}
.y156{bottom:483.692400px;}
.y18{bottom:487.729500px;}
.yc0{bottom:490.515900px;}
.y1af{bottom:494.977650px;}
.y1e3{bottom:495.296400px;}
.y72{bottom:497.052000px;}
.y17f{bottom:497.407800px;}
.y47{bottom:497.595900px;}
.yf9{bottom:501.199050px;}
.y9e{bottom:502.261950px;}
.y155{bottom:503.942400px;}
.y17{bottom:505.729500px;}
.yb2{bottom:506.800800px;}
.ybf{bottom:510.765900px;}
.y1ae{bottom:512.977650px;}
.y1e2{bottom:513.296400px;}
.y17e{bottom:515.407800px;}
.y71{bottom:517.302000px;}
.y46{bottom:517.845900px;}
.yf8{bottom:521.449050px;}
.y9d{bottom:522.511950px;}
.yb1{bottom:522.550800px;}
.y16{bottom:523.729500px;}
.y154{bottom:524.192400px;}
.y1ad{bottom:530.977650px;}
.ybe{bottom:531.015900px;}
.y1e1{bottom:531.296400px;}
.y17d{bottom:533.407800px;}
.ydd{bottom:536.674800px;}
.y70{bottom:537.552000px;}
.y45{bottom:538.095900px;}
.yb0{bottom:538.300800px;}
.yf7{bottom:541.699050px;}
.y15{bottom:541.729500px;}
.y9c{bottom:542.761950px;}
.y1ac{bottom:548.977650px;}
.y1e0{bottom:549.296400px;}
.ybd{bottom:551.265900px;}
.y17c{bottom:551.407800px;}
.yda{bottom:552.424650px;}
.ydc{bottom:552.424800px;}
.y6f{bottom:557.802000px;}
.y44{bottom:558.345900px;}
.y14{bottom:559.729500px;}
.yf6{bottom:561.949050px;}
.y153{bottom:562.442850px;}
.y9b{bottom:563.011950px;}
.y1ab{bottom:566.977650px;}
.y1df{bottom:567.296400px;}
.yd9{bottom:568.174650px;}
.ydb{bottom:568.174800px;}
.y17b{bottom:569.407800px;}
.ybc{bottom:571.515900px;}
.y6e{bottom:578.052000px;}
.y43{bottom:578.595900px;}
.yf5{bottom:582.199050px;}
.y9a{bottom:583.261950px;}
.y1aa{bottom:584.977650px;}
.y1de{bottom:585.296400px;}
.y17a{bottom:587.407800px;}
.ybb{bottom:591.765900px;}
.y13{bottom:595.729500px;}
.y6d{bottom:598.302000px;}
.y42{bottom:598.845900px;}
.y125{bottom:602.449050px;}
.y1a9{bottom:602.977650px;}
.y1dd{bottom:603.296400px;}
.y99{bottom:603.511950px;}
.y179{bottom:605.407800px;}
.y152{bottom:609.197400px;}
.yf4{bottom:610.952850px;}
.yba{bottom:612.015900px;}
.y12{bottom:613.729500px;}
.y6c{bottom:618.552000px;}
.y41{bottom:619.095900px;}
.y1a8{bottom:620.977650px;}
.y1dc{bottom:621.296400px;}
.y124{bottom:622.699050px;}
.y178{bottom:623.407800px;}
.y98{bottom:623.761950px;}
.y151{bottom:629.447400px;}
.yf3{bottom:631.202850px;}
.y11{bottom:631.729500px;}
.yb9{bottom:632.265900px;}
.y6b{bottom:638.802000px;}
.y1a7{bottom:638.977650px;}
.y1db{bottom:639.296400px;}
.y40{bottom:639.345900px;}
.y177{bottom:641.407800px;}
.y123{bottom:642.949050px;}
.y97{bottom:644.011950px;}
.y150{bottom:649.697400px;}
.y10{bottom:649.729500px;}
.yf2{bottom:651.452850px;}
.yb8{bottom:652.515900px;}
.y1a6{bottom:656.977650px;}
.y1da{bottom:657.296400px;}
.y6a{bottom:659.052000px;}
.y176{bottom:659.407800px;}
.y3f{bottom:659.595900px;}
.y122{bottom:663.198900px;}
.y96{bottom:664.261950px;}
.yf{bottom:667.729500px;}
.y14f{bottom:669.947400px;}
.yf1{bottom:671.702850px;}
.y141{bottom:672.241650px;}
.yb7{bottom:672.765900px;}
.y1a5{bottom:674.977650px;}
.y1d9{bottom:675.296400px;}
.y175{bottom:677.407800px;}
.y69{bottom:679.302000px;}
.y3e{bottom:679.845900px;}
.y121{bottom:683.448900px;}
.y95{bottom:684.511950px;}
.ye{bottom:685.729500px;}
.y140{bottom:687.991650px;}
.y14e{bottom:690.197400px;}
.yf0{bottom:691.952850px;}
.y1a4{bottom:692.977650px;}
.yb6{bottom:693.015900px;}
.y1d8{bottom:693.296400px;}
.yd6{bottom:693.501600px;}
.y174{bottom:695.407800px;}
.y68{bottom:699.552000px;}
.y3d{bottom:700.095900px;}
.y120{bottom:703.698900px;}
.yd{bottom:703.729500px;}
.y13f{bottom:703.741650px;}
.y94{bottom:704.761950px;}
.yd5{bottom:709.251600px;}
.y14d{bottom:710.447400px;}
.y1a3{bottom:710.977650px;}
.y1d7{bottom:711.296400px;}
.yef{bottom:712.202850px;}
.yb5{bottom:713.265900px;}
.y173{bottom:713.407800px;}
.y112{bottom:714.283050px;}
.y67{bottom:719.802000px;}
.y3c{bottom:720.345900px;}
.yc{bottom:721.729500px;}
.y11f{bottom:723.948900px;}
.yd4{bottom:725.001600px;}
.y1a2{bottom:728.977650px;}
.y1d6{bottom:729.296400px;}
.y110{bottom:730.033050px;}
.y14c{bottom:730.697400px;}
.y172{bottom:731.407800px;}
.yee{bottom:732.452850px;}
.y93{bottom:733.515900px;}
.y111{bottom:734.735550px;}
.yb{bottom:739.729500px;}
.y3b{bottom:740.595900px;}
.y11e{bottom:744.198900px;}
.y10f{bottom:745.783050px;}
.y1a1{bottom:746.977650px;}
.y1d5{bottom:747.296400px;}
.y171{bottom:749.407800px;}
.yed{bottom:752.702850px;}
.y92{bottom:753.765900px;}
.ya{bottom:757.729500px;}
.y66{bottom:758.052000px;}
.y3a{bottom:760.845900px;}
.y10e{bottom:761.533050px;}
.y11d{bottom:764.448900px;}
.y1a0{bottom:764.977650px;}
.y1d4{bottom:765.296400px;}
.y170{bottom:767.407800px;}
.y14b{bottom:768.948000px;}
.yec{bottom:772.952850px;}
.y91{bottom:774.015900px;}
.y10d{bottom:777.283050px;}
.y39{bottom:781.095900px;}
.y19f{bottom:782.977650px;}
.y1d3{bottom:783.296400px;}
.y11c{bottom:784.698900px;}
.y16f{bottom:785.407800px;}
.yeb{bottom:793.202850px;}
.y90{bottom:794.265900px;}
.y19e{bottom:800.977650px;}
.y1d2{bottom:801.296400px;}
.y38{bottom:801.345900px;}
.y16e{bottom:803.407800px;}
.y11b{bottom:804.948900px;}
.y9{bottom:811.728900px;}
.yea{bottom:813.452850px;}
.y65{bottom:814.303350px;}
.y8f{bottom:814.515900px;}
.y14a{bottom:815.702400px;}
.y19d{bottom:818.977650px;}
.y1d1{bottom:819.296400px;}
.y37{bottom:821.595900px;}
.y11a{bottom:825.198900px;}
.y8{bottom:833.160900px;}
.ye9{bottom:833.702850px;}
.y64{bottom:834.553350px;}
.y8e{bottom:834.765900px;}
.y149{bottom:835.952400px;}
.y16d{bottom:836.289600px;}
.y19c{bottom:836.977650px;}
.y1d0{bottom:837.296400px;}
.y36{bottom:841.845900px;}
.y12f{bottom:845.448900px;}
.ye8{bottom:853.952850px;}
.y63{bottom:854.803350px;}
.y19b{bottom:854.977650px;}
.y8d{bottom:855.015900px;}
.y1cf{bottom:855.296400px;}
.y148{bottom:856.202400px;}
.y12e{bottom:865.698900px;}
.y7{bottom:868.092900px;}
.y19a{bottom:872.977650px;}
.y1ce{bottom:873.296400px;}
.ye7{bottom:874.202850px;}
.y62{bottom:875.053350px;}
.y8c{bottom:875.265900px;}
.y147{bottom:876.452400px;}
.y35{bottom:880.095900px;}
.y12d{bottom:885.948900px;}
.y16c{bottom:886.303500px;}
.y199{bottom:890.977650px;}
.y1cd{bottom:891.296400px;}
.ye6{bottom:894.452850px;}
.y61{bottom:895.303350px;}
.y8b{bottom:895.515900px;}
.y146{bottom:896.702400px;}
.y16b{bottom:904.303500px;}
.y6{bottom:906.024900px;}
.y12c{bottom:906.198900px;}
.y198{bottom:908.977650px;}
.y1cc{bottom:909.296400px;}
.ye5{bottom:914.702850px;}
.y60{bottom:915.553350px;}
.y8a{bottom:915.765900px;}
.y145{bottom:916.952400px;}
.y12b{bottom:926.448900px;}
.y197{bottom:926.977650px;}
.y1cb{bottom:927.296400px;}
.y5{bottom:927.456900px;}
.y34{bottom:927.843450px;}
.ye4{bottom:934.952850px;}
.y5f{bottom:935.803350px;}
.y89{bottom:936.015900px;}
.y16a{bottom:937.185300px;}
.y144{bottom:937.202400px;}
.y196{bottom:944.977650px;}
.y1ca{bottom:945.296400px;}
.y33{bottom:945.843450px;}
.y4{bottom:948.888900px;}
.ye3{bottom:955.202850px;}
.y5e{bottom:956.053350px;}
.y88{bottom:956.265900px;}
.y143{bottom:957.452400px;}
.y195{bottom:962.977650px;}
.y1c9{bottom:963.296400px;}
.y32{bottom:963.843450px;}
.ye2{bottom:975.452850px;}
.y5d{bottom:976.303350px;}
.y87{bottom:976.515900px;}
.y142{bottom:977.702400px;}
.y194{bottom:980.977650px;}
.y1c8{bottom:981.296400px;}
.y31{bottom:981.843450px;}
.ye1{bottom:995.702850px;}
.y169{bottom:995.703000px;}
.y5c{bottom:996.553350px;}
.y86{bottom:996.765900px;}
.y193{bottom:998.977650px;}
.y1c7{bottom:999.296400px;}
.y30{bottom:999.843450px;}
.ye0{bottom:1015.952850px;}
.y168{bottom:1015.953000px;}
.y5b{bottom:1016.803350px;}
.y192{bottom:1016.977650px;}
.y85{bottom:1017.015900px;}
.y1c6{bottom:1017.296400px;}
.y2f{bottom:1017.843450px;}
.y3{bottom:1031.437200px;}
.y2{bottom:1046.474700px;}
.y1{bottom:1061.512200px;}
.y2e{bottom:1070.326650px;}
.y1c5{bottom:1070.326800px;}
.hb{height:25.725146px;}
.h12{height:31.140967px;}
.hd{height:31.204160px;}
.h3{height:35.411133px;}
.h9{height:43.743164px;}
.h2{height:44.874023px;}
.he{height:45.826172px;}
.hf{height:46.763672px;}
.h6{height:47.909180px;}
.hc{height:50.014160px;}
.h4{height:54.896484px;}
.h8{height:55.278809px;}
.ha{height:55.432617px;}
.h13{height:56.821201px;}
.h10{height:60.543457px;}
.h11{height:60.711914px;}
.h5{height:63.286787px;}
.h7{height:71.072754px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x8{left:127.559100px;}
.x3{left:131.638800px;}
.xb{left:144.566850px;}
.x6{left:154.929300px;}
.x23{left:157.559100px;}
.x12{left:161.574750px;}
.xd{left:178.582650px;}
.xc{left:195.590400px;}
.x4{left:202.006650px;}
.xe{left:245.976600px;}
.xf{left:251.522700px;}
.x11{left:269.756850px;}
.x1c{left:292.633350px;}
.x1d{left:299.399250px;}
.x2{left:303.338700px;}
.x15{left:308.836800px;}
.x7{left:330.517050px;}
.x1f{left:348.661350px;}
.x1e{left:365.669250px;}
.x22{left:367.678050px;}
.xa{left:375.211350px;}
.x24{left:403.023300px;}
.x10{left:408.252750px;}
.x1b{left:416.692800px;}
.x17{left:418.672950px;}
.x9{left:425.260650px;}
.x5{left:429.327750px;}
.x1a{left:433.700700px;}
.x16{left:435.680850px;}
.x19{left:443.899050px;}
.x18{left:460.906950px;}
.x13{left:481.322700px;}
.x14{left:498.330600px;}
.x20{left:509.208150px;}
.x21{left:526.216050px;}
@media print{
.v3{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.480000pt;}
.v4{vertical-align:20.240000pt;}
.v1{vertical-align:23.760000pt;}
.ls31{letter-spacing:-2.330667pt;}
.ls26{letter-spacing:-1.778667pt;}
.ls27{letter-spacing:-1.533333pt;}
.ls22{letter-spacing:-1.472000pt;}
.ls29{letter-spacing:-1.410667pt;}
.ls2c{letter-spacing:-1.288000pt;}
.ls23{letter-spacing:-1.226667pt;}
.ls2d{letter-spacing:-1.165333pt;}
.ls2a{letter-spacing:-1.104000pt;}
.ls28{letter-spacing:-1.042667pt;}
.ls32{letter-spacing:-1.013333pt;}
.ls24{letter-spacing:-0.858667pt;}
.ls25{letter-spacing:-0.797333pt;}
.ls1f{letter-spacing:-0.736000pt;}
.ls2b{letter-spacing:-0.674667pt;}
.ls33{letter-spacing:-0.658667pt;}
.ls1d{letter-spacing:-0.613333pt;}
.ls34{letter-spacing:-0.506667pt;}
.ls20{letter-spacing:-0.490667pt;}
.ls19{letter-spacing:-0.429333pt;}
.ls1e{letter-spacing:-0.398667pt;}
.ls3a{letter-spacing:-0.368000pt;}
.ls18{letter-spacing:-0.306667pt;}
.ls30{letter-spacing:-0.245333pt;}
.ls42{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.184000pt;}
.ls5{letter-spacing:-0.168000pt;}
.ls10{letter-spacing:-0.122667pt;}
.ls40{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.061333pt;}
.lsb{letter-spacing:-0.056000pt;}
.lsf{letter-spacing:-0.039867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.056000pt;}
.ls14{letter-spacing:0.061333pt;}
.ls1{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.122667pt;}
.ls41{letter-spacing:0.168000pt;}
.ls3{letter-spacing:0.182000pt;}
.ls6{letter-spacing:0.184000pt;}
.ls3e{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.245333pt;}
.ls2{letter-spacing:0.280000pt;}
.ls9{letter-spacing:0.306667pt;}
.ls8{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.368000pt;}
.ls3d{letter-spacing:0.392000pt;}
.ls13{letter-spacing:0.429333pt;}
.ls1c{letter-spacing:0.490667pt;}
.ls2f{letter-spacing:0.552000pt;}
.ls0{letter-spacing:0.560000pt;}
.ls16{letter-spacing:0.613333pt;}
.ls3b{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.674667pt;}
.ls2e{letter-spacing:0.736000pt;}
.ls11{letter-spacing:0.797333pt;}
.ls1a{letter-spacing:0.858667pt;}
.ls17{letter-spacing:0.920000pt;}
.ls15{letter-spacing:0.981333pt;}
.ls12{letter-spacing:1.042667pt;}
.ls1b{letter-spacing:1.104000pt;}
.ls36{letter-spacing:1.165333pt;}
.ls35{letter-spacing:1.226667pt;}
.ls38{letter-spacing:1.349333pt;}
.ls37{letter-spacing:1.410667pt;}
.ls39{letter-spacing:1.472000pt;}
.ls3f{letter-spacing:1.960000pt;}
.ls43{letter-spacing:2.800000pt;}
.ws1{word-spacing:-18.000000pt;}
.ws3b{word-spacing:-15.333333pt;}
.ws4{word-spacing:-14.000000pt;}
.ws62{word-spacing:-13.888000pt;}
.ws49{word-spacing:-13.002667pt;}
.ws2{word-spacing:-11.700000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws3a{word-spacing:-9.966667pt;}
.ws1d{word-spacing:-9.926800pt;}
.ws36{word-spacing:-9.568000pt;}
.ws5{word-spacing:-9.282000pt;}
.ws3{word-spacing:-9.100000pt;}
.ws6{word-spacing:-8.233333pt;}
.ws63{word-spacing:-1.960000pt;}
.ws5b{word-spacing:-1.410667pt;}
.ws57{word-spacing:-1.226667pt;}
.ws5a{word-spacing:-1.165333pt;}
.ws2a{word-spacing:-1.042667pt;}
.ws2e{word-spacing:-0.981333pt;}
.ws30{word-spacing:-0.920000pt;}
.ws80{word-spacing:-0.896000pt;}
.ws5e{word-spacing:-0.858667pt;}
.ws27{word-spacing:-0.797333pt;}
.ws4a{word-spacing:-0.736000pt;}
.ws47{word-spacing:-0.674667pt;}
.ws65{word-spacing:-0.672000pt;}
.ws2f{word-spacing:-0.613333pt;}
.wsc{word-spacing:-0.560000pt;}
.ws50{word-spacing:-0.552000pt;}
.ws32{word-spacing:-0.490667pt;}
.ws26{word-spacing:-0.429333pt;}
.ws66{word-spacing:-0.392000pt;}
.ws4b{word-spacing:-0.368000pt;}
.wsa{word-spacing:-0.360000pt;}
.ws15{word-spacing:-0.336000pt;}
.ws17{word-spacing:-0.306667pt;}
.ws11{word-spacing:-0.280000pt;}
.ws1c{word-spacing:-0.245333pt;}
.ws68{word-spacing:-0.224000pt;}
.ws18{word-spacing:-0.184000pt;}
.ws6d{word-spacing:-0.168000pt;}
.ws19{word-spacing:-0.122667pt;}
.ws10{word-spacing:-0.112000pt;}
.ws52{word-spacing:-0.061333pt;}
.ws67{word-spacing:-0.056000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.056000pt;}
.ws20{word-spacing:0.061333pt;}
.ws64{word-spacing:0.112000pt;}
.ws23{word-spacing:0.122667pt;}
.wsf{word-spacing:0.168000pt;}
.ws1f{word-spacing:0.184000pt;}
.ws7b{word-spacing:0.224000pt;}
.ws53{word-spacing:0.245333pt;}
.ws28{word-spacing:0.306667pt;}
.ws61{word-spacing:0.368000pt;}
.ws12{word-spacing:0.392000pt;}
.ws29{word-spacing:0.429333pt;}
.ws39{word-spacing:0.490667pt;}
.ws56{word-spacing:0.506667pt;}
.ws79{word-spacing:0.560000pt;}
.ws35{word-spacing:0.613333pt;}
.ws55{word-spacing:0.658667pt;}
.ws45{word-spacing:0.674667pt;}
.ws38{word-spacing:0.736000pt;}
.ws3f{word-spacing:0.797333pt;}
.ws3e{word-spacing:0.858667pt;}
.ws71{word-spacing:0.896000pt;}
.ws54{word-spacing:1.013333pt;}
.ws42{word-spacing:1.042667pt;}
.ws78{word-spacing:1.064000pt;}
.ws44{word-spacing:1.104000pt;}
.ws48{word-spacing:1.165333pt;}
.ws3d{word-spacing:1.226667pt;}
.ws46{word-spacing:1.288000pt;}
.ws77{word-spacing:1.400000pt;}
.ws43{word-spacing:1.410667pt;}
.ws3c{word-spacing:1.472000pt;}
.ws41{word-spacing:1.533333pt;}
.ws76{word-spacing:1.680000pt;}
.ws82{word-spacing:1.736000pt;}
.ws40{word-spacing:1.778667pt;}
.ws6e{word-spacing:1.792000pt;}
.ws1e{word-spacing:1.962667pt;}
.ws7a{word-spacing:2.128000pt;}
.ws81{word-spacing:2.184000pt;}
.ws6a{word-spacing:2.240000pt;}
.ws7{word-spacing:2.266667pt;}
.ws24{word-spacing:2.269333pt;}
.ws83{word-spacing:2.464000pt;}
.ws37{word-spacing:2.514667pt;}
.ws69{word-spacing:2.520000pt;}
.ws1a{word-spacing:2.576000pt;}
.wse{word-spacing:2.800000pt;}
.ws14{word-spacing:2.933333pt;}
.ws51{word-spacing:2.944000pt;}
.ws7c{word-spacing:2.968000pt;}
.ws13{word-spacing:3.024000pt;}
.ws16{word-spacing:3.066667pt;}
.ws4d{word-spacing:3.250667pt;}
.ws86{word-spacing:3.528000pt;}
.ws8{word-spacing:3.600000pt;}
.ws7f{word-spacing:3.920000pt;}
.wsd{word-spacing:3.976000pt;}
.ws7d{word-spacing:4.088000pt;}
.ws6f{word-spacing:4.312000pt;}
.ws73{word-spacing:4.368000pt;}
.ws85{word-spacing:4.536000pt;}
.ws84{word-spacing:4.648000pt;}
.ws22{word-spacing:4.661333pt;}
.ws74{word-spacing:4.760000pt;}
.ws59{word-spacing:5.029333pt;}
.ws87{word-spacing:5.152000pt;}
.ws70{word-spacing:5.208000pt;}
.ws75{word-spacing:5.544000pt;}
.ws72{word-spacing:5.992000pt;}
.ws7e{word-spacing:6.216000pt;}
.ws25{word-spacing:6.317333pt;}
.ws6c{word-spacing:6.328000pt;}
.ws4c{word-spacing:6.440000pt;}
.ws34{word-spacing:6.562667pt;}
.wsb{word-spacing:6.888000pt;}
.ws6b{word-spacing:7.000000pt;}
.ws2d{word-spacing:7.666667pt;}
.ws5f{word-spacing:7.728000pt;}
.ws21{word-spacing:8.218667pt;}
.ws58{word-spacing:9.568000pt;}
.ws2c{word-spacing:9.629333pt;}
.ws33{word-spacing:9.997333pt;}
.ws60{word-spacing:10.794667pt;}
.ws2b{word-spacing:12.082667pt;}
.ws4e{word-spacing:14.045333pt;}
.ws4f{word-spacing:17.418667pt;}
.ws31{word-spacing:19.136000pt;}
.ws5c{word-spacing:23.245333pt;}
.ws5d{word-spacing:25.576000pt;}
._10{margin-left:-15.333333pt;}
._16{margin-left:-14.037333pt;}
._f{margin-left:-12.118400pt;}
._5{margin-left:-9.266400pt;}
._c{margin-left:-7.240800pt;}
._2{margin-left:-5.774400pt;}
._20{margin-left:-4.877333pt;}
._1{margin-left:-3.967200pt;}
._d{margin-left:-2.926933pt;}
._0{margin-left:-1.681867pt;}
._8{width:1.456000pt;}
._4{width:2.628267pt;}
._3{width:3.575467pt;}
._6{width:5.006933pt;}
._7{width:6.249067pt;}
._9{width:7.450667pt;}
._e{width:8.412533pt;}
._11{width:9.451467pt;}
._19{width:10.413600pt;}
._b{width:11.369867pt;}
._a{width:12.321867pt;}
._15{width:13.432000pt;}
._1b{width:14.425600pt;}
._17{width:15.331733pt;}
._14{width:17.050667pt;}
._18{width:17.976800pt;}
._13{width:18.909067pt;}
._12{width:19.853600pt;}
._1d{width:21.374667pt;}
._1c{width:22.852800pt;}
._1e{width:25.618933pt;}
._1f{width:27.384000pt;}
._1a{width:32.218400pt;}
.fs6{font-size:32.933333pt;}
.fs5{font-size:36.400000pt;}
.fs9{font-size:39.866667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:46.800000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:83.543333pt;}
.y5a{bottom:83.716667pt;}
.yd3{bottom:86.455067pt;}
.y2d{bottom:88.085600pt;}
.y128{bottom:91.508933pt;}
.yaf{bottom:92.453867pt;}
.y84{bottom:95.587733pt;}
.y10c{bottom:95.951200pt;}
.y118{bottom:97.543333pt;}
.y13e{bottom:99.950133pt;}
.y2c{bottom:102.085600pt;}
.y1c4{bottom:103.980133pt;}
.yd2{bottom:104.455067pt;}
.y127{bottom:109.508933pt;}
.yae{bottom:110.453867pt;}
.y117{bottom:111.543333pt;}
.ydf{bottom:112.252000pt;}
.y191{bottom:112.455200pt;}
.y83{bottom:113.587733pt;}
.y10b{bottom:113.951200pt;}
.y2b{bottom:116.085600pt;}
.y167{bottom:116.389733pt;}
.y13d{bottom:117.950133pt;}
.y1c3{bottom:119.980133pt;}
.yd1{bottom:122.455067pt;}
.y58{bottom:124.738000pt;}
.y116{bottom:125.543333pt;}
.yde{bottom:126.252000pt;}
.yad{bottom:128.453867pt;}
.y190{bottom:128.455200pt;}
.y59{bottom:129.798000pt;}
.y2a{bottom:130.085733pt;}
.y82{bottom:131.587733pt;}
.y10a{bottom:131.951200pt;}
.y166{bottom:134.389733pt;}
.y13c{bottom:135.950133pt;}
.y1c2{bottom:135.980133pt;}
.yb4{bottom:136.615467pt;}
.y29{bottom:139.905867pt;}
.yd0{bottom:140.455067pt;}
.y57{bottom:142.738000pt;}
.y126{bottom:143.508933pt;}
.y18f{bottom:144.455200pt;}
.yac{bottom:146.453867pt;}
.y109{bottom:149.951200pt;}
.yb3{bottom:150.615467pt;}
.y1c1{bottom:151.980133pt;}
.y165{bottom:152.389733pt;}
.y28{bottom:153.905867pt;}
.y13b{bottom:153.950133pt;}
.y27{bottom:158.085867pt;}
.ycf{bottom:158.455067pt;}
.y18e{bottom:160.455200pt;}
.y56{bottom:160.738000pt;}
.y81{bottom:164.705867pt;}
.y108{bottom:167.951200pt;}
.y1c0{bottom:167.980133pt;}
.y164{bottom:170.389733pt;}
.y13a{bottom:171.950133pt;}
.y18d{bottom:176.455200pt;}
.y55{bottom:178.738000pt;}
.y80{bottom:180.039200pt;}
.yab{bottom:180.453867pt;}
.y1bf{bottom:183.980133pt;}
.yce{bottom:184.014133pt;}
.y163{bottom:188.389733pt;}
.y139{bottom:189.950133pt;}
.y12a{bottom:191.989067pt;}
.y18c{bottom:192.455200pt;}
.y107{bottom:193.510133pt;}
.y26{bottom:193.537333pt;}
.y7f{bottom:195.372533pt;}
.y54{bottom:196.738000pt;}
.y1be{bottom:199.980133pt;}
.ycd{bottom:202.014133pt;}
.y129{bottom:205.989067pt;}
.y162{bottom:206.389733pt;}
.y138{bottom:207.950133pt;}
.y18b{bottom:208.455200pt;}
.y25{bottom:209.537333pt;}
.y106{bottom:211.510133pt;}
.y53{bottom:214.738000pt;}
.y1bd{bottom:215.980133pt;}
.ycc{bottom:220.014133pt;}
.y161{bottom:224.389733pt;}
.y24{bottom:225.537333pt;}
.y7e{bottom:225.824000pt;}
.y137{bottom:225.950133pt;}
.y105{bottom:229.510133pt;}
.yaa{bottom:230.455067pt;}
.y1bc{bottom:231.980133pt;}
.y52{bottom:232.737867pt;}
.y18a{bottom:237.683467pt;}
.ycb{bottom:238.014133pt;}
.y23{bottom:241.537333pt;}
.y160{bottom:242.389733pt;}
.y7d{bottom:243.824000pt;}
.y136{bottom:243.950133pt;}
.y104{bottom:247.510267pt;}
.y1bb{bottom:247.980133pt;}
.ya9{bottom:248.455067pt;}
.y51{bottom:250.737867pt;}
.yd8{bottom:253.039333pt;}
.yca{bottom:256.014133pt;}
.y22{bottom:257.537333pt;}
.y15f{bottom:260.389733pt;}
.y7c{bottom:261.824000pt;}
.y135{bottom:261.950133pt;}
.y1ba{bottom:263.980133pt;}
.y1ee{bottom:264.263467pt;}
.y103{bottom:265.510267pt;}
.ya8{bottom:266.455067pt;}
.yd7{bottom:267.039333pt;}
.y50{bottom:268.737867pt;}
.y21{bottom:273.537333pt;}
.yc9{bottom:274.014133pt;}
.y15e{bottom:278.389733pt;}
.y7b{bottom:279.824000pt;}
.y134{bottom:279.950133pt;}
.y1b9{bottom:279.980133pt;}
.y1ed{bottom:280.263467pt;}
.y189{bottom:282.140267pt;}
.y102{bottom:283.510267pt;}
.ya7{bottom:284.455067pt;}
.yc8{bottom:292.014133pt;}
.y1b8{bottom:295.980133pt;}
.y1ec{bottom:296.263467pt;}
.y15d{bottom:296.389733pt;}
.y7a{bottom:297.824000pt;}
.y133{bottom:297.950133pt;}
.y188{bottom:298.140267pt;}
.y101{bottom:301.510267pt;}
.y4f{bottom:301.856000pt;}
.ya6{bottom:302.455067pt;}
.y20{bottom:305.537333pt;}
.yc7{bottom:310.014133pt;}
.y1b7{bottom:311.980133pt;}
.y1eb{bottom:312.263467pt;}
.y187{bottom:314.140267pt;}
.y79{bottom:315.824000pt;}
.y132{bottom:315.950133pt;}
.y4e{bottom:317.189333pt;}
.y100{bottom:319.510267pt;}
.ya5{bottom:320.455067pt;}
.y1f{bottom:321.537333pt;}
.y15c{bottom:321.948800pt;}
.y1b6{bottom:327.980133pt;}
.yc6{bottom:328.014133pt;}
.y1ea{bottom:328.263467pt;}
.y186{bottom:330.140267pt;}
.y4d{bottom:332.522667pt;}
.y78{bottom:333.824000pt;}
.y131{bottom:333.950133pt;}
.yff{bottom:337.510267pt;}
.y1e{bottom:337.537333pt;}
.ya4{bottom:338.455067pt;}
.y15b{bottom:339.948800pt;}
.y1b5{bottom:343.980133pt;}
.y1e9{bottom:344.263467pt;}
.yc5{bottom:346.014133pt;}
.y185{bottom:346.140267pt;}
.y4c{bottom:347.856000pt;}
.y77{bottom:351.824000pt;}
.y1d{bottom:353.537333pt;}
.yfe{bottom:355.510267pt;}
.ya3{bottom:356.455067pt;}
.y15a{bottom:357.948800pt;}
.y1b4{bottom:359.980133pt;}
.y1e8{bottom:360.263467pt;}
.y184{bottom:362.140267pt;}
.y4b{bottom:363.189333pt;}
.yc4{bottom:364.014133pt;}
.y115{bottom:366.569333pt;}
.y130{bottom:367.950667pt;}
.y1c{bottom:369.537333pt;}
.y76{bottom:369.824000pt;}
.yfd{bottom:373.510267pt;}
.ya2{bottom:374.455067pt;}
.y159{bottom:375.948800pt;}
.y1b3{bottom:375.980133pt;}
.y1e7{bottom:376.263467pt;}
.y183{bottom:378.140267pt;}
.y4a{bottom:378.522667pt;}
.y114{bottom:380.569333pt;}
.yc3{bottom:382.014133pt;}
.y1b{bottom:385.537333pt;}
.y75{bottom:387.824000pt;}
.yfc{bottom:391.510267pt;}
.y1b2{bottom:391.980133pt;}
.y1e6{bottom:392.263467pt;}
.ya1{bottom:392.455067pt;}
.y49{bottom:393.856000pt;}
.y158{bottom:393.948800pt;}
.y182{bottom:394.140267pt;}
.y113{bottom:394.569333pt;}
.yc2{bottom:400.014133pt;}
.y1a{bottom:401.537333pt;}
.y74{bottom:405.824000pt;}
.y1b1{bottom:407.980133pt;}
.y1e5{bottom:408.263467pt;}
.yfb{bottom:409.510267pt;}
.y181{bottom:410.140267pt;}
.ya0{bottom:410.455067pt;}
.y157{bottom:411.948800pt;}
.y19{bottom:417.537333pt;}
.yc1{bottom:418.014133pt;}
.y73{bottom:423.824000pt;}
.y1b0{bottom:423.980133pt;}
.y1e4{bottom:424.263467pt;}
.y48{bottom:424.307467pt;}
.y180{bottom:426.140267pt;}
.yfa{bottom:427.510267pt;}
.y9f{bottom:428.455067pt;}
.y156{bottom:429.948800pt;}
.y18{bottom:433.537333pt;}
.yc0{bottom:436.014133pt;}
.y1af{bottom:439.980133pt;}
.y1e3{bottom:440.263467pt;}
.y72{bottom:441.824000pt;}
.y17f{bottom:442.140267pt;}
.y47{bottom:442.307467pt;}
.yf9{bottom:445.510267pt;}
.y9e{bottom:446.455067pt;}
.y155{bottom:447.948800pt;}
.y17{bottom:449.537333pt;}
.yb2{bottom:450.489600pt;}
.ybf{bottom:454.014133pt;}
.y1ae{bottom:455.980133pt;}
.y1e2{bottom:456.263467pt;}
.y17e{bottom:458.140267pt;}
.y71{bottom:459.824000pt;}
.y46{bottom:460.307467pt;}
.yf8{bottom:463.510267pt;}
.y9d{bottom:464.455067pt;}
.yb1{bottom:464.489600pt;}
.y16{bottom:465.537333pt;}
.y154{bottom:465.948800pt;}
.y1ad{bottom:471.980133pt;}
.ybe{bottom:472.014133pt;}
.y1e1{bottom:472.263467pt;}
.y17d{bottom:474.140267pt;}
.ydd{bottom:477.044267pt;}
.y70{bottom:477.824000pt;}
.y45{bottom:478.307467pt;}
.yb0{bottom:478.489600pt;}
.yf7{bottom:481.510267pt;}
.y15{bottom:481.537333pt;}
.y9c{bottom:482.455067pt;}
.y1ac{bottom:487.980133pt;}
.y1e0{bottom:488.263467pt;}
.ybd{bottom:490.014133pt;}
.y17c{bottom:490.140267pt;}
.yda{bottom:491.044133pt;}
.ydc{bottom:491.044267pt;}
.y6f{bottom:495.824000pt;}
.y44{bottom:496.307467pt;}
.y14{bottom:497.537333pt;}
.yf6{bottom:499.510267pt;}
.y153{bottom:499.949200pt;}
.y9b{bottom:500.455067pt;}
.y1ab{bottom:503.980133pt;}
.y1df{bottom:504.263467pt;}
.yd9{bottom:505.044133pt;}
.ydb{bottom:505.044267pt;}
.y17b{bottom:506.140267pt;}
.ybc{bottom:508.014133pt;}
.y6e{bottom:513.824000pt;}
.y43{bottom:514.307467pt;}
.yf5{bottom:517.510267pt;}
.y9a{bottom:518.455067pt;}
.y1aa{bottom:519.980133pt;}
.y1de{bottom:520.263467pt;}
.y17a{bottom:522.140267pt;}
.ybb{bottom:526.014133pt;}
.y13{bottom:529.537333pt;}
.y6d{bottom:531.824000pt;}
.y42{bottom:532.307467pt;}
.y125{bottom:535.510267pt;}
.y1a9{bottom:535.980133pt;}
.y1dd{bottom:536.263467pt;}
.y99{bottom:536.455067pt;}
.y179{bottom:538.140267pt;}
.y152{bottom:541.508800pt;}
.yf4{bottom:543.069200pt;}
.yba{bottom:544.014133pt;}
.y12{bottom:545.537333pt;}
.y6c{bottom:549.824000pt;}
.y41{bottom:550.307467pt;}
.y1a8{bottom:551.980133pt;}
.y1dc{bottom:552.263467pt;}
.y124{bottom:553.510267pt;}
.y178{bottom:554.140267pt;}
.y98{bottom:554.455067pt;}
.y151{bottom:559.508800pt;}
.yf3{bottom:561.069200pt;}
.y11{bottom:561.537333pt;}
.yb9{bottom:562.014133pt;}
.y6b{bottom:567.824000pt;}
.y1a7{bottom:567.980133pt;}
.y1db{bottom:568.263467pt;}
.y40{bottom:568.307467pt;}
.y177{bottom:570.140267pt;}
.y123{bottom:571.510267pt;}
.y97{bottom:572.455067pt;}
.y150{bottom:577.508800pt;}
.y10{bottom:577.537333pt;}
.yf2{bottom:579.069200pt;}
.yb8{bottom:580.014133pt;}
.y1a6{bottom:583.980133pt;}
.y1da{bottom:584.263467pt;}
.y6a{bottom:585.824000pt;}
.y176{bottom:586.140267pt;}
.y3f{bottom:586.307467pt;}
.y122{bottom:589.510133pt;}
.y96{bottom:590.455067pt;}
.yf{bottom:593.537333pt;}
.y14f{bottom:595.508800pt;}
.yf1{bottom:597.069200pt;}
.y141{bottom:597.548133pt;}
.yb7{bottom:598.014133pt;}
.y1a5{bottom:599.980133pt;}
.y1d9{bottom:600.263467pt;}
.y175{bottom:602.140267pt;}
.y69{bottom:603.824000pt;}
.y3e{bottom:604.307467pt;}
.y121{bottom:607.510133pt;}
.y95{bottom:608.455067pt;}
.ye{bottom:609.537333pt;}
.y140{bottom:611.548133pt;}
.y14e{bottom:613.508800pt;}
.yf0{bottom:615.069200pt;}
.y1a4{bottom:615.980133pt;}
.yb6{bottom:616.014133pt;}
.y1d8{bottom:616.263467pt;}
.yd6{bottom:616.445867pt;}
.y174{bottom:618.140267pt;}
.y68{bottom:621.824000pt;}
.y3d{bottom:622.307467pt;}
.y120{bottom:625.510133pt;}
.yd{bottom:625.537333pt;}
.y13f{bottom:625.548133pt;}
.y94{bottom:626.455067pt;}
.yd5{bottom:630.445867pt;}
.y14d{bottom:631.508800pt;}
.y1a3{bottom:631.980133pt;}
.y1d7{bottom:632.263467pt;}
.yef{bottom:633.069200pt;}
.yb5{bottom:634.014133pt;}
.y173{bottom:634.140267pt;}
.y112{bottom:634.918267pt;}
.y67{bottom:639.824000pt;}
.y3c{bottom:640.307467pt;}
.yc{bottom:641.537333pt;}
.y11f{bottom:643.510133pt;}
.yd4{bottom:644.445867pt;}
.y1a2{bottom:647.980133pt;}
.y1d6{bottom:648.263467pt;}
.y110{bottom:648.918267pt;}
.y14c{bottom:649.508800pt;}
.y172{bottom:650.140267pt;}
.yee{bottom:651.069200pt;}
.y93{bottom:652.014133pt;}
.y111{bottom:653.098267pt;}
.yb{bottom:657.537333pt;}
.y3b{bottom:658.307467pt;}
.y11e{bottom:661.510133pt;}
.y10f{bottom:662.918267pt;}
.y1a1{bottom:663.980133pt;}
.y1d5{bottom:664.263467pt;}
.y171{bottom:666.140267pt;}
.yed{bottom:669.069200pt;}
.y92{bottom:670.014133pt;}
.ya{bottom:673.537333pt;}
.y66{bottom:673.824000pt;}
.y3a{bottom:676.307467pt;}
.y10e{bottom:676.918267pt;}
.y11d{bottom:679.510133pt;}
.y1a0{bottom:679.980133pt;}
.y1d4{bottom:680.263467pt;}
.y170{bottom:682.140267pt;}
.y14b{bottom:683.509333pt;}
.yec{bottom:687.069200pt;}
.y91{bottom:688.014133pt;}
.y10d{bottom:690.918267pt;}
.y39{bottom:694.307467pt;}
.y19f{bottom:695.980133pt;}
.y1d3{bottom:696.263467pt;}
.y11c{bottom:697.510133pt;}
.y16f{bottom:698.140267pt;}
.yeb{bottom:705.069200pt;}
.y90{bottom:706.014133pt;}
.y19e{bottom:711.980133pt;}
.y1d2{bottom:712.263467pt;}
.y38{bottom:712.307467pt;}
.y16e{bottom:714.140267pt;}
.y11b{bottom:715.510133pt;}
.y9{bottom:721.536800pt;}
.yea{bottom:723.069200pt;}
.y65{bottom:723.825200pt;}
.y8f{bottom:724.014133pt;}
.y14a{bottom:725.068800pt;}
.y19d{bottom:727.980133pt;}
.y1d1{bottom:728.263467pt;}
.y37{bottom:730.307467pt;}
.y11a{bottom:733.510133pt;}
.y8{bottom:740.587467pt;}
.ye9{bottom:741.069200pt;}
.y64{bottom:741.825200pt;}
.y8e{bottom:742.014133pt;}
.y149{bottom:743.068800pt;}
.y16d{bottom:743.368533pt;}
.y19c{bottom:743.980133pt;}
.y1d0{bottom:744.263467pt;}
.y36{bottom:748.307467pt;}
.y12f{bottom:751.510133pt;}
.ye8{bottom:759.069200pt;}
.y63{bottom:759.825200pt;}
.y19b{bottom:759.980133pt;}
.y8d{bottom:760.014133pt;}
.y1cf{bottom:760.263467pt;}
.y148{bottom:761.068800pt;}
.y12e{bottom:769.510133pt;}
.y7{bottom:771.638133pt;}
.y19a{bottom:775.980133pt;}
.y1ce{bottom:776.263467pt;}
.ye7{bottom:777.069200pt;}
.y62{bottom:777.825200pt;}
.y8c{bottom:778.014133pt;}
.y147{bottom:779.068800pt;}
.y35{bottom:782.307467pt;}
.y12d{bottom:787.510133pt;}
.y16c{bottom:787.825333pt;}
.y199{bottom:791.980133pt;}
.y1cd{bottom:792.263467pt;}
.ye6{bottom:795.069200pt;}
.y61{bottom:795.825200pt;}
.y8b{bottom:796.014133pt;}
.y146{bottom:797.068800pt;}
.y16b{bottom:803.825333pt;}
.y6{bottom:805.355467pt;}
.y12c{bottom:805.510133pt;}
.y198{bottom:807.980133pt;}
.y1cc{bottom:808.263467pt;}
.ye5{bottom:813.069200pt;}
.y60{bottom:813.825200pt;}
.y8a{bottom:814.014133pt;}
.y145{bottom:815.068800pt;}
.y12b{bottom:823.510133pt;}
.y197{bottom:823.980133pt;}
.y1cb{bottom:824.263467pt;}
.y5{bottom:824.406133pt;}
.y34{bottom:824.749733pt;}
.ye4{bottom:831.069200pt;}
.y5f{bottom:831.825200pt;}
.y89{bottom:832.014133pt;}
.y16a{bottom:833.053600pt;}
.y144{bottom:833.068800pt;}
.y196{bottom:839.980133pt;}
.y1ca{bottom:840.263467pt;}
.y33{bottom:840.749733pt;}
.y4{bottom:843.456800pt;}
.ye3{bottom:849.069200pt;}
.y5e{bottom:849.825200pt;}
.y88{bottom:850.014133pt;}
.y143{bottom:851.068800pt;}
.y195{bottom:855.980133pt;}
.y1c9{bottom:856.263467pt;}
.y32{bottom:856.749733pt;}
.ye2{bottom:867.069200pt;}
.y5d{bottom:867.825200pt;}
.y87{bottom:868.014133pt;}
.y142{bottom:869.068800pt;}
.y194{bottom:871.980133pt;}
.y1c8{bottom:872.263467pt;}
.y31{bottom:872.749733pt;}
.ye1{bottom:885.069200pt;}
.y169{bottom:885.069333pt;}
.y5c{bottom:885.825200pt;}
.y86{bottom:886.014133pt;}
.y193{bottom:887.980133pt;}
.y1c7{bottom:888.263467pt;}
.y30{bottom:888.749733pt;}
.ye0{bottom:903.069200pt;}
.y168{bottom:903.069333pt;}
.y5b{bottom:903.825200pt;}
.y192{bottom:903.980133pt;}
.y85{bottom:904.014133pt;}
.y1c6{bottom:904.263467pt;}
.y2f{bottom:904.749733pt;}
.y3{bottom:916.833067pt;}
.y2{bottom:930.199733pt;}
.y1{bottom:943.566400pt;}
.y2e{bottom:951.401467pt;}
.y1c5{bottom:951.401600pt;}
.hb{height:22.866797pt;}
.h12{height:27.680859pt;}
.hd{height:27.737031pt;}
.h3{height:31.476562pt;}
.h9{height:38.882812pt;}
.h2{height:39.888021pt;}
.he{height:40.734375pt;}
.hf{height:41.567708pt;}
.h6{height:42.585938pt;}
.hc{height:44.457031pt;}
.h4{height:48.796875pt;}
.h8{height:49.136719pt;}
.ha{height:49.273438pt;}
.h13{height:50.507734pt;}
.h10{height:53.816406pt;}
.h11{height:53.966146pt;}
.h5{height:56.254922pt;}
.h7{height:63.175781pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x8{left:113.385867pt;}
.x3{left:117.012267pt;}
.xb{left:128.503867pt;}
.x6{left:137.714933pt;}
.x23{left:140.052533pt;}
.x12{left:143.622000pt;}
.xd{left:158.740133pt;}
.xc{left:173.858133pt;}
.x4{left:179.561467pt;}
.xe{left:218.645867pt;}
.xf{left:223.575733pt;}
.x11{left:239.783867pt;}
.x1c{left:260.118533pt;}
.x1d{left:266.132667pt;}
.x2{left:269.634400pt;}
.x15{left:274.521600pt;}
.x7{left:293.792933pt;}
.x1f{left:309.921200pt;}
.x1e{left:325.039333pt;}
.x22{left:326.824933pt;}
.xa{left:333.521200pt;}
.x24{left:358.242933pt;}
.x10{left:362.891333pt;}
.x1b{left:370.393600pt;}
.x17{left:372.153733pt;}
.x9{left:378.009467pt;}
.x5{left:381.624667pt;}
.x1a{left:385.511733pt;}
.x16{left:387.271867pt;}
.x19{left:394.576933pt;}
.x18{left:409.695067pt;}
.x13{left:427.842400pt;}
.x14{left:442.960533pt;}
.x20{left:452.629467pt;}
.x21{left:467.747600pt;}
}




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