
    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_f88f6bf44b9b3ba1041284b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_4d131e20983860ab0bfdb70e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_e7bf1d2cba26615fa301b15d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_50e68b999e4793be5de33192.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_33b449d4720cfec1f42ad659.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_695c7a7fc6e8e263923a208a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c9a70b30d726ec0530f852f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6e7aa83d7ed1cc448003c15a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.695312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3148f0be7379c2a64b8d28db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bfbcea0b1f6dfc97c21b0d3d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.871582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ec6da20d8212e227c3e9f145.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a0df8baddb5b2769f76e05d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bb1e6406694012e35aec2654.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871582;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:ffe;src:url('chunks/assets/font_b9ad8bd4f5b3f26e3fa005b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871582;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:fff;src:url('chunks/assets/font_8526e903f5248286cf03084c.woff2')format("woff");}.fff{font-family:fff;line-height:0.871582;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:ff10;src:url('chunks/assets/font_c78af1c38077137ed050b50f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871582;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:ff11;src:url('chunks/assets/font_f7bf4f7d80a35877399405f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.871582;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:ff12;src:url('chunks/assets/font_ddd44134c4418c3e9a47f1eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871582;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:ff13;src:url('chunks/assets/font_2de450a70213ca43534dfbb8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871582;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:ff14;src:url('chunks/assets/font_a22e5dadb91d05dec43f586b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.871582;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:ff15;src:url('chunks/assets/font_a8d54d5c59f20552a77cb9b9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871582;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:ff16;src:url('chunks/assets/font_804369b70ce7eef8a9136b8f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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:ff17;src:url('chunks/assets/font_024ace93a481afacfdf274c4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-62.760000px;}
.v4{vertical-align:-61.200000px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:86.400000px;}
.ls21{letter-spacing:-1.176000px;}
.ls20{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.378600px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.341400px;}
.lse{letter-spacing:-0.322800px;}
.ls12{letter-spacing:-0.306000px;}
.ls18{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.126000px;}
.ls17{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.030000px;}
.lsd{letter-spacing:-0.028200px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.028200px;}
.ls29{letter-spacing:0.108000px;}
.ls23{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.264000px;}
.ls1d{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.702000px;}
.ls16{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.738000px;}
.ls25{letter-spacing:0.900000px;}
.ls15{letter-spacing:6.120000px;}
.ls5{letter-spacing:11.406000px;}
.ls3{letter-spacing:11.922000px;}
.ls6{letter-spacing:11.964000px;}
.ls7{letter-spacing:18.048000px;}
.ls8{letter-spacing:18.894000px;}
.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;}
}
.ws37{word-spacing:-66.240000px;}
.ws2e{word-spacing:-54.000000px;}
.wse{word-spacing:-30.456000px;}
.ws7{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.088200px;}
.ws3{word-spacing:-21.031800px;}
.ws4{word-spacing:-20.737200px;}
.ws6{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.681400px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws33{word-spacing:-16.865400px;}
.ws39{word-spacing:-16.822200px;}
.ws35{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.560000px;}
.ws36{word-spacing:-16.450800px;}
.ws2d{word-spacing:-16.254600px;}
.ws3b{word-spacing:-16.102200px;}
.ws38{word-spacing:-15.384000px;}
.wsf{word-spacing:-14.238000px;}
.ws2{word-spacing:-14.220000px;}
.ws31{word-spacing:-14.202000px;}
.ws34{word-spacing:-14.004000px;}
.ws2b{word-spacing:-13.860000px;}
.ws3e{word-spacing:-13.716000px;}
.ws32{word-spacing:-13.680000px;}
.ws3a{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.ws2f{word-spacing:-13.392000px;}
.ws3d{word-spacing:-13.374000px;}
.wsd{word-spacing:-13.140000px;}
.ws9{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.000000px;}
.ws25{word-spacing:-0.918000px;}
.ws18{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.594000px;}
.ws20{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.396000px;}
.ws24{word-spacing:-0.372000px;}
.ws1f{word-spacing:-0.366000px;}
.ws21{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.072000px;}
.ws22{word-spacing:-0.006000px;}
.ws10{word-spacing:0.000000px;}
.ws11{word-spacing:0.114000px;}
.ws16{word-spacing:0.180000px;}
.ws1a{word-spacing:0.198000px;}
.ws1c{word-spacing:0.216000px;}
.ws2c{word-spacing:0.218160px;}
.ws14{word-spacing:0.222000px;}
.ws19{word-spacing:0.252000px;}
.ws1e{word-spacing:0.432000px;}
.ws1d{word-spacing:0.714000px;}
.ws13{word-spacing:0.756000px;}
.ws17{word-spacing:1.326000px;}
.ws26{word-spacing:2.358000px;}
.ws27{word-spacing:5.220000px;}
.ws28{word-spacing:5.760000px;}
.ws29{word-spacing:7.986000px;}
.ws2a{word-spacing:7.992000px;}
.ws3c{word-spacing:52.164000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._3{width:1.254033px;}
._4{width:3.180000px;}
._b{width:4.320000px;}
._c{width:6.318000px;}
._d{width:7.422033px;}
._a{width:8.615967px;}
._9{width:9.990000px;}
._12{width:11.322000px;}
._11{width:12.467900px;}
._5{width:16.703988px;}
._6{width:17.760033px;}
._e{width:19.193967px;}
._f{width:20.520000px;}
._7{width:25.739994px;}
._8{width:27.348051px;}
._17{width:65.340000px;}
._13{width:180.408000px;}
._2{width:206.571120px;}
._14{width:463.404000px;}
._16{width:726.744000px;}
._15{width:841.044000px;}
._10{width:1093.347087px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.880000px;}
.y60{bottom:3.240000px;}
.y64{bottom:3.420000px;}
.yc6{bottom:3.600000px;}
.ydf{bottom:3.780000px;}
.yca{bottom:3.960000px;}
.ye2{bottom:4.140000px;}
.y8e{bottom:6.300000px;}
.y90{bottom:6.660000px;}
.yd2{bottom:7.194000px;}
.yae{bottom:7.200000px;}
.yd1{bottom:7.554000px;}
.y41{bottom:7.560000px;}
.yea{bottom:7.590000px;}
.y45{bottom:8.640000px;}
.y78{bottom:9.360000px;}
.y6f{bottom:9.534000px;}
.y72{bottom:9.540000px;}
.y70{bottom:9.576000px;}
.y43{bottom:9.720000px;}
.y168{bottom:9.765000px;}
.y5a{bottom:9.900000px;}
.y66{bottom:10.260000px;}
.y62{bottom:10.305000px;}
.y5c{bottom:18.360000px;}
.y6a{bottom:18.720000px;}
.y5f{bottom:18.900000px;}
.y3f{bottom:22.680000px;}
.y145{bottom:22.710000px;}
.yc5{bottom:22.725000px;}
.yc9{bottom:23.040000px;}
.yce{bottom:30.420000px;}
.ye8{bottom:30.450000px;}
.y15f{bottom:30.780000px;}
.y159{bottom:32.580000px;}
.y163{bottom:32.760000px;}
.y16a{bottom:32.940000px;}
.y15c{bottom:33.120000px;}
.y166{bottom:33.165000px;}
.y12d{bottom:41.580000px;}
.y144{bottom:41.610000px;}
.y14b{bottom:41.760000px;}
.yfa{bottom:41.940000px;}
.y12c{bottom:60.660000px;}
.y1{bottom:76.860000px;}
.y28{bottom:95.580000px;}
.yd4{bottom:98.100000px;}
.y135{bottom:99.720000px;}
.y117{bottom:100.080000px;}
.y71{bottom:104.040000px;}
.ya3{bottom:104.760000px;}
.y27{bottom:111.060000px;}
.yfd{bottom:112.140000px;}
.ya2{bottom:120.420000px;}
.y134{bottom:122.940000px;}
.y116{bottom:123.300000px;}
.y26{bottom:126.540000px;}
.yd3{bottom:126.720000px;}
.yfc{bottom:135.396000px;}
.ya1{bottom:135.936000px;}
.y25{bottom:142.236000px;}
.y3a{bottom:142.596000px;}
.y133{bottom:146.196000px;}
.y115{bottom:146.556000px;}
.y6e{bottom:149.076000px;}
.yd0{bottom:149.976000px;}
.ya0{bottom:151.590000px;}
.y39{bottom:158.070000px;}
.yfb{bottom:158.610000px;}
.y9f{bottom:167.070000px;}
.y157{bottom:168.150000px;}
.y132{bottom:169.410000px;}
.y114{bottom:169.950000px;}
.y6d{bottom:171.570000px;}
.ycd{bottom:173.190000px;}
.y24{bottom:173.370000px;}
.y38{bottom:173.550000px;}
.yf9{bottom:181.830000px;}
.y9e{bottom:182.190000px;}
.y156{bottom:183.630000px;}
.y37{bottom:189.210000px;}
.y131{bottom:192.630000px;}
.y113{bottom:193.170000px;}
.y6c{bottom:194.790000px;}
.ycf{bottom:196.410000px;}
.y155{bottom:199.110000px;}
.y36{bottom:204.690000px;}
.y9d{bottom:215.850000px;}
.y112{bottom:216.390000px;}
.y6b{bottom:218.190000px;}
.y35{bottom:220.170000px;}
.ycc{bottom:223.050000px;}
.y154{bottom:232.230000px;}
.y34{bottom:235.650000px;}
.y130{bottom:239.250000px;}
.y111{bottom:239.610000px;}
.y69{bottom:241.410000px;}
.yf8{bottom:242.850000px;}
.y9c{bottom:249.690000px;}
.y33{bottom:251.310000px;}
.y16f{bottom:251.490000px;}
.ycb{bottom:256.170000px;}
.y12f{bottom:262.470000px;}
.y110{bottom:262.830000px;}
.y171{bottom:263.190000px;}
.y9b{bottom:265.170000px;}
.y153{bottom:266.250000px;}
.yf7{bottom:271.470000px;}
.y68{bottom:273.090000px;}
.y9a{bottom:280.830000px;}
.y152{bottom:281.730000px;}
.y32{bottom:282.090000px;}
.y12e{bottom:285.690000px;}
.y10f{bottom:286.050000px;}
.yf6{bottom:294.690000px;}
.y99{bottom:296.310000px;}
.yc8{bottom:303.150000px;}
.y67{bottom:304.950000px;}
.y12b{bottom:308.910000px;}
.y10e{bottom:309.450000px;}
.y98{bottom:311.790000px;}
.y31{bottom:313.770000px;}
.y151{bottom:314.850000px;}
.yf5{bottom:317.910000px;}
.y23{bottom:321.690000px;}
.y65{bottom:328.170000px;}
.y10d{bottom:332.670000px;}
.y22{bottom:337.170000px;}
.yf4{bottom:341.130000px;}
.yc7{bottom:341.850000px;}
.y97{bottom:345.090000px;}
.y150{bottom:348.690000px;}
.y63{bottom:351.390000px;}
.y21{bottom:352.650000px;}
.y10c{bottom:355.890000px;}
.y14f{bottom:364.350000px;}
.yc4{bottom:365.070000px;}
.y20{bottom:368.130000px;}
.y96{bottom:378.570000px;}
.y61{bottom:383.250000px;}
.y1f{bottom:383.790000px;}
.y10b{bottom:384.690000px;}
.y12a{bottom:389.055000px;}
.y14e{bottom:393.015000px;}
.y1e{bottom:399.315000px;}
.y5e{bottom:406.515000px;}
.yc3{bottom:407.055000px;}
.y184{bottom:408.495000px;}
.y95{bottom:412.455000px;}
.y1d{bottom:414.795000px;}
.y10a{bottom:416.055000px;}
.y14d{bottom:416.235000px;}
.y129{bottom:417.495000px;}
.y183{bottom:424.155000px;}
.yf3{bottom:427.575000px;}
.y1c{bottom:430.095000px;}
.y5b{bottom:438.375000px;}
.y14c{bottom:439.455000px;}
.y182{bottom:439.635000px;}
.yc2{bottom:440.175000px;}
.y128{bottom:440.895000px;}
.y94{bottom:445.575000px;}
.yf2{bottom:450.795000px;}
.y181{bottom:455.115000px;}
.y14a{bottom:462.675000px;}
.y127{bottom:464.115000px;}
.y1b{bottom:467.895000px;}
.y59{bottom:470.235000px;}
.y180{bottom:470.595000px;}
.yf1{bottom:474.015000px;}
.yc1{bottom:474.195000px;}
.y93{bottom:479.595000px;}
.y1a{bottom:483.375000px;}
.y17f{bottom:486.255000px;}
.y126{bottom:487.335000px;}
.yc0{bottom:489.675000px;}
.yf0{bottom:497.235000px;}
.y17e{bottom:501.735000px;}
.ybf{bottom:504.975000px;}
.y19{bottom:507.495000px;}
.y125{bottom:510.555000px;}
.y58{bottom:511.995000px;}
.y92{bottom:512.715000px;}
.y17d{bottom:517.215000px;}
.yef{bottom:520.455000px;}
.ybe{bottom:520.815000px;}
.y18{bottom:522.975000px;}
.y149{bottom:523.695000px;}
.y17c{bottom:532.695000px;}
.y124{bottom:533.775000px;}
.ybd{bottom:536.475000px;}
.y17{bottom:538.455000px;}
.yee{bottom:543.675000px;}
.y57{bottom:545.835000px;}
.y17b{bottom:548.355000px;}
.ybc{bottom:551.595000px;}
.y148{bottom:552.315000px;}
.y16{bottom:554.115000px;}
.y123{bottom:556.995000px;}
.y91{bottom:559.695000px;}
.y56{bottom:561.495000px;}
.y17a{bottom:563.835000px;}
.yed{bottom:567.075000px;}
.y15{bottom:569.595000px;}
.y147{bottom:575.535000px;}
.y55{bottom:577.335000px;}
.y179{bottom:579.315000px;}
.y122{bottom:580.395000px;}
.y8f{bottom:582.195000px;}
.ybb{bottom:583.095000px;}
.y14{bottom:585.075000px;}
.yec{bottom:590.295000px;}
.y54{bottom:592.995000px;}
.y178{bottom:594.795000px;}
.y146{bottom:598.935000px;}
.y13{bottom:600.555000px;}
.y121{bottom:603.615000px;}
.y8d{bottom:604.695000px;}
.y53{bottom:608.655000px;}
.y177{bottom:610.095000px;}
.yeb{bottom:613.515000px;}
.y12{bottom:616.215000px;}
.yba{bottom:616.395000px;}
.y143{bottom:622.155000px;}
.y52{bottom:624.135000px;}
.y120{bottom:626.835000px;}
.y11{bottom:631.515000px;}
.ye7{bottom:636.735000px;}
.y176{bottom:641.625000px;}
.y8c{bottom:646.125000px;}
.yb9{bottom:650.265000px;}
.y11f{bottom:653.505000px;}
.y175{bottom:657.105000px;}
.y51{bottom:657.285000px;}
.ye9{bottom:659.985000px;}
.y8b{bottom:661.605000px;}
.yb8{bottom:665.925000px;}
.y11e{bottom:668.985000px;}
.y174{bottom:672.765000px;}
.y8a{bottom:677.085000px;}
.y10{bottom:679.015500px;}
.y142{bottom:683.205000px;}
.y11d{bottom:684.465000px;}
.y50{bottom:686.265000px;}
.y89{bottom:692.565000px;}
.yb7{bottom:694.365000px;}
.yf{bottom:695.707500px;}
.ye6{bottom:702.105000px;}
.y173{bottom:703.545000px;}
.y88{bottom:708.225000px;}
.y4f{bottom:709.485000px;}
.ye{bottom:710.565000px;}
.y141{bottom:711.825000px;}
.y170{bottom:716.865000px;}
.y11c{bottom:717.585000px;}
.yb6{bottom:717.765000px;}
.y16e{bottom:723.525000px;}
.y87{bottom:723.705000px;}
.y30{bottom:727.305000px;}
.y4e{bottom:732.885000px;}
.ye5{bottom:733.245000px;}
.y140{bottom:735.045000px;}
.y16d{bottom:738.825000px;}
.y86{bottom:739.185000px;}
.yb5{bottom:740.985000px;}
.y2f{bottom:742.965000px;}
.yd{bottom:744.045000px;}
.ye4{bottom:748.725000px;}
.y172{bottom:750.525000px;}
.y11b{bottom:751.605000px;}
.y85{bottom:754.665000px;}
.y4d{bottom:756.105000px;}
.y109{bottom:757.185000px;}
.y13f{bottom:758.265000px;}
.y2e{bottom:758.445000px;}
.yb4{bottom:764.205000px;}
.yc{bottom:766.365000px;}
.y11a{bottom:767.085000px;}
.y84{bottom:770.145000px;}
.y2d{bottom:774.105000px;}
.y4c{bottom:779.325000px;}
.y108{bottom:780.405000px;}
.y13e{bottom:781.485000px;}
.y119{bottom:782.745000px;}
.yb{bottom:784.185000px;}
.y83{bottom:785.445000px;}
.y16c{bottom:785.805000px;}
.yb3{bottom:787.425000px;}
.ye3{bottom:797.325000px;}
.y82{bottom:801.285000px;}
.ya{bottom:802.005000px;}
.y4b{bottom:802.545000px;}
.y107{bottom:803.625000px;}
.y2c{bottom:805.245000px;}
.yb2{bottom:810.645000px;}
.y118{bottom:813.885000px;}
.y169{bottom:814.425000px;}
.y81{bottom:816.765000px;}
.y13d{bottom:823.605000px;}
.y4a{bottom:825.765000px;}
.y106{bottom:826.845000px;}
.yb1{bottom:833.865000px;}
.y9{bottom:834.405000px;}
.y16b{bottom:837.645000px;}
.ye1{bottom:844.305000px;}
.y49{bottom:848.985000px;}
.y80{bottom:849.885000px;}
.y105{bottom:850.065000px;}
.y13c{bottom:852.225000px;}
.yb0{bottom:857.265000px;}
.y165{bottom:863.025000px;}
.y48{bottom:872.385000px;}
.y104{bottom:873.285000px;}
.y13b{bottom:875.445000px;}
.y8{bottom:875.625000px;}
.yaf{bottom:880.485000px;}
.y7f{bottom:881.385000px;}
.ye0{bottom:883.005000px;}
.y167{bottom:886.425000px;}
.y47{bottom:895.650000px;}
.y103{bottom:896.730000px;}
.y13a{bottom:898.710000px;}
.y7{bottom:899.610000px;}
.yad{bottom:903.750000px;}
.y7e{bottom:903.930000px;}
.yde{bottom:906.270000px;}
.y162{bottom:911.850000px;}
.y46{bottom:918.870000px;}
.y102{bottom:919.950000px;}
.y139{bottom:921.930000px;}
.y6{bottom:923.910000px;}
.y7d{bottom:926.430000px;}
.yac{bottom:930.210000px;}
.y164{bottom:935.070000px;}
.y44{bottom:942.090000px;}
.y101{bottom:943.170000px;}
.ydd{bottom:948.390000px;}
.y7c{bottom:948.930000px;}
.y2b{bottom:962.610000px;}
.yab{bottom:963.870000px;}
.y161{bottom:964.050000px;}
.y100{bottom:966.390000px;}
.y42{bottom:966.570000px;}
.y7b{bottom:971.430000px;}
.ydc{bottom:979.530000px;}
.yff{bottom:989.610000px;}
.y40{bottom:991.950000px;}
.y15e{bottom:992.670000px;}
.y2a{bottom:993.750000px;}
.y7a{bottom:993.930000px;}
.y138{bottom:995.010000px;}
.ydb{bottom:995.190000px;}
.yaa{bottom:996.990000px;}
.y137{bottom:1010.490000px;}
.yda{bottom:1010.670000px;}
.yfe{bottom:1012.830000px;}
.y3e{bottom:1015.170000px;}
.y160{bottom:1015.890000px;}
.y79{bottom:1016.430000px;}
.yd9{bottom:1026.150000px;}
.ya9{bottom:1030.470000px;}
.y4{bottom:1034.070000px;}
.y5{bottom:1038.628500px;}
.y77{bottom:1038.930000px;}
.y15b{bottom:1039.110000px;}
.yd8{bottom:1041.810000px;}
.yd7{bottom:1056.930000px;}
.y3{bottom:1057.290000px;}
.y136{bottom:1059.270000px;}
.y76{bottom:1061.430000px;}
.ya8{bottom:1061.970000px;}
.y15d{bottom:1062.330000px;}
.y3d{bottom:1072.770000px;}
.ya7{bottom:1077.630000px;}
.y75{bottom:1084.650000px;}
.y158{bottom:1087.890000px;}
.yd6{bottom:1090.410000px;}
.ya6{bottom:1092.930000px;}
.y3c{bottom:1106.070000px;}
.y74{bottom:1107.150000px;}
.ya5{bottom:1108.770000px;}
.y15a{bottom:1111.110000px;}
.ya4{bottom:1124.430000px;}
.y73{bottom:1129.650000px;}
.y3b{bottom:1139.550000px;}
.yd5{bottom:1139.910000px;}
.y2{bottom:1158.300000px;}
.y29{bottom:1193.760000px;}
.h16{height:21.600000px;}
.h17{height:21.636000px;}
.h14{height:21.780000px;}
.h15{height:21.816000px;}
.he{height:22.500000px;}
.h11{height:22.536000px;}
.h10{height:23.580000px;}
.hf{height:24.660000px;}
.h23{height:24.696000px;}
.h1c{height:24.840000px;}
.h12{height:30.960000px;}
.h13{height:31.140000px;}
.h8{height:35.314453px;}
.hd{height:37.980000px;}
.h18{height:38.016000px;}
.h19{height:45.720000px;}
.h1a{height:45.756000px;}
.h20{height:47.880000px;}
.h21{height:48.060000px;}
.h22{height:48.096000px;}
.h9{height:52.971680px;}
.hc{height:52.998047px;}
.ha{height:54.421875px;}
.h1b{height:56.880000px;}
.h1e{height:56.916000px;}
.h1f{height:57.060000px;}
.hb{height:62.153438px;}
.h2{height:65.010937px;}
.h7{height:66.757500px;}
.h3{height:72.562500px;}
.h1d{height:75.960000px;}
.h4{height:81.995625px;}
.h6{height:84.898125px;}
.h5{height:143.724375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:49.896000px;}
.w2{width:53.136000px;}
.w37{width:56.736000px;}
.w34{width:65.016000px;}
.w1f{width:71.100000px;}
.w21{width:71.136000px;}
.w10{width:71.496000px;}
.w2c{width:81.756000px;}
.w52{width:83.340000px;}
.w4e{width:83.376000px;}
.w4{width:100.296000px;}
.w22{width:101.340000px;}
.w30{width:102.996000px;}
.w26{width:107.316000px;}
.w54{width:108.576000px;}
.w50{width:109.440000px;}
.w44{width:109.476000px;}
.w4c{width:111.276000px;}
.w39{width:113.436000px;}
.w48{width:113.616000px;}
.w25{width:113.976000px;}
.w1a{width:117.360000px;}
.w1c{width:117.936000px;}
.w40{width:120.096000px;}
.w51{width:121.356000px;}
.w4d{width:121.500000px;}
.wf{width:121.860000px;}
.we{width:121.896000px;}
.w1b{width:124.056000px;}
.w2d{width:132.696000px;}
.w5{width:137.880000px;}
.w49{width:138.816000px;}
.w9{width:140.400000px;}
.w29{width:140.976000px;}
.w3a{width:146.340000px;}
.w45{width:150.870000px;}
.w11{width:153.030000px;}
.w6{width:154.470000px;}
.w41{width:156.090000px;}
.w33{width:162.930000px;}
.w32{width:165.270000px;}
.w28{width:168.330000px;}
.w36{width:169.050000px;}
.w3d{width:173.190000px;}
.w4f{width:175.170000px;}
.w12{width:178.590000px;}
.w38{width:178.770000px;}
.w27{width:179.130000px;}
.w20{width:182.190000px;}
.w1e{width:182.910000px;}
.wc{width:191.010000px;}
.w43{width:203.610000px;}
.w3c{width:207.390000px;}
.w3b{width:207.975000px;}
.w3e{width:211.395000px;}
.w23{width:222.195000px;}
.w13{width:222.375000px;}
.w2f{width:222.510000px;}
.w47{width:233.310000px;}
.w4b{width:234.930000px;}
.wa{width:236.415000px;}
.w19{width:242.715000px;}
.w15{width:243.435000px;}
.w1d{width:253.695000px;}
.w3f{width:257.250000px;}
.w17{width:258.375000px;}
.w16{width:260.670000px;}
.w2b{width:268.770000px;}
.w2a{width:270.255000px;}
.w18{width:272.730000px;}
.w4a{width:276.555000px;}
.wd{width:276.735000px;}
.w46{width:281.055000px;}
.w53{width:291.495000px;}
.w42{width:292.755000px;}
.w3{width:293.070000px;}
.w2e{width:320.475000px;}
.w14{width:347.295000px;}
.w24{width:348.195000px;}
.wb{width:352.155000px;}
.w35{width:390.165000px;}
.w31{width:394.665000px;}
.w7{width:781.020000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x32{left:9.000000px;}
.x43{left:11.880000px;}
.x84{left:13.500000px;}
.x72{left:15.660000px;}
.x3f{left:17.280000px;}
.x7e{left:18.576000px;}
.x46{left:19.620000px;}
.x4a{left:21.090000px;}
.x2f{left:22.680000px;}
.x79{left:24.696000px;}
.x7b{left:26.100000px;}
.x54{left:27.540000px;}
.x76{left:29.016000px;}
.x35{left:30.636000px;}
.x53{left:31.680000px;}
.x70{left:33.660000px;}
.x4b{left:35.856000px;}
.x52{left:37.080000px;}
.x42{left:38.160000px;}
.x4e{left:40.140000px;}
.x6d{left:41.400000px;}
.x55{left:43.200000px;}
.x51{left:46.434000px;}
.x41{left:50.250000px;}
.x78{left:51.876000px;}
.x5f{left:52.965000px;}
.x65{left:54.945000px;}
.x19{left:56.160000px;}
.x63{left:58.710000px;}
.x62{left:60.870000px;}
.x6f{left:62.820000px;}
.x9{left:63.900000px;}
.xa{left:66.240000px;}
.x11{left:67.320000px;}
.x29{left:70.596000px;}
.x1d{left:72.720000px;}
.x61{left:74.205000px;}
.x49{left:77.040000px;}
.x2a{left:78.870000px;}
.x71{left:81.030000px;}
.x3b{left:82.794000px;}
.x36{left:84.096000px;}
.x26{left:85.170000px;}
.x4c{left:89.130000px;}
.x27{left:90.405000px;}
.x69{left:92.565000px;}
.x86{left:95.940000px;}
.x31{left:98.325000px;}
.x30{left:99.720000px;}
.x6{left:101.016000px;}
.x7{left:102.636000px;}
.x3d{left:103.890000px;}
.x1a{left:106.776000px;}
.x77{left:108.000000px;}
.x34{left:110.565000px;}
.x33{left:111.780000px;}
.x38{left:114.705000px;}
.x37{left:115.920000px;}
.x8a{left:117.585000px;}
.x85{left:119.925000px;}
.x5e{left:122.265000px;}
.x7f{left:125.685000px;}
.x3a{left:129.456000px;}
.x2b{left:146.745000px;}
.x28{left:153.045000px;}
.x6a{left:155.565000px;}
.x6c{left:159.870000px;}
.x2c{left:163.305000px;}
.x12{left:196.050000px;}
.x5a{left:198.030000px;}
.x87{left:204.330000px;}
.x56{left:206.310000px;}
.x81{left:207.750000px;}
.x4d{left:212.070000px;}
.x7a{left:221.430000px;}
.x15{left:222.690000px;}
.x59{left:234.390000px;}
.x73{left:238.530000px;}
.x80{left:239.790000px;}
.x23{left:241.230000px;}
.x4{left:244.110000px;}
.x1b{left:247.890000px;}
.x5d{left:249.330000px;}
.x24{left:251.130000px;}
.x8c{left:255.855000px;}
.x68{left:257.295000px;}
.x95{left:263.595000px;}
.x94{left:268.455000px;}
.x93{left:272.235000px;}
.x2{left:274.395000px;}
.x10{left:276.375000px;}
.xf{left:287.175000px;}
.x3{left:290.595000px;}
.x44{left:303.555000px;}
.x2e{left:308.775000px;}
.x64{left:310.035000px;}
.x8{left:318.315000px;}
.x90{left:319.935000px;}
.x4f{left:326.955000px;}
.x14{left:333.615000px;}
.x6b{left:335.955000px;}
.xd{left:347.475000px;}
.x1e{left:350.175000px;}
.x13{left:353.235000px;}
.x2d{left:356.475000px;}
.x8b{left:357.915000px;}
.x22{left:360.435000px;}
.x39{left:363.675000px;}
.x8d{left:378.075000px;}
.xc{left:401.115000px;}
.x3c{left:402.915000px;}
.x91{left:403.995000px;}
.x18{left:415.155000px;}
.xb{left:418.395000px;}
.x66{left:421.275000px;}
.xe{left:434.265000px;}
.x1{left:440.745000px;}
.x74{left:450.645000px;}
.x8e{left:462.165000px;}
.x1f{left:472.785000px;}
.x25{left:474.225000px;}
.x57{left:477.465000px;}
.x88{left:481.605000px;}
.x1c{left:485.025000px;}
.x82{left:489.525000px;}
.x45{left:502.845000px;}
.x7c{left:514.905000px;}
.x5b{left:519.405000px;}
.x5{left:526.506000px;}
.x40{left:527.685000px;}
.x17{left:570.345000px;}
.x8f{left:572.325000px;}
.x47{left:574.665000px;}
.x60{left:578.985000px;}
.x67{left:584.925000px;}
.x92{left:586.905000px;}
.x20{left:595.365000px;}
.x50{left:614.850000px;}
.x6e{left:629.790000px;}
.x3e{left:646.350000px;}
.x21{left:667.590000px;}
.x75{left:708.630000px;}
.x89{left:717.450000px;}
.x7d{left:719.250000px;}
.x83{left:723.570000px;}
.x5c{left:742.650000px;}
.x58{left:746.970000px;}
.x48{left:757.590000px;}
@media print{
.v6{vertical-align:-55.786667pt;}
.v4{vertical-align:-54.400000pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:76.800000pt;}
.ls21{letter-spacing:-1.045333pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.336533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.303467pt;}
.lse{letter-spacing:-0.286933pt;}
.ls12{letter-spacing:-0.272000pt;}
.ls18{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.112000pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.026667pt;}
.lsd{letter-spacing:-0.025067pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.025067pt;}
.ls29{letter-spacing:0.096000pt;}
.ls23{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.234667pt;}
.ls1d{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.624000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.656000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls15{letter-spacing:5.440000pt;}
.ls5{letter-spacing:10.138667pt;}
.ls3{letter-spacing:10.597333pt;}
.ls6{letter-spacing:10.634667pt;}
.ls7{letter-spacing:16.042667pt;}
.ls8{letter-spacing:16.794667pt;}
.ws37{word-spacing:-58.880000pt;}
.ws2e{word-spacing:-48.000000pt;}
.wse{word-spacing:-27.072000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.745067pt;}
.ws3{word-spacing:-18.694933pt;}
.ws4{word-spacing:-18.433067pt;}
.ws6{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.383467pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws33{word-spacing:-14.991467pt;}
.ws39{word-spacing:-14.953067pt;}
.ws35{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.720000pt;}
.ws36{word-spacing:-14.622933pt;}
.ws2d{word-spacing:-14.448533pt;}
.ws3b{word-spacing:-14.313067pt;}
.ws38{word-spacing:-13.674667pt;}
.wsf{word-spacing:-12.656000pt;}
.ws2{word-spacing:-12.640000pt;}
.ws31{word-spacing:-12.624000pt;}
.ws34{word-spacing:-12.448000pt;}
.ws2b{word-spacing:-12.320000pt;}
.ws3e{word-spacing:-12.192000pt;}
.ws32{word-spacing:-12.160000pt;}
.ws3a{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws2f{word-spacing:-11.904000pt;}
.ws3d{word-spacing:-11.888000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws9{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws25{word-spacing:-0.816000pt;}
.ws18{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.528000pt;}
.ws20{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.352000pt;}
.ws24{word-spacing:-0.330667pt;}
.ws1f{word-spacing:-0.325333pt;}
.ws21{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.064000pt;}
.ws22{word-spacing:-0.005333pt;}
.ws10{word-spacing:0.000000pt;}
.ws11{word-spacing:0.101333pt;}
.ws16{word-spacing:0.160000pt;}
.ws1a{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.193920pt;}
.ws14{word-spacing:0.197333pt;}
.ws19{word-spacing:0.224000pt;}
.ws1e{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.634667pt;}
.ws13{word-spacing:0.672000pt;}
.ws17{word-spacing:1.178667pt;}
.ws26{word-spacing:2.096000pt;}
.ws27{word-spacing:4.640000pt;}
.ws28{word-spacing:5.120000pt;}
.ws29{word-spacing:7.098667pt;}
.ws2a{word-spacing:7.104000pt;}
.ws3c{word-spacing:46.368000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._3{width:1.114696pt;}
._4{width:2.826667pt;}
._b{width:3.840000pt;}
._c{width:5.616000pt;}
._d{width:6.597363pt;}
._a{width:7.658637pt;}
._9{width:8.880000pt;}
._12{width:10.064000pt;}
._11{width:11.082578pt;}
._5{width:14.847989pt;}
._6{width:15.786696pt;}
._e{width:17.061304pt;}
._f{width:18.240000pt;}
._7{width:22.879995pt;}
._8{width:24.309378pt;}
._17{width:58.080000pt;}
._13{width:160.362667pt;}
._2{width:183.618773pt;}
._14{width:411.914667pt;}
._16{width:645.994667pt;}
._15{width:747.594667pt;}
._10{width:971.864077pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.560000pt;}
.y60{bottom:2.880000pt;}
.y64{bottom:3.040000pt;}
.yc6{bottom:3.200000pt;}
.ydf{bottom:3.360000pt;}
.yca{bottom:3.520000pt;}
.ye2{bottom:3.680000pt;}
.y8e{bottom:5.600000pt;}
.y90{bottom:5.920000pt;}
.yd2{bottom:6.394667pt;}
.yae{bottom:6.400000pt;}
.yd1{bottom:6.714667pt;}
.y41{bottom:6.720000pt;}
.yea{bottom:6.746667pt;}
.y45{bottom:7.680000pt;}
.y78{bottom:8.320000pt;}
.y6f{bottom:8.474667pt;}
.y72{bottom:8.480000pt;}
.y70{bottom:8.512000pt;}
.y43{bottom:8.640000pt;}
.y168{bottom:8.680000pt;}
.y5a{bottom:8.800000pt;}
.y66{bottom:9.120000pt;}
.y62{bottom:9.160000pt;}
.y5c{bottom:16.320000pt;}
.y6a{bottom:16.640000pt;}
.y5f{bottom:16.800000pt;}
.y3f{bottom:20.160000pt;}
.y145{bottom:20.186667pt;}
.yc5{bottom:20.200000pt;}
.yc9{bottom:20.480000pt;}
.yce{bottom:27.040000pt;}
.ye8{bottom:27.066667pt;}
.y15f{bottom:27.360000pt;}
.y159{bottom:28.960000pt;}
.y163{bottom:29.120000pt;}
.y16a{bottom:29.280000pt;}
.y15c{bottom:29.440000pt;}
.y166{bottom:29.480000pt;}
.y12d{bottom:36.960000pt;}
.y144{bottom:36.986667pt;}
.y14b{bottom:37.120000pt;}
.yfa{bottom:37.280000pt;}
.y12c{bottom:53.920000pt;}
.y1{bottom:68.320000pt;}
.y28{bottom:84.960000pt;}
.yd4{bottom:87.200000pt;}
.y135{bottom:88.640000pt;}
.y117{bottom:88.960000pt;}
.y71{bottom:92.480000pt;}
.ya3{bottom:93.120000pt;}
.y27{bottom:98.720000pt;}
.yfd{bottom:99.680000pt;}
.ya2{bottom:107.040000pt;}
.y134{bottom:109.280000pt;}
.y116{bottom:109.600000pt;}
.y26{bottom:112.480000pt;}
.yd3{bottom:112.640000pt;}
.yfc{bottom:120.352000pt;}
.ya1{bottom:120.832000pt;}
.y25{bottom:126.432000pt;}
.y3a{bottom:126.752000pt;}
.y133{bottom:129.952000pt;}
.y115{bottom:130.272000pt;}
.y6e{bottom:132.512000pt;}
.yd0{bottom:133.312000pt;}
.ya0{bottom:134.746667pt;}
.y39{bottom:140.506667pt;}
.yfb{bottom:140.986667pt;}
.y9f{bottom:148.506667pt;}
.y157{bottom:149.466667pt;}
.y132{bottom:150.586667pt;}
.y114{bottom:151.066667pt;}
.y6d{bottom:152.506667pt;}
.ycd{bottom:153.946667pt;}
.y24{bottom:154.106667pt;}
.y38{bottom:154.266667pt;}
.yf9{bottom:161.626667pt;}
.y9e{bottom:161.946667pt;}
.y156{bottom:163.226667pt;}
.y37{bottom:168.186667pt;}
.y131{bottom:171.226667pt;}
.y113{bottom:171.706667pt;}
.y6c{bottom:173.146667pt;}
.ycf{bottom:174.586667pt;}
.y155{bottom:176.986667pt;}
.y36{bottom:181.946667pt;}
.y9d{bottom:191.866667pt;}
.y112{bottom:192.346667pt;}
.y6b{bottom:193.946667pt;}
.y35{bottom:195.706667pt;}
.ycc{bottom:198.266667pt;}
.y154{bottom:206.426667pt;}
.y34{bottom:209.466667pt;}
.y130{bottom:212.666667pt;}
.y111{bottom:212.986667pt;}
.y69{bottom:214.586667pt;}
.yf8{bottom:215.866667pt;}
.y9c{bottom:221.946667pt;}
.y33{bottom:223.386667pt;}
.y16f{bottom:223.546667pt;}
.ycb{bottom:227.706667pt;}
.y12f{bottom:233.306667pt;}
.y110{bottom:233.626667pt;}
.y171{bottom:233.946667pt;}
.y9b{bottom:235.706667pt;}
.y153{bottom:236.666667pt;}
.yf7{bottom:241.306667pt;}
.y68{bottom:242.746667pt;}
.y9a{bottom:249.626667pt;}
.y152{bottom:250.426667pt;}
.y32{bottom:250.746667pt;}
.y12e{bottom:253.946667pt;}
.y10f{bottom:254.266667pt;}
.yf6{bottom:261.946667pt;}
.y99{bottom:263.386667pt;}
.yc8{bottom:269.466667pt;}
.y67{bottom:271.066667pt;}
.y12b{bottom:274.586667pt;}
.y10e{bottom:275.066667pt;}
.y98{bottom:277.146667pt;}
.y31{bottom:278.906667pt;}
.y151{bottom:279.866667pt;}
.yf5{bottom:282.586667pt;}
.y23{bottom:285.946667pt;}
.y65{bottom:291.706667pt;}
.y10d{bottom:295.706667pt;}
.y22{bottom:299.706667pt;}
.yf4{bottom:303.226667pt;}
.yc7{bottom:303.866667pt;}
.y97{bottom:306.746667pt;}
.y150{bottom:309.946667pt;}
.y63{bottom:312.346667pt;}
.y21{bottom:313.466667pt;}
.y10c{bottom:316.346667pt;}
.y14f{bottom:323.866667pt;}
.yc4{bottom:324.506667pt;}
.y20{bottom:327.226667pt;}
.y96{bottom:336.506667pt;}
.y61{bottom:340.666667pt;}
.y1f{bottom:341.146667pt;}
.y10b{bottom:341.946667pt;}
.y12a{bottom:345.826667pt;}
.y14e{bottom:349.346667pt;}
.y1e{bottom:354.946667pt;}
.y5e{bottom:361.346667pt;}
.yc3{bottom:361.826667pt;}
.y184{bottom:363.106667pt;}
.y95{bottom:366.626667pt;}
.y1d{bottom:368.706667pt;}
.y10a{bottom:369.826667pt;}
.y14d{bottom:369.986667pt;}
.y129{bottom:371.106667pt;}
.y183{bottom:377.026667pt;}
.yf3{bottom:380.066667pt;}
.y1c{bottom:382.306667pt;}
.y5b{bottom:389.666667pt;}
.y14c{bottom:390.626667pt;}
.y182{bottom:390.786667pt;}
.yc2{bottom:391.266667pt;}
.y128{bottom:391.906667pt;}
.y94{bottom:396.066667pt;}
.yf2{bottom:400.706667pt;}
.y181{bottom:404.546667pt;}
.y14a{bottom:411.266667pt;}
.y127{bottom:412.546667pt;}
.y1b{bottom:415.906667pt;}
.y59{bottom:417.986667pt;}
.y180{bottom:418.306667pt;}
.yf1{bottom:421.346667pt;}
.yc1{bottom:421.506667pt;}
.y93{bottom:426.306667pt;}
.y1a{bottom:429.666667pt;}
.y17f{bottom:432.226667pt;}
.y126{bottom:433.186667pt;}
.yc0{bottom:435.266667pt;}
.yf0{bottom:441.986667pt;}
.y17e{bottom:445.986667pt;}
.ybf{bottom:448.866667pt;}
.y19{bottom:451.106667pt;}
.y125{bottom:453.826667pt;}
.y58{bottom:455.106667pt;}
.y92{bottom:455.746667pt;}
.y17d{bottom:459.746667pt;}
.yef{bottom:462.626667pt;}
.ybe{bottom:462.946667pt;}
.y18{bottom:464.866667pt;}
.y149{bottom:465.506667pt;}
.y17c{bottom:473.506667pt;}
.y124{bottom:474.466667pt;}
.ybd{bottom:476.866667pt;}
.y17{bottom:478.626667pt;}
.yee{bottom:483.266667pt;}
.y57{bottom:485.186667pt;}
.y17b{bottom:487.426667pt;}
.ybc{bottom:490.306667pt;}
.y148{bottom:490.946667pt;}
.y16{bottom:492.546667pt;}
.y123{bottom:495.106667pt;}
.y91{bottom:497.506667pt;}
.y56{bottom:499.106667pt;}
.y17a{bottom:501.186667pt;}
.yed{bottom:504.066667pt;}
.y15{bottom:506.306667pt;}
.y147{bottom:511.586667pt;}
.y55{bottom:513.186667pt;}
.y179{bottom:514.946667pt;}
.y122{bottom:515.906667pt;}
.y8f{bottom:517.506667pt;}
.ybb{bottom:518.306667pt;}
.y14{bottom:520.066667pt;}
.yec{bottom:524.706667pt;}
.y54{bottom:527.106667pt;}
.y178{bottom:528.706667pt;}
.y146{bottom:532.386667pt;}
.y13{bottom:533.826667pt;}
.y121{bottom:536.546667pt;}
.y8d{bottom:537.506667pt;}
.y53{bottom:541.026667pt;}
.y177{bottom:542.306667pt;}
.yeb{bottom:545.346667pt;}
.y12{bottom:547.746667pt;}
.yba{bottom:547.906667pt;}
.y143{bottom:553.026667pt;}
.y52{bottom:554.786667pt;}
.y120{bottom:557.186667pt;}
.y11{bottom:561.346667pt;}
.ye7{bottom:565.986667pt;}
.y176{bottom:570.333333pt;}
.y8c{bottom:574.333333pt;}
.yb9{bottom:578.013333pt;}
.y11f{bottom:580.893333pt;}
.y175{bottom:584.093333pt;}
.y51{bottom:584.253333pt;}
.ye9{bottom:586.653333pt;}
.y8b{bottom:588.093333pt;}
.yb8{bottom:591.933333pt;}
.y11e{bottom:594.653333pt;}
.y174{bottom:598.013333pt;}
.y8a{bottom:601.853333pt;}
.y10{bottom:603.569333pt;}
.y142{bottom:607.293333pt;}
.y11d{bottom:608.413333pt;}
.y50{bottom:610.013333pt;}
.y89{bottom:615.613333pt;}
.yb7{bottom:617.213333pt;}
.yf{bottom:618.406667pt;}
.ye6{bottom:624.093333pt;}
.y173{bottom:625.373333pt;}
.y88{bottom:629.533333pt;}
.y4f{bottom:630.653333pt;}
.ye{bottom:631.613333pt;}
.y141{bottom:632.733333pt;}
.y170{bottom:637.213333pt;}
.y11c{bottom:637.853333pt;}
.yb6{bottom:638.013333pt;}
.y16e{bottom:643.133333pt;}
.y87{bottom:643.293333pt;}
.y30{bottom:646.493333pt;}
.y4e{bottom:651.453333pt;}
.ye5{bottom:651.773333pt;}
.y140{bottom:653.373333pt;}
.y16d{bottom:656.733333pt;}
.y86{bottom:657.053333pt;}
.yb5{bottom:658.653333pt;}
.y2f{bottom:660.413333pt;}
.yd{bottom:661.373333pt;}
.ye4{bottom:665.533333pt;}
.y172{bottom:667.133333pt;}
.y11b{bottom:668.093333pt;}
.y85{bottom:670.813333pt;}
.y4d{bottom:672.093333pt;}
.y109{bottom:673.053333pt;}
.y13f{bottom:674.013333pt;}
.y2e{bottom:674.173333pt;}
.yb4{bottom:679.293333pt;}
.yc{bottom:681.213333pt;}
.y11a{bottom:681.853333pt;}
.y84{bottom:684.573333pt;}
.y2d{bottom:688.093333pt;}
.y4c{bottom:692.733333pt;}
.y108{bottom:693.693333pt;}
.y13e{bottom:694.653333pt;}
.y119{bottom:695.773333pt;}
.yb{bottom:697.053333pt;}
.y83{bottom:698.173333pt;}
.y16c{bottom:698.493333pt;}
.yb3{bottom:699.933333pt;}
.ye3{bottom:708.733333pt;}
.y82{bottom:712.253333pt;}
.ya{bottom:712.893333pt;}
.y4b{bottom:713.373333pt;}
.y107{bottom:714.333333pt;}
.y2c{bottom:715.773333pt;}
.yb2{bottom:720.573333pt;}
.y118{bottom:723.453333pt;}
.y169{bottom:723.933333pt;}
.y81{bottom:726.013333pt;}
.y13d{bottom:732.093333pt;}
.y4a{bottom:734.013333pt;}
.y106{bottom:734.973333pt;}
.yb1{bottom:741.213333pt;}
.y9{bottom:741.693333pt;}
.y16b{bottom:744.573333pt;}
.ye1{bottom:750.493333pt;}
.y49{bottom:754.653333pt;}
.y80{bottom:755.453333pt;}
.y105{bottom:755.613333pt;}
.y13c{bottom:757.533333pt;}
.yb0{bottom:762.013333pt;}
.y165{bottom:767.133333pt;}
.y48{bottom:775.453333pt;}
.y104{bottom:776.253333pt;}
.y13b{bottom:778.173333pt;}
.y8{bottom:778.333333pt;}
.yaf{bottom:782.653333pt;}
.y7f{bottom:783.453333pt;}
.ye0{bottom:784.893333pt;}
.y167{bottom:787.933333pt;}
.y47{bottom:796.133333pt;}
.y103{bottom:797.093333pt;}
.y13a{bottom:798.853333pt;}
.y7{bottom:799.653333pt;}
.yad{bottom:803.333333pt;}
.y7e{bottom:803.493333pt;}
.yde{bottom:805.573333pt;}
.y162{bottom:810.533333pt;}
.y46{bottom:816.773333pt;}
.y102{bottom:817.733333pt;}
.y139{bottom:819.493333pt;}
.y6{bottom:821.253333pt;}
.y7d{bottom:823.493333pt;}
.yac{bottom:826.853333pt;}
.y164{bottom:831.173333pt;}
.y44{bottom:837.413333pt;}
.y101{bottom:838.373333pt;}
.ydd{bottom:843.013333pt;}
.y7c{bottom:843.493333pt;}
.y2b{bottom:855.653333pt;}
.yab{bottom:856.773333pt;}
.y161{bottom:856.933333pt;}
.y100{bottom:859.013333pt;}
.y42{bottom:859.173333pt;}
.y7b{bottom:863.493333pt;}
.ydc{bottom:870.693333pt;}
.yff{bottom:879.653333pt;}
.y40{bottom:881.733333pt;}
.y15e{bottom:882.373333pt;}
.y2a{bottom:883.333333pt;}
.y7a{bottom:883.493333pt;}
.y138{bottom:884.453333pt;}
.ydb{bottom:884.613333pt;}
.yaa{bottom:886.213333pt;}
.y137{bottom:898.213333pt;}
.yda{bottom:898.373333pt;}
.yfe{bottom:900.293333pt;}
.y3e{bottom:902.373333pt;}
.y160{bottom:903.013333pt;}
.y79{bottom:903.493333pt;}
.yd9{bottom:912.133333pt;}
.ya9{bottom:915.973333pt;}
.y4{bottom:919.173333pt;}
.y5{bottom:923.225333pt;}
.y77{bottom:923.493333pt;}
.y15b{bottom:923.653333pt;}
.yd8{bottom:926.053333pt;}
.yd7{bottom:939.493333pt;}
.y3{bottom:939.813333pt;}
.y136{bottom:941.573333pt;}
.y76{bottom:943.493333pt;}
.ya8{bottom:943.973333pt;}
.y15d{bottom:944.293333pt;}
.y3d{bottom:953.573333pt;}
.ya7{bottom:957.893333pt;}
.y75{bottom:964.133333pt;}
.y158{bottom:967.013333pt;}
.yd6{bottom:969.253333pt;}
.ya6{bottom:971.493333pt;}
.y3c{bottom:983.173333pt;}
.y74{bottom:984.133333pt;}
.ya5{bottom:985.573333pt;}
.y15a{bottom:987.653333pt;}
.ya4{bottom:999.493333pt;}
.y73{bottom:1004.133333pt;}
.y3b{bottom:1012.933333pt;}
.yd5{bottom:1013.253333pt;}
.y2{bottom:1029.600000pt;}
.y29{bottom:1061.120000pt;}
.h16{height:19.200000pt;}
.h17{height:19.232000pt;}
.h14{height:19.360000pt;}
.h15{height:19.392000pt;}
.he{height:20.000000pt;}
.h11{height:20.032000pt;}
.h10{height:20.960000pt;}
.hf{height:21.920000pt;}
.h23{height:21.952000pt;}
.h1c{height:22.080000pt;}
.h12{height:27.520000pt;}
.h13{height:27.680000pt;}
.h8{height:31.390625pt;}
.hd{height:33.760000pt;}
.h18{height:33.792000pt;}
.h19{height:40.640000pt;}
.h1a{height:40.672000pt;}
.h20{height:42.560000pt;}
.h21{height:42.720000pt;}
.h22{height:42.752000pt;}
.h9{height:47.085938pt;}
.hc{height:47.109375pt;}
.ha{height:48.375000pt;}
.h1b{height:50.560000pt;}
.h1e{height:50.592000pt;}
.h1f{height:50.720000pt;}
.hb{height:55.247500pt;}
.h2{height:57.787500pt;}
.h7{height:59.340000pt;}
.h3{height:64.500000pt;}
.h1d{height:67.520000pt;}
.h4{height:72.885000pt;}
.h6{height:75.465000pt;}
.h5{height:127.755000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:44.352000pt;}
.w2{width:47.232000pt;}
.w37{width:50.432000pt;}
.w34{width:57.792000pt;}
.w1f{width:63.200000pt;}
.w21{width:63.232000pt;}
.w10{width:63.552000pt;}
.w2c{width:72.672000pt;}
.w52{width:74.080000pt;}
.w4e{width:74.112000pt;}
.w4{width:89.152000pt;}
.w22{width:90.080000pt;}
.w30{width:91.552000pt;}
.w26{width:95.392000pt;}
.w54{width:96.512000pt;}
.w50{width:97.280000pt;}
.w44{width:97.312000pt;}
.w4c{width:98.912000pt;}
.w39{width:100.832000pt;}
.w48{width:100.992000pt;}
.w25{width:101.312000pt;}
.w1a{width:104.320000pt;}
.w1c{width:104.832000pt;}
.w40{width:106.752000pt;}
.w51{width:107.872000pt;}
.w4d{width:108.000000pt;}
.wf{width:108.320000pt;}
.we{width:108.352000pt;}
.w1b{width:110.272000pt;}
.w2d{width:117.952000pt;}
.w5{width:122.560000pt;}
.w49{width:123.392000pt;}
.w9{width:124.800000pt;}
.w29{width:125.312000pt;}
.w3a{width:130.080000pt;}
.w45{width:134.106667pt;}
.w11{width:136.026667pt;}
.w6{width:137.306667pt;}
.w41{width:138.746667pt;}
.w33{width:144.826667pt;}
.w32{width:146.906667pt;}
.w28{width:149.626667pt;}
.w36{width:150.266667pt;}
.w3d{width:153.946667pt;}
.w4f{width:155.706667pt;}
.w12{width:158.746667pt;}
.w38{width:158.906667pt;}
.w27{width:159.226667pt;}
.w20{width:161.946667pt;}
.w1e{width:162.586667pt;}
.wc{width:169.786667pt;}
.w43{width:180.986667pt;}
.w3c{width:184.346667pt;}
.w3b{width:184.866667pt;}
.w3e{width:187.906667pt;}
.w23{width:197.506667pt;}
.w13{width:197.666667pt;}
.w2f{width:197.786667pt;}
.w47{width:207.386667pt;}
.w4b{width:208.826667pt;}
.wa{width:210.146667pt;}
.w19{width:215.746667pt;}
.w15{width:216.386667pt;}
.w1d{width:225.506667pt;}
.w3f{width:228.666667pt;}
.w17{width:229.666667pt;}
.w16{width:231.706667pt;}
.w2b{width:238.906667pt;}
.w2a{width:240.226667pt;}
.w18{width:242.426667pt;}
.w4a{width:245.826667pt;}
.wd{width:245.986667pt;}
.w46{width:249.826667pt;}
.w53{width:259.106667pt;}
.w42{width:260.226667pt;}
.w3{width:260.506667pt;}
.w2e{width:284.866667pt;}
.w14{width:308.706667pt;}
.w24{width:309.506667pt;}
.wb{width:313.026667pt;}
.w35{width:346.813333pt;}
.w31{width:350.813333pt;}
.w7{width:694.240000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x32{left:8.000000pt;}
.x43{left:10.560000pt;}
.x84{left:12.000000pt;}
.x72{left:13.920000pt;}
.x3f{left:15.360000pt;}
.x7e{left:16.512000pt;}
.x46{left:17.440000pt;}
.x4a{left:18.746667pt;}
.x2f{left:20.160000pt;}
.x79{left:21.952000pt;}
.x7b{left:23.200000pt;}
.x54{left:24.480000pt;}
.x76{left:25.792000pt;}
.x35{left:27.232000pt;}
.x53{left:28.160000pt;}
.x70{left:29.920000pt;}
.x4b{left:31.872000pt;}
.x52{left:32.960000pt;}
.x42{left:33.920000pt;}
.x4e{left:35.680000pt;}
.x6d{left:36.800000pt;}
.x55{left:38.400000pt;}
.x51{left:41.274667pt;}
.x41{left:44.666667pt;}
.x78{left:46.112000pt;}
.x5f{left:47.080000pt;}
.x65{left:48.840000pt;}
.x19{left:49.920000pt;}
.x63{left:52.186667pt;}
.x62{left:54.106667pt;}
.x6f{left:55.840000pt;}
.x9{left:56.800000pt;}
.xa{left:58.880000pt;}
.x11{left:59.840000pt;}
.x29{left:62.752000pt;}
.x1d{left:64.640000pt;}
.x61{left:65.960000pt;}
.x49{left:68.480000pt;}
.x2a{left:70.106667pt;}
.x71{left:72.026667pt;}
.x3b{left:73.594667pt;}
.x36{left:74.752000pt;}
.x26{left:75.706667pt;}
.x4c{left:79.226667pt;}
.x27{left:80.360000pt;}
.x69{left:82.280000pt;}
.x86{left:85.280000pt;}
.x31{left:87.400000pt;}
.x30{left:88.640000pt;}
.x6{left:89.792000pt;}
.x7{left:91.232000pt;}
.x3d{left:92.346667pt;}
.x1a{left:94.912000pt;}
.x77{left:96.000000pt;}
.x34{left:98.280000pt;}
.x33{left:99.360000pt;}
.x38{left:101.960000pt;}
.x37{left:103.040000pt;}
.x8a{left:104.520000pt;}
.x85{left:106.600000pt;}
.x5e{left:108.680000pt;}
.x7f{left:111.720000pt;}
.x3a{left:115.072000pt;}
.x2b{left:130.440000pt;}
.x28{left:136.040000pt;}
.x6a{left:138.280000pt;}
.x6c{left:142.106667pt;}
.x2c{left:145.160000pt;}
.x12{left:174.266667pt;}
.x5a{left:176.026667pt;}
.x87{left:181.626667pt;}
.x56{left:183.386667pt;}
.x81{left:184.666667pt;}
.x4d{left:188.506667pt;}
.x7a{left:196.826667pt;}
.x15{left:197.946667pt;}
.x59{left:208.346667pt;}
.x73{left:212.026667pt;}
.x80{left:213.146667pt;}
.x23{left:214.426667pt;}
.x4{left:216.986667pt;}
.x1b{left:220.346667pt;}
.x5d{left:221.626667pt;}
.x24{left:223.226667pt;}
.x8c{left:227.426667pt;}
.x68{left:228.706667pt;}
.x95{left:234.306667pt;}
.x94{left:238.626667pt;}
.x93{left:241.986667pt;}
.x2{left:243.906667pt;}
.x10{left:245.666667pt;}
.xf{left:255.266667pt;}
.x3{left:258.306667pt;}
.x44{left:269.826667pt;}
.x2e{left:274.466667pt;}
.x64{left:275.586667pt;}
.x8{left:282.946667pt;}
.x90{left:284.386667pt;}
.x4f{left:290.626667pt;}
.x14{left:296.546667pt;}
.x6b{left:298.626667pt;}
.xd{left:308.866667pt;}
.x1e{left:311.266667pt;}
.x13{left:313.986667pt;}
.x2d{left:316.866667pt;}
.x8b{left:318.146667pt;}
.x22{left:320.386667pt;}
.x39{left:323.266667pt;}
.x8d{left:336.066667pt;}
.xc{left:356.546667pt;}
.x3c{left:358.146667pt;}
.x91{left:359.106667pt;}
.x18{left:369.026667pt;}
.xb{left:371.906667pt;}
.x66{left:374.466667pt;}
.xe{left:386.013333pt;}
.x1{left:391.773333pt;}
.x74{left:400.573333pt;}
.x8e{left:410.813333pt;}
.x1f{left:420.253333pt;}
.x25{left:421.533333pt;}
.x57{left:424.413333pt;}
.x88{left:428.093333pt;}
.x1c{left:431.133333pt;}
.x82{left:435.133333pt;}
.x45{left:446.973333pt;}
.x7c{left:457.693333pt;}
.x5b{left:461.693333pt;}
.x5{left:468.005333pt;}
.x40{left:469.053333pt;}
.x17{left:506.973333pt;}
.x8f{left:508.733333pt;}
.x47{left:510.813333pt;}
.x60{left:514.653333pt;}
.x67{left:519.933333pt;}
.x92{left:521.693333pt;}
.x20{left:529.213333pt;}
.x50{left:546.533333pt;}
.x6e{left:559.813333pt;}
.x3e{left:574.533333pt;}
.x21{left:593.413333pt;}
.x75{left:629.893333pt;}
.x89{left:637.733333pt;}
.x7d{left:639.333333pt;}
.x83{left:643.173333pt;}
.x5c{left:660.133333pt;}
.x58{left:663.973333pt;}
.x48{left:673.413333pt;}
}




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