
    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_c618db2455c3cf461904db5a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_85b2f0f323806d350ae910bf.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_c0e26d2380b5227f625d0d4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_bac9999debd9b736b172b70c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692383;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_ae176ccd345f19bfbefa1fb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{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);}
.m2{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);}
.m1{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);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.810000px;}
.v1{vertical-align:26.730000px;}
.ls15{letter-spacing:-0.690000px;}
.ls1b{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.552000px;}
.ls14{letter-spacing:-0.483000px;}
.ls12{letter-spacing:-0.414000px;}
.lsf{letter-spacing:-0.345000px;}
.ls1e{letter-spacing:-0.285000px;}
.ls11{letter-spacing:-0.276000px;}
.lse{letter-spacing:-0.207000px;}
.ls2{letter-spacing:-0.189000px;}
.ls3{letter-spacing:-0.138000px;}
.ls21{letter-spacing:-0.126000px;}
.ls1d{letter-spacing:-0.114000px;}
.ls4{letter-spacing:-0.069000px;}
.ls20{letter-spacing:-0.063000px;}
.ls1c{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.069000px;}
.lsa{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.207000px;}
.ls9{letter-spacing:0.276000px;}
.ls19{letter-spacing:0.285000px;}
.ls6{letter-spacing:0.345000px;}
.ls0{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.414000px;}
.lsc{letter-spacing:0.483000px;}
.ls1f{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.552000px;}
.lsd{letter-spacing:0.621000px;}
.ls13{letter-spacing:0.966000px;}
.ls17{letter-spacing:2.205000px;}
.ls1a{letter-spacing:2.849400px;}
.ls18{letter-spacing:2.850000px;}
.ls10{letter-spacing:8.330400px;}
.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:-81.000000px;}
.ws2{word-spacing:-63.000000px;}
.wsf8{word-spacing:-17.955000px;}
.ws6e{word-spacing:-17.457000px;}
.ws6f{word-spacing:-17.388000px;}
.wsc9{word-spacing:-17.319000px;}
.ws60{word-spacing:-17.250000px;}
.wsa9{word-spacing:-17.181000px;}
.ws5f{word-spacing:-17.112000px;}
.ws6d{word-spacing:-16.974000px;}
.ws4{word-spacing:-15.750000px;}
.ws3{word-spacing:-15.561000px;}
.ws80{word-spacing:-14.250000px;}
.ws0{word-spacing:-12.750000px;}
.wsf9{word-spacing:-9.262500px;}
.wsfd{word-spacing:-3.135000px;}
.ws106{word-spacing:-2.205000px;}
.wsf5{word-spacing:-1.242000px;}
.wscc{word-spacing:-1.173000px;}
.ws2b{word-spacing:-0.969000px;}
.ws75{word-spacing:-0.966000px;}
.wsdf{word-spacing:-0.828000px;}
.ws68{word-spacing:-0.621000px;}
.wsf6{word-spacing:-0.414000px;}
.wsd{word-spacing:-0.378000px;}
.ws29{word-spacing:-0.345000px;}
.wsac{word-spacing:-0.138000px;}
.wse0{word-spacing:-0.069000px;}
.ws7{word-spacing:0.000000px;}
.ws1c{word-spacing:0.069000px;}
.ws8e{word-spacing:0.138000px;}
.wse5{word-spacing:0.171000px;}
.ws66{word-spacing:0.207000px;}
.ws2e{word-spacing:0.228000px;}
.ws10f{word-spacing:0.252000px;}
.ws19{word-spacing:0.276000px;}
.wse2{word-spacing:0.342000px;}
.ws92{word-spacing:0.345000px;}
.ws10b{word-spacing:0.378000px;}
.ws100{word-spacing:0.399000px;}
.ws32{word-spacing:0.414000px;}
.ws10c{word-spacing:0.441000px;}
.ws7b{word-spacing:0.456000px;}
.ws36{word-spacing:0.483000px;}
.ws45{word-spacing:0.552000px;}
.ws108{word-spacing:0.567000px;}
.ws105{word-spacing:0.570000px;}
.ws39{word-spacing:0.621000px;}
.ws3b{word-spacing:0.690000px;}
.ws47{word-spacing:0.759000px;}
.ws78{word-spacing:0.828000px;}
.ws22{word-spacing:0.897000px;}
.ws38{word-spacing:0.966000px;}
.wsef{word-spacing:0.969000px;}
.ws111{word-spacing:1.008000px;}
.ws3d{word-spacing:1.035000px;}
.wsdb{word-spacing:1.083000px;}
.wsbd{word-spacing:1.104000px;}
.wsa1{word-spacing:1.140000px;}
.ws18{word-spacing:1.173000px;}
.wscf{word-spacing:1.197000px;}
.ws27{word-spacing:1.242000px;}
.ws50{word-spacing:1.311000px;}
.wsb{word-spacing:1.323000px;}
.wsdd{word-spacing:1.368000px;}
.ws8b{word-spacing:1.380000px;}
.wsb1{word-spacing:1.425000px;}
.ws5a{word-spacing:1.449000px;}
.wse7{word-spacing:1.482000px;}
.ws65{word-spacing:1.518000px;}
.wsd7{word-spacing:1.539000px;}
.ws4f{word-spacing:1.587000px;}
.ws83{word-spacing:1.596000px;}
.ws107{word-spacing:1.638000px;}
.ws4e{word-spacing:1.656000px;}
.wsb8{word-spacing:1.710000px;}
.ws98{word-spacing:1.725000px;}
.wse3{word-spacing:1.767000px;}
.ws5c{word-spacing:1.794000px;}
.ws104{word-spacing:1.824000px;}
.ws76{word-spacing:1.863000px;}
.ws51{word-spacing:1.932000px;}
.wsd9{word-spacing:1.938000px;}
.wsd8{word-spacing:1.995000px;}
.ws5d{word-spacing:2.001000px;}
.ws109{word-spacing:2.016000px;}
.ws6a{word-spacing:2.070000px;}
.wsa8{word-spacing:2.139000px;}
.wsfc{word-spacing:2.166000px;}
.ws4c{word-spacing:2.208000px;}
.ws89{word-spacing:2.277000px;}
.ws2d{word-spacing:2.280000px;}
.ws103{word-spacing:2.337000px;}
.wsaf{word-spacing:2.346000px;}
.ws96{word-spacing:2.415000px;}
.wsb7{word-spacing:2.451000px;}
.ws34{word-spacing:2.484000px;}
.ws5{word-spacing:2.550000px;}
.wsc4{word-spacing:2.553000px;}
.wse8{word-spacing:2.565000px;}
.wsa{word-spacing:2.646000px;}
.ws7f{word-spacing:2.679000px;}
.ws3c{word-spacing:2.691000px;}
.wsd2{word-spacing:2.736000px;}
.ws26{word-spacing:2.760000px;}
.ws33{word-spacing:2.829000px;}
.ws1e{word-spacing:2.850000px;}
.ws9{word-spacing:2.898000px;}
.wsf{word-spacing:2.961000px;}
.ws8d{word-spacing:2.967000px;}
.ws84{word-spacing:3.021000px;}
.wsa2{word-spacing:3.036000px;}
.ws2a{word-spacing:3.078000px;}
.wsc3{word-spacing:3.105000px;}
.ws7c{word-spacing:3.135000px;}
.ws8{word-spacing:3.150000px;}
.ws88{word-spacing:3.174000px;}
.wse6{word-spacing:3.192000px;}
.ws10e{word-spacing:3.213000px;}
.ws24{word-spacing:3.243000px;}
.ws1f{word-spacing:3.300000px;}
.wsdc{word-spacing:3.306000px;}
.ws3a{word-spacing:3.312000px;}
.ws5b{word-spacing:3.381000px;}
.ws17{word-spacing:3.450000px;}
.wsd0{word-spacing:3.477000px;}
.ws8c{word-spacing:3.519000px;}
.wsa0{word-spacing:3.534000px;}
.ws4d{word-spacing:3.588000px;}
.wsf0{word-spacing:3.591000px;}
.wsd6{word-spacing:3.648000px;}
.ws86{word-spacing:3.657000px;}
.ws2f{word-spacing:3.705000px;}
.ws14{word-spacing:3.726000px;}
.wsfe{word-spacing:3.762000px;}
.wsa3{word-spacing:3.795000px;}
.ws102{word-spacing:3.819000px;}
.wsa7{word-spacing:3.864000px;}
.ws54{word-spacing:3.933000px;}
.ws31{word-spacing:3.990000px;}
.wsc8{word-spacing:4.002000px;}
.ws101{word-spacing:4.047000px;}
.ws6{word-spacing:4.050000px;}
.ws97{word-spacing:4.071000px;}
.ws9d{word-spacing:4.104000px;}
.ws12{word-spacing:4.140000px;}
.wsc{word-spacing:4.158000px;}
.wsb0{word-spacing:4.209000px;}
.ws73{word-spacing:4.278000px;}
.wsd5{word-spacing:4.332000px;}
.ws15{word-spacing:4.347000px;}
.wsb3{word-spacing:4.389000px;}
.ws79{word-spacing:4.416000px;}
.ws7a{word-spacing:4.485000px;}
.wsd1{word-spacing:4.503000px;}
.wsea{word-spacing:4.554000px;}
.wsb9{word-spacing:4.560000px;}
.ws90{word-spacing:4.623000px;}
.ws9c{word-spacing:4.674000px;}
.ws25{word-spacing:4.692000px;}
.ws9f{word-spacing:4.731000px;}
.wsed{word-spacing:4.761000px;}
.ws2c{word-spacing:4.788000px;}
.ws93{word-spacing:4.830000px;}
.ws37{word-spacing:4.899000px;}
.ws40{word-spacing:4.968000px;}
.ws82{word-spacing:5.016000px;}
.ws53{word-spacing:5.037000px;}
.ws85{word-spacing:5.106000px;}
.ws81{word-spacing:5.130000px;}
.ws63{word-spacing:5.175000px;}
.wsff{word-spacing:5.187000px;}
.ws3f{word-spacing:5.244000px;}
.ws21{word-spacing:5.313000px;}
.wsbb{word-spacing:5.382000px;}
.ws62{word-spacing:5.451000px;}
.wsbf{word-spacing:5.520000px;}
.ws91{word-spacing:5.589000px;}
.wsb2{word-spacing:5.643000px;}
.ws1b{word-spacing:5.658000px;}
.ws71{word-spacing:5.727000px;}
.wsee{word-spacing:5.757000px;}
.ws4b{word-spacing:5.796000px;}
.ws16{word-spacing:5.865000px;}
.ws9b{word-spacing:5.934000px;}
.wscb{word-spacing:6.003000px;}
.ws61{word-spacing:6.072000px;}
.ws23{word-spacing:6.141000px;}
.ws35{word-spacing:6.210000px;}
.ws20{word-spacing:6.279000px;}
.wsfb{word-spacing:6.327000px;}
.ws74{word-spacing:6.348000px;}
.ws1d{word-spacing:6.384000px;}
.ws56{word-spacing:6.417000px;}
.wsba{word-spacing:6.441000px;}
.ws10{word-spacing:6.486000px;}
.ws46{word-spacing:6.555000px;}
.wsb6{word-spacing:6.612000px;}
.ws9a{word-spacing:6.624000px;}
.wsb5{word-spacing:6.669000px;}
.ws70{word-spacing:6.693000px;}
.ws4a{word-spacing:6.762000px;}
.ws41{word-spacing:6.831000px;}
.wsc5{word-spacing:6.900000px;}
.ws6c{word-spacing:6.969000px;}
.ws64{word-spacing:7.038000px;}
.ws7d{word-spacing:7.068000px;}
.ws58{word-spacing:7.107000px;}
.ws44{word-spacing:7.176000px;}
.wsfa{word-spacing:7.182000px;}
.ws43{word-spacing:7.245000px;}
.wse1{word-spacing:7.296000px;}
.wsae{word-spacing:7.314000px;}
.wsbe{word-spacing:7.383000px;}
.wsa6{word-spacing:7.452000px;}
.ws1a{word-spacing:7.521000px;}
.ws7e{word-spacing:7.524000px;}
.wsa4{word-spacing:7.590000px;}
.ws13{word-spacing:7.659000px;}
.ws48{word-spacing:7.728000px;}
.ws8f{word-spacing:7.797000px;}
.ws9e{word-spacing:7.866000px;}
.ws110{word-spacing:7.875000px;}
.wsc0{word-spacing:7.935000px;}
.ws49{word-spacing:8.004000px;}
.ws94{word-spacing:8.073000px;}
.ws69{word-spacing:8.142000px;}
.ws77{word-spacing:8.211000px;}
.ws59{word-spacing:8.280000px;}
.ws11{word-spacing:8.349000px;}
.ws99{word-spacing:8.418000px;}
.wsf3{word-spacing:8.487000px;}
.wsb4{word-spacing:8.493000px;}
.ws6b{word-spacing:8.556000px;}
.ws28{word-spacing:8.625000px;}
.ws72{word-spacing:8.694000px;}
.wsd3{word-spacing:8.763000px;}
.wsd4{word-spacing:8.778000px;}
.wse{word-spacing:8.883000px;}
.wse4{word-spacing:8.949000px;}
.ws57{word-spacing:8.970000px;}
.wsab{word-spacing:9.039000px;}
.ws5e{word-spacing:9.108000px;}
.wsc7{word-spacing:9.177000px;}
.ws52{word-spacing:9.246000px;}
.wsec{word-spacing:9.315000px;}
.wsa5{word-spacing:9.453000px;}
.ws95{word-spacing:9.522000px;}
.wseb{word-spacing:9.591000px;}
.wsde{word-spacing:9.660000px;}
.ws30{word-spacing:9.690000px;}
.wsaa{word-spacing:9.798000px;}
.wsad{word-spacing:10.005000px;}
.ws55{word-spacing:10.074000px;}
.wsf2{word-spacing:10.143000px;}
.wsda{word-spacing:10.203000px;}
.wsf1{word-spacing:10.260000px;}
.wsc1{word-spacing:10.281000px;}
.wsca{word-spacing:10.350000px;}
.wsc2{word-spacing:10.764000px;}
.ws87{word-spacing:10.833000px;}
.ws10d{word-spacing:10.962000px;}
.ws10a{word-spacing:11.025000px;}
.ws8a{word-spacing:11.109000px;}
.ws3e{word-spacing:11.661000px;}
.wscd{word-spacing:11.868000px;}
.wsce{word-spacing:12.006000px;}
.ws42{word-spacing:12.075000px;}
.ws67{word-spacing:12.558000px;}
.wsf7{word-spacing:13.041000px;}
.wsbc{word-spacing:13.179000px;}
.wse9{word-spacing:14.628000px;}
.wsc6{word-spacing:17.595000px;}
.wsf4{word-spacing:198.720000px;}
._15{margin-left:-200.065500px;}
._12{margin-left:-195.249300px;}
._14{margin-left:-160.949400px;}
._17{margin-left:-108.088500px;}
._18{margin-left:-103.458600px;}
._16{margin-left:-100.406400px;}
._13{margin-left:-98.690700px;}
._8{margin-left:-86.250000px;}
._6{margin-left:-25.047000px;}
._d{margin-left:-23.115000px;}
._5{margin-left:-18.648000px;}
._11{margin-left:-16.553400px;}
._b{margin-left:-13.342200px;}
._1c{margin-left:-10.885800px;}
._c{margin-left:-8.016900px;}
._2{margin-left:-6.642600px;}
._7{margin-left:-5.531400px;}
._1{margin-left:-4.077600px;}
._e{margin-left:-3.059100px;}
._0{margin-left:-1.892100px;}
._3{width:1.207200px;}
._10{width:2.573700px;}
._a{width:3.767400px;}
._4{width:9.248400px;}
._f{width:17.181000px;}
._9{width:20.515200px;}
._1a{width:181.325100px;}
._1b{width:194.513400px;}
._19{width:196.040400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.050000px;}
.fs7{font-size:44.850000px;}
.fs0{font-size:51.000000px;}
.fs3{font-size:52.650000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:69.000000px;}
.fs1{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:88.014000px;}
.y118{bottom:88.377900px;}
.y10b{bottom:91.255950px;}
.y16d{bottom:92.592150px;}
.y1a7{bottom:93.783900px;}
.y11a{bottom:94.375950px;}
.y27{bottom:94.393650px;}
.y3c{bottom:94.393800px;}
.y6e{bottom:94.762500px;}
.y16f{bottom:95.548200px;}
.yb3{bottom:96.475800px;}
.y1bf{bottom:98.962800px;}
.y161{bottom:99.743100px;}
.y94{bottom:99.760050px;}
.ydf{bottom:102.288000px;}
.y1e6{bottom:103.962300px;}
.y117{bottom:104.127900px;}
.y182{bottom:104.763300px;}
.yf0{bottom:108.264000px;}
.y16c{bottom:108.342150px;}
.y238{bottom:109.960500px;}
.y26{bottom:110.143650px;}
.y119{bottom:111.383850px;}
.y10a{bottom:111.505950px;}
.yb2{bottom:112.225800px;}
.y16e{bottom:112.556100px;}
.y1a6{bottom:114.033900px;}
.y6d{bottom:115.012500px;}
.y1be{bottom:119.212800px;}
.y1e5{bottom:119.712300px;}
.y116{bottom:119.877900px;}
.y160{bottom:119.993100px;}
.y93{bottom:120.010050px;}
.y181{bottom:120.513300px;}
.yde{bottom:122.538000px;}
.y16b{bottom:124.092150px;}
.y237{bottom:125.710500px;}
.y174{bottom:125.893650px;}
.yb1{bottom:127.975800px;}
.yef{bottom:128.514000px;}
.y120{bottom:131.041950px;}
.y109{bottom:131.755950px;}
.y1a5{bottom:134.283900px;}
.y6c{bottom:135.262500px;}
.y115{bottom:135.627900px;}
.y180{bottom:136.263300px;}
.y18e{bottom:136.981950px;}
.y1bd{bottom:139.462800px;}
.y16a{bottom:139.842150px;}
.y15f{bottom:140.243100px;}
.y3b{bottom:140.260050px;}
.y236{bottom:141.460500px;}
.y173{bottom:141.643650px;}
.ydd{bottom:142.788000px;}
.y168{bottom:143.291400px;}
.yb0{bottom:143.725800px;}
.yfa{bottom:145.444350px;}
.yee{bottom:148.764000px;}
.y11f{bottom:151.291950px;}
.y114{bottom:151.377900px;}
.y108{bottom:152.005950px;}
.y17f{bottom:152.013300px;}
.y1e4{bottom:152.470200px;}
.y18d{bottom:152.731950px;}
.y1a4{bottom:154.533900px;}
.y6b{bottom:155.512500px;}
.y169{bottom:155.592150px;}
.y235{bottom:157.210500px;}
.y172{bottom:157.393650px;}
.y167{bottom:159.041400px;}
.yaf{bottom:159.475800px;}
.y1bc{bottom:159.712800px;}
.y15e{bottom:160.493100px;}
.y3a{bottom:160.510050px;}
.y25{bottom:160.905300px;}
.yf9{bottom:161.194350px;}
.ydc{bottom:163.038000px;}
.y113{bottom:167.127900px;}
.y17e{bottom:167.763300px;}
.y1e3{bottom:168.220200px;}
.y18c{bottom:168.481950px;}
.yed{bottom:169.014000px;}
.y11e{bottom:171.541950px;}
.y107{bottom:172.255950px;}
.y234{bottom:172.960500px;}
.y171{bottom:173.143650px;}
.y166{bottom:174.791400px;}
.y6a{bottom:175.762500px;}
.yf8{bottom:176.944350px;}
.y1bb{bottom:179.962800px;}
.y15d{bottom:180.743100px;}
.y39{bottom:180.760050px;}
.y24{bottom:181.155300px;}
.y112{bottom:182.877900px;}
.y101{bottom:183.288000px;}
.y17d{bottom:183.513300px;}
.y18b{bottom:184.231950px;}
.y233{bottom:188.710500px;}
.y170{bottom:188.893650px;}
.yec{bottom:189.264000px;}
.y165{bottom:190.541400px;}
.ydb{bottom:191.791950px;}
.y106{bottom:192.505950px;}
.yf7{bottom:192.694350px;}
.y69{bottom:196.012500px;}
.y111{bottom:198.627900px;}
.y17c{bottom:199.263300px;}
.y18a{bottom:199.981950px;}
.y1ba{bottom:200.212800px;}
.y1e2{bottom:200.978100px;}
.y15c{bottom:200.993100px;}
.y38{bottom:201.010050px;}
.y23{bottom:201.405300px;}
.y110{bottom:202.520400px;}
.y1a3{bottom:203.538000px;}
.y232{bottom:204.460500px;}
.y164{bottom:206.291400px;}
.yf6{bottom:208.444350px;}
.yeb{bottom:209.514000px;}
.yda{bottom:212.041950px;}
.y105{bottom:212.755950px;}
.y17b{bottom:215.013300px;}
.y189{bottom:215.731950px;}
.y68{bottom:216.262500px;}
.y1e1{bottom:216.728100px;}
.y10f{bottom:218.270400px;}
.y231{bottom:220.210500px;}
.y1b9{bottom:220.462800px;}
.y15b{bottom:221.243100px;}
.y37{bottom:221.260050px;}
.y22{bottom:221.655300px;}
.y163{bottom:222.041400px;}
.y1a2{bottom:223.788000px;}
.yae{bottom:224.089350px;}
.yf5{bottom:224.194350px;}
.yea{bottom:229.764000px;}
.y17a{bottom:230.763300px;}
.y188{bottom:231.481950px;}
.yd9{bottom:232.291950px;}
.y1e0{bottom:232.478100px;}
.y104{bottom:233.005950px;}
.y10e{bottom:234.020400px;}
.y211{bottom:235.960500px;}
.y67{bottom:236.512500px;}
.y264{bottom:239.291250px;}
.yf4{bottom:239.944350px;}
.y1b8{bottom:240.712800px;}
.yad{bottom:241.097250px;}
.y15a{bottom:241.493100px;}
.y92{bottom:241.510050px;}
.y21{bottom:241.905300px;}
.y1a1{bottom:244.038000px;}
.y179{bottom:246.513300px;}
.y187{bottom:247.231950px;}
.y10d{bottom:249.770400px;}
.y36{bottom:250.014000px;}
.y210{bottom:251.710500px;}
.yd8{bottom:252.541950px;}
.y134{bottom:253.255950px;}
.y263{bottom:255.041250px;}
.yf3{bottom:255.694350px;}
.y66{bottom:256.762500px;}
.y1b7{bottom:260.962800px;}
.y159{bottom:261.743100px;}
.y91{bottom:261.760050px;}
.y20{bottom:262.155300px;}
.y178{bottom:262.263300px;}
.y186{bottom:262.981950px;}
.y1a0{bottom:264.288000px;}
.y1df{bottom:265.235850px;}
.y10c{bottom:265.520400px;}
.y20f{bottom:267.460500px;}
.y34{bottom:270.263850px;}
.y262{bottom:270.791250px;}
.yf2{bottom:271.444350px;}
.yd7{bottom:272.791800px;}
.y133{bottom:273.506100px;}
.y35{bottom:275.956350px;}
.y65{bottom:277.012500px;}
.y177{bottom:278.013300px;}
.y185{bottom:278.731950px;}
.y1de{bottom:280.986000px;}
.y158{bottom:281.993100px;}
.y90{bottom:282.010050px;}
.y1f{bottom:282.405300px;}
.y20e{bottom:283.210500px;}
.y19f{bottom:284.538000px;}
.y261{bottom:286.541250px;}
.y1b6{bottom:289.716600px;}
.y33{bottom:290.513850px;}
.yd6{bottom:293.041800px;}
.y132{bottom:293.756100px;}
.y176{bottom:293.763300px;}
.y64{bottom:297.262500px;}
.y230{bottom:298.960500px;}
.y8f{bottom:302.260050px;}
.y260{bottom:302.291250px;}
.y19e{bottom:304.788000px;}
.ya5{bottom:305.766450px;}
.y175{bottom:309.513300px;}
.y1b5{bottom:309.966600px;}
.y157{bottom:310.747050px;}
.ye9{bottom:310.763850px;}
.y1e{bottom:311.159250px;}
.yd5{bottom:313.291800px;}
.y1dd{bottom:313.743750px;}
.y131{bottom:314.006100px;}
.y22f{bottom:314.710500px;}
.y20d{bottom:315.968400px;}
.y25f{bottom:318.041250px;}
.y32{bottom:319.267800px;}
.y8e{bottom:322.510050px;}
.y19d{bottom:325.038000px;}
.y63{bottom:326.016450px;}
.y1dc{bottom:329.493750px;}
.y1b4{bottom:330.216600px;}
.y22e{bottom:330.460500px;}
.y156{bottom:330.997050px;}
.yac{bottom:331.013850px;}
.y1d{bottom:331.409250px;}
.yd4{bottom:333.541800px;}
.y25e{bottom:333.791250px;}
.y130{bottom:334.256100px;}
.y31{bottom:339.517800px;}
.y8d{bottom:342.760050px;}
.y1db{bottom:345.243750px;}
.y19c{bottom:345.288000px;}
.y22d{bottom:346.210500px;}
.y62{bottom:346.266450px;}
.y20c{bottom:348.726300px;}
.y25d{bottom:349.541250px;}
.y1b3{bottom:350.466600px;}
.y155{bottom:351.247050px;}
.yab{bottom:351.263850px;}
.y1c{bottom:351.659250px;}
.yd3{bottom:353.791800px;}
.y12f{bottom:354.506100px;}
.y30{bottom:359.767800px;}
.y1da{bottom:360.993750px;}
.y22c{bottom:361.960500px;}
.y8c{bottom:363.010050px;}
.y20b{bottom:364.476300px;}
.y25c{bottom:365.291250px;}
.y19b{bottom:365.538000px;}
.y61{bottom:366.516450px;}
.y1b2{bottom:370.716600px;}
.y154{bottom:371.497050px;}
.yaa{bottom:371.513850px;}
.y1b{bottom:371.909250px;}
.yd2{bottom:374.041800px;}
.y12e{bottom:374.756100px;}
.y22b{bottom:377.710500px;}
.y2f{bottom:380.017800px;}
.y25b{bottom:381.041250px;}
.y8b{bottom:383.260050px;}
.y19a{bottom:385.788000px;}
.y60{bottom:386.766450px;}
.y1d9{bottom:387.313650px;}
.y153{bottom:391.747050px;}
.ya9{bottom:391.763850px;}
.y1a{bottom:392.159250px;}
.y22a{bottom:393.460500px;}
.yd1{bottom:394.291800px;}
.y12d{bottom:395.006100px;}
.y20a{bottom:397.234200px;}
.y2e{bottom:400.267800px;}
.y1d8{bottom:403.063650px;}
.y103{bottom:403.510050px;}
.y199{bottom:406.038000px;}
.y5f{bottom:407.016450px;}
.y1b1{bottom:407.974500px;}
.y229{bottom:409.210500px;}
.y152{bottom:411.997050px;}
.y8a{bottom:412.013850px;}
.y19{bottom:412.409250px;}
.y209{bottom:412.984200px;}
.y25a{bottom:413.799150px;}
.yd0{bottom:414.541800px;}
.y284{bottom:418.918050px;}
.y2d{bottom:420.517800px;}
.y102{bottom:423.760050px;}
.y228{bottom:424.960500px;}
.y198{bottom:426.288000px;}
.y5e{bottom:427.266450px;}
.y1d7{bottom:427.317600px;}
.y208{bottom:428.734200px;}
.y259{bottom:429.549150px;}
.y151{bottom:432.247050px;}
.y89{bottom:432.263850px;}
.y18{bottom:432.659250px;}
.y100{bottom:434.791800px;}
.y1b0{bottom:436.728450px;}
.y283{bottom:436.918050px;}
.y227{bottom:440.710500px;}
.y2c{bottom:440.767800px;}
.ycf{bottom:443.295750px;}
.y12c{bottom:444.010050px;}
.ya4{bottom:445.266450px;}
.y258{bottom:445.299150px;}
.y197{bottom:446.538000px;}
.y5d{bottom:447.516450px;}
.y150{bottom:452.497050px;}
.y88{bottom:452.513850px;}
.y17{bottom:452.909250px;}
.y282{bottom:454.918050px;}
.yff{bottom:455.041800px;}
.y226{bottom:456.460500px;}
.y2b{bottom:461.017800px;}
.y207{bottom:461.491950px;}
.yce{bottom:463.545750px;}
.y12b{bottom:464.260050px;}
.y1af{bottom:465.482400px;}
.y5c{bottom:467.766450px;}
.y1d6{bottom:468.766950px;}
.y257{bottom:471.618900px;}
.y225{bottom:472.210500px;}
.y14f{bottom:472.747050px;}
.y87{bottom:472.763850px;}
.y281{bottom:472.918050px;}
.y16{bottom:473.159250px;}
.yfe{bottom:475.291800px;}
.y206{bottom:477.241950px;}
.ye8{bottom:481.267800px;}
.ycd{bottom:483.795750px;}
.y12a{bottom:484.510050px;}
.y1d5{bottom:484.516950px;}
.y256{bottom:487.368900px;}
.y224{bottom:487.960500px;}
.y5b{bottom:488.016450px;}
.y45{bottom:488.733750px;}
.y280{bottom:490.918050px;}
.y205{bottom:492.991950px;}
.y14e{bottom:492.997050px;}
.y86{bottom:493.013850px;}
.y15{bottom:493.409250px;}
.y1ae{bottom:494.236350px;}
.yfd{bottom:495.541800px;}
.y1d4{bottom:500.266950px;}
.ya3{bottom:501.517800px;}
.y223{bottom:503.710500px;}
.ycc{bottom:504.045750px;}
.y44{bottom:504.483750px;}
.y129{bottom:504.760050px;}
.y5a{bottom:508.266450px;}
.y204{bottom:508.741950px;}
.y27f{bottom:508.918050px;}
.y255{bottom:511.622850px;}
.y14d{bottom:513.247050px;}
.y85{bottom:513.263850px;}
.y11d{bottom:515.791800px;}
.y1d3{bottom:516.016950px;}
.y222{bottom:519.460500px;}
.y43{bottom:520.233750px;}
.ya2{bottom:521.767800px;}
.y1ad{bottom:522.990300px;}
.ycb{bottom:524.295750px;}
.y203{bottom:524.491950px;}
.y128{bottom:525.010050px;}
.y27e{bottom:526.918050px;}
.y59{bottom:528.516450px;}
.y14{bottom:531.659850px;}
.y84{bottom:533.513850px;}
.y221{bottom:535.210500px;}
.y42{bottom:535.983750px;}
.y196{bottom:536.041800px;}
.y14c{bottom:542.001000px;}
.ya1{bottom:542.017800px;}
.yca{bottom:544.545750px;}
.y27d{bottom:544.918050px;}
.y127{bottom:545.260050px;}
.y1d2{bottom:548.774850px;}
.y220{bottom:550.960500px;}
.y41{bottom:551.733750px;}
.y1ac{bottom:551.744250px;}
.y254{bottom:553.072200px;}
.y83{bottom:553.763850px;}
.y195{bottom:556.291800px;}
.y13{bottom:556.409850px;}
.y202{bottom:557.249850px;}
.y58{bottom:557.270400px;}
.y14b{bottom:562.251000px;}
.ya0{bottom:562.267800px;}
.y27c{bottom:562.918050px;}
.y1d1{bottom:564.524850px;}
.yc9{bottom:564.795750px;}
.y126{bottom:565.510050px;}
.y21f{bottom:566.710500px;}
.y40{bottom:567.483750px;}
.y253{bottom:568.822200px;}
.y201{bottom:572.999850px;}
.y82{bottom:574.013850px;}
.y194{bottom:576.541800px;}
.y57{bottom:577.520400px;}
.y1d0{bottom:580.274850px;}
.y1ab{bottom:580.498200px;}
.y27b{bottom:580.918050px;}
.y21e{bottom:582.460500px;}
.y14a{bottom:582.501000px;}
.y9f{bottom:582.517800px;}
.y3f{bottom:583.233750px;}
.y252{bottom:584.572200px;}
.yc8{bottom:585.045750px;}
.y184{bottom:585.760050px;}
.y200{bottom:588.749850px;}
.y81{bottom:594.263850px;}
.y1cf{bottom:596.024850px;}
.y193{bottom:596.791800px;}
.y56{bottom:597.770400px;}
.y21d{bottom:598.210500px;}
.y27a{bottom:598.918050px;}
.y3e{bottom:598.983750px;}
.y251{bottom:600.322200px;}
.y149{bottom:602.751000px;}
.y9e{bottom:602.767800px;}
.y1ff{bottom:604.499850px;}
.yc7{bottom:605.295750px;}
.y183{bottom:606.010050px;}
.y1aa{bottom:609.252150px;}
.y80{bottom:614.513850px;}
.y3d{bottom:614.733750px;}
.y250{bottom:616.072200px;}
.y279{bottom:616.918050px;}
.y12{bottom:617.161350px;}
.y55{bottom:618.020400px;}
.y1fe{bottom:620.249850px;}
.y148{bottom:623.001000px;}
.y9d{bottom:623.017800px;}
.yc6{bottom:625.545750px;}
.y1ce{bottom:628.782600px;}
.y21c{bottom:630.968400px;}
.y24f{bottom:631.822200px;}
.y7f{bottom:634.763850px;}
.y278{bottom:634.918050px;}
.y11{bottom:635.161350px;}
.y1fd{bottom:635.999850px;}
.y1a9{bottom:638.006100px;}
.y54{bottom:638.270400px;}
.y147{bottom:643.251000px;}
.y9c{bottom:643.267800px;}
.y1cd{bottom:644.532600px;}
.yc5{bottom:645.795750px;}
.y21b{bottom:646.718400px;}
.y24e{bottom:647.572200px;}
.y1fc{bottom:651.749850px;}
.y277{bottom:652.918050px;}
.y10{bottom:653.161350px;}
.y7e{bottom:655.014000px;}
.y53{bottom:658.520400px;}
.y1cc{bottom:660.282600px;}
.y146{bottom:663.501000px;}
.y9b{bottom:663.517800px;}
.yc4{bottom:666.045750px;}
.y1a8{bottom:666.760050px;}
.y1fb{bottom:667.499850px;}
.y276{bottom:670.918050px;}
.yf{bottom:671.161350px;}
.ye7{bottom:672.021750px;}
.y7d{bottom:675.264000px;}
.y52{bottom:678.770400px;}
.y21a{bottom:679.476300px;}
.y24d{bottom:680.330100px;}
.y1fa{bottom:683.249850px;}
.y145{bottom:683.751000px;}
.y9a{bottom:683.767800px;}
.yc3{bottom:686.295750px;}
.y275{bottom:688.918050px;}
.ye{bottom:689.161350px;}
.ye6{bottom:692.271750px;}
.y1cb{bottom:693.040500px;}
.y219{bottom:695.226300px;}
.y7c{bottom:695.514000px;}
.y1f9{bottom:698.999850px;}
.y51{bottom:699.020400px;}
.y144{bottom:704.001000px;}
.y99{bottom:704.017800px;}
.yfc{bottom:706.545750px;}
.y274{bottom:706.918050px;}
.yd{bottom:707.161350px;}
.y1ca{bottom:708.790500px;}
.y218{bottom:710.976300px;}
.ye5{bottom:712.521750px;}
.y24c{bottom:713.088000px;}
.y1f8{bottom:714.749850px;}
.yc2{bottom:715.049700px;}
.y125{bottom:715.764000px;}
.y50{bottom:719.270400px;}
.y143{bottom:724.251000px;}
.y7b{bottom:724.267800px;}
.y1c9{bottom:724.540500px;}
.y273{bottom:724.918050px;}
.yc{bottom:725.161350px;}
.y217{bottom:726.726300px;}
.yfb{bottom:726.795750px;}
.y24b{bottom:728.838000px;}
.y1f7{bottom:730.499850px;}
.ye4{bottom:732.771750px;}
.yc1{bottom:735.299700px;}
.y124{bottom:736.014000px;}
.y4f{bottom:739.520400px;}
.y272{bottom:742.918050px;}
.yb{bottom:743.161350px;}
.y142{bottom:744.501000px;}
.y7a{bottom:744.517800px;}
.y24a{bottom:744.588000px;}
.y1f6{bottom:746.249850px;}
.y11c{bottom:747.045750px;}
.ye3{bottom:753.021750px;}
.yc0{bottom:755.549700px;}
.y123{bottom:756.264000px;}
.y1c8{bottom:757.298400px;}
.y216{bottom:759.484200px;}
.y4e{bottom:759.770400px;}
.y249{bottom:760.338000px;}
.y271{bottom:760.918050px;}
.ya{bottom:761.161350px;}
.y1f5{bottom:761.999850px;}
.y141{bottom:764.751000px;}
.y79{bottom:764.767800px;}
.y192{bottom:767.295750px;}
.y1c7{bottom:773.048400px;}
.ye2{bottom:773.271750px;}
.ybf{bottom:775.799700px;}
.y248{bottom:776.088000px;}
.y122{bottom:776.514000px;}
.y1f4{bottom:777.749850px;}
.y270{bottom:778.918050px;}
.y9{bottom:779.161350px;}
.y4d{bottom:780.020250px;}
.y140{bottom:785.001000px;}
.y78{bottom:785.017800px;}
.y191{bottom:787.545750px;}
.y1c6{bottom:788.798400px;}
.y247{bottom:791.838000px;}
.y215{bottom:792.241950px;}
.y1f3{bottom:793.499850px;}
.ye1{bottom:793.521750px;}
.ybe{bottom:796.049700px;}
.y121{bottom:796.764000px;}
.y26f{bottom:796.918050px;}
.y4c{bottom:800.270250px;}
.y1c5{bottom:804.548400px;}
.y13f{bottom:805.251000px;}
.y77{bottom:805.267800px;}
.y246{bottom:807.588000px;}
.y190{bottom:807.795750px;}
.y214{bottom:807.991950px;}
.y1f2{bottom:809.249850px;}
.ye0{bottom:813.771750px;}
.y26e{bottom:814.918050px;}
.ybd{bottom:816.299700px;}
.y4b{bottom:820.520250px;}
.y245{bottom:823.338000px;}
.y213{bottom:823.741950px;}
.y1f1{bottom:824.999850px;}
.y13e{bottom:825.501000px;}
.y76{bottom:825.517800px;}
.y18f{bottom:828.045750px;}
.y1c4{bottom:830.868300px;}
.y26d{bottom:832.918050px;}
.y8{bottom:833.160900px;}
.y162{bottom:834.004950px;}
.ya8{bottom:834.021750px;}
.ybc{bottom:836.549700px;}
.y244{bottom:839.088000px;}
.y1f0{bottom:840.749850px;}
.y4a{bottom:840.770250px;}
.y75{bottom:845.767800px;}
.y1c3{bottom:846.618300px;}
.y26c{bottom:850.918050px;}
.y13d{bottom:854.254950px;}
.ya7{bottom:854.271750px;}
.y243{bottom:854.838000px;}
.y1ef{bottom:856.499850px;}
.ybb{bottom:856.799700px;}
.y49{bottom:861.020250px;}
.y1c2{bottom:862.368300px;}
.y74{bottom:866.017800px;}
.y7{bottom:868.092900px;}
.y26b{bottom:868.918050px;}
.y242{bottom:870.588000px;}
.y13c{bottom:874.504950px;}
.ya6{bottom:874.521750px;}
.yba{bottom:877.049700px;}
.y48{bottom:881.270250px;}
.y73{bottom:886.267800px;}
.y241{bottom:886.338000px;}
.y1c1{bottom:886.622250px;}
.y26a{bottom:886.918050px;}
.y1ee{bottom:889.257750px;}
.y13b{bottom:894.754950px;}
.y98{bottom:894.771750px;}
.yb9{bottom:897.299700px;}
.y240{bottom:902.088000px;}
.y269{bottom:904.918050px;}
.y1ed{bottom:905.007750px;}
.y6{bottom:906.024900px;}
.y72{bottom:906.517800px;}
.y13a{bottom:915.004950px;}
.y97{bottom:915.021750px;}
.y1c0{bottom:917.254050px;}
.yb8{bottom:917.549700px;}
.y23f{bottom:917.838000px;}
.y47{bottom:919.520250px;}
.y1ec{bottom:920.757750px;}
.y71{bottom:926.767800px;}
.y5{bottom:927.456900px;}
.y23e{bottom:933.588000px;}
.y139{bottom:935.254950px;}
.y96{bottom:935.271750px;}
.y1eb{bottom:936.507750px;}
.yb7{bottom:937.799700px;}
.y268{bottom:939.925950px;}
.y70{bottom:947.017800px;}
.y212{bottom:947.077500px;}
.y4{bottom:948.888900px;}
.y23d{bottom:949.338000px;}
.y138{bottom:955.504950px;}
.y95{bottom:955.521750px;}
.y267{bottom:957.925950px;}
.yb6{bottom:958.049700px;}
.y1ea{bottom:962.827500px;}
.y23c{bottom:965.088000px;}
.y6f{bottom:967.267800px;}
.y137{bottom:975.754950px;}
.y46{bottom:975.771750px;}
.y266{bottom:975.925950px;}
.yb5{bottom:978.299700px;}
.y1e9{bottom:978.577500px;}
.y23b{bottom:980.838000px;}
.y1e8{bottom:994.327500px;}
.y136{bottom:996.004950px;}
.y2a{bottom:996.021750px;}
.y11b{bottom:996.299700px;}
.y23a{bottom:996.588000px;}
.y239{bottom:1012.338000px;}
.y135{bottom:1016.254950px;}
.y29{bottom:1016.271750px;}
.yb4{bottom:1016.549700px;}
.y265{bottom:1017.311850px;}
.y1e7{bottom:1018.581450px;}
.y3{bottom:1031.437200px;}
.y2{bottom:1046.474700px;}
.y1{bottom:1061.512200px;}
.y28{bottom:1070.326650px;}
.h2{height:35.411133px;}
.hb{height:37.404199px;}
.he{height:38.630859px;}
.h3{height:42.533203px;}
.hc{height:46.763672px;}
.h9{height:47.537109px;}
.hd{height:47.909180px;}
.hf{height:49.709121px;}
.h7{height:52.541016px;}
.h4{height:54.896484px;}
.ha{height:55.042969px;}
.h5{height:57.544922px;}
.h8{height:67.552734px;}
.h6{height:70.639277px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x33{left:114.841500px;}
.x21{left:116.970450px;}
.x34{left:119.254200px;}
.x3{left:120.334350px;}
.x7{left:127.559100px;}
.x32{left:133.559100px;}
.x16{left:134.665200px;}
.x27{left:136.666500px;}
.xb{left:144.567000px;}
.x26{left:149.937900px;}
.x1b{left:153.440850px;}
.x35{left:156.680700px;}
.x36{left:166.966650px;}
.x1a{left:170.448600px;}
.x28{left:191.338650px;}
.x10{left:195.810900px;}
.x17{left:200.366400px;}
.x30{left:207.489300px;}
.xf{left:226.710150px;}
.x2c{left:235.290300px;}
.x2e{left:240.604200px;}
.x2{left:243.625950px;}
.x31{left:271.324950px;}
.x2d{left:281.953500px;}
.xc{left:321.833100px;}
.xd{left:327.421350px;}
.x6{left:343.320600px;}
.x2b{left:357.729750px;}
.x18{left:361.776900px;}
.x37{left:386.015400px;}
.x4{left:394.081050px;}
.x22{left:400.580550px;}
.xe{left:404.127750px;}
.x29{left:407.448600px;}
.x2a{left:415.487400px;}
.xa{left:421.135650px;}
.x9{left:423.027750px;}
.x5{left:429.327750px;}
.x2f{left:432.495300px;}
.x8{left:438.215250px;}
.x19{left:633.355800px;}
.x23{left:640.370250px;}
.x24{left:656.120250px;}
.x1c{left:665.816250px;}
.x25{left:671.870250px;}
.x1d{left:681.566250px;}
.x11{left:695.988600px;}
.x1e{left:697.316250px;}
.x12{left:711.738600px;}
.x1f{left:713.066250px;}
.x13{left:727.488600px;}
.x20{left:728.816250px;}
.x14{left:743.238600px;}
.x15{left:758.988600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.720000pt;}
.v1{vertical-align:23.760000pt;}
.ls15{letter-spacing:-0.613333pt;}
.ls1b{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.490667pt;}
.ls14{letter-spacing:-0.429333pt;}
.ls12{letter-spacing:-0.368000pt;}
.lsf{letter-spacing:-0.306667pt;}
.ls1e{letter-spacing:-0.253333pt;}
.ls11{letter-spacing:-0.245333pt;}
.lse{letter-spacing:-0.184000pt;}
.ls2{letter-spacing:-0.168000pt;}
.ls3{letter-spacing:-0.122667pt;}
.ls21{letter-spacing:-0.112000pt;}
.ls1d{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:-0.061333pt;}
.ls20{letter-spacing:-0.056000pt;}
.ls1c{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.061333pt;}
.lsa{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.184000pt;}
.ls9{letter-spacing:0.245333pt;}
.ls19{letter-spacing:0.253333pt;}
.ls6{letter-spacing:0.306667pt;}
.ls0{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.368000pt;}
.lsc{letter-spacing:0.429333pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.490667pt;}
.lsd{letter-spacing:0.552000pt;}
.ls13{letter-spacing:0.858667pt;}
.ls17{letter-spacing:1.960000pt;}
.ls1a{letter-spacing:2.532800pt;}
.ls18{letter-spacing:2.533333pt;}
.ls10{letter-spacing:7.404800pt;}
.ws1{word-spacing:-72.000000pt;}
.ws2{word-spacing:-56.000000pt;}
.wsf8{word-spacing:-15.960000pt;}
.ws6e{word-spacing:-15.517333pt;}
.ws6f{word-spacing:-15.456000pt;}
.wsc9{word-spacing:-15.394667pt;}
.ws60{word-spacing:-15.333333pt;}
.wsa9{word-spacing:-15.272000pt;}
.ws5f{word-spacing:-15.210667pt;}
.ws6d{word-spacing:-15.088000pt;}
.ws4{word-spacing:-14.000000pt;}
.ws3{word-spacing:-13.832000pt;}
.ws80{word-spacing:-12.666667pt;}
.ws0{word-spacing:-11.333333pt;}
.wsf9{word-spacing:-8.233333pt;}
.wsfd{word-spacing:-2.786667pt;}
.ws106{word-spacing:-1.960000pt;}
.wsf5{word-spacing:-1.104000pt;}
.wscc{word-spacing:-1.042667pt;}
.ws2b{word-spacing:-0.861333pt;}
.ws75{word-spacing:-0.858667pt;}
.wsdf{word-spacing:-0.736000pt;}
.ws68{word-spacing:-0.552000pt;}
.wsf6{word-spacing:-0.368000pt;}
.wsd{word-spacing:-0.336000pt;}
.ws29{word-spacing:-0.306667pt;}
.wsac{word-spacing:-0.122667pt;}
.wse0{word-spacing:-0.061333pt;}
.ws7{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.061333pt;}
.ws8e{word-spacing:0.122667pt;}
.wse5{word-spacing:0.152000pt;}
.ws66{word-spacing:0.184000pt;}
.ws2e{word-spacing:0.202667pt;}
.ws10f{word-spacing:0.224000pt;}
.ws19{word-spacing:0.245333pt;}
.wse2{word-spacing:0.304000pt;}
.ws92{word-spacing:0.306667pt;}
.ws10b{word-spacing:0.336000pt;}
.ws100{word-spacing:0.354667pt;}
.ws32{word-spacing:0.368000pt;}
.ws10c{word-spacing:0.392000pt;}
.ws7b{word-spacing:0.405333pt;}
.ws36{word-spacing:0.429333pt;}
.ws45{word-spacing:0.490667pt;}
.ws108{word-spacing:0.504000pt;}
.ws105{word-spacing:0.506667pt;}
.ws39{word-spacing:0.552000pt;}
.ws3b{word-spacing:0.613333pt;}
.ws47{word-spacing:0.674667pt;}
.ws78{word-spacing:0.736000pt;}
.ws22{word-spacing:0.797333pt;}
.ws38{word-spacing:0.858667pt;}
.wsef{word-spacing:0.861333pt;}
.ws111{word-spacing:0.896000pt;}
.ws3d{word-spacing:0.920000pt;}
.wsdb{word-spacing:0.962667pt;}
.wsbd{word-spacing:0.981333pt;}
.wsa1{word-spacing:1.013333pt;}
.ws18{word-spacing:1.042667pt;}
.wscf{word-spacing:1.064000pt;}
.ws27{word-spacing:1.104000pt;}
.ws50{word-spacing:1.165333pt;}
.wsb{word-spacing:1.176000pt;}
.wsdd{word-spacing:1.216000pt;}
.ws8b{word-spacing:1.226667pt;}
.wsb1{word-spacing:1.266667pt;}
.ws5a{word-spacing:1.288000pt;}
.wse7{word-spacing:1.317333pt;}
.ws65{word-spacing:1.349333pt;}
.wsd7{word-spacing:1.368000pt;}
.ws4f{word-spacing:1.410667pt;}
.ws83{word-spacing:1.418667pt;}
.ws107{word-spacing:1.456000pt;}
.ws4e{word-spacing:1.472000pt;}
.wsb8{word-spacing:1.520000pt;}
.ws98{word-spacing:1.533333pt;}
.wse3{word-spacing:1.570667pt;}
.ws5c{word-spacing:1.594667pt;}
.ws104{word-spacing:1.621333pt;}
.ws76{word-spacing:1.656000pt;}
.ws51{word-spacing:1.717333pt;}
.wsd9{word-spacing:1.722667pt;}
.wsd8{word-spacing:1.773333pt;}
.ws5d{word-spacing:1.778667pt;}
.ws109{word-spacing:1.792000pt;}
.ws6a{word-spacing:1.840000pt;}
.wsa8{word-spacing:1.901333pt;}
.wsfc{word-spacing:1.925333pt;}
.ws4c{word-spacing:1.962667pt;}
.ws89{word-spacing:2.024000pt;}
.ws2d{word-spacing:2.026667pt;}
.ws103{word-spacing:2.077333pt;}
.wsaf{word-spacing:2.085333pt;}
.ws96{word-spacing:2.146667pt;}
.wsb7{word-spacing:2.178667pt;}
.ws34{word-spacing:2.208000pt;}
.ws5{word-spacing:2.266667pt;}
.wsc4{word-spacing:2.269333pt;}
.wse8{word-spacing:2.280000pt;}
.wsa{word-spacing:2.352000pt;}
.ws7f{word-spacing:2.381333pt;}
.ws3c{word-spacing:2.392000pt;}
.wsd2{word-spacing:2.432000pt;}
.ws26{word-spacing:2.453333pt;}
.ws33{word-spacing:2.514667pt;}
.ws1e{word-spacing:2.533333pt;}
.ws9{word-spacing:2.576000pt;}
.wsf{word-spacing:2.632000pt;}
.ws8d{word-spacing:2.637333pt;}
.ws84{word-spacing:2.685333pt;}
.wsa2{word-spacing:2.698667pt;}
.ws2a{word-spacing:2.736000pt;}
.wsc3{word-spacing:2.760000pt;}
.ws7c{word-spacing:2.786667pt;}
.ws8{word-spacing:2.800000pt;}
.ws88{word-spacing:2.821333pt;}
.wse6{word-spacing:2.837333pt;}
.ws10e{word-spacing:2.856000pt;}
.ws24{word-spacing:2.882667pt;}
.ws1f{word-spacing:2.933333pt;}
.wsdc{word-spacing:2.938667pt;}
.ws3a{word-spacing:2.944000pt;}
.ws5b{word-spacing:3.005333pt;}
.ws17{word-spacing:3.066667pt;}
.wsd0{word-spacing:3.090667pt;}
.ws8c{word-spacing:3.128000pt;}
.wsa0{word-spacing:3.141333pt;}
.ws4d{word-spacing:3.189333pt;}
.wsf0{word-spacing:3.192000pt;}
.wsd6{word-spacing:3.242667pt;}
.ws86{word-spacing:3.250667pt;}
.ws2f{word-spacing:3.293333pt;}
.ws14{word-spacing:3.312000pt;}
.wsfe{word-spacing:3.344000pt;}
.wsa3{word-spacing:3.373333pt;}
.ws102{word-spacing:3.394667pt;}
.wsa7{word-spacing:3.434667pt;}
.ws54{word-spacing:3.496000pt;}
.ws31{word-spacing:3.546667pt;}
.wsc8{word-spacing:3.557333pt;}
.ws101{word-spacing:3.597333pt;}
.ws6{word-spacing:3.600000pt;}
.ws97{word-spacing:3.618667pt;}
.ws9d{word-spacing:3.648000pt;}
.ws12{word-spacing:3.680000pt;}
.wsc{word-spacing:3.696000pt;}
.wsb0{word-spacing:3.741333pt;}
.ws73{word-spacing:3.802667pt;}
.wsd5{word-spacing:3.850667pt;}
.ws15{word-spacing:3.864000pt;}
.wsb3{word-spacing:3.901333pt;}
.ws79{word-spacing:3.925333pt;}
.ws7a{word-spacing:3.986667pt;}
.wsd1{word-spacing:4.002667pt;}
.wsea{word-spacing:4.048000pt;}
.wsb9{word-spacing:4.053333pt;}
.ws90{word-spacing:4.109333pt;}
.ws9c{word-spacing:4.154667pt;}
.ws25{word-spacing:4.170667pt;}
.ws9f{word-spacing:4.205333pt;}
.wsed{word-spacing:4.232000pt;}
.ws2c{word-spacing:4.256000pt;}
.ws93{word-spacing:4.293333pt;}
.ws37{word-spacing:4.354667pt;}
.ws40{word-spacing:4.416000pt;}
.ws82{word-spacing:4.458667pt;}
.ws53{word-spacing:4.477333pt;}
.ws85{word-spacing:4.538667pt;}
.ws81{word-spacing:4.560000pt;}
.ws63{word-spacing:4.600000pt;}
.wsff{word-spacing:4.610667pt;}
.ws3f{word-spacing:4.661333pt;}
.ws21{word-spacing:4.722667pt;}
.wsbb{word-spacing:4.784000pt;}
.ws62{word-spacing:4.845333pt;}
.wsbf{word-spacing:4.906667pt;}
.ws91{word-spacing:4.968000pt;}
.wsb2{word-spacing:5.016000pt;}
.ws1b{word-spacing:5.029333pt;}
.ws71{word-spacing:5.090667pt;}
.wsee{word-spacing:5.117333pt;}
.ws4b{word-spacing:5.152000pt;}
.ws16{word-spacing:5.213333pt;}
.ws9b{word-spacing:5.274667pt;}
.wscb{word-spacing:5.336000pt;}
.ws61{word-spacing:5.397333pt;}
.ws23{word-spacing:5.458667pt;}
.ws35{word-spacing:5.520000pt;}
.ws20{word-spacing:5.581333pt;}
.wsfb{word-spacing:5.624000pt;}
.ws74{word-spacing:5.642667pt;}
.ws1d{word-spacing:5.674667pt;}
.ws56{word-spacing:5.704000pt;}
.wsba{word-spacing:5.725333pt;}
.ws10{word-spacing:5.765333pt;}
.ws46{word-spacing:5.826667pt;}
.wsb6{word-spacing:5.877333pt;}
.ws9a{word-spacing:5.888000pt;}
.wsb5{word-spacing:5.928000pt;}
.ws70{word-spacing:5.949333pt;}
.ws4a{word-spacing:6.010667pt;}
.ws41{word-spacing:6.072000pt;}
.wsc5{word-spacing:6.133333pt;}
.ws6c{word-spacing:6.194667pt;}
.ws64{word-spacing:6.256000pt;}
.ws7d{word-spacing:6.282667pt;}
.ws58{word-spacing:6.317333pt;}
.ws44{word-spacing:6.378667pt;}
.wsfa{word-spacing:6.384000pt;}
.ws43{word-spacing:6.440000pt;}
.wse1{word-spacing:6.485333pt;}
.wsae{word-spacing:6.501333pt;}
.wsbe{word-spacing:6.562667pt;}
.wsa6{word-spacing:6.624000pt;}
.ws1a{word-spacing:6.685333pt;}
.ws7e{word-spacing:6.688000pt;}
.wsa4{word-spacing:6.746667pt;}
.ws13{word-spacing:6.808000pt;}
.ws48{word-spacing:6.869333pt;}
.ws8f{word-spacing:6.930667pt;}
.ws9e{word-spacing:6.992000pt;}
.ws110{word-spacing:7.000000pt;}
.wsc0{word-spacing:7.053333pt;}
.ws49{word-spacing:7.114667pt;}
.ws94{word-spacing:7.176000pt;}
.ws69{word-spacing:7.237333pt;}
.ws77{word-spacing:7.298667pt;}
.ws59{word-spacing:7.360000pt;}
.ws11{word-spacing:7.421333pt;}
.ws99{word-spacing:7.482667pt;}
.wsf3{word-spacing:7.544000pt;}
.wsb4{word-spacing:7.549333pt;}
.ws6b{word-spacing:7.605333pt;}
.ws28{word-spacing:7.666667pt;}
.ws72{word-spacing:7.728000pt;}
.wsd3{word-spacing:7.789333pt;}
.wsd4{word-spacing:7.802667pt;}
.wse{word-spacing:7.896000pt;}
.wse4{word-spacing:7.954667pt;}
.ws57{word-spacing:7.973333pt;}
.wsab{word-spacing:8.034667pt;}
.ws5e{word-spacing:8.096000pt;}
.wsc7{word-spacing:8.157333pt;}
.ws52{word-spacing:8.218667pt;}
.wsec{word-spacing:8.280000pt;}
.wsa5{word-spacing:8.402667pt;}
.ws95{word-spacing:8.464000pt;}
.wseb{word-spacing:8.525333pt;}
.wsde{word-spacing:8.586667pt;}
.ws30{word-spacing:8.613333pt;}
.wsaa{word-spacing:8.709333pt;}
.wsad{word-spacing:8.893333pt;}
.ws55{word-spacing:8.954667pt;}
.wsf2{word-spacing:9.016000pt;}
.wsda{word-spacing:9.069333pt;}
.wsf1{word-spacing:9.120000pt;}
.wsc1{word-spacing:9.138667pt;}
.wsca{word-spacing:9.200000pt;}
.wsc2{word-spacing:9.568000pt;}
.ws87{word-spacing:9.629333pt;}
.ws10d{word-spacing:9.744000pt;}
.ws10a{word-spacing:9.800000pt;}
.ws8a{word-spacing:9.874667pt;}
.ws3e{word-spacing:10.365333pt;}
.wscd{word-spacing:10.549333pt;}
.wsce{word-spacing:10.672000pt;}
.ws42{word-spacing:10.733333pt;}
.ws67{word-spacing:11.162667pt;}
.wsf7{word-spacing:11.592000pt;}
.wsbc{word-spacing:11.714667pt;}
.wse9{word-spacing:13.002667pt;}
.wsc6{word-spacing:15.640000pt;}
.wsf4{word-spacing:176.640000pt;}
._15{margin-left:-177.836000pt;}
._12{margin-left:-173.554933pt;}
._14{margin-left:-143.066133pt;}
._17{margin-left:-96.078667pt;}
._18{margin-left:-91.963200pt;}
._16{margin-left:-89.250133pt;}
._13{margin-left:-87.725067pt;}
._8{margin-left:-76.666667pt;}
._6{margin-left:-22.264000pt;}
._d{margin-left:-20.546667pt;}
._5{margin-left:-16.576000pt;}
._11{margin-left:-14.714133pt;}
._b{margin-left:-11.859733pt;}
._1c{margin-left:-9.676267pt;}
._c{margin-left:-7.126133pt;}
._2{margin-left:-5.904533pt;}
._7{margin-left:-4.916800pt;}
._1{margin-left:-3.624533pt;}
._e{margin-left:-2.719200pt;}
._0{margin-left:-1.681867pt;}
._3{width:1.073067pt;}
._10{width:2.287733pt;}
._a{width:3.348800pt;}
._4{width:8.220800pt;}
._f{width:15.272000pt;}
._9{width:18.235733pt;}
._1a{width:161.177867pt;}
._1b{width:172.900800pt;}
._19{width:174.258133pt;}
.fs8{font-size:32.933333pt;}
.fs7{font-size:39.866667pt;}
.fs0{font-size:45.333333pt;}
.fs3{font-size:46.800000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:61.333333pt;}
.fs1{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:78.234667pt;}
.y118{bottom:78.558133pt;}
.y10b{bottom:81.116400pt;}
.y16d{bottom:82.304133pt;}
.y1a7{bottom:83.363467pt;}
.y11a{bottom:83.889733pt;}
.y27{bottom:83.905467pt;}
.y3c{bottom:83.905600pt;}
.y6e{bottom:84.233333pt;}
.y16f{bottom:84.931733pt;}
.yb3{bottom:85.756267pt;}
.y1bf{bottom:87.966933pt;}
.y161{bottom:88.660533pt;}
.y94{bottom:88.675600pt;}
.ydf{bottom:90.922667pt;}
.y1e6{bottom:92.410933pt;}
.y117{bottom:92.558133pt;}
.y182{bottom:93.122933pt;}
.yf0{bottom:96.234667pt;}
.y16c{bottom:96.304133pt;}
.y238{bottom:97.742667pt;}
.y26{bottom:97.905467pt;}
.y119{bottom:99.007867pt;}
.y10a{bottom:99.116400pt;}
.yb2{bottom:99.756267pt;}
.y16e{bottom:100.049867pt;}
.y1a6{bottom:101.363467pt;}
.y6d{bottom:102.233333pt;}
.y1be{bottom:105.966933pt;}
.y1e5{bottom:106.410933pt;}
.y116{bottom:106.558133pt;}
.y160{bottom:106.660533pt;}
.y93{bottom:106.675600pt;}
.y181{bottom:107.122933pt;}
.yde{bottom:108.922667pt;}
.y16b{bottom:110.304133pt;}
.y237{bottom:111.742667pt;}
.y174{bottom:111.905467pt;}
.yb1{bottom:113.756267pt;}
.yef{bottom:114.234667pt;}
.y120{bottom:116.481733pt;}
.y109{bottom:117.116400pt;}
.y1a5{bottom:119.363467pt;}
.y6c{bottom:120.233333pt;}
.y115{bottom:120.558133pt;}
.y180{bottom:121.122933pt;}
.y18e{bottom:121.761733pt;}
.y1bd{bottom:123.966933pt;}
.y16a{bottom:124.304133pt;}
.y15f{bottom:124.660533pt;}
.y3b{bottom:124.675600pt;}
.y236{bottom:125.742667pt;}
.y173{bottom:125.905467pt;}
.ydd{bottom:126.922667pt;}
.y168{bottom:127.370133pt;}
.yb0{bottom:127.756267pt;}
.yfa{bottom:129.283867pt;}
.yee{bottom:132.234667pt;}
.y11f{bottom:134.481733pt;}
.y114{bottom:134.558133pt;}
.y108{bottom:135.116400pt;}
.y17f{bottom:135.122933pt;}
.y1e4{bottom:135.529067pt;}
.y18d{bottom:135.761733pt;}
.y1a4{bottom:137.363467pt;}
.y6b{bottom:138.233333pt;}
.y169{bottom:138.304133pt;}
.y235{bottom:139.742667pt;}
.y172{bottom:139.905467pt;}
.y167{bottom:141.370133pt;}
.yaf{bottom:141.756267pt;}
.y1bc{bottom:141.966933pt;}
.y15e{bottom:142.660533pt;}
.y3a{bottom:142.675600pt;}
.y25{bottom:143.026933pt;}
.yf9{bottom:143.283867pt;}
.ydc{bottom:144.922667pt;}
.y113{bottom:148.558133pt;}
.y17e{bottom:149.122933pt;}
.y1e3{bottom:149.529067pt;}
.y18c{bottom:149.761733pt;}
.yed{bottom:150.234667pt;}
.y11e{bottom:152.481733pt;}
.y107{bottom:153.116400pt;}
.y234{bottom:153.742667pt;}
.y171{bottom:153.905467pt;}
.y166{bottom:155.370133pt;}
.y6a{bottom:156.233333pt;}
.yf8{bottom:157.283867pt;}
.y1bb{bottom:159.966933pt;}
.y15d{bottom:160.660533pt;}
.y39{bottom:160.675600pt;}
.y24{bottom:161.026933pt;}
.y112{bottom:162.558133pt;}
.y101{bottom:162.922667pt;}
.y17d{bottom:163.122933pt;}
.y18b{bottom:163.761733pt;}
.y233{bottom:167.742667pt;}
.y170{bottom:167.905467pt;}
.yec{bottom:168.234667pt;}
.y165{bottom:169.370133pt;}
.ydb{bottom:170.481733pt;}
.y106{bottom:171.116400pt;}
.yf7{bottom:171.283867pt;}
.y69{bottom:174.233333pt;}
.y111{bottom:176.558133pt;}
.y17c{bottom:177.122933pt;}
.y18a{bottom:177.761733pt;}
.y1ba{bottom:177.966933pt;}
.y1e2{bottom:178.647200pt;}
.y15c{bottom:178.660533pt;}
.y38{bottom:178.675600pt;}
.y23{bottom:179.026933pt;}
.y110{bottom:180.018133pt;}
.y1a3{bottom:180.922667pt;}
.y232{bottom:181.742667pt;}
.y164{bottom:183.370133pt;}
.yf6{bottom:185.283867pt;}
.yeb{bottom:186.234667pt;}
.yda{bottom:188.481733pt;}
.y105{bottom:189.116400pt;}
.y17b{bottom:191.122933pt;}
.y189{bottom:191.761733pt;}
.y68{bottom:192.233333pt;}
.y1e1{bottom:192.647200pt;}
.y10f{bottom:194.018133pt;}
.y231{bottom:195.742667pt;}
.y1b9{bottom:195.966933pt;}
.y15b{bottom:196.660533pt;}
.y37{bottom:196.675600pt;}
.y22{bottom:197.026933pt;}
.y163{bottom:197.370133pt;}
.y1a2{bottom:198.922667pt;}
.yae{bottom:199.190533pt;}
.yf5{bottom:199.283867pt;}
.yea{bottom:204.234667pt;}
.y17a{bottom:205.122933pt;}
.y188{bottom:205.761733pt;}
.yd9{bottom:206.481733pt;}
.y1e0{bottom:206.647200pt;}
.y104{bottom:207.116400pt;}
.y10e{bottom:208.018133pt;}
.y211{bottom:209.742667pt;}
.y67{bottom:210.233333pt;}
.y264{bottom:212.703333pt;}
.yf4{bottom:213.283867pt;}
.y1b8{bottom:213.966933pt;}
.yad{bottom:214.308667pt;}
.y15a{bottom:214.660533pt;}
.y92{bottom:214.675600pt;}
.y21{bottom:215.026933pt;}
.y1a1{bottom:216.922667pt;}
.y179{bottom:219.122933pt;}
.y187{bottom:219.761733pt;}
.y10d{bottom:222.018133pt;}
.y36{bottom:222.234667pt;}
.y210{bottom:223.742667pt;}
.yd8{bottom:224.481733pt;}
.y134{bottom:225.116400pt;}
.y263{bottom:226.703333pt;}
.yf3{bottom:227.283867pt;}
.y66{bottom:228.233333pt;}
.y1b7{bottom:231.966933pt;}
.y159{bottom:232.660533pt;}
.y91{bottom:232.675600pt;}
.y20{bottom:233.026933pt;}
.y178{bottom:233.122933pt;}
.y186{bottom:233.761733pt;}
.y1a0{bottom:234.922667pt;}
.y1df{bottom:235.765200pt;}
.y10c{bottom:236.018133pt;}
.y20f{bottom:237.742667pt;}
.y34{bottom:240.234533pt;}
.y262{bottom:240.703333pt;}
.yf2{bottom:241.283867pt;}
.yd7{bottom:242.481600pt;}
.y133{bottom:243.116533pt;}
.y35{bottom:245.294533pt;}
.y65{bottom:246.233333pt;}
.y177{bottom:247.122933pt;}
.y185{bottom:247.761733pt;}
.y1de{bottom:249.765333pt;}
.y158{bottom:250.660533pt;}
.y90{bottom:250.675600pt;}
.y1f{bottom:251.026933pt;}
.y20e{bottom:251.742667pt;}
.y19f{bottom:252.922667pt;}
.y261{bottom:254.703333pt;}
.y1b6{bottom:257.525867pt;}
.y33{bottom:258.234533pt;}
.yd6{bottom:260.481600pt;}
.y132{bottom:261.116533pt;}
.y176{bottom:261.122933pt;}
.y64{bottom:264.233333pt;}
.y230{bottom:265.742667pt;}
.y8f{bottom:268.675600pt;}
.y260{bottom:268.703333pt;}
.y19e{bottom:270.922667pt;}
.ya5{bottom:271.792400pt;}
.y175{bottom:275.122933pt;}
.y1b5{bottom:275.525867pt;}
.y157{bottom:276.219600pt;}
.ye9{bottom:276.234533pt;}
.y1e{bottom:276.586000pt;}
.yd5{bottom:278.481600pt;}
.y1dd{bottom:278.883333pt;}
.y131{bottom:279.116533pt;}
.y22f{bottom:279.742667pt;}
.y20d{bottom:280.860800pt;}
.y25f{bottom:282.703333pt;}
.y32{bottom:283.793600pt;}
.y8e{bottom:286.675600pt;}
.y19d{bottom:288.922667pt;}
.y63{bottom:289.792400pt;}
.y1dc{bottom:292.883333pt;}
.y1b4{bottom:293.525867pt;}
.y22e{bottom:293.742667pt;}
.y156{bottom:294.219600pt;}
.yac{bottom:294.234533pt;}
.y1d{bottom:294.586000pt;}
.yd4{bottom:296.481600pt;}
.y25e{bottom:296.703333pt;}
.y130{bottom:297.116533pt;}
.y31{bottom:301.793600pt;}
.y8d{bottom:304.675600pt;}
.y1db{bottom:306.883333pt;}
.y19c{bottom:306.922667pt;}
.y22d{bottom:307.742667pt;}
.y62{bottom:307.792400pt;}
.y20c{bottom:309.978933pt;}
.y25d{bottom:310.703333pt;}
.y1b3{bottom:311.525867pt;}
.y155{bottom:312.219600pt;}
.yab{bottom:312.234533pt;}
.y1c{bottom:312.586000pt;}
.yd3{bottom:314.481600pt;}
.y12f{bottom:315.116533pt;}
.y30{bottom:319.793600pt;}
.y1da{bottom:320.883333pt;}
.y22c{bottom:321.742667pt;}
.y8c{bottom:322.675600pt;}
.y20b{bottom:323.978933pt;}
.y25c{bottom:324.703333pt;}
.y19b{bottom:324.922667pt;}
.y61{bottom:325.792400pt;}
.y1b2{bottom:329.525867pt;}
.y154{bottom:330.219600pt;}
.yaa{bottom:330.234533pt;}
.y1b{bottom:330.586000pt;}
.yd2{bottom:332.481600pt;}
.y12e{bottom:333.116533pt;}
.y22b{bottom:335.742667pt;}
.y2f{bottom:337.793600pt;}
.y25b{bottom:338.703333pt;}
.y8b{bottom:340.675600pt;}
.y19a{bottom:342.922667pt;}
.y60{bottom:343.792400pt;}
.y1d9{bottom:344.278800pt;}
.y153{bottom:348.219600pt;}
.ya9{bottom:348.234533pt;}
.y1a{bottom:348.586000pt;}
.y22a{bottom:349.742667pt;}
.yd1{bottom:350.481600pt;}
.y12d{bottom:351.116533pt;}
.y20a{bottom:353.097067pt;}
.y2e{bottom:355.793600pt;}
.y1d8{bottom:358.278800pt;}
.y103{bottom:358.675600pt;}
.y199{bottom:360.922667pt;}
.y5f{bottom:361.792400pt;}
.y1b1{bottom:362.644000pt;}
.y229{bottom:363.742667pt;}
.y152{bottom:366.219600pt;}
.y8a{bottom:366.234533pt;}
.y19{bottom:366.586000pt;}
.y209{bottom:367.097067pt;}
.y25a{bottom:367.821467pt;}
.yd0{bottom:368.481600pt;}
.y284{bottom:372.371600pt;}
.y2d{bottom:373.793600pt;}
.y102{bottom:376.675600pt;}
.y228{bottom:377.742667pt;}
.y198{bottom:378.922667pt;}
.y5e{bottom:379.792400pt;}
.y1d7{bottom:379.837867pt;}
.y208{bottom:381.097067pt;}
.y259{bottom:381.821467pt;}
.y151{bottom:384.219600pt;}
.y89{bottom:384.234533pt;}
.y18{bottom:384.586000pt;}
.y100{bottom:386.481600pt;}
.y1b0{bottom:388.203067pt;}
.y283{bottom:388.371600pt;}
.y227{bottom:391.742667pt;}
.y2c{bottom:391.793600pt;}
.ycf{bottom:394.040667pt;}
.y12c{bottom:394.675600pt;}
.ya4{bottom:395.792400pt;}
.y258{bottom:395.821467pt;}
.y197{bottom:396.922667pt;}
.y5d{bottom:397.792400pt;}
.y150{bottom:402.219600pt;}
.y88{bottom:402.234533pt;}
.y17{bottom:402.586000pt;}
.y282{bottom:404.371600pt;}
.yff{bottom:404.481600pt;}
.y226{bottom:405.742667pt;}
.y2b{bottom:409.793600pt;}
.y207{bottom:410.215067pt;}
.yce{bottom:412.040667pt;}
.y12b{bottom:412.675600pt;}
.y1af{bottom:413.762133pt;}
.y5c{bottom:415.792400pt;}
.y1d6{bottom:416.681733pt;}
.y257{bottom:419.216800pt;}
.y225{bottom:419.742667pt;}
.y14f{bottom:420.219600pt;}
.y87{bottom:420.234533pt;}
.y281{bottom:420.371600pt;}
.y16{bottom:420.586000pt;}
.yfe{bottom:422.481600pt;}
.y206{bottom:424.215067pt;}
.ye8{bottom:427.793600pt;}
.ycd{bottom:430.040667pt;}
.y12a{bottom:430.675600pt;}
.y1d5{bottom:430.681733pt;}
.y256{bottom:433.216800pt;}
.y224{bottom:433.742667pt;}
.y5b{bottom:433.792400pt;}
.y45{bottom:434.430000pt;}
.y280{bottom:436.371600pt;}
.y205{bottom:438.215067pt;}
.y14e{bottom:438.219600pt;}
.y86{bottom:438.234533pt;}
.y15{bottom:438.586000pt;}
.y1ae{bottom:439.321200pt;}
.yfd{bottom:440.481600pt;}
.y1d4{bottom:444.681733pt;}
.ya3{bottom:445.793600pt;}
.y223{bottom:447.742667pt;}
.ycc{bottom:448.040667pt;}
.y44{bottom:448.430000pt;}
.y129{bottom:448.675600pt;}
.y5a{bottom:451.792400pt;}
.y204{bottom:452.215067pt;}
.y27f{bottom:452.371600pt;}
.y255{bottom:454.775867pt;}
.y14d{bottom:456.219600pt;}
.y85{bottom:456.234533pt;}
.y11d{bottom:458.481600pt;}
.y1d3{bottom:458.681733pt;}
.y222{bottom:461.742667pt;}
.y43{bottom:462.430000pt;}
.ya2{bottom:463.793600pt;}
.y1ad{bottom:464.880267pt;}
.ycb{bottom:466.040667pt;}
.y203{bottom:466.215067pt;}
.y128{bottom:466.675600pt;}
.y27e{bottom:468.371600pt;}
.y59{bottom:469.792400pt;}
.y14{bottom:472.586533pt;}
.y84{bottom:474.234533pt;}
.y221{bottom:475.742667pt;}
.y42{bottom:476.430000pt;}
.y196{bottom:476.481600pt;}
.y14c{bottom:481.778667pt;}
.ya1{bottom:481.793600pt;}
.yca{bottom:484.040667pt;}
.y27d{bottom:484.371600pt;}
.y127{bottom:484.675600pt;}
.y1d2{bottom:487.799867pt;}
.y220{bottom:489.742667pt;}
.y41{bottom:490.430000pt;}
.y1ac{bottom:490.439333pt;}
.y254{bottom:491.619733pt;}
.y83{bottom:492.234533pt;}
.y195{bottom:494.481600pt;}
.y13{bottom:494.586533pt;}
.y202{bottom:495.333200pt;}
.y58{bottom:495.351467pt;}
.y14b{bottom:499.778667pt;}
.ya0{bottom:499.793600pt;}
.y27c{bottom:500.371600pt;}
.y1d1{bottom:501.799867pt;}
.yc9{bottom:502.040667pt;}
.y126{bottom:502.675600pt;}
.y21f{bottom:503.742667pt;}
.y40{bottom:504.430000pt;}
.y253{bottom:505.619733pt;}
.y201{bottom:509.333200pt;}
.y82{bottom:510.234533pt;}
.y194{bottom:512.481600pt;}
.y57{bottom:513.351467pt;}
.y1d0{bottom:515.799867pt;}
.y1ab{bottom:515.998400pt;}
.y27b{bottom:516.371600pt;}
.y21e{bottom:517.742667pt;}
.y14a{bottom:517.778667pt;}
.y9f{bottom:517.793600pt;}
.y3f{bottom:518.430000pt;}
.y252{bottom:519.619733pt;}
.yc8{bottom:520.040667pt;}
.y184{bottom:520.675600pt;}
.y200{bottom:523.333200pt;}
.y81{bottom:528.234533pt;}
.y1cf{bottom:529.799867pt;}
.y193{bottom:530.481600pt;}
.y56{bottom:531.351467pt;}
.y21d{bottom:531.742667pt;}
.y27a{bottom:532.371600pt;}
.y3e{bottom:532.430000pt;}
.y251{bottom:533.619733pt;}
.y149{bottom:535.778667pt;}
.y9e{bottom:535.793600pt;}
.y1ff{bottom:537.333200pt;}
.yc7{bottom:538.040667pt;}
.y183{bottom:538.675600pt;}
.y1aa{bottom:541.557467pt;}
.y80{bottom:546.234533pt;}
.y3d{bottom:546.430000pt;}
.y250{bottom:547.619733pt;}
.y279{bottom:548.371600pt;}
.y12{bottom:548.587867pt;}
.y55{bottom:549.351467pt;}
.y1fe{bottom:551.333200pt;}
.y148{bottom:553.778667pt;}
.y9d{bottom:553.793600pt;}
.yc6{bottom:556.040667pt;}
.y1ce{bottom:558.917867pt;}
.y21c{bottom:560.860800pt;}
.y24f{bottom:561.619733pt;}
.y7f{bottom:564.234533pt;}
.y278{bottom:564.371600pt;}
.y11{bottom:564.587867pt;}
.y1fd{bottom:565.333200pt;}
.y1a9{bottom:567.116533pt;}
.y54{bottom:567.351467pt;}
.y147{bottom:571.778667pt;}
.y9c{bottom:571.793600pt;}
.y1cd{bottom:572.917867pt;}
.yc5{bottom:574.040667pt;}
.y21b{bottom:574.860800pt;}
.y24e{bottom:575.619733pt;}
.y1fc{bottom:579.333200pt;}
.y277{bottom:580.371600pt;}
.y10{bottom:580.587867pt;}
.y7e{bottom:582.234667pt;}
.y53{bottom:585.351467pt;}
.y1cc{bottom:586.917867pt;}
.y146{bottom:589.778667pt;}
.y9b{bottom:589.793600pt;}
.yc4{bottom:592.040667pt;}
.y1a8{bottom:592.675600pt;}
.y1fb{bottom:593.333200pt;}
.y276{bottom:596.371600pt;}
.yf{bottom:596.587867pt;}
.ye7{bottom:597.352667pt;}
.y7d{bottom:600.234667pt;}
.y52{bottom:603.351467pt;}
.y21a{bottom:603.978933pt;}
.y24d{bottom:604.737867pt;}
.y1fa{bottom:607.333200pt;}
.y145{bottom:607.778667pt;}
.y9a{bottom:607.793600pt;}
.yc3{bottom:610.040667pt;}
.y275{bottom:612.371600pt;}
.ye{bottom:612.587867pt;}
.ye6{bottom:615.352667pt;}
.y1cb{bottom:616.036000pt;}
.y219{bottom:617.978933pt;}
.y7c{bottom:618.234667pt;}
.y1f9{bottom:621.333200pt;}
.y51{bottom:621.351467pt;}
.y144{bottom:625.778667pt;}
.y99{bottom:625.793600pt;}
.yfc{bottom:628.040667pt;}
.y274{bottom:628.371600pt;}
.yd{bottom:628.587867pt;}
.y1ca{bottom:630.036000pt;}
.y218{bottom:631.978933pt;}
.ye5{bottom:633.352667pt;}
.y24c{bottom:633.856000pt;}
.y1f8{bottom:635.333200pt;}
.yc2{bottom:635.599733pt;}
.y125{bottom:636.234667pt;}
.y50{bottom:639.351467pt;}
.y143{bottom:643.778667pt;}
.y7b{bottom:643.793600pt;}
.y1c9{bottom:644.036000pt;}
.y273{bottom:644.371600pt;}
.yc{bottom:644.587867pt;}
.y217{bottom:645.978933pt;}
.yfb{bottom:646.040667pt;}
.y24b{bottom:647.856000pt;}
.y1f7{bottom:649.333200pt;}
.ye4{bottom:651.352667pt;}
.yc1{bottom:653.599733pt;}
.y124{bottom:654.234667pt;}
.y4f{bottom:657.351467pt;}
.y272{bottom:660.371600pt;}
.yb{bottom:660.587867pt;}
.y142{bottom:661.778667pt;}
.y7a{bottom:661.793600pt;}
.y24a{bottom:661.856000pt;}
.y1f6{bottom:663.333200pt;}
.y11c{bottom:664.040667pt;}
.ye3{bottom:669.352667pt;}
.yc0{bottom:671.599733pt;}
.y123{bottom:672.234667pt;}
.y1c8{bottom:673.154133pt;}
.y216{bottom:675.097067pt;}
.y4e{bottom:675.351467pt;}
.y249{bottom:675.856000pt;}
.y271{bottom:676.371600pt;}
.ya{bottom:676.587867pt;}
.y1f5{bottom:677.333200pt;}
.y141{bottom:679.778667pt;}
.y79{bottom:679.793600pt;}
.y192{bottom:682.040667pt;}
.y1c7{bottom:687.154133pt;}
.ye2{bottom:687.352667pt;}
.ybf{bottom:689.599733pt;}
.y248{bottom:689.856000pt;}
.y122{bottom:690.234667pt;}
.y1f4{bottom:691.333200pt;}
.y270{bottom:692.371600pt;}
.y9{bottom:692.587867pt;}
.y4d{bottom:693.351333pt;}
.y140{bottom:697.778667pt;}
.y78{bottom:697.793600pt;}
.y191{bottom:700.040667pt;}
.y1c6{bottom:701.154133pt;}
.y247{bottom:703.856000pt;}
.y215{bottom:704.215067pt;}
.y1f3{bottom:705.333200pt;}
.ye1{bottom:705.352667pt;}
.ybe{bottom:707.599733pt;}
.y121{bottom:708.234667pt;}
.y26f{bottom:708.371600pt;}
.y4c{bottom:711.351333pt;}
.y1c5{bottom:715.154133pt;}
.y13f{bottom:715.778667pt;}
.y77{bottom:715.793600pt;}
.y246{bottom:717.856000pt;}
.y190{bottom:718.040667pt;}
.y214{bottom:718.215067pt;}
.y1f2{bottom:719.333200pt;}
.ye0{bottom:723.352667pt;}
.y26e{bottom:724.371600pt;}
.ybd{bottom:725.599733pt;}
.y4b{bottom:729.351333pt;}
.y245{bottom:731.856000pt;}
.y213{bottom:732.215067pt;}
.y1f1{bottom:733.333200pt;}
.y13e{bottom:733.778667pt;}
.y76{bottom:733.793600pt;}
.y18f{bottom:736.040667pt;}
.y1c4{bottom:738.549600pt;}
.y26d{bottom:740.371600pt;}
.y8{bottom:740.587467pt;}
.y162{bottom:741.337733pt;}
.ya8{bottom:741.352667pt;}
.ybc{bottom:743.599733pt;}
.y244{bottom:745.856000pt;}
.y1f0{bottom:747.333200pt;}
.y4a{bottom:747.351333pt;}
.y75{bottom:751.793600pt;}
.y1c3{bottom:752.549600pt;}
.y26c{bottom:756.371600pt;}
.y13d{bottom:759.337733pt;}
.ya7{bottom:759.352667pt;}
.y243{bottom:759.856000pt;}
.y1ef{bottom:761.333200pt;}
.ybb{bottom:761.599733pt;}
.y49{bottom:765.351333pt;}
.y1c2{bottom:766.549600pt;}
.y74{bottom:769.793600pt;}
.y7{bottom:771.638133pt;}
.y26b{bottom:772.371600pt;}
.y242{bottom:773.856000pt;}
.y13c{bottom:777.337733pt;}
.ya6{bottom:777.352667pt;}
.yba{bottom:779.599733pt;}
.y48{bottom:783.351333pt;}
.y73{bottom:787.793600pt;}
.y241{bottom:787.856000pt;}
.y1c1{bottom:788.108667pt;}
.y26a{bottom:788.371600pt;}
.y1ee{bottom:790.451333pt;}
.y13b{bottom:795.337733pt;}
.y98{bottom:795.352667pt;}
.yb9{bottom:797.599733pt;}
.y240{bottom:801.856000pt;}
.y269{bottom:804.371600pt;}
.y1ed{bottom:804.451333pt;}
.y6{bottom:805.355467pt;}
.y72{bottom:805.793600pt;}
.y13a{bottom:813.337733pt;}
.y97{bottom:813.352667pt;}
.y1c0{bottom:815.336933pt;}
.yb8{bottom:815.599733pt;}
.y23f{bottom:815.856000pt;}
.y47{bottom:817.351333pt;}
.y1ec{bottom:818.451333pt;}
.y71{bottom:823.793600pt;}
.y5{bottom:824.406133pt;}
.y23e{bottom:829.856000pt;}
.y139{bottom:831.337733pt;}
.y96{bottom:831.352667pt;}
.y1eb{bottom:832.451333pt;}
.yb7{bottom:833.599733pt;}
.y268{bottom:835.489733pt;}
.y70{bottom:841.793600pt;}
.y212{bottom:841.846667pt;}
.y4{bottom:843.456800pt;}
.y23d{bottom:843.856000pt;}
.y138{bottom:849.337733pt;}
.y95{bottom:849.352667pt;}
.y267{bottom:851.489733pt;}
.yb6{bottom:851.599733pt;}
.y1ea{bottom:855.846667pt;}
.y23c{bottom:857.856000pt;}
.y6f{bottom:859.793600pt;}
.y137{bottom:867.337733pt;}
.y46{bottom:867.352667pt;}
.y266{bottom:867.489733pt;}
.yb5{bottom:869.599733pt;}
.y1e9{bottom:869.846667pt;}
.y23b{bottom:871.856000pt;}
.y1e8{bottom:883.846667pt;}
.y136{bottom:885.337733pt;}
.y2a{bottom:885.352667pt;}
.y11b{bottom:885.599733pt;}
.y23a{bottom:885.856000pt;}
.y239{bottom:899.856000pt;}
.y135{bottom:903.337733pt;}
.y29{bottom:903.352667pt;}
.yb4{bottom:903.599733pt;}
.y265{bottom:904.277200pt;}
.y1e7{bottom:905.405733pt;}
.y3{bottom:916.833067pt;}
.y2{bottom:930.199733pt;}
.y1{bottom:943.566400pt;}
.y28{bottom:951.401467pt;}
.h2{height:31.476562pt;}
.hb{height:33.248177pt;}
.he{height:34.338542pt;}
.h3{height:37.807292pt;}
.hc{height:41.567708pt;}
.h9{height:42.255208pt;}
.hd{height:42.585938pt;}
.hf{height:44.185885pt;}
.h7{height:46.703125pt;}
.h4{height:48.796875pt;}
.ha{height:48.927083pt;}
.h5{height:51.151042pt;}
.h8{height:60.046875pt;}
.h6{height:62.790469pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x33{left:102.081333pt;}
.x21{left:103.973733pt;}
.x34{left:106.003733pt;}
.x3{left:106.963867pt;}
.x7{left:113.385867pt;}
.x32{left:118.719200pt;}
.x16{left:119.702400pt;}
.x27{left:121.481333pt;}
.xb{left:128.504000pt;}
.x26{left:133.278133pt;}
.x1b{left:136.391867pt;}
.x35{left:139.271733pt;}
.x36{left:148.414800pt;}
.x1a{left:151.509867pt;}
.x28{left:170.078800pt;}
.x10{left:174.054133pt;}
.x17{left:178.103467pt;}
.x30{left:184.434933pt;}
.xf{left:201.520133pt;}
.x2c{left:209.146933pt;}
.x2e{left:213.870400pt;}
.x2{left:216.556400pt;}
.x31{left:241.177733pt;}
.x2d{left:250.625333pt;}
.xc{left:286.073867pt;}
.xd{left:291.041200pt;}
.x6{left:305.173867pt;}
.x2b{left:317.982000pt;}
.x18{left:321.579467pt;}
.x37{left:343.124800pt;}
.x4{left:350.294267pt;}
.x22{left:356.071600pt;}
.xe{left:359.224667pt;}
.x29{left:362.176533pt;}
.x2a{left:369.322133pt;}
.xa{left:374.342800pt;}
.x9{left:376.024667pt;}
.x5{left:381.624667pt;}
.x2f{left:384.440267pt;}
.x8{left:389.524667pt;}
.x19{left:562.982933pt;}
.x23{left:569.218000pt;}
.x24{left:583.218000pt;}
.x1c{left:591.836667pt;}
.x25{left:597.218000pt;}
.x1d{left:605.836667pt;}
.x11{left:618.656533pt;}
.x1e{left:619.836667pt;}
.x12{left:632.656533pt;}
.x1f{left:633.836667pt;}
.x13{left:646.656533pt;}
.x20{left:647.836667pt;}
.x14{left:660.656533pt;}
.x15{left:674.656533pt;}
}




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