
    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_f170b69b1eefe9000b88b94c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_26d9d977e535a072abc8c34b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_d944e3d6f50c3a340138bfc3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_1fa36fd20f41a2d619b16253.woff')format("woff");}.ff4{font-family:ff4;line-height:1.045200;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_80dba65a9b8ad76da59525ef.woff')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_b805dab3f6811bb438dd875f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_4d7bbe6525443f675a960f41.woff')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_0dc40d7e668cd6e9d32ea31a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_7427c12279209395941c8d22.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_87bc64ccb93939633076d621.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_5f658e00998e4dbbcc913d88.woff')format("woff");}.ffb{font-family:ffb;line-height:1.041000;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_e03ccb6e15e8d7e6c78e2011.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cb003382c10f6e8edd74efef.woff')format("woff");}.ffd{font-family:ffd;line-height:1.075000;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_d25c363aff9def5145cafeab.woff')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.fff{font-family:fff;line-height:0.783691;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_5439b06fb4bba6aee19a42bf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_1b25ed570bbdc819916710a4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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_5b0d76a1d6388a55550d4f20.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.ls53{letter-spacing:-0.654000px;}
.ls56{letter-spacing:-0.300000px;}
.ls2b{letter-spacing:-0.297600px;}
.ls2e{letter-spacing:-0.295200px;}
.ls9{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.263400px;}
.ls49{letter-spacing:-0.245400px;}
.ls51{letter-spacing:-0.231600px;}
.ls2c{letter-spacing:-0.229200px;}
.ls45{letter-spacing:-0.222600px;}
.ls47{letter-spacing:-0.211800px;}
.lsb{letter-spacing:-0.201600px;}
.ls55{letter-spacing:-0.175200px;}
.ls31{letter-spacing:-0.169200px;}
.ls1c{letter-spacing:-0.161400px;}
.ls50{letter-spacing:-0.158400px;}
.ls1e{letter-spacing:-0.154800px;}
.ls3f{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.135600px;}
.ls30{letter-spacing:-0.118800px;}
.ls8{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.092400px;}
.ls42{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.067200px;}
.ls52{letter-spacing:-0.053280px;}
.ls32{letter-spacing:-0.036000px;}
.ls44{letter-spacing:-0.021600px;}
.ls40{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000003px;}
.ls4e{letter-spacing:0.001440px;}
.ls1f{letter-spacing:0.014400px;}
.ls3e{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.036000px;}
.ls4c{letter-spacing:0.061200px;}
.ls4f{letter-spacing:0.063600px;}
.ls17{letter-spacing:0.072000px;}
.ls57{letter-spacing:0.075600px;}
.ls12{letter-spacing:0.080640px;}
.ls1d{letter-spacing:0.103800px;}
.ls4b{letter-spacing:0.108000px;}
.ls41{letter-spacing:0.109200px;}
.ls33{letter-spacing:0.109440px;}
.ls2a{letter-spacing:0.112200px;}
.lsc{letter-spacing:0.115200px;}
.ls34{letter-spacing:0.123600px;}
.ls0{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.154800px;}
.ls39{letter-spacing:0.164160px;}
.ls18{letter-spacing:0.172800px;}
.ls3b{letter-spacing:0.178800px;}
.ls10{letter-spacing:0.197280px;}
.ls1b{letter-spacing:0.207600px;}
.ls54{letter-spacing:0.214560px;}
.ls2f{letter-spacing:0.227400px;}
.ls43{letter-spacing:0.252000px;}
.ls37{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.274800px;}
.ls26{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.296400px;}
.ls21{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.311760px;}
.ls22{letter-spacing:0.313920px;}
.ls4a{letter-spacing:0.322800px;}
.ls3d{letter-spacing:0.345600px;}
.ls11{letter-spacing:0.347040px;}
.lse{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.362160px;}
.ls2d{letter-spacing:0.362400px;}
.ls20{letter-spacing:0.377400px;}
.ls48{letter-spacing:0.378000px;}
.ls3a{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.468000px;}
.ls1{letter-spacing:4.032000px;}
.ls5{letter-spacing:16.145280px;}
.ls3{letter-spacing:17.585280px;}
.ls4{letter-spacing:18.305280px;}
.ls2{letter-spacing:29.105280px;}
.ls28{letter-spacing:29.825280px;}
.ls23{letter-spacing:31.265280px;}
.ls14{letter-spacing:35.621280px;}
.ls35{letter-spacing:36.305280px;}
.ls29{letter-spacing:37.386720px;}
.ls38{letter-spacing:37.745280px;}
.ls25{letter-spacing:41.706720px;}
.ls24{letter-spacing:43.866720px;}
.lsf{letter-spacing:51.461280px;}
.ls6{letter-spacing:849.209760px;}
.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;}
}
.ws1f{word-spacing:-66.240000px;}
.wsd{word-spacing:-17.055600px;}
.wsb{word-spacing:-16.884000px;}
.wsc{word-spacing:-16.848000px;}
.ws1d{word-spacing:-15.226440px;}
.ws22{word-spacing:-14.472000px;}
.wsa{word-spacing:-14.400003px;}
.ws2{word-spacing:-14.400000px;}
.ws1{word-spacing:-14.112000px;}
.ws20{word-spacing:-13.544400px;}
.ws18{word-spacing:-13.475400px;}
.ws1e{word-spacing:-13.426800px;}
.ws13{word-spacing:-13.360200px;}
.wsf{word-spacing:-13.351800px;}
.ws4{word-spacing:-13.248000px;}
.ws12{word-spacing:-13.227960px;}
.wse{word-spacing:-13.086600px;}
.ws6{word-spacing:-12.965760px;}
.ws7{word-spacing:-12.850560px;}
.ws8{word-spacing:-12.758160px;}
.ws5{word-spacing:-12.648960px;}
.ws26{word-spacing:-12.564000px;}
.ws23{word-spacing:-12.312000px;}
.ws25{word-spacing:-12.294000px;}
.ws2a{word-spacing:-12.240000px;}
.ws24{word-spacing:-12.168000px;}
.ws36{word-spacing:-12.027600px;}
.ws17{word-spacing:-11.955840px;}
.ws2f{word-spacing:-11.952000px;}
.ws1a{word-spacing:-11.916000px;}
.ws19{word-spacing:-11.833200px;}
.ws32{word-spacing:-11.782800px;}
.ws33{word-spacing:-11.776800px;}
.ws15{word-spacing:-11.722800px;}
.ws34{word-spacing:-11.654640px;}
.ws14{word-spacing:-11.654400px;}
.ws16{word-spacing:-11.593440px;}
.ws30{word-spacing:-11.435040px;}
.ws11{word-spacing:-11.390400px;}
.ws3{word-spacing:-11.376000px;}
.ws31{word-spacing:-11.361840px;}
.ws35{word-spacing:-11.293440px;}
.ws10{word-spacing:-11.221200px;}
.ws28{word-spacing:-10.902240px;}
.ws29{word-spacing:-10.835040px;}
.ws1b{word-spacing:-10.800000px;}
.ws2c{word-spacing:-10.764000px;}
.ws27{word-spacing:-10.679640px;}
.ws2e{word-spacing:-10.656840px;}
.ws1c{word-spacing:-10.638840px;}
.ws2b{word-spacing:-10.607040px;}
.ws0{word-spacing:-10.368000px;}
.ws2d{word-spacing:-8.352000px;}
.ws21{word-spacing:-8.121600px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-3.245760px;}
._6{margin-left:-2.033040px;}
._4{margin-left:-1.014000px;}
._0{width:1.080000px;}
._9{width:2.517120px;}
._5{width:3.841920px;}
._b{width:5.230320px;}
._7{width:7.087680px;}
._8{width:8.637120px;}
._a{width:10.499280px;}
._d{width:11.790720px;}
._11{width:13.573200px;}
._17{width:14.800800px;}
._14{width:15.903360px;}
._10{width:17.749200px;}
._f{width:19.324800px;}
._c{width:21.991680px;}
._3{width:30.528000px;}
._15{width:31.672800px;}
._16{width:32.684400px;}
._2{width:126.324000px;}
._1{width:376.392000px;}
._12{width:1052.969760px;}
._13{width:1082.609760px;}
.fc6{color:rgb(4,12,40);}
.fc5{color:rgb(29,27,26);}
.fc4{color:rgb(227,108,10);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(102,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:0.540000px;}
.y58{bottom:1.620000px;}
.y5a{bottom:1.650000px;}
.y112{bottom:2.880000px;}
.y1f3{bottom:2.925000px;}
.y167{bottom:3.060000px;}
.y96{bottom:3.240000px;}
.y13d{bottom:3.420000px;}
.y1c6{bottom:3.780000px;}
.y152{bottom:3.960000px;}
.y1c4{bottom:4.680000px;}
.y16c{bottom:5.040000px;}
.y1bc{bottom:5.940000px;}
.yfa{bottom:6.120000px;}
.y56{bottom:7.020000px;}
.y1c0{bottom:7.560000px;}
.y75{bottom:9.180000px;}
.y14b{bottom:9.360000px;}
.y137{bottom:9.900000px;}
.y17f{bottom:11.160000px;}
.yf2{bottom:14.220000px;}
.y145{bottom:14.400000px;}
.yd7{bottom:15.480000px;}
.y95{bottom:17.280000px;}
.y200{bottom:18.000000px;}
.y111{bottom:18.360000px;}
.y1f2{bottom:18.405000px;}
.y166{bottom:18.540000px;}
.y1ed{bottom:18.720000px;}
.y13c{bottom:18.900000px;}
.y1c5{bottom:19.260000px;}
.y151{bottom:19.440000px;}
.y12d{bottom:19.800000px;}
.y1c3{bottom:20.205000px;}
.y16b{bottom:20.520000px;}
.y71{bottom:21.240000px;}
.y1bb{bottom:21.420000px;}
.yf9{bottom:21.600000px;}
.y18d{bottom:21.780000px;}
.y7c{bottom:22.500000px;}
.y7f{bottom:23.040000px;}
.y14a{bottom:24.840000px;}
.y136{bottom:25.380000px;}
.y102{bottom:25.560000px;}
.y17e{bottom:26.640000px;}
.yc4{bottom:26.865000px;}
.yfe{bottom:27.180000px;}
.y204{bottom:28.080000px;}
.yf1{bottom:29.880000px;}
.yd6{bottom:30.960000px;}
.y110{bottom:33.840000px;}
.y1a4{bottom:33.870000px;}
.y170{bottom:33.885000px;}
.y165{bottom:34.020000px;}
.y13b{bottom:34.380000px;}
.y150{bottom:34.965000px;}
.y12c{bottom:35.280000px;}
.y16a{bottom:36.000000px;}
.y1ba{bottom:36.900000px;}
.y18c{bottom:37.260000px;}
.yf8{bottom:37.305000px;}
.y1bf{bottom:38.520000px;}
.y74{bottom:38.880000px;}
.ydc{bottom:40.005000px;}
.y135{bottom:40.860000px;}
.y101{bottom:41.040000px;}
.y207{bottom:41.580000px;}
.y17d{bottom:42.120000px;}
.yc3{bottom:42.345000px;}
.yfd{bottom:42.660000px;}
.y203{bottom:43.605000px;}
.y70{bottom:43.920000px;}
.yf0{bottom:45.360000px;}
.y144{bottom:45.405000px;}
.y7b{bottom:45.720000px;}
.y1fc{bottom:46.080000px;}
.yd5{bottom:46.485000px;}
.y10f{bottom:49.320000px;}
.y1a3{bottom:49.350000px;}
.y16f{bottom:49.365000px;}
.y164{bottom:49.500000px;}
.y13a{bottom:49.860000px;}
.y7e{bottom:50.250000px;}
.y14f{bottom:50.445000px;}
.y12b{bottom:50.760000px;}
.y169{bottom:51.480000px;}
.yd0{bottom:51.660000px;}
.y1b9{bottom:52.425000px;}
.y18b{bottom:52.740000px;}
.yf7{bottom:52.785000px;}
.y1be{bottom:54.045000px;}
.yca{bottom:54.360000px;}
.ydb{bottom:55.485000px;}
.yc0{bottom:55.620000px;}
.y134{bottom:56.340000px;}
.y100{bottom:56.520000px;}
.y206{bottom:57.060000px;}
.y17c{bottom:57.600000px;}
.y3{bottom:57.780000px;}
.y93{bottom:57.816000px;}
.yc2{bottom:57.825000px;}
.yfc{bottom:58.140000px;}
.y202{bottom:59.085000px;}
.yef{bottom:60.840000px;}
.y143{bottom:60.885000px;}
.y1fb{bottom:61.590000px;}
.yd4{bottom:61.965000px;}
.y123{bottom:64.800000px;}
.y1a2{bottom:64.830000px;}
.y10e{bottom:64.845000px;}
.y139{bottom:65.340000px;}
.y14e{bottom:65.925000px;}
.y12a{bottom:66.240000px;}
.y6f{bottom:66.780000px;}
.ycf{bottom:67.140000px;}
.y18a{bottom:68.220000px;}
.yf6{bottom:68.265000px;}
.y73{bottom:68.580000px;}
.y7a{bottom:68.760000px;}
.yc9{bottom:69.840000px;}
.yda{bottom:70.965000px;}
.ybf{bottom:71.100000px;}
.y133{bottom:71.820000px;}
.yff{bottom:72.000000px;}
.y17b{bottom:73.080000px;}
.yee{bottom:76.320000px;}
.y142{bottom:76.365000px;}
.yd3{bottom:77.445000px;}
.y209{bottom:80.274000px;}
.y196{bottom:80.280000px;}
.y1a1{bottom:80.310000px;}
.y10d{bottom:80.325000px;}
.y122{bottom:80.460000px;}
.y138{bottom:80.850000px;}
.y14d{bottom:81.405000px;}
.y129{bottom:81.720000px;}
.y205{bottom:82.116000px;}
.yce{bottom:82.620000px;}
.y1b8{bottom:83.205000px;}
.y1d0{bottom:83.556000px;}
.y189{bottom:83.700000px;}
.yf5{bottom:83.745000px;}
.ye6{bottom:84.276000px;}
.y1bd{bottom:84.645000px;}
.yc8{bottom:85.320000px;}
.yd9{bottom:86.445000px;}
.ybe{bottom:86.580000px;}
.ye5{bottom:88.056000px;}
.y17a{bottom:88.560000px;}
.y6e{bottom:89.460000px;}
.y141{bottom:91.845000px;}
.y79{bottom:91.980000px;}
.yd2{bottom:92.925000px;}
.y208{bottom:95.754000px;}
.y195{bottom:95.760000px;}
.y1a0{bottom:95.790000px;}
.y10c{bottom:95.805000px;}
.y121{bottom:95.940000px;}
.y132{bottom:96.330000px;}
.y14c{bottom:96.885000px;}
.y128{bottom:97.380000px;}
.y1cf{bottom:97.956000px;}
.ycd{bottom:98.130000px;}
.y25{bottom:98.820000px;}
.ye4{bottom:98.856000px;}
.yf4{bottom:99.225000px;}
.y188{bottom:99.360000px;}
.yc7{bottom:100.800000px;}
.y1ce{bottom:101.736000px;}
.yd8{bottom:101.925000px;}
.ybd{bottom:102.060000px;}
.y24{bottom:102.600000px;}
.y115{bottom:102.636000px;}
.y179{bottom:104.040000px;}
.y148{bottom:104.265000px;}
.y54{bottom:109.620000px;}
.y194{bottom:111.240000px;}
.y1f7{bottom:111.270000px;}
.y10b{bottom:111.285000px;}
.y120{bottom:111.420000px;}
.y19f{bottom:111.450000px;}
.y16d{bottom:112.185000px;}
.y1cd{bottom:112.536000px;}
.y127{bottom:112.860000px;}
.y1b6{bottom:113.220000px;}
.ye3{bottom:113.436000px;}
.ycc{bottom:113.610000px;}
.y23{bottom:114.660000px;}
.y187{bottom:114.840000px;}
.y78{bottom:115.200000px;}
.y15a{bottom:115.956000px;}
.yc6{bottom:116.280000px;}
.y1cc{bottom:116.316000px;}
.y140{bottom:116.685000px;}
.y23d{bottom:117.180000px;}
.ye2{bottom:117.216000px;}
.yd1{bottom:117.405000px;}
.y178{bottom:119.520000px;}
.y159{bottom:119.736000px;}
.y147{bottom:119.745000px;}
.y130{bottom:124.020000px;}
.y1f6{bottom:126.750000px;}
.y10a{bottom:126.765000px;}
.y11f{bottom:126.900000px;}
.y19e{bottom:126.930000px;}
.y1cb{bottom:127.296000px;}
.ye1{bottom:128.196000px;}
.y126{bottom:128.340000px;}
.ycb{bottom:129.090000px;}
.y53{bottom:130.320000px;}
.y158{bottom:130.716000px;}
.y1b5{bottom:130.860000px;}
.y1ca{bottom:131.076000px;}
.y1eb{bottom:131.625000px;}
.y3d{bottom:131.760000px;}
.ye0{bottom:131.976000px;}
.y13f{bottom:133.965000px;}
.y157{bottom:134.496000px;}
.y177{bottom:135.000000px;}
.y23c{bottom:135.180000px;}
.y146{bottom:135.225000px;}
.y12f{bottom:139.500000px;}
.y1c9{bottom:141.876000px;}
.y109{bottom:142.245000px;}
.y11e{bottom:142.380000px;}
.y19d{bottom:142.410000px;}
.ydf{bottom:142.776000px;}
.y125{bottom:143.820000px;}
.y114{bottom:144.036000px;}
.y156{bottom:145.296000px;}
.y1c8{bottom:145.656000px;}
.y186{bottom:145.830000px;}
.yde{bottom:146.556000px;}
.y162{bottom:146.745000px;}
.y1ea{bottom:147.105000px;}
.y1b4{bottom:148.710000px;}
.y176{bottom:150.510000px;}
.y52{bottom:151.020000px;}
.y23b{bottom:153.180000px;}
.y3c{bottom:154.620000px;}
.y12e{bottom:155.025000px;}
.y77{bottom:155.340000px;}
.y1aa{bottom:157.350000px;}
.y22{bottom:157.680000px;}
.y1c7{bottom:157.710000px;}
.y108{bottom:157.725000px;}
.y19b{bottom:157.860000px;}
.y193{bottom:157.890000px;}
.y11d{bottom:157.905000px;}
.ydd{bottom:158.610000px;}
.y155{bottom:160.050000px;}
.y1a9{bottom:161.130000px;}
.y185{bottom:161.310000px;}
.y161{bottom:162.225000px;}
.y1e9{bottom:162.585000px;}
.y154{bottom:163.830000px;}
.y175{bottom:165.990000px;}
.y1b3{bottom:166.530000px;}
.y23a{bottom:171.180000px;}
.y51{bottom:171.720000px;}
.y1fd{bottom:172.845000px;}
.y1a8{bottom:173.190000px;}
.y192{bottom:173.370000px;}
.y107{bottom:173.385000px;}
.y153{bottom:175.890000px;}
.y184{bottom:176.790000px;}
.y160{bottom:177.705000px;}
.y1e8{bottom:178.245000px;}
.y21{bottom:180.540000px;}
.y174{bottom:181.470000px;}
.y1b7{bottom:183.270000px;}
.y3b{bottom:183.960000px;}
.y103{bottom:184.890000px;}
.y6c{bottom:186.840000px;}
.yb0{bottom:187.605000px;}
.y191{bottom:188.850000px;}
.y106{bottom:188.865000px;}
.y239{bottom:189.180000px;}
.y1d1{bottom:191.370000px;}
.y183{bottom:192.270000px;}
.y50{bottom:192.780000px;}
.y15f{bottom:193.365000px;}
.y1e7{bottom:193.725000px;}
.y97{bottom:196.590000px;}
.y173{bottom:196.950000px;}
.y13e{bottom:202.350000px;}
.yaf{bottom:203.085000px;}
.y190{bottom:204.330000px;}
.y105{bottom:204.345000px;}
.y20{bottom:204.510000px;}
.y238{bottom:207.210000px;}
.y182{bottom:207.750000px;}
.y197{bottom:207.930000px;}
.y15e{bottom:208.845000px;}
.y1e6{bottom:209.205000px;}
.y4f{bottom:212.430000px;}
.y113{bottom:213.345000px;}
.y1c2{bottom:215.850000px;}
.y76{bottom:218.190000px;}
.yae{bottom:218.745000px;}
.y18f{bottom:219.810000px;}
.y11c{bottom:219.825000px;}
.y181{bottom:223.230000px;}
.y15d{bottom:224.325000px;}
.y1e5{bottom:224.685000px;}
.y237{bottom:225.210000px;}
.y104{bottom:228.825000px;}
.y3a{bottom:232.050000px;}
.yad{bottom:234.255000px;}
.y11b{bottom:235.305000px;}
.y18e{bottom:235.830000px;}
.y172{bottom:237.270000px;}
.y180{bottom:238.710000px;}
.y15c{bottom:239.805000px;}
.y1a7{bottom:240.195000px;}
.y1e{bottom:240.690000px;}
.y236{bottom:243.210000px;}
.y1f{bottom:246.630000px;}
.y1c1{bottom:249.555000px;}
.yac{bottom:249.735000px;}
.y11a{bottom:250.785000px;}
.y1d{bottom:260.490000px;}
.y235{bottom:261.210000px;}
.y201{bottom:263.775000px;}
.yab{bottom:265.215000px;}
.y119{bottom:266.265000px;}
.y234{bottom:279.210000px;}
.y1c{bottom:280.290000px;}
.yaa{bottom:280.695000px;}
.y171{bottom:281.055000px;}
.y1ab{bottom:281.235000px;}
.y118{bottom:281.745000px;}
.yec{bottom:283.725000px;}
.y1a6{bottom:287.355000px;}
.ya9{bottom:296.175000px;}
.ybb{bottom:296.895000px;}
.y233{bottom:297.210000px;}
.y4e{bottom:299.190000px;}
.yeb{bottom:299.385000px;}
.y1b{bottom:300.090000px;}
.y1ff{bottom:311.115000px;}
.ya8{bottom:311.655000px;}
.y117{bottom:312.345000px;}
.yba{bottom:312.375000px;}
.y149{bottom:312.735000px;}
.yea{bottom:314.865000px;}
.y232{bottom:315.210000px;}
.y1e3{bottom:318.135000px;}
.y4d{bottom:319.890000px;}
.y1a{bottom:320.070000px;}
.ya7{bottom:327.135000px;}
.yb1{bottom:327.495000px;}
.yb9{bottom:327.855000px;}
.ye9{bottom:330.345000px;}
.y231{bottom:333.210000px;}
.y1e2{bottom:333.615000px;}
.y1a5{bottom:334.695000px;}
.y4c{bottom:340.590000px;}
.y1fe{bottom:342.435000px;}
.ya6{bottom:342.615000px;}
.yb8{bottom:343.335000px;}
.ye8{bottom:345.825000px;}
.y1e1{bottom:349.095000px;}
.y131{bottom:350.895000px;}
.y230{bottom:351.210000px;}
.y19{bottom:353.910000px;}
.ya5{bottom:358.095000px;}
.yb7{bottom:358.815000px;}
.y4b{bottom:361.290000px;}
.y1e0{bottom:364.575000px;}
.y22f{bottom:369.210000px;}
.ya4{bottom:373.575000px;}
.yb6{bottom:374.295000px;}
.y18{bottom:376.770000px;}
.y1f5{bottom:377.535000px;}
.y1df{bottom:380.055000px;}
.y4a{bottom:381.990000px;}
.y22e{bottom:387.210000px;}
.ya3{bottom:389.055000px;}
.yb5{bottom:389.955000px;}
.y1de{bottom:395.535000px;}
.y19c{bottom:397.335000px;}
.y17{bottom:399.450000px;}
.y49{bottom:402.690000px;}
.ya2{bottom:404.535000px;}
.y22d{bottom:405.210000px;}
.yb4{bottom:405.435000px;}
.y1dd{bottom:411.015000px;}
.y6b{bottom:414.750000px;}
.ya1{bottom:420.060000px;}
.yb3{bottom:420.915000px;}
.y16{bottom:422.310000px;}
.y22c{bottom:423.210000px;}
.y48{bottom:423.390000px;}
.y1dc{bottom:426.540000px;}
.ye7{bottom:427.065000px;}
.ya0{bottom:435.540000px;}
.y22b{bottom:441.255000px;}
.y1db{bottom:442.020000px;}
.y91{bottom:443.955000px;}
.y47{bottom:444.495000px;}
.yb2{bottom:445.395000px;}
.y6a{bottom:446.475000px;}
.y9f{bottom:451.020000px;}
.y1fa{bottom:452.445000px;}
.y15{bottom:454.035000px;}
.y1da{bottom:457.500000px;}
.y22a{bottom:459.255000px;}
.y116{bottom:460.545000px;}
.y1b2{bottom:461.265000px;}
.y9e{bottom:466.500000px;}
.yc5{bottom:469.905000px;}
.y1d9{bottom:472.980000px;}
.y14{bottom:473.295000px;}
.y46{bottom:476.355000px;}
.y229{bottom:477.255000px;}
.y69{bottom:478.335000px;}
.y9d{bottom:482.160000px;}
.y1f9{bottom:484.305000px;}
.y90{bottom:486.615000px;}
.y1d8{bottom:488.460000px;}
.y1ad{bottom:488.775000px;}
.y1ac{bottom:491.655000px;}
.y228{bottom:495.255000px;}
.y9c{bottom:497.640000px;}
.y45{bottom:499.035000px;}
.y1d7{bottom:503.940000px;}
.y13{bottom:504.795000px;}
.y68{bottom:510.015000px;}
.yfb{bottom:512.385000px;}
.y9b{bottom:513.120000px;}
.y227{bottom:513.255000px;}
.y1f8{bottom:515.985000px;}
.y1d6{bottom:519.420000px;}
.y44{bottom:528.555000px;}
.y9a{bottom:528.600000px;}
.y226{bottom:531.255000px;}
.y8f{bottom:531.795000px;}
.y15b{bottom:533.085000px;}
.y1d5{bottom:535.080000px;}
.y1b1{bottom:539.385000px;}
.y67{bottom:541.875000px;}
.y99{bottom:544.080000px;}
.y39{bottom:544.395000px;}
.y1e4{bottom:548.205000px;}
.y225{bottom:549.255000px;}
.y199{bottom:549.480000px;}
.y1d4{bottom:550.560000px;}
.y8e{bottom:563.655000px;}
.y198{bottom:564.960000px;}
.y1d3{bottom:566.040000px;}
.y224{bottom:567.255000px;}
.y38{bottom:573.555000px;}
.y98{bottom:574.860000px;}
.y43{bottom:576.435000px;}
.y1f4{bottom:579.885000px;}
.y16e{bottom:580.425000px;}
.y1d2{bottom:581.520000px;}
.yf3{bottom:584.025000px;}
.y223{bottom:585.255000px;}
.y8d{bottom:586.335000px;}
.yc1{bottom:599.685000px;}
.y55{bottom:600.375000px;}
.y222{bottom:603.255000px;}
.y66{bottom:605.415000px;}
.y8c{bottom:609.195000px;}
.y1f1{bottom:611.565000px;}
.y19a{bottom:615.030000px;}
.y221{bottom:621.255000px;}
.y37{bottom:622.335000px;}
.y5b{bottom:626.655000px;}
.y124{bottom:629.070000px;}
.y7d{bottom:630.435000px;}
.y1b0{bottom:633.210000px;}
.y57{bottom:639.255000px;}
.y8b{bottom:640.875000px;}
.y1f0{bottom:643.470000px;}
.y220{bottom:657.255000px;}
.y168{bottom:658.590000px;}
.y8a{bottom:663.735000px;}
.y36{bottom:669.315000px;}
.ybc{bottom:670.830000px;}
.y59{bottom:674.175000px;}
.y1ef{bottom:675.150000px;}
.y21f{bottom:675.285000px;}
.y1af{bottom:680.370000px;}
.y89{bottom:686.445000px;}
.y21e{bottom:693.285000px;}
.yed{bottom:696.570000px;}
.y255{bottom:707.865000px;}
.y88{bottom:709.305000px;}
.y21d{bottom:711.285000px;}
.y35{bottom:711.465000px;}
.y1ae{bottom:712.050000px;}
.y1ee{bottom:722.310000px;}
.y163{bottom:723.390000px;}
.y254{bottom:725.865000px;}
.y12{bottom:727.125000px;}
.y21c{bottom:729.285000px;}
.y65{bottom:740.625000px;}
.y253{bottom:743.865000px;}
.y34{bottom:747.285000px;}
.y6d{bottom:749.625000px;}
.y11{bottom:749.805000px;}
.y87{bottom:750.345000px;}
.y1ec{bottom:754.170000px;}
.y252{bottom:761.865000px;}
.y21b{bottom:765.285000px;}
.y10{bottom:772.665000px;}
.y33{bottom:776.265000px;}
.y251{bottom:779.865000px;}
.y21a{bottom:783.285000px;}
.y94{bottom:786.210000px;}
.yf{bottom:795.345000px;}
.y86{bottom:795.705000px;}
.y250{bottom:797.865000px;}
.y219{bottom:801.285000px;}
.y32{bottom:805.245000px;}
.y24f{bottom:815.865000px;}
.ye{bottom:818.205000px;}
.y218{bottom:819.285000px;}
.y92{bottom:824.940000px;}
.y85{bottom:827.385000px;}
.y24e{bottom:833.865000px;}
.y31{bottom:834.045000px;}
.y217{bottom:837.285000px;}
.yd{bottom:840.885000px;}
.y24d{bottom:851.865000px;}
.y216{bottom:855.285000px;}
.y84{bottom:856.725000px;}
.yc{bottom:863.745000px;}
.y24c{bottom:869.865000px;}
.y30{bottom:872.745000px;}
.y215{bottom:873.285000px;}
.y24b{bottom:887.865000px;}
.y214{bottom:891.285000px;}
.y64{bottom:891.825000px;}
.yb{bottom:895.425000px;}
.y83{bottom:904.785000px;}
.y24a{bottom:905.865000px;}
.y213{bottom:909.285000px;}
.y42{bottom:910.365000px;}
.y63{bottom:914.730000px;}
.ya{bottom:918.330000px;}
.y249{bottom:923.910000px;}
.y2f{bottom:927.330000px;}
.y62{bottom:937.410000px;}
.y9{bottom:941.010000px;}
.y41{bottom:941.190000px;}
.y248{bottom:941.910000px;}
.y212{bottom:945.330000px;}
.y2e{bottom:950.010000px;}
.y247{bottom:959.910000px;}
.y211{bottom:963.330000px;}
.y8{bottom:963.870000px;}
.y40{bottom:964.050000px;}
.y61{bottom:966.030000px;}
.y2d{bottom:972.870000px;}
.y72{bottom:975.210000px;}
.y246{bottom:977.910000px;}
.y210{bottom:981.330000px;}
.y7{bottom:986.550000px;}
.y2c{bottom:995.550000px;}
.y3f{bottom:995.730000px;}
.y245{bottom:995.910000px;}
.y20f{bottom:999.330000px;}
.y244{bottom:1013.910000px;}
.y20e{bottom:1017.330000px;}
.y2b{bottom:1018.410000px;}
.y3e{bottom:1024.350000px;}
.y6{bottom:1027.770000px;}
.y243{bottom:1031.910000px;}
.y20d{bottom:1035.330000px;}
.y242{bottom:1049.910000px;}
.y2a{bottom:1050.090000px;}
.y20c{bottom:1053.330000px;}
.y82{bottom:1061.970000px;}
.y241{bottom:1067.910000px;}
.y20b{bottom:1071.330000px;}
.y29{bottom:1072.950000px;}
.y5{bottom:1075.290000px;}
.y60{bottom:1077.810000px;}
.y81{bottom:1084.650000px;}
.y240{bottom:1085.910000px;}
.y28{bottom:1095.630000px;}
.y5f{bottom:1098.510000px;}
.y23f{bottom:1103.910000px;}
.y4{bottom:1106.430000px;}
.y80{bottom:1107.510000px;}
.y20a{bottom:1110.930000px;}
.y5e{bottom:1119.210000px;}
.y23e{bottom:1121.910000px;}
.y2{bottom:1133.430000px;}
.y27{bottom:1136.850000px;}
.y5d{bottom:1139.910000px;}
.y1{bottom:1149.090000px;}
.y26{bottom:1194.840000px;}
.h19{height:14.040000px;}
.h17{height:15.120000px;}
.h18{height:15.156000px;}
.h23{height:17.280000px;}
.h15{height:20.520000px;}
.hc{height:23.093438px;}
.h31{height:30.077578px;}
.h5f{height:30.600000px;}
.h4d{height:30.960000px;}
.h58{height:30.996000px;}
.h5b{height:31.140000px;}
.h57{height:31.320000px;}
.h5a{height:31.500000px;}
.h4a{height:31.536000px;}
.h53{height:31.860000px;}
.h52{height:32.796000px;}
.ha{height:33.708960px;}
.h5e{height:34.380000px;}
.h54{height:35.143594px;}
.hd{height:36.839531px;}
.h3d{height:37.440000px;}
.h2a{height:39.313477px;}
.h27{height:39.339844px;}
.h2e{height:41.346562px;}
.h24{height:43.506914px;}
.h26{height:43.536094px;}
.h44{height:46.440000px;}
.h3{height:46.818000px;}
.h1c{height:47.980898px;}
.h2b{height:48.256875px;}
.h63{height:50.317920px;}
.he{height:51.811920px;}
.h16{height:53.709961px;}
.h62{height:55.503491px;}
.h8{height:55.774080px;}
.h7{height:57.430080px;}
.h12{height:60.552000px;}
.h6{height:60.624000px;}
.h14{height:61.423863px;}
.h49{height:61.920000px;}
.h40{height:62.100000px;}
.h20{height:62.424000px;}
.h41{height:64.080000px;}
.h2{height:65.884219px;}
.h9{height:66.078281px;}
.hb{height:67.824844px;}
.h13{height:68.084282px;}
.h2c{height:70.416000px;}
.h35{height:70.740000px;}
.h11{height:70.930080px;}
.h60{height:71.676000px;}
.h10{height:73.036080px;}
.h4c{height:73.440000px;}
.h5c{height:74.196000px;}
.h5{height:75.690000px;}
.h4{height:75.780000px;}
.h4f{height:77.400000px;}
.h43{height:77.436000px;}
.h1b{height:80.100000px;}
.h36{height:84.600000px;}
.h1f{height:84.816000px;}
.h1e{height:86.255508px;}
.hf{height:86.585445px;}
.h33{height:88.920000px;}
.h4e{height:92.916000px;}
.h51{height:97.236000px;}
.h61{height:108.360000px;}
.h3b{height:108.936000px;}
.h3e{height:109.476000px;}
.h34{height:111.816000px;}
.h29{height:114.660000px;}
.h1a{height:121.140000px;}
.h42{height:124.776000px;}
.h2d{height:128.880000px;}
.h30{height:129.996000px;}
.h2f{height:141.696000px;}
.h3c{height:147.816000px;}
.h39{height:156.420000px;}
.h3a{height:167.610000px;}
.h59{height:169.950000px;}
.h47{height:170.460000px;}
.h1d{height:175.320000px;}
.h50{height:179.130000px;}
.h5d{height:185.430000px;}
.h48{height:216.975000px;}
.h56{height:237.270000px;}
.h37{height:241.455000px;}
.h45{height:251.310000px;}
.h3f{height:252.390000px;}
.h38{height:324.930000px;}
.h32{height:358.410000px;}
.h28{height:457.995000px;}
.h4b{height:504.255000px;}
.h46{height:577.545000px;}
.h25{height:588.885000px;}
.h55{height:594.105000px;}
.h21{height:892.980000px;}
.h22{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:45.000000px;}
.w7{width:84.060000px;}
.w5{width:85.356000px;}
.w4{width:86.256000px;}
.w6{width:129.636000px;}
.w11{width:148.896000px;}
.wf{width:191.370000px;}
.w10{width:223.230000px;}
.w12{width:499.755000px;}
.wb{width:625.245000px;}
.wa{width:643.965000px;}
.w8{width:730.050000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w13{width:1262.879962px;}
.we{width:1262.879981px;}
.wc{width:1262.880000px;}
.wd{width:1263.000000px;}
.x0{left:0.000000px;}
.x31{left:8.136000px;}
.x23{left:10.800000px;}
.x2b{left:37.794000px;}
.x28{left:42.336000px;}
.x2c{left:64.794000px;}
.x6{left:80.999987px;}
.x11{left:84.779987px;}
.xd{left:93.275987px;}
.xe{left:94.895987px;}
.x9{left:101.555987px;}
.x1a{left:108.035987px;}
.x36{left:111.815981px;}
.x37{left:115.595981px;}
.x3a{left:119.195981px;}
.x2a{left:120.456000px;}
.xa{left:123.515987px;}
.x1d{left:135.035987px;}
.x2d{left:139.356000px;}
.x4{left:145.115987px;}
.x3b{left:152.669987px;}
.x13{left:156.089987px;}
.x3{left:158.069987px;}
.x14{left:159.329987px;}
.x1b{left:162.029987px;}
.x1c{left:189.029987px;}
.x8{left:211.349987px;}
.x17{left:212.429987px;}
.x20{left:217.649987px;}
.x1f{left:221.609987px;}
.x22{left:233.310000px;}
.x21{left:243.029987px;}
.x10{left:297.074987px;}
.x32{left:299.370000px;}
.x35{left:324.029981px;}
.x16{left:362.414987px;}
.xf{left:375.374987px;}
.x12{left:384.734987px;}
.x24{left:402.555000px;}
.x15{left:411.194987px;}
.x5{left:441.794987px;}
.x2{left:446.474987px;}
.x38{left:495.254981px;}
.x39{left:497.594981px;}
.x30{left:499.034981px;}
.x33{left:522.615000px;}
.x26{left:545.505000px;}
.x1e{left:598.424987px;}
.x18{left:629.924987px;}
.x25{left:646.305000px;}
.x7{left:654.584987px;}
.x34{left:671.505000px;}
.x19{left:680.909987px;}
.xb{left:689.549973px;}
.xc{left:692.789987px;}
.x2e{left:703.049987px;}
.x2f{left:727.664981px;}
.x29{left:766.590000px;}
.x1{left:812.129987px;}
.x27{left:814.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.ls53{letter-spacing:-0.581333pt;}
.ls56{letter-spacing:-0.266667pt;}
.ls2b{letter-spacing:-0.264533pt;}
.ls2e{letter-spacing:-0.262400pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.234133pt;}
.ls49{letter-spacing:-0.218133pt;}
.ls51{letter-spacing:-0.205867pt;}
.ls2c{letter-spacing:-0.203733pt;}
.ls45{letter-spacing:-0.197867pt;}
.ls47{letter-spacing:-0.188267pt;}
.lsb{letter-spacing:-0.179200pt;}
.ls55{letter-spacing:-0.155733pt;}
.ls31{letter-spacing:-0.150400pt;}
.ls1c{letter-spacing:-0.143467pt;}
.ls50{letter-spacing:-0.140800pt;}
.ls1e{letter-spacing:-0.137600pt;}
.ls3f{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.120533pt;}
.ls30{letter-spacing:-0.105600pt;}
.ls8{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.082133pt;}
.ls42{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.059733pt;}
.ls52{letter-spacing:-0.047360pt;}
.ls32{letter-spacing:-0.032000pt;}
.ls44{letter-spacing:-0.019200pt;}
.ls40{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000003pt;}
.ls4e{letter-spacing:0.001280pt;}
.ls1f{letter-spacing:0.012800pt;}
.ls3e{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls4c{letter-spacing:0.054400pt;}
.ls4f{letter-spacing:0.056533pt;}
.ls17{letter-spacing:0.064000pt;}
.ls57{letter-spacing:0.067200pt;}
.ls12{letter-spacing:0.071680pt;}
.ls1d{letter-spacing:0.092267pt;}
.ls4b{letter-spacing:0.096000pt;}
.ls41{letter-spacing:0.097067pt;}
.ls33{letter-spacing:0.097280pt;}
.ls2a{letter-spacing:0.099733pt;}
.lsc{letter-spacing:0.102400pt;}
.ls34{letter-spacing:0.109867pt;}
.ls0{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.137600pt;}
.ls39{letter-spacing:0.145920pt;}
.ls18{letter-spacing:0.153600pt;}
.ls3b{letter-spacing:0.158933pt;}
.ls10{letter-spacing:0.175360pt;}
.ls1b{letter-spacing:0.184533pt;}
.ls54{letter-spacing:0.190720pt;}
.ls2f{letter-spacing:0.202133pt;}
.ls43{letter-spacing:0.224000pt;}
.ls37{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.244267pt;}
.ls26{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.263467pt;}
.ls21{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.277120pt;}
.ls22{letter-spacing:0.279040pt;}
.ls4a{letter-spacing:0.286933pt;}
.ls3d{letter-spacing:0.307200pt;}
.ls11{letter-spacing:0.308480pt;}
.lse{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.321920pt;}
.ls2d{letter-spacing:0.322133pt;}
.ls20{letter-spacing:0.335467pt;}
.ls48{letter-spacing:0.336000pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.416000pt;}
.ls1{letter-spacing:3.584000pt;}
.ls5{letter-spacing:14.351360pt;}
.ls3{letter-spacing:15.631360pt;}
.ls4{letter-spacing:16.271360pt;}
.ls2{letter-spacing:25.871360pt;}
.ls28{letter-spacing:26.511360pt;}
.ls23{letter-spacing:27.791360pt;}
.ls14{letter-spacing:31.663360pt;}
.ls35{letter-spacing:32.271360pt;}
.ls29{letter-spacing:33.232640pt;}
.ls38{letter-spacing:33.551360pt;}
.ls25{letter-spacing:37.072640pt;}
.ls24{letter-spacing:38.992640pt;}
.lsf{letter-spacing:45.743360pt;}
.ls6{letter-spacing:754.853120pt;}
.ws1f{word-spacing:-58.880000pt;}
.wsd{word-spacing:-15.160533pt;}
.wsb{word-spacing:-15.008000pt;}
.wsc{word-spacing:-14.976000pt;}
.ws1d{word-spacing:-13.534613pt;}
.ws22{word-spacing:-12.864000pt;}
.wsa{word-spacing:-12.800003pt;}
.ws2{word-spacing:-12.800000pt;}
.ws1{word-spacing:-12.544000pt;}
.ws20{word-spacing:-12.039467pt;}
.ws18{word-spacing:-11.978133pt;}
.ws1e{word-spacing:-11.934933pt;}
.ws13{word-spacing:-11.875733pt;}
.wsf{word-spacing:-11.868267pt;}
.ws4{word-spacing:-11.776000pt;}
.ws12{word-spacing:-11.758187pt;}
.wse{word-spacing:-11.632533pt;}
.ws6{word-spacing:-11.525120pt;}
.ws7{word-spacing:-11.422720pt;}
.ws8{word-spacing:-11.340587pt;}
.ws5{word-spacing:-11.243520pt;}
.ws26{word-spacing:-11.168000pt;}
.ws23{word-spacing:-10.944000pt;}
.ws25{word-spacing:-10.928000pt;}
.ws2a{word-spacing:-10.880000pt;}
.ws24{word-spacing:-10.816000pt;}
.ws36{word-spacing:-10.691200pt;}
.ws17{word-spacing:-10.627413pt;}
.ws2f{word-spacing:-10.624000pt;}
.ws1a{word-spacing:-10.592000pt;}
.ws19{word-spacing:-10.518400pt;}
.ws32{word-spacing:-10.473600pt;}
.ws33{word-spacing:-10.468267pt;}
.ws15{word-spacing:-10.420267pt;}
.ws34{word-spacing:-10.359680pt;}
.ws14{word-spacing:-10.359467pt;}
.ws16{word-spacing:-10.305280pt;}
.ws30{word-spacing:-10.164480pt;}
.ws11{word-spacing:-10.124800pt;}
.ws3{word-spacing:-10.112000pt;}
.ws31{word-spacing:-10.099413pt;}
.ws35{word-spacing:-10.038613pt;}
.ws10{word-spacing:-9.974400pt;}
.ws28{word-spacing:-9.690880pt;}
.ws29{word-spacing:-9.631147pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws2c{word-spacing:-9.568000pt;}
.ws27{word-spacing:-9.493013pt;}
.ws2e{word-spacing:-9.472747pt;}
.ws1c{word-spacing:-9.456747pt;}
.ws2b{word-spacing:-9.428480pt;}
.ws0{word-spacing:-9.216000pt;}
.ws2d{word-spacing:-7.424000pt;}
.ws21{word-spacing:-7.219200pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-2.885120pt;}
._6{margin-left:-1.807147pt;}
._4{margin-left:-0.901333pt;}
._0{width:0.960000pt;}
._9{width:2.237440pt;}
._5{width:3.415040pt;}
._b{width:4.649173pt;}
._7{width:6.300160pt;}
._8{width:7.677440pt;}
._a{width:9.332693pt;}
._d{width:10.480640pt;}
._11{width:12.065067pt;}
._17{width:13.156267pt;}
._14{width:14.136320pt;}
._10{width:15.777067pt;}
._f{width:17.177600pt;}
._c{width:19.548160pt;}
._3{width:27.136000pt;}
._15{width:28.153600pt;}
._16{width:29.052800pt;}
._2{width:112.288000pt;}
._1{width:334.570667pt;}
._12{width:935.973120pt;}
._13{width:962.319787pt;}
.fs7{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:0.480000pt;}
.y58{bottom:1.440000pt;}
.y5a{bottom:1.466667pt;}
.y112{bottom:2.560000pt;}
.y1f3{bottom:2.600000pt;}
.y167{bottom:2.720000pt;}
.y96{bottom:2.880000pt;}
.y13d{bottom:3.040000pt;}
.y1c6{bottom:3.360000pt;}
.y152{bottom:3.520000pt;}
.y1c4{bottom:4.160000pt;}
.y16c{bottom:4.480000pt;}
.y1bc{bottom:5.280000pt;}
.yfa{bottom:5.440000pt;}
.y56{bottom:6.240000pt;}
.y1c0{bottom:6.720000pt;}
.y75{bottom:8.160000pt;}
.y14b{bottom:8.320000pt;}
.y137{bottom:8.800000pt;}
.y17f{bottom:9.920000pt;}
.yf2{bottom:12.640000pt;}
.y145{bottom:12.800000pt;}
.yd7{bottom:13.760000pt;}
.y95{bottom:15.360000pt;}
.y200{bottom:16.000000pt;}
.y111{bottom:16.320000pt;}
.y1f2{bottom:16.360000pt;}
.y166{bottom:16.480000pt;}
.y1ed{bottom:16.640000pt;}
.y13c{bottom:16.800000pt;}
.y1c5{bottom:17.120000pt;}
.y151{bottom:17.280000pt;}
.y12d{bottom:17.600000pt;}
.y1c3{bottom:17.960000pt;}
.y16b{bottom:18.240000pt;}
.y71{bottom:18.880000pt;}
.y1bb{bottom:19.040000pt;}
.yf9{bottom:19.200000pt;}
.y18d{bottom:19.360000pt;}
.y7c{bottom:20.000000pt;}
.y7f{bottom:20.480000pt;}
.y14a{bottom:22.080000pt;}
.y136{bottom:22.560000pt;}
.y102{bottom:22.720000pt;}
.y17e{bottom:23.680000pt;}
.yc4{bottom:23.880000pt;}
.yfe{bottom:24.160000pt;}
.y204{bottom:24.960000pt;}
.yf1{bottom:26.560000pt;}
.yd6{bottom:27.520000pt;}
.y110{bottom:30.080000pt;}
.y1a4{bottom:30.106667pt;}
.y170{bottom:30.120000pt;}
.y165{bottom:30.240000pt;}
.y13b{bottom:30.560000pt;}
.y150{bottom:31.080000pt;}
.y12c{bottom:31.360000pt;}
.y16a{bottom:32.000000pt;}
.y1ba{bottom:32.800000pt;}
.y18c{bottom:33.120000pt;}
.yf8{bottom:33.160000pt;}
.y1bf{bottom:34.240000pt;}
.y74{bottom:34.560000pt;}
.ydc{bottom:35.560000pt;}
.y135{bottom:36.320000pt;}
.y101{bottom:36.480000pt;}
.y207{bottom:36.960000pt;}
.y17d{bottom:37.440000pt;}
.yc3{bottom:37.640000pt;}
.yfd{bottom:37.920000pt;}
.y203{bottom:38.760000pt;}
.y70{bottom:39.040000pt;}
.yf0{bottom:40.320000pt;}
.y144{bottom:40.360000pt;}
.y7b{bottom:40.640000pt;}
.y1fc{bottom:40.960000pt;}
.yd5{bottom:41.320000pt;}
.y10f{bottom:43.840000pt;}
.y1a3{bottom:43.866667pt;}
.y16f{bottom:43.880000pt;}
.y164{bottom:44.000000pt;}
.y13a{bottom:44.320000pt;}
.y7e{bottom:44.666667pt;}
.y14f{bottom:44.840000pt;}
.y12b{bottom:45.120000pt;}
.y169{bottom:45.760000pt;}
.yd0{bottom:45.920000pt;}
.y1b9{bottom:46.600000pt;}
.y18b{bottom:46.880000pt;}
.yf7{bottom:46.920000pt;}
.y1be{bottom:48.040000pt;}
.yca{bottom:48.320000pt;}
.ydb{bottom:49.320000pt;}
.yc0{bottom:49.440000pt;}
.y134{bottom:50.080000pt;}
.y100{bottom:50.240000pt;}
.y206{bottom:50.720000pt;}
.y17c{bottom:51.200000pt;}
.y3{bottom:51.360000pt;}
.y93{bottom:51.392000pt;}
.yc2{bottom:51.400000pt;}
.yfc{bottom:51.680000pt;}
.y202{bottom:52.520000pt;}
.yef{bottom:54.080000pt;}
.y143{bottom:54.120000pt;}
.y1fb{bottom:54.746667pt;}
.yd4{bottom:55.080000pt;}
.y123{bottom:57.600000pt;}
.y1a2{bottom:57.626667pt;}
.y10e{bottom:57.640000pt;}
.y139{bottom:58.080000pt;}
.y14e{bottom:58.600000pt;}
.y12a{bottom:58.880000pt;}
.y6f{bottom:59.360000pt;}
.ycf{bottom:59.680000pt;}
.y18a{bottom:60.640000pt;}
.yf6{bottom:60.680000pt;}
.y73{bottom:60.960000pt;}
.y7a{bottom:61.120000pt;}
.yc9{bottom:62.080000pt;}
.yda{bottom:63.080000pt;}
.ybf{bottom:63.200000pt;}
.y133{bottom:63.840000pt;}
.yff{bottom:64.000000pt;}
.y17b{bottom:64.960000pt;}
.yee{bottom:67.840000pt;}
.y142{bottom:67.880000pt;}
.yd3{bottom:68.840000pt;}
.y209{bottom:71.354667pt;}
.y196{bottom:71.360000pt;}
.y1a1{bottom:71.386667pt;}
.y10d{bottom:71.400000pt;}
.y122{bottom:71.520000pt;}
.y138{bottom:71.866667pt;}
.y14d{bottom:72.360000pt;}
.y129{bottom:72.640000pt;}
.y205{bottom:72.992000pt;}
.yce{bottom:73.440000pt;}
.y1b8{bottom:73.960000pt;}
.y1d0{bottom:74.272000pt;}
.y189{bottom:74.400000pt;}
.yf5{bottom:74.440000pt;}
.ye6{bottom:74.912000pt;}
.y1bd{bottom:75.240000pt;}
.yc8{bottom:75.840000pt;}
.yd9{bottom:76.840000pt;}
.ybe{bottom:76.960000pt;}
.ye5{bottom:78.272000pt;}
.y17a{bottom:78.720000pt;}
.y6e{bottom:79.520000pt;}
.y141{bottom:81.640000pt;}
.y79{bottom:81.760000pt;}
.yd2{bottom:82.600000pt;}
.y208{bottom:85.114667pt;}
.y195{bottom:85.120000pt;}
.y1a0{bottom:85.146667pt;}
.y10c{bottom:85.160000pt;}
.y121{bottom:85.280000pt;}
.y132{bottom:85.626667pt;}
.y14c{bottom:86.120000pt;}
.y128{bottom:86.560000pt;}
.y1cf{bottom:87.072000pt;}
.ycd{bottom:87.226667pt;}
.y25{bottom:87.840000pt;}
.ye4{bottom:87.872000pt;}
.yf4{bottom:88.200000pt;}
.y188{bottom:88.320000pt;}
.yc7{bottom:89.600000pt;}
.y1ce{bottom:90.432000pt;}
.yd8{bottom:90.600000pt;}
.ybd{bottom:90.720000pt;}
.y24{bottom:91.200000pt;}
.y115{bottom:91.232000pt;}
.y179{bottom:92.480000pt;}
.y148{bottom:92.680000pt;}
.y54{bottom:97.440000pt;}
.y194{bottom:98.880000pt;}
.y1f7{bottom:98.906667pt;}
.y10b{bottom:98.920000pt;}
.y120{bottom:99.040000pt;}
.y19f{bottom:99.066667pt;}
.y16d{bottom:99.720000pt;}
.y1cd{bottom:100.032000pt;}
.y127{bottom:100.320000pt;}
.y1b6{bottom:100.640000pt;}
.ye3{bottom:100.832000pt;}
.ycc{bottom:100.986667pt;}
.y23{bottom:101.920000pt;}
.y187{bottom:102.080000pt;}
.y78{bottom:102.400000pt;}
.y15a{bottom:103.072000pt;}
.yc6{bottom:103.360000pt;}
.y1cc{bottom:103.392000pt;}
.y140{bottom:103.720000pt;}
.y23d{bottom:104.160000pt;}
.ye2{bottom:104.192000pt;}
.yd1{bottom:104.360000pt;}
.y178{bottom:106.240000pt;}
.y159{bottom:106.432000pt;}
.y147{bottom:106.440000pt;}
.y130{bottom:110.240000pt;}
.y1f6{bottom:112.666667pt;}
.y10a{bottom:112.680000pt;}
.y11f{bottom:112.800000pt;}
.y19e{bottom:112.826667pt;}
.y1cb{bottom:113.152000pt;}
.ye1{bottom:113.952000pt;}
.y126{bottom:114.080000pt;}
.ycb{bottom:114.746667pt;}
.y53{bottom:115.840000pt;}
.y158{bottom:116.192000pt;}
.y1b5{bottom:116.320000pt;}
.y1ca{bottom:116.512000pt;}
.y1eb{bottom:117.000000pt;}
.y3d{bottom:117.120000pt;}
.ye0{bottom:117.312000pt;}
.y13f{bottom:119.080000pt;}
.y157{bottom:119.552000pt;}
.y177{bottom:120.000000pt;}
.y23c{bottom:120.160000pt;}
.y146{bottom:120.200000pt;}
.y12f{bottom:124.000000pt;}
.y1c9{bottom:126.112000pt;}
.y109{bottom:126.440000pt;}
.y11e{bottom:126.560000pt;}
.y19d{bottom:126.586667pt;}
.ydf{bottom:126.912000pt;}
.y125{bottom:127.840000pt;}
.y114{bottom:128.032000pt;}
.y156{bottom:129.152000pt;}
.y1c8{bottom:129.472000pt;}
.y186{bottom:129.626667pt;}
.yde{bottom:130.272000pt;}
.y162{bottom:130.440000pt;}
.y1ea{bottom:130.760000pt;}
.y1b4{bottom:132.186667pt;}
.y176{bottom:133.786667pt;}
.y52{bottom:134.240000pt;}
.y23b{bottom:136.160000pt;}
.y3c{bottom:137.440000pt;}
.y12e{bottom:137.800000pt;}
.y77{bottom:138.080000pt;}
.y1aa{bottom:139.866667pt;}
.y22{bottom:140.160000pt;}
.y1c7{bottom:140.186667pt;}
.y108{bottom:140.200000pt;}
.y19b{bottom:140.320000pt;}
.y193{bottom:140.346667pt;}
.y11d{bottom:140.360000pt;}
.ydd{bottom:140.986667pt;}
.y155{bottom:142.266667pt;}
.y1a9{bottom:143.226667pt;}
.y185{bottom:143.386667pt;}
.y161{bottom:144.200000pt;}
.y1e9{bottom:144.520000pt;}
.y154{bottom:145.626667pt;}
.y175{bottom:147.546667pt;}
.y1b3{bottom:148.026667pt;}
.y23a{bottom:152.160000pt;}
.y51{bottom:152.640000pt;}
.y1fd{bottom:153.640000pt;}
.y1a8{bottom:153.946667pt;}
.y192{bottom:154.106667pt;}
.y107{bottom:154.120000pt;}
.y153{bottom:156.346667pt;}
.y184{bottom:157.146667pt;}
.y160{bottom:157.960000pt;}
.y1e8{bottom:158.440000pt;}
.y21{bottom:160.480000pt;}
.y174{bottom:161.306667pt;}
.y1b7{bottom:162.906667pt;}
.y3b{bottom:163.520000pt;}
.y103{bottom:164.346667pt;}
.y6c{bottom:166.080000pt;}
.yb0{bottom:166.760000pt;}
.y191{bottom:167.866667pt;}
.y106{bottom:167.880000pt;}
.y239{bottom:168.160000pt;}
.y1d1{bottom:170.106667pt;}
.y183{bottom:170.906667pt;}
.y50{bottom:171.360000pt;}
.y15f{bottom:171.880000pt;}
.y1e7{bottom:172.200000pt;}
.y97{bottom:174.746667pt;}
.y173{bottom:175.066667pt;}
.y13e{bottom:179.866667pt;}
.yaf{bottom:180.520000pt;}
.y190{bottom:181.626667pt;}
.y105{bottom:181.640000pt;}
.y20{bottom:181.786667pt;}
.y238{bottom:184.186667pt;}
.y182{bottom:184.666667pt;}
.y197{bottom:184.826667pt;}
.y15e{bottom:185.640000pt;}
.y1e6{bottom:185.960000pt;}
.y4f{bottom:188.826667pt;}
.y113{bottom:189.640000pt;}
.y1c2{bottom:191.866667pt;}
.y76{bottom:193.946667pt;}
.yae{bottom:194.440000pt;}
.y18f{bottom:195.386667pt;}
.y11c{bottom:195.400000pt;}
.y181{bottom:198.426667pt;}
.y15d{bottom:199.400000pt;}
.y1e5{bottom:199.720000pt;}
.y237{bottom:200.186667pt;}
.y104{bottom:203.400000pt;}
.y3a{bottom:206.266667pt;}
.yad{bottom:208.226667pt;}
.y11b{bottom:209.160000pt;}
.y18e{bottom:209.626667pt;}
.y172{bottom:210.906667pt;}
.y180{bottom:212.186667pt;}
.y15c{bottom:213.160000pt;}
.y1a7{bottom:213.506667pt;}
.y1e{bottom:213.946667pt;}
.y236{bottom:216.186667pt;}
.y1f{bottom:219.226667pt;}
.y1c1{bottom:221.826667pt;}
.yac{bottom:221.986667pt;}
.y11a{bottom:222.920000pt;}
.y1d{bottom:231.546667pt;}
.y235{bottom:232.186667pt;}
.y201{bottom:234.466667pt;}
.yab{bottom:235.746667pt;}
.y119{bottom:236.680000pt;}
.y234{bottom:248.186667pt;}
.y1c{bottom:249.146667pt;}
.yaa{bottom:249.506667pt;}
.y171{bottom:249.826667pt;}
.y1ab{bottom:249.986667pt;}
.y118{bottom:250.440000pt;}
.yec{bottom:252.200000pt;}
.y1a6{bottom:255.426667pt;}
.ya9{bottom:263.266667pt;}
.ybb{bottom:263.906667pt;}
.y233{bottom:264.186667pt;}
.y4e{bottom:265.946667pt;}
.yeb{bottom:266.120000pt;}
.y1b{bottom:266.746667pt;}
.y1ff{bottom:276.546667pt;}
.ya8{bottom:277.026667pt;}
.y117{bottom:277.640000pt;}
.yba{bottom:277.666667pt;}
.y149{bottom:277.986667pt;}
.yea{bottom:279.880000pt;}
.y232{bottom:280.186667pt;}
.y1e3{bottom:282.786667pt;}
.y4d{bottom:284.346667pt;}
.y1a{bottom:284.506667pt;}
.ya7{bottom:290.786667pt;}
.yb1{bottom:291.106667pt;}
.yb9{bottom:291.426667pt;}
.ye9{bottom:293.640000pt;}
.y231{bottom:296.186667pt;}
.y1e2{bottom:296.546667pt;}
.y1a5{bottom:297.506667pt;}
.y4c{bottom:302.746667pt;}
.y1fe{bottom:304.386667pt;}
.ya6{bottom:304.546667pt;}
.yb8{bottom:305.186667pt;}
.ye8{bottom:307.400000pt;}
.y1e1{bottom:310.306667pt;}
.y131{bottom:311.906667pt;}
.y230{bottom:312.186667pt;}
.y19{bottom:314.586667pt;}
.ya5{bottom:318.306667pt;}
.yb7{bottom:318.946667pt;}
.y4b{bottom:321.146667pt;}
.y1e0{bottom:324.066667pt;}
.y22f{bottom:328.186667pt;}
.ya4{bottom:332.066667pt;}
.yb6{bottom:332.706667pt;}
.y18{bottom:334.906667pt;}
.y1f5{bottom:335.586667pt;}
.y1df{bottom:337.826667pt;}
.y4a{bottom:339.546667pt;}
.y22e{bottom:344.186667pt;}
.ya3{bottom:345.826667pt;}
.yb5{bottom:346.626667pt;}
.y1de{bottom:351.586667pt;}
.y19c{bottom:353.186667pt;}
.y17{bottom:355.066667pt;}
.y49{bottom:357.946667pt;}
.ya2{bottom:359.586667pt;}
.y22d{bottom:360.186667pt;}
.yb4{bottom:360.386667pt;}
.y1dd{bottom:365.346667pt;}
.y6b{bottom:368.666667pt;}
.ya1{bottom:373.386667pt;}
.yb3{bottom:374.146667pt;}
.y16{bottom:375.386667pt;}
.y22c{bottom:376.186667pt;}
.y48{bottom:376.346667pt;}
.y1dc{bottom:379.146667pt;}
.ye7{bottom:379.613333pt;}
.ya0{bottom:387.146667pt;}
.y22b{bottom:392.226667pt;}
.y1db{bottom:392.906667pt;}
.y91{bottom:394.626667pt;}
.y47{bottom:395.106667pt;}
.yb2{bottom:395.906667pt;}
.y6a{bottom:396.866667pt;}
.y9f{bottom:400.906667pt;}
.y1fa{bottom:402.173333pt;}
.y15{bottom:403.586667pt;}
.y1da{bottom:406.666667pt;}
.y22a{bottom:408.226667pt;}
.y116{bottom:409.373333pt;}
.y1b2{bottom:410.013333pt;}
.y9e{bottom:414.666667pt;}
.yc5{bottom:417.693333pt;}
.y1d9{bottom:420.426667pt;}
.y14{bottom:420.706667pt;}
.y46{bottom:423.426667pt;}
.y229{bottom:424.226667pt;}
.y69{bottom:425.186667pt;}
.y9d{bottom:428.586667pt;}
.y1f9{bottom:430.493333pt;}
.y90{bottom:432.546667pt;}
.y1d8{bottom:434.186667pt;}
.y1ad{bottom:434.466667pt;}
.y1ac{bottom:437.026667pt;}
.y228{bottom:440.226667pt;}
.y9c{bottom:442.346667pt;}
.y45{bottom:443.586667pt;}
.y1d7{bottom:447.946667pt;}
.y13{bottom:448.706667pt;}
.y68{bottom:453.346667pt;}
.yfb{bottom:455.453333pt;}
.y9b{bottom:456.106667pt;}
.y227{bottom:456.226667pt;}
.y1f8{bottom:458.653333pt;}
.y1d6{bottom:461.706667pt;}
.y44{bottom:469.826667pt;}
.y9a{bottom:469.866667pt;}
.y226{bottom:472.226667pt;}
.y8f{bottom:472.706667pt;}
.y15b{bottom:473.853333pt;}
.y1d5{bottom:475.626667pt;}
.y1b1{bottom:479.453333pt;}
.y67{bottom:481.666667pt;}
.y99{bottom:483.626667pt;}
.y39{bottom:483.906667pt;}
.y1e4{bottom:487.293333pt;}
.y225{bottom:488.226667pt;}
.y199{bottom:488.426667pt;}
.y1d4{bottom:489.386667pt;}
.y8e{bottom:501.026667pt;}
.y198{bottom:502.186667pt;}
.y1d3{bottom:503.146667pt;}
.y224{bottom:504.226667pt;}
.y38{bottom:509.826667pt;}
.y98{bottom:510.986667pt;}
.y43{bottom:512.386667pt;}
.y1f4{bottom:515.453333pt;}
.y16e{bottom:515.933333pt;}
.y1d2{bottom:516.906667pt;}
.yf3{bottom:519.133333pt;}
.y223{bottom:520.226667pt;}
.y8d{bottom:521.186667pt;}
.yc1{bottom:533.053333pt;}
.y55{bottom:533.666667pt;}
.y222{bottom:536.226667pt;}
.y66{bottom:538.146667pt;}
.y8c{bottom:541.506667pt;}
.y1f1{bottom:543.613333pt;}
.y19a{bottom:546.693333pt;}
.y221{bottom:552.226667pt;}
.y37{bottom:553.186667pt;}
.y5b{bottom:557.026667pt;}
.y124{bottom:559.173333pt;}
.y7d{bottom:560.386667pt;}
.y1b0{bottom:562.853333pt;}
.y57{bottom:568.226667pt;}
.y8b{bottom:569.666667pt;}
.y1f0{bottom:571.973333pt;}
.y220{bottom:584.226667pt;}
.y168{bottom:585.413333pt;}
.y8a{bottom:589.986667pt;}
.y36{bottom:594.946667pt;}
.ybc{bottom:596.293333pt;}
.y59{bottom:599.266667pt;}
.y1ef{bottom:600.133333pt;}
.y21f{bottom:600.253333pt;}
.y1af{bottom:604.773333pt;}
.y89{bottom:610.173333pt;}
.y21e{bottom:616.253333pt;}
.yed{bottom:619.173333pt;}
.y255{bottom:629.213333pt;}
.y88{bottom:630.493333pt;}
.y21d{bottom:632.253333pt;}
.y35{bottom:632.413333pt;}
.y1ae{bottom:632.933333pt;}
.y1ee{bottom:642.053333pt;}
.y163{bottom:643.013333pt;}
.y254{bottom:645.213333pt;}
.y12{bottom:646.333333pt;}
.y21c{bottom:648.253333pt;}
.y65{bottom:658.333333pt;}
.y253{bottom:661.213333pt;}
.y34{bottom:664.253333pt;}
.y6d{bottom:666.333333pt;}
.y11{bottom:666.493333pt;}
.y87{bottom:666.973333pt;}
.y1ec{bottom:670.373333pt;}
.y252{bottom:677.213333pt;}
.y21b{bottom:680.253333pt;}
.y10{bottom:686.813333pt;}
.y33{bottom:690.013333pt;}
.y251{bottom:693.213333pt;}
.y21a{bottom:696.253333pt;}
.y94{bottom:698.853333pt;}
.yf{bottom:706.973333pt;}
.y86{bottom:707.293333pt;}
.y250{bottom:709.213333pt;}
.y219{bottom:712.253333pt;}
.y32{bottom:715.773333pt;}
.y24f{bottom:725.213333pt;}
.ye{bottom:727.293333pt;}
.y218{bottom:728.253333pt;}
.y92{bottom:733.280000pt;}
.y85{bottom:735.453333pt;}
.y24e{bottom:741.213333pt;}
.y31{bottom:741.373333pt;}
.y217{bottom:744.253333pt;}
.yd{bottom:747.453333pt;}
.y24d{bottom:757.213333pt;}
.y216{bottom:760.253333pt;}
.y84{bottom:761.533333pt;}
.yc{bottom:767.773333pt;}
.y24c{bottom:773.213333pt;}
.y30{bottom:775.773333pt;}
.y215{bottom:776.253333pt;}
.y24b{bottom:789.213333pt;}
.y214{bottom:792.253333pt;}
.y64{bottom:792.733333pt;}
.yb{bottom:795.933333pt;}
.y83{bottom:804.253333pt;}
.y24a{bottom:805.213333pt;}
.y213{bottom:808.253333pt;}
.y42{bottom:809.213333pt;}
.y63{bottom:813.093333pt;}
.ya{bottom:816.293333pt;}
.y249{bottom:821.253333pt;}
.y2f{bottom:824.293333pt;}
.y62{bottom:833.253333pt;}
.y9{bottom:836.453333pt;}
.y41{bottom:836.613333pt;}
.y248{bottom:837.253333pt;}
.y212{bottom:840.293333pt;}
.y2e{bottom:844.453333pt;}
.y247{bottom:853.253333pt;}
.y211{bottom:856.293333pt;}
.y8{bottom:856.773333pt;}
.y40{bottom:856.933333pt;}
.y61{bottom:858.693333pt;}
.y2d{bottom:864.773333pt;}
.y72{bottom:866.853333pt;}
.y246{bottom:869.253333pt;}
.y210{bottom:872.293333pt;}
.y7{bottom:876.933333pt;}
.y2c{bottom:884.933333pt;}
.y3f{bottom:885.093333pt;}
.y245{bottom:885.253333pt;}
.y20f{bottom:888.293333pt;}
.y244{bottom:901.253333pt;}
.y20e{bottom:904.293333pt;}
.y2b{bottom:905.253333pt;}
.y3e{bottom:910.533333pt;}
.y6{bottom:913.573333pt;}
.y243{bottom:917.253333pt;}
.y20d{bottom:920.293333pt;}
.y242{bottom:933.253333pt;}
.y2a{bottom:933.413333pt;}
.y20c{bottom:936.293333pt;}
.y82{bottom:943.973333pt;}
.y241{bottom:949.253333pt;}
.y20b{bottom:952.293333pt;}
.y29{bottom:953.733333pt;}
.y5{bottom:955.813333pt;}
.y60{bottom:958.053333pt;}
.y81{bottom:964.133333pt;}
.y240{bottom:965.253333pt;}
.y28{bottom:973.893333pt;}
.y5f{bottom:976.453333pt;}
.y23f{bottom:981.253333pt;}
.y4{bottom:983.493333pt;}
.y80{bottom:984.453333pt;}
.y20a{bottom:987.493333pt;}
.y5e{bottom:994.853333pt;}
.y23e{bottom:997.253333pt;}
.y2{bottom:1007.493333pt;}
.y27{bottom:1010.533333pt;}
.y5d{bottom:1013.253333pt;}
.y1{bottom:1021.413333pt;}
.y26{bottom:1062.080000pt;}
.h19{height:12.480000pt;}
.h17{height:13.440000pt;}
.h18{height:13.472000pt;}
.h23{height:15.360000pt;}
.h15{height:18.240000pt;}
.hc{height:20.527500pt;}
.h31{height:26.735625pt;}
.h5f{height:27.200000pt;}
.h4d{height:27.520000pt;}
.h58{height:27.552000pt;}
.h5b{height:27.680000pt;}
.h57{height:27.840000pt;}
.h5a{height:28.000000pt;}
.h4a{height:28.032000pt;}
.h53{height:28.320000pt;}
.h52{height:29.152000pt;}
.ha{height:29.963520pt;}
.h5e{height:30.560000pt;}
.h54{height:31.238750pt;}
.hd{height:32.746250pt;}
.h3d{height:33.280000pt;}
.h2a{height:34.945312pt;}
.h27{height:34.968750pt;}
.h2e{height:36.752500pt;}
.h24{height:38.672812pt;}
.h26{height:38.698750pt;}
.h44{height:41.280000pt;}
.h3{height:41.616000pt;}
.h1c{height:42.649687pt;}
.h2b{height:42.895000pt;}
.h63{height:44.727040pt;}
.he{height:46.055040pt;}
.h16{height:47.742188pt;}
.h62{height:49.336436pt;}
.h8{height:49.576960pt;}
.h7{height:51.048960pt;}
.h12{height:53.824000pt;}
.h6{height:53.888000pt;}
.h14{height:54.598989pt;}
.h49{height:55.040000pt;}
.h40{height:55.200000pt;}
.h20{height:55.488000pt;}
.h41{height:56.960000pt;}
.h2{height:58.563750pt;}
.h9{height:58.736250pt;}
.hb{height:60.288750pt;}
.h13{height:60.519362pt;}
.h2c{height:62.592000pt;}
.h35{height:62.880000pt;}
.h11{height:63.048960pt;}
.h60{height:63.712000pt;}
.h10{height:64.920960pt;}
.h4c{height:65.280000pt;}
.h5c{height:65.952000pt;}
.h5{height:67.280000pt;}
.h4{height:67.360000pt;}
.h4f{height:68.800000pt;}
.h43{height:68.832000pt;}
.h1b{height:71.200000pt;}
.h36{height:75.200000pt;}
.h1f{height:75.392000pt;}
.h1e{height:76.671562pt;}
.hf{height:76.964840pt;}
.h33{height:79.040000pt;}
.h4e{height:82.592000pt;}
.h51{height:86.432000pt;}
.h61{height:96.320000pt;}
.h3b{height:96.832000pt;}
.h3e{height:97.312000pt;}
.h34{height:99.392000pt;}
.h29{height:101.920000pt;}
.h1a{height:107.680000pt;}
.h42{height:110.912000pt;}
.h2d{height:114.560000pt;}
.h30{height:115.552000pt;}
.h2f{height:125.952000pt;}
.h3c{height:131.392000pt;}
.h39{height:139.040000pt;}
.h3a{height:148.986667pt;}
.h59{height:151.066667pt;}
.h47{height:151.520000pt;}
.h1d{height:155.840000pt;}
.h50{height:159.226667pt;}
.h5d{height:164.826667pt;}
.h48{height:192.866667pt;}
.h56{height:210.906667pt;}
.h37{height:214.626667pt;}
.h45{height:223.386667pt;}
.h3f{height:224.346667pt;}
.h38{height:288.826667pt;}
.h32{height:318.586667pt;}
.h28{height:407.106667pt;}
.h4b{height:448.226667pt;}
.h46{height:513.373333pt;}
.h25{height:523.453333pt;}
.h55{height:528.093333pt;}
.h21{height:793.760000pt;}
.h22{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:40.000000pt;}
.w7{width:74.720000pt;}
.w5{width:75.872000pt;}
.w4{width:76.672000pt;}
.w6{width:115.232000pt;}
.w11{width:132.352000pt;}
.wf{width:170.106667pt;}
.w10{width:198.426667pt;}
.w12{width:444.226667pt;}
.wb{width:555.773333pt;}
.wa{width:572.413333pt;}
.w8{width:648.933333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w13{width:1122.559967pt;}
.we{width:1122.559983pt;}
.wc{width:1122.560000pt;}
.wd{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x31{left:7.232000pt;}
.x23{left:9.600000pt;}
.x2b{left:33.594667pt;}
.x28{left:37.632000pt;}
.x2c{left:57.594667pt;}
.x6{left:71.999988pt;}
.x11{left:75.359988pt;}
.xd{left:82.911988pt;}
.xe{left:84.351988pt;}
.x9{left:90.271988pt;}
.x1a{left:96.031988pt;}
.x36{left:99.391983pt;}
.x37{left:102.751983pt;}
.x3a{left:105.951983pt;}
.x2a{left:107.072000pt;}
.xa{left:109.791988pt;}
.x1d{left:120.031988pt;}
.x2d{left:123.872000pt;}
.x4{left:128.991988pt;}
.x3b{left:135.706655pt;}
.x13{left:138.746655pt;}
.x3{left:140.506655pt;}
.x14{left:141.626655pt;}
.x1b{left:144.026655pt;}
.x1c{left:168.026655pt;}
.x8{left:187.866655pt;}
.x17{left:188.826655pt;}
.x20{left:193.466655pt;}
.x1f{left:196.986655pt;}
.x22{left:207.386667pt;}
.x21{left:216.026655pt;}
.x10{left:264.066655pt;}
.x32{left:266.106667pt;}
.x35{left:288.026650pt;}
.x16{left:322.146655pt;}
.xf{left:333.666655pt;}
.x12{left:341.986655pt;}
.x24{left:357.826667pt;}
.x15{left:365.506655pt;}
.x5{left:392.706655pt;}
.x2{left:396.866655pt;}
.x38{left:440.226650pt;}
.x39{left:442.306650pt;}
.x30{left:443.586650pt;}
.x33{left:464.546667pt;}
.x26{left:484.893333pt;}
.x1e{left:531.933322pt;}
.x18{left:559.933322pt;}
.x25{left:574.493333pt;}
.x7{left:581.853322pt;}
.x34{left:596.893333pt;}
.x19{left:605.253322pt;}
.xb{left:612.933310pt;}
.xc{left:615.813322pt;}
.x2e{left:624.933322pt;}
.x2f{left:646.813317pt;}
.x29{left:681.413333pt;}
.x1{left:721.893322pt;}
.x27{left:724.133322pt;}
}




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