
    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_63bd6ab2eab1fa98acb6ea10.woff')format("woff");}.ff1{font-family:ff1;line-height:1.103027;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_d14ba21d960e784e7e500dbc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.116699;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_b46a6ecce09bbcd4ca47583b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.748047;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_43accb6c0ea3356645714090.woff')format("woff");}.ff4{font-family:ff4;line-height:1.131836;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_a1c2e87b02e2c51b4b54c632.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4f8f0b0a25ff5d55f0874a0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5db5a9be6b0aaf25dd2b0029.woff')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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_ae076e28540b78432a481555.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_8754dca658ad175415c36ef8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_c032b28422d4534e6dd04687.woff')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_6fc50e104786eb73f6879491.woff')format("woff");}.ffb{font-family:ffb;line-height:1.031738;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_9228f4a9391ef621caad257a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.031738;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_d3e59afbead9530637854966.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964860;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);}
.v2{vertical-align:-39.924840px;}
.v4{vertical-align:-25.044872px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.044872px;}
.v1{vertical-align:39.924849px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:16.318007px;}
.ls1{letter-spacing:22.816104px;}
.ls2{letter-spacing:45.316104px;}
.ls3{letter-spacing:88.019532px;}
.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;}
}
.wsbf{word-spacing:-49.500001px;}
.ws19{word-spacing:-33.000001px;}
.wsc5{word-spacing:-31.212574px;}
.wsbe{word-spacing:-31.212539px;}
.wsa7{word-spacing:-31.209982px;}
.ws8b{word-spacing:-31.207374px;}
.wsd5{word-spacing:-31.204746px;}
.wsc1{word-spacing:-31.204742px;}
.wsc3{word-spacing:-31.202181px;}
.wsa6{word-spacing:-31.193232px;}
.wsc4{word-spacing:-31.189134px;}
.wsba{word-spacing:-29.999999px;}
.ws5f{word-spacing:-19.800000px;}
.ws8{word-spacing:-18.700402px;}
.ws7{word-spacing:-18.700360px;}
.wse{word-spacing:-15.996096px;}
.ws1f{word-spacing:-14.716163px;}
.ws9c{word-spacing:-14.710043px;}
.wsad{word-spacing:-14.709966px;}
.wsaa{word-spacing:-14.709963px;}
.wsd1{word-spacing:-14.704823px;}
.wsc9{word-spacing:-14.704747px;}
.wsbd{word-spacing:-14.704738px;}
.wsa0{word-spacing:-14.704688px;}
.ws45{word-spacing:-14.703898px;}
.ws42{word-spacing:-14.703891px;}
.ws4f{word-spacing:-14.703856px;}
.ws4a{word-spacing:-14.703063px;}
.ws4d{word-spacing:-14.703026px;}
.wsd6{word-spacing:-14.702366px;}
.ws58{word-spacing:-14.702356px;}
.ws8a{word-spacing:-14.702336px;}
.ws65{word-spacing:-14.702334px;}
.wscd{word-spacing:-14.702330px;}
.ws7c{word-spacing:-14.702327px;}
.wsa9{word-spacing:-14.702318px;}
.ws69{word-spacing:-14.702311px;}
.wsdd{word-spacing:-14.702282px;}
.ws36{word-spacing:-14.702279px;}
.ws61{word-spacing:-14.702276px;}
.wsb9{word-spacing:-14.702259px;}
.ws9a{word-spacing:-14.702254px;}
.ws8e{word-spacing:-14.702241px;}
.ws90{word-spacing:-14.702238px;}
.ws55{word-spacing:-14.702234px;}
.ws88{word-spacing:-14.702231px;}
.ws77{word-spacing:-14.702225px;}
.wsa8{word-spacing:-14.702218px;}
.wsdf{word-spacing:-14.702203px;}
.wsdc{word-spacing:-14.702202px;}
.wsac{word-spacing:-14.702199px;}
.ws2d{word-spacing:-14.702195px;}
.ws72{word-spacing:-14.702193px;}
.wsc8{word-spacing:-14.702192px;}
.wse1{word-spacing:-14.702189px;}
.ws5a{word-spacing:-14.702186px;}
.ws7a{word-spacing:-14.702183px;}
.ws39{word-spacing:-14.702182px;}
.ws3c{word-spacing:-14.702180px;}
.ws52{word-spacing:-14.702178px;}
.ws2e{word-spacing:-14.702174px;}
.wsc6{word-spacing:-14.702167px;}
.ws97{word-spacing:-14.702164px;}
.ws35{word-spacing:-14.702157px;}
.ws5c{word-spacing:-14.702151px;}
.wsb4{word-spacing:-14.702141px;}
.ws8d{word-spacing:-14.702119px;}
.wsc7{word-spacing:-14.702112px;}
.wsd3{word-spacing:-14.702041px;}
.wsc2{word-spacing:-14.701828px;}
.wsc0{word-spacing:-14.701783px;}
.ws15{word-spacing:-14.701291px;}
.ws1d{word-spacing:-14.701226px;}
.ws89{word-spacing:-14.699618px;}
.ws2f{word-spacing:-14.699564px;}
.ws75{word-spacing:-14.699551px;}
.ws64{word-spacing:-14.699549px;}
.ws99{word-spacing:-14.699547px;}
.wsa2{word-spacing:-14.699483px;}
.wsae{word-spacing:-14.691721px;}
.ws43{word-spacing:-14.690874px;}
.wsab{word-spacing:-14.689136px;}
.ws56{word-spacing:-14.689133px;}
.ws49{word-spacing:-14.688998px;}
.ws83{word-spacing:-14.686524px;}
.ws46{word-spacing:-10.203949px;}
.ws4c{word-spacing:-10.203895px;}
.ws4e{word-spacing:-10.203756px;}
.ws16{word-spacing:-10.203091px;}
.ws92{word-spacing:-10.202411px;}
.ws6c{word-spacing:-10.202366px;}
.ws6f{word-spacing:-10.202356px;}
.ws9b{word-spacing:-10.202315px;}
.ws3e{word-spacing:-10.202311px;}
.wsb2{word-spacing:-10.202282px;}
.ws8f{word-spacing:-10.202257px;}
.wsd7{word-spacing:-10.202231px;}
.ws79{word-spacing:-10.202205px;}
.wse0{word-spacing:-10.202201px;}
.wsde{word-spacing:-10.202196px;}
.ws68{word-spacing:-10.202195px;}
.ws91{word-spacing:-10.202193px;}
.wsd4{word-spacing:-10.202189px;}
.wsb3{word-spacing:-10.202183px;}
.ws3b{word-spacing:-10.202182px;}
.ws37{word-spacing:-10.202180px;}
.ws44{word-spacing:-10.202179px;}
.ws94{word-spacing:-10.202177px;}
.wsce{word-spacing:-10.202150px;}
.ws5d{word-spacing:-10.202141px;}
.ws93{word-spacing:-10.202096px;}
.wsbc{word-spacing:-10.199628px;}
.ws22{word-spacing:-10.199551px;}
.ws25{word-spacing:-10.199548px;}
.ws1e{word-spacing:-10.191794px;}
.ws67{word-spacing:-10.186523px;}
.ws11{word-spacing:-6.996106px;}
.ws47{word-spacing:-5.716140px;}
.wsb0{word-spacing:-5.704751px;}
.ws51{word-spacing:-5.703981px;}
.ws4b{word-spacing:-5.703958px;}
.ws9f{word-spacing:-5.702366px;}
.ws9e{word-spacing:-5.702356px;}
.ws3a{word-spacing:-5.702337px;}
.wsa3{word-spacing:-5.702311px;}
.wsa5{word-spacing:-5.702276px;}
.wsd8{word-spacing:-5.702257px;}
.ws3d{word-spacing:-5.702228px;}
.ws96{word-spacing:-5.702201px;}
.ws57{word-spacing:-5.702196px;}
.ws7e{word-spacing:-5.702192px;}
.ws82{word-spacing:-5.702183px;}
.ws74{word-spacing:-5.702181px;}
.ws95{word-spacing:-5.702179px;}
.ws7f{word-spacing:-5.702173px;}
.ws24{word-spacing:-5.702164px;}
.ws60{word-spacing:-5.702080px;}
.ws20{word-spacing:-5.701577px;}
.ws23{word-spacing:-5.701287px;}
.ws6a{word-spacing:-5.699550px;}
.ws66{word-spacing:-5.699549px;}
.ws10{word-spacing:-2.496096px;}
.wsd9{word-spacing:-1.217813px;}
.ws34{word-spacing:-1.204823px;}
.wsb8{word-spacing:-1.204553px;}
.ws48{word-spacing:-1.204026px;}
.ws13{word-spacing:-1.203775px;}
.ws87{word-spacing:-1.202356px;}
.ws71{word-spacing:-1.202311px;}
.wsbb{word-spacing:-1.202304px;}
.ws7d{word-spacing:-1.202275px;}
.wsd2{word-spacing:-1.202273px;}
.ws32{word-spacing:-1.202264px;}
.wscc{word-spacing:-1.202238px;}
.wsdb{word-spacing:-1.202230px;}
.ws2b{word-spacing:-1.202181px;}
.ws5e{word-spacing:-1.202179px;}
.ws62{word-spacing:-1.202176px;}
.ws81{word-spacing:-1.202156px;}
.ws73{word-spacing:-1.202148px;}
.ws1b{word-spacing:-1.201307px;}
.ws86{word-spacing:-1.199549px;}
.ws63{word-spacing:-1.199547px;}
.wsa1{word-spacing:-1.199409px;}
.wsd{word-spacing:-0.144000px;}
.ws5{word-spacing:-0.108000px;}
.ws11b{word-spacing:-0.066000px;}
.wsf{word-spacing:-0.057600px;}
.wsa{word-spacing:0.000000px;}
.ws78{word-spacing:3.016102px;}
.ws10a{word-spacing:3.023439px;}
.ws84{word-spacing:3.295177px;}
.wse2{word-spacing:3.297582px;}
.ws98{word-spacing:3.297609px;}
.ws8c{word-spacing:3.297659px;}
.ws38{word-spacing:3.297721px;}
.ws33{word-spacing:3.297746px;}
.wsb6{word-spacing:3.297769px;}
.wsb7{word-spacing:3.297779px;}
.ws80{word-spacing:3.297814px;}
.ws85{word-spacing:3.297818px;}
.wsb5{word-spacing:3.297820px;}
.ws54{word-spacing:3.297822px;}
.wsca{word-spacing:3.297844px;}
.ws21{word-spacing:3.298581px;}
.ws1a{word-spacing:3.300410px;}
.ws7b{word-spacing:3.308352px;}
.wsb1{word-spacing:3.313476px;}
.ws12{word-spacing:6.503904px;}
.ws41{word-spacing:7.796109px;}
.ws2c{word-spacing:7.797611px;}
.ws6b{word-spacing:7.797769px;}
.ws31{word-spacing:7.797818px;}
.ws9d{word-spacing:7.797821px;}
.ws76{word-spacing:7.797859px;}
.ws17{word-spacing:7.798584px;}
.ws50{word-spacing:12.296109px;}
.wscb{word-spacing:12.297673px;}
.ws6e{word-spacing:12.297689px;}
.wscf{word-spacing:12.297800px;}
.ws30{word-spacing:12.297821px;}
.wsd0{word-spacing:12.297824px;}
.wsda{word-spacing:12.297826px;}
.ws26{word-spacing:12.297975px;}
.ws18{word-spacing:12.298684px;}
.ws6d{word-spacing:12.300453px;}
.ws11a{word-spacing:16.070418px;}
.ws102{word-spacing:16.226028px;}
.ws120{word-spacing:16.230680px;}
.ws111{word-spacing:16.230685px;}
.ws114{word-spacing:16.232115px;}
.wsed{word-spacing:16.232124px;}
.ws109{word-spacing:16.233451px;}
.ws11f{word-spacing:16.234565px;}
.ws110{word-spacing:16.234695px;}
.ws10e{word-spacing:16.234827px;}
.wsfd{word-spacing:16.234830px;}
.wsfc{word-spacing:16.234902px;}
.ws104{word-spacing:16.234961px;}
.ws118{word-spacing:16.234965px;}
.ws113{word-spacing:16.235273px;}
.wsea{word-spacing:16.235400px;}
.wsf1{word-spacing:16.235408px;}
.wse5{word-spacing:16.236410px;}
.ws119{word-spacing:16.236427px;}
.wsf6{word-spacing:16.236725px;}
.wse8{word-spacing:16.237094px;}
.wsef{word-spacing:16.239068px;}
.ws112{word-spacing:16.248904px;}
.wsf9{word-spacing:16.249886px;}
.ws106{word-spacing:16.252047px;}
.ws116{word-spacing:16.252058px;}
.wsf3{word-spacing:16.252061px;}
.ws11c{word-spacing:16.252118px;}
.ws100{word-spacing:16.495432px;}
.ws9{word-spacing:16.585219px;}
.ws70{word-spacing:16.797750px;}
.wse3{word-spacing:16.797847px;}
.wsaf{word-spacing:16.797881px;}
.ws14{word-spacing:16.800436px;}
.ws0{word-spacing:19.931881px;}
.ws3f{word-spacing:19.931904px;}
.ws27{word-spacing:19.931906px;}
.ws10d{word-spacing:20.734610px;}
.ws108{word-spacing:20.734774px;}
.wse7{word-spacing:20.735291px;}
.wsf0{word-spacing:20.749069px;}
.ws103{word-spacing:20.749963px;}
.wse9{word-spacing:20.752058px;}
.ws11e{word-spacing:20.752060px;}
.ws10f{word-spacing:20.752062px;}
.wsf7{word-spacing:20.752069px;}
.ws1c{word-spacing:21.300456px;}
.wsa4{word-spacing:21.573829px;}
.ws53{word-spacing:21.579945px;}
.wsf5{word-spacing:25.220208px;}
.ws117{word-spacing:25.232115px;}
.wsff{word-spacing:25.235543px;}
.ws10b{word-spacing:25.236365px;}
.wsec{word-spacing:25.249074px;}
.ws10c{word-spacing:25.251857px;}
.wsf4{word-spacing:25.252062px;}
.wseb{word-spacing:25.252067px;}
.ws59{word-spacing:25.797819px;}
.ws1{word-spacing:26.551199px;}
.wsee{word-spacing:29.732115px;}
.ws105{word-spacing:29.734811px;}
.wsf8{word-spacing:29.745402px;}
.wsfe{word-spacing:29.748894px;}
.wse4{word-spacing:29.748924px;}
.ws107{word-spacing:29.752062px;}
.wse6{word-spacing:29.752064px;}
.ws4{word-spacing:29.897832px;}
.ws6{word-spacing:29.897842px;}
.ws2{word-spacing:29.897848px;}
.ws3{word-spacing:29.897861px;}
.ws5b{word-spacing:33.011720px;}
.ws101{word-spacing:34.236447px;}
.wsfb{word-spacing:34.252063px;}
.wsfa{word-spacing:38.730757px;}
.ws115{word-spacing:38.734788px;}
.wsf2{word-spacing:38.735471px;}
.wsb{word-spacing:39.863790px;}
.wsc{word-spacing:39.863813px;}
.ws28{word-spacing:48.863813px;}
.ws2a{word-spacing:66.863812px;}
.ws11d{word-spacing:74.735038px;}
.ws40{word-spacing:80.363791px;}
.ws29{word-spacing:84.863835px;}
._3{margin-left:-9.703125px;}
._16{margin-left:-8.543028px;}
._2{margin-left:-6.574243px;}
._1b{margin-left:-5.119866px;}
._1{margin-left:-3.902343px;}
._0{margin-left:-2.179636px;}
._4{margin-left:-1.052610px;}
._6{width:1.228284px;}
._26{width:2.403356px;}
._20{width:16.285455px;}
._13{width:17.629039px;}
._15{width:18.758330px;}
._24{width:20.784256px;}
._12{width:22.155387px;}
._11{width:23.518507px;}
._1e{width:24.773384px;}
._1f{width:25.974769px;}
._b{width:27.293517px;}
._22{width:29.119120px;}
._21{width:30.367904px;}
._14{width:31.788297px;}
._5{width:33.179638px;}
._23{width:34.902451px;}
._8{width:36.284840px;}
._1d{width:37.300540px;}
._7{width:38.882813px;}
._f{width:40.768340px;}
._25{width:43.053489px;}
._d{width:44.412971px;}
._c{width:46.082827px;}
._e{width:49.811231px;}
._1a{width:52.957030px;}
._9{width:54.103333px;}
._a{width:55.226951px;}
._10{width:59.570695px;}
._18{width:71.507761px;}
._19{width:85.007813px;}
._1c{width:86.021484px;}
._17{width:89.507813px;}
.fc1{color:rgb(0,123,192);}
.fc4{color:rgb(48,48,48);}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:39.600001px;}
.fs6{font-size:57.600001px;}
.fs4{font-size:59.999999px;}
.fs7{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:78.000003px;}
.fs3{font-size:83.999997px;}
.fs1{font-size:96.000003px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y15d{bottom:3.495842px;}
.y113{bottom:3.495850px;}
.y116{bottom:3.496582px;}
.y14f{bottom:3.497306px;}
.y148{bottom:3.497315px;}
.y10a{bottom:10.995850px;}
.yee{bottom:10.996582px;}
.y2c{bottom:12.667787px;}
.y6a{bottom:12.667970px;}
.y2a{bottom:15.356506px;}
.y68{bottom:15.357061px;}
.y14d{bottom:22.468506px;}
.yf3{bottom:22.469972px;}
.y14a{bottom:22.471436px;}
.y146{bottom:37.468506px;}
.yf0{bottom:37.469238px;}
.y104{bottom:37.469964px;}
.y11d{bottom:37.469970px;}
.yf8{bottom:37.469971px;}
.y29{bottom:39.269896px;}
.y67{bottom:39.270256px;}
.y4e{bottom:42.852540px;}
.y4c{bottom:43.161989px;}
.y103{bottom:56.443359px;}
.y28{bottom:63.183106px;}
.y4b{bottom:64.981199px;}
.y1c7{bottom:73.217283px;}
.y2d{bottom:73.218018px;}
.yb{bottom:73.218108px;}
.y6b{bottom:73.218378px;}
.y98{bottom:73.218753px;}
.y4a{bottom:86.800769px;}
.y27{bottom:87.096676px;}
.y111{bottom:99.459963px;}
.y97{bottom:104.616209px;}
.y49{bottom:108.620354px;}
.y26{bottom:111.009886px;}
.y66{bottom:111.010246px;}
.y112{bottom:114.459964px;}
.y163{bottom:118.541744px;}
.y96{bottom:123.589604px;}
.ya{bottom:126.803197px;}
.y48{bottom:130.439564px;}
.y25{bottom:134.923276px;}
.y65{bottom:134.923456px;}
.y4d{bottom:135.906744px;}
.y162{bottom:137.514404px;}
.ye7{bottom:138.191159px;}
.y95{bottom:142.562984px;}
.y1c6{bottom:147.273932px;}
.y110{bottom:148.959963px;}
.y47{bottom:152.258789px;}
.y161{bottom:156.488519px;}
.ye6{bottom:157.163819px;}
.y187{bottom:159.062249px;}
.y94{bottom:161.536379px;}
.y24{bottom:166.336486px;}
.yc2{bottom:166.691159px;}
.y1c5{bottom:167.078612px;}
.y160{bottom:175.462649px;}
.ye5{bottom:176.137934px;}
.y9{bottom:176.894904px;}
.y93{bottom:180.509759px;}
.y10f{bottom:184.057617px;}
.yc1{bottom:185.664554px;}
.y1c4{bottom:186.881837px;}
.y10e{bottom:188.031738px;}
.y23{bottom:190.249876px;}
.ye4{bottom:195.110594px;}
.y186{bottom:196.036379px;}
.y64{bottom:197.750236px;}
.y92{bottom:199.483153px;}
.y8{bottom:203.360319px;}
.yc0{bottom:204.637934px;}
.y36{bottom:206.025885px;}
.y2b{bottom:209.150213px;}
.y46{bottom:210.897584px;}
.y15f{bottom:212.435308px;}
.ye3{bottom:214.084724px;}
.y22{bottom:214.163086px;}
.y63{bottom:221.663446px;}
.y10d{bottom:223.129392px;}
.y1c3{bottom:223.185062px;}
.ybf{bottom:223.611328px;}
.y10c{bottom:227.103513px;}
.y45{bottom:232.717154px;}
.y185{bottom:233.009039px;}
.ye2{bottom:233.057368px;}
.y91{bottom:236.456549px;}
.y21{bottom:238.076476px;}
.y69{bottom:242.390629px;}
.y1c2{bottom:242.986817px;}
.y62{bottom:245.576656px;}
.y14{bottom:249.084600px;}
.y184{bottom:251.983154px;}
.y44{bottom:254.536364px;}
.y90{bottom:255.429929px;}
.ybe{bottom:260.584723px;}
.y20{bottom:261.989686px;}
.y10b{bottom:262.201167px;}
.y1c1{bottom:262.791497px;}
.y15c{bottom:267.735357px;}
.y61{bottom:269.490226px;}
.ye1{bottom:270.031499px;}
.y8f{bottom:274.403324px;}
.y43{bottom:276.355949px;}
.y56{bottom:282.324465px;}
.y1f{bottom:285.903076px;}
.y15e{bottom:286.708014px;}
.y138{bottom:288.629879px;}
.y109{bottom:288.675288px;}
.y183{bottom:288.955814px;}
.ye0{bottom:289.004144px;}
.y8e{bottom:293.376704px;}
.y60{bottom:293.403436px;}
.y42{bottom:298.175159px;}
.y1c0{bottom:299.093267px;}
.y15b{bottom:306.807132px;}
.y137{bottom:307.603274px;}
.y182{bottom:307.929929px;}
.ydf{bottom:307.978274px;}
.y1e{bottom:309.816286px;}
.y8d{bottom:312.350098px;}
.y5f{bottom:317.316646px;}
.y1bf{bottom:318.897947px;}
.y41{bottom:319.994744px;}
.y7{bottom:321.456567px;}
.y15a{bottom:325.781254px;}
.y136{bottom:326.576654px;}
.y181{bottom:326.902589px;}
.yde{bottom:326.950934px;}
.y1d{bottom:333.729856px;}
.ybd{bottom:334.531499px;}
.y1be{bottom:338.699702px;}
.y5e{bottom:341.229856px;}
.y40{bottom:341.813954px;}
.y135{bottom:345.550048px;}
.y180{bottom:345.876704px;}
.y159{bottom:345.878907px;}
.ydd{bottom:345.925049px;}
.y1e8{bottom:346.167482px;}
.y8c{bottom:349.323494px;}
.ybc{bottom:353.504879px;}
.y1c{bottom:357.643066px;}
.y3f{bottom:363.633539px;}
.y17f{bottom:364.849364px;}
.y158{bottom:364.851564px;}
.ydc{bottom:364.897709px;}
.y5d{bottom:365.143426px;}
.y1e7{bottom:365.972162px;}
.y8b{bottom:368.296874px;}
.ybb{bottom:372.478274px;}
.y1bd{bottom:375.002927px;}
.y108{bottom:379.872072px;}
.y134{bottom:382.523444px;}
.y17e{bottom:383.823494px;}
.ydb{bottom:383.871824px;}
.y157{bottom:384.950682px;}
.y3e{bottom:385.452748px;}
.y1e6{bottom:385.776857px;}
.y8a{bottom:387.270269px;}
.y1b{bottom:389.056276px;}
.yba{bottom:391.451653px;}
.y1bc{bottom:394.806152px;}
.y133{bottom:401.496824px;}
.yda{bottom:402.845218px;}
.y1e5{bottom:405.578612px;}
.y89{bottom:406.243649px;}
.y107{bottom:406.345461px;}
.y1a{bottom:412.969666px;}
.y1bb{bottom:414.610832px;}
.y132{bottom:420.470218px;}
.y17d{bottom:420.796139px;}
.y88{bottom:425.217044px;}
.y3d{bottom:425.272334px;}
.y5c{bottom:427.970206px;}
.yb9{bottom:428.425049px;}
.y1ba{bottom:434.412602px;}
.y19{bottom:436.883056px;}
.y17c{bottom:439.770269px;}
.yd9{bottom:439.818599px;}
.y106{bottom:441.443845px;}
.y1e4{bottom:441.880367px;}
.y87{bottom:444.190424px;}
.y3c{bottom:447.091544px;}
.yb8{bottom:447.398444px;}
.y5b{bottom:451.883416px;}
.y131{bottom:457.443599px;}
.y17b{bottom:458.742914px;}
.y105{bottom:460.416501px;}
.y18{bottom:460.796266px;}
.y1e3{bottom:461.685062px;}
.y86{bottom:463.163818px;}
.yb7{bottom:466.371824px;}
.y156{bottom:468.018314px;}
.y3b{bottom:468.911129px;}
.y1b9{bottom:470.715827px;}
.yd8{bottom:475.291259px;}
.y5a{bottom:475.796626px;}
.y130{bottom:476.416993px;}
.y17a{bottom:477.717044px;}
.y1e2{bottom:481.489742px;}
.yb6{bottom:485.345219px;}
.y155{bottom:486.992429px;}
.y1b8{bottom:490.519037px;}
.y3a{bottom:490.730338px;}
.y17{bottom:492.209656px;}
.yd7{bottom:494.264654px;}
.y102{bottom:495.515629px;}
.y179{bottom:496.689704px;}
.y85{bottom:500.137214px;}
.yb5{bottom:504.318599px;}
.y154{bottom:505.966559px;}
.y1b7{bottom:510.323732px;}
.y12f{bottom:513.390374px;}
.y16{bottom:516.123046px;}
.y1e1{bottom:516.291497px;}
.y6{bottom:517.871652px;}
.y84{bottom:519.110594px;}
.yb4{bottom:523.291994px;}
.y153{bottom:524.939204px;}
.yd6{bottom:529.738769px;}
.y39{bottom:530.549924px;}
.y12e{bottom:532.363769px;}
.y101{bottom:533.462406px;}
.y178{bottom:533.663819px;}
.y1e0{bottom:536.096192px;}
.y83{bottom:538.083989px;}
.y59{bottom:538.623046px;}
.y15{bottom:540.036255px;}
.yb3{bottom:542.265374px;}
.y1b6{bottom:546.626957px;}
.yd5{bottom:548.712164px;}
.y12d{bottom:551.337163px;}
.y38{bottom:552.369134px;}
.y1df{bottom:555.897947px;}
.y82{bottom:557.057369px;}
.yb2{bottom:561.238768px;}
.y152{bottom:561.911864px;}
.y5{bottom:562.106502px;}
.y58{bottom:562.536616px;}
.y1b5{bottom:566.428712px;}
.y100{bottom:568.560792px;}
.y177{bottom:570.636479px;}
.y37{bottom:574.188718px;}
.y81{bottom:576.030763px;}
.y151{bottom:580.887449px;}
.yd4{bottom:584.184809px;}
.y1b4{bottom:586.231937px;}
.y57{bottom:586.449825px;}
.y12c{bottom:588.310544px;}
.y176{bottom:589.610594px;}
.y1de{bottom:592.199702px;}
.yff{bottom:595.034181px;}
.yb1{bottom:598.212164px;}
.y4{bottom:606.341487px;}
.y12b{bottom:607.283939px;}
.y175{bottom:608.583254px;}
.y1dd{bottom:612.004397px;}
.y80{bottom:613.004144px;}
.yb0{bottom:617.185544px;}
.yd3{bottom:619.658938px;}
.y1b3{bottom:622.536617px;}
.y12a{bottom:626.257319px;}
.y174{bottom:627.557369px;}
.yfe{bottom:630.132567px;}
.y1dc{bottom:631.809077px;}
.y7f{bottom:631.977539px;}
.yfd{bottom:634.105956px;}
.yaf{bottom:636.158939px;}
.y1b2{bottom:642.339842px;}
.y14e{bottom:643.781253px;}
.y129{bottom:645.230714px;}
.y3{bottom:650.576337px;}
.y7e{bottom:650.950934px;}
.yae{bottom:655.132318px;}
.yd2{bottom:655.132319px;}
.y1b1{bottom:662.141597px;}
.y150{bottom:662.755374px;}
.y128{bottom:664.204109px;}
.y173{bottom:664.530029px;}
.y1db{bottom:668.110832px;}
.yfc{bottom:669.204342px;}
.y7d{bottom:669.924314px;}
.yd1{bottom:674.105714px;}
.y14c{bottom:682.854488px;}
.y127{bottom:683.177489px;}
.y172{bottom:683.504144px;}
.y1da{bottom:687.912602px;}
.y7c{bottom:688.897709px;}
.yad{bottom:692.105714px;}
.yd0{bottom:693.079109px;}
.yfb{bottom:695.677731px;}
.y1b0{bottom:698.444822px;}
.y14b{bottom:701.827144px;}
.y126{bottom:702.150883px;}
.y171{bottom:702.476804px;}
.y7b{bottom:707.871089px;}
.yac{bottom:711.079109px;}
.ycf{bottom:712.052489px;}
.y1af{bottom:718.249517px;}
.y170{bottom:721.450934px;}
.y149{bottom:721.924803px;}
.y1d9{bottom:724.217282px;}
.y7a{bottom:726.843748px;}
.y19f{bottom:729.604244px;}
.yab{bottom:730.052489px;}
.yfa{bottom:730.776117px;}
.yce{bottom:731.025883px;}
.y1ae{bottom:738.051272px;}
.y125{bottom:739.124264px;}
.y16f{bottom:740.423579px;}
.y147{bottom:740.898924px;}
.y1d8{bottom:744.020507px;}
.y19e{bottom:748.576904px;}
.yaa{bottom:749.025884px;}
.yf9{bottom:757.249506px;}
.y1ad{bottom:757.854497px;}
.y124{bottom:758.097658px;}
.y145{bottom:760.998053px;}
.y79{bottom:763.817879px;}
.y1d7{bottom:763.823732px;}
.ya9{bottom:767.999263px;}
.ycd{bottom:767.999264px;}
.y16e{bottom:777.397709px;}
.y19d{bottom:785.549564px;}
.ycc{bottom:786.972659px;}
.yf7{bottom:792.347907px;}
.y1ac{bottom:794.157707px;}
.y123{bottom:795.071039px;}
.y16d{bottom:796.370369px;}
.y78{bottom:799.290523px;}
.y1d6{bottom:800.128412px;}
.y19c{bottom:804.523679px;}
.ya8{bottom:804.972659px;}
.ycb{bottom:805.946039px;}
.y1ab{bottom:813.962402px;}
.y122{bottom:814.044434px;}
.y16c{bottom:815.344484px;}
.yf6{bottom:818.821296px;}
.y1d5{bottom:819.930182px;}
.y19b{bottom:823.497809px;}
.ya7{bottom:823.946038px;}
.yca{bottom:824.919433px;}
.y13{bottom:827.595698px;}
.y35{bottom:828.609368px;}
.y2{bottom:831.025497px;}
.y1aa{bottom:833.764157px;}
.y16b{bottom:834.317144px;}
.y77{bottom:834.763918px;}
.y19a{bottom:842.470454px;}
.y121{bottom:849.619632px;}
.y12{bottom:850.280273px;}
.y34{bottom:851.293943px;}
.y16a{bottom:853.291259px;}
.yf5{bottom:853.919682px;}
.y1d4{bottom:856.231937px;}
.yf4{bottom:857.893071px;}
.ya6{bottom:860.919434px;}
.y199{bottom:861.443114px;}
.yc9{bottom:861.892829px;}
.y120{bottom:868.593021px;}
.y1a9{bottom:870.067382px;}
.y76{bottom:871.737299px;}
.y144{bottom:872.263919px;}
.y1d3{bottom:876.036617px;}
.ya5{bottom:879.892829px;}
.yc8{bottom:880.866209px;}
.y11{bottom:884.668707px;}
.y33{bottom:885.682377px;}
.y1a8{bottom:889.870607px;}
.y169{bottom:890.263919px;}
.y75{bottom:890.710694px;}
.y143{bottom:891.238034px;}
.yf2{bottom:892.991457px;}
.y1d2{bottom:895.841312px;}
.yf1{bottom:896.964846px;}
.y198{bottom:898.417244px;}
.ya4{bottom:898.866209px;}
.yc7{bottom:899.839603px;}
.y11f{bottom:903.691405px;}
.y55{bottom:907.249148px;}
.y168{bottom:909.238034px;}
.y1a7{bottom:909.675287px;}
.y74{bottom:909.684088px;}
.y142{bottom:910.210694px;}
.y10{bottom:912.433585px;}
.y32{bottom:913.447270px;}
.y197{bottom:917.391359px;}
.ya3{bottom:917.839604px;}
.y11e{bottom:922.664061px;}
.y18f{bottom:924.678961px;}
.y167{bottom:928.210694px;}
.y141{bottom:929.184809px;}
.y54{bottom:929.933708px;}
.yef{bottom:932.063230px;}
.y1d1{bottom:932.143067px;}
.y196{bottom:936.364019px;}
.ya2{bottom:936.812983px;}
.yc6{bottom:936.812984px;}
.y1{bottom:938.834168px;}
.y18e{bottom:944.233154px;}
.y1a6{bottom:945.977057px;}
.y73{bottom:946.657469px;}
.y166{bottom:947.184809px;}
.y1d0{bottom:951.944822px;}
.y195{bottom:955.336664px;}
.yc5{bottom:955.786379px;}
.yf{bottom:956.271422px;}
.y31{bottom:957.285092px;}
.y11c{bottom:957.763183px;}
.yed{bottom:958.535886px;}
.y53{bottom:964.322517px;}
.y72{bottom:965.630863px;}
.y1a5{bottom:965.780267px;}
.y140{bottom:966.157469px;}
.y1cf{bottom:971.749517px;}
.ya1{bottom:973.786379px;}
.yc4{bottom:974.759759px;}
.y18d{bottom:979.705814px;}
.y13f{bottom:985.131599px;}
.y52{bottom:992.087401px;}
.y194{bottom:992.310794px;}
.ya0{bottom:992.759759px;}
.yc3{bottom:993.733154px;}
.y11b{bottom:995.709960px;}
.y1a4{bottom:1002.083495px;}
.y71{bottom:1002.604248px;}
.y165{bottom:1003.131593px;}
.y13e{bottom:1004.104247px;}
.ye{bottom:1004.287170px;}
.y30{bottom:1005.300842px;}
.y1ce{bottom:1008.052734px;}
.y193{bottom:1011.284911px;}
.y9f{bottom:1011.733155px;}
.y18c{bottom:1015.179932px;}
.y70{bottom:1021.577636px;}
.y1a3{bottom:1021.886718px;}
.y164{bottom:1022.104248px;}
.y1cd{bottom:1027.855956px;}
.y9e{bottom:1030.706543px;}
.y11a{bottom:1030.808350px;}
.yec{bottom:1031.104248px;}
.y51{bottom:1033.278809px;}
.y13d{bottom:1041.078369px;}
.y1a2{bottom:1041.689940px;}
.y1cc{bottom:1047.657714px;}
.y192{bottom:1048.257569px;}
.y9d{bottom:1049.679932px;}
.y119{bottom:1049.781738px;}
.yeb{bottom:1050.078369px;}
.y18b{bottom:1050.652589px;}
.yd{bottom:1052.302826px;}
.y2f{bottom:1053.316589px;}
.y6f{bottom:1058.551026px;}
.y13c{bottom:1060.051026px;}
.y191{bottom:1067.230224px;}
.y1cb{bottom:1067.462402px;}
.y9c{bottom:1068.653320px;}
.yea{bottom:1069.051026px;}
.y6e{bottom:1077.524414px;}
.y1a1{bottom:1077.994628px;}
.y50{bottom:1078.647950px;}
.y13b{bottom:1079.025147px;}
.y118{bottom:1084.879393px;}
.y190{bottom:1086.204347px;}
.y18a{bottom:1087.626709px;}
.ye9{bottom:1088.025147px;}
.y117{bottom:1088.853515px;}
.y6d{bottom:1096.498169px;}
.y1a0{bottom:1097.796386px;}
.y13a{bottom:1097.997802px;}
.yc{bottom:1100.318480px;}
.y2e{bottom:1101.332336px;}
.y1ca{bottom:1103.765624px;}
.y9b{bottom:1105.626710px;}
.ye8{bottom:1106.997803px;}
.y1c9{bottom:1123.568847px;}
.y114{bottom:1123.951171px;}
.y4f{bottom:1124.017089px;}
.y189{bottom:1124.599365px;}
.y9a{bottom:1124.600099px;}
.y115{bottom:1138.951172px;}
.y139{bottom:1140.072511px;}
.y6c{bottom:1140.073975px;}
.y1c8{bottom:1143.370605px;}
.y188{bottom:1143.572022px;}
.y99{bottom:1143.573486px;}
.h24{height:18.972656px;}
.h25{height:18.973389px;}
.h28{height:18.974121px;}
.h23{height:33.972657px;}
.h1d{height:33.973389px;}
.hf{height:37.684387px;}
.h16{height:37.684571px;}
.h2a{height:37.945312px;}
.h1f{height:37.946778px;}
.h29{height:37.948242px;}
.h8{height:40.546874px;}
.h10{height:52.628906px;}
.hc{height:52.699219px;}
.h22{height:52.946044px;}
.h26{height:52.946778px;}
.h2b{height:52.948243px;}
.hb{height:53.043751px;}
.h6{height:55.253905px;}
.h18{height:57.014651px;}
.h13{height:59.167970px;}
.h1b{height:59.586915px;}
.h27{height:60.445312px;}
.h1e{height:60.446045px;}
.h20{height:60.446778px;}
.h19{height:60.545654px;}
.he{height:60.843751px;}
.h1{height:66.304688px;}
.h14{height:67.869141px;}
.h1c{height:71.830081px;}
.h21{height:71.920166px;}
.h5{height:77.437497px;}
.h4{height:78.943359px;}
.h2c{height:87.221190px;}
.h11{height:87.221925px;}
.h7{height:87.222015px;}
.h17{height:87.222285px;}
.h1a{height:87.222660px;}
.h2{height:88.406253px;}
.ha{height:92.968600px;}
.h3{height:99.457031px;}
.h9{height:132.609375px;}
.hd{height:563.593140px;}
.h12{height:607.665525px;}
.h15{height:610.006710px;}
.h0{height:1263.000000px;}
.w4{width:125.999988px;}
.w7{width:248.624977px;}
.w6{width:439.875090px;}
.w5{width:508.500090px;}
.w2{width:705.375090px;}
.w3{width:707.625090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xd{left:6.750000px;}
.xe{left:7.875000px;}
.x12{left:10.867331px;}
.x1f{left:19.261368px;}
.x16{left:53.267493px;}
.x15{left:57.852491px;}
.x19{left:65.984874px;}
.x1c{left:81.125656px;}
.x1d{left:92.111135px;}
.x1a{left:109.996251px;}
.x2{left:127.575005px;}
.xc{left:128.700005px;}
.x14{left:130.174770px;}
.x4{left:138.488680px;}
.x3{left:147.189851px;}
.xf{left:154.575005px;}
.x5{left:180.280673px;}
.x10{left:181.575005px;}
.x11{left:182.699993px;}
.x1e{left:207.472961px;}
.x22{left:208.575005px;}
.x21{left:209.763439px;}
.x1b{left:212.057966px;}
.x20{left:214.348444px;}
.x23{left:235.575005px;}
.x7{left:283.303871px;}
.x8{left:292.345911px;}
.x13{left:309.824985px;}
.x9{left:314.132400px;}
.x1{left:328.022622px;}
.x18{left:378.449985px;}
.x6{left:398.548253px;}
.xa{left:418.222715px;}
.x17{left:803.594266px;}
.xb{left:811.091333px;}
@media print{
.v2{vertical-align:-35.488746pt;}
.v4{vertical-align:-22.262108pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.262108pt;}
.v1{vertical-align:35.488754pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:14.504895pt;}
.ls1{letter-spacing:20.280981pt;}
.ls2{letter-spacing:40.280981pt;}
.ls3{letter-spacing:78.239584pt;}
.wsbf{word-spacing:-44.000001pt;}
.ws19{word-spacing:-29.333334pt;}
.wsc5{word-spacing:-27.744510pt;}
.wsbe{word-spacing:-27.744479pt;}
.wsa7{word-spacing:-27.742206pt;}
.ws8b{word-spacing:-27.739888pt;}
.wsd5{word-spacing:-27.737552pt;}
.wsc1{word-spacing:-27.737549pt;}
.wsc3{word-spacing:-27.735272pt;}
.wsa6{word-spacing:-27.727317pt;}
.wsc4{word-spacing:-27.723675pt;}
.wsba{word-spacing:-26.666666pt;}
.ws5f{word-spacing:-17.600000pt;}
.ws8{word-spacing:-16.622579pt;}
.ws7{word-spacing:-16.622542pt;}
.wse{word-spacing:-14.218752pt;}
.ws1f{word-spacing:-13.081034pt;}
.ws9c{word-spacing:-13.075594pt;}
.wsad{word-spacing:-13.075525pt;}
.wsaa{word-spacing:-13.075523pt;}
.wsd1{word-spacing:-13.070954pt;}
.wsc9{word-spacing:-13.070886pt;}
.wsbd{word-spacing:-13.070878pt;}
.wsa0{word-spacing:-13.070834pt;}
.ws45{word-spacing:-13.070132pt;}
.ws42{word-spacing:-13.070125pt;}
.ws4f{word-spacing:-13.070094pt;}
.ws4a{word-spacing:-13.069389pt;}
.ws4d{word-spacing:-13.069357pt;}
.wsd6{word-spacing:-13.068770pt;}
.ws58{word-spacing:-13.068761pt;}
.ws8a{word-spacing:-13.068743pt;}
.ws65{word-spacing:-13.068741pt;}
.wscd{word-spacing:-13.068737pt;}
.ws7c{word-spacing:-13.068735pt;}
.wsa9{word-spacing:-13.068727pt;}
.ws69{word-spacing:-13.068721pt;}
.wsdd{word-spacing:-13.068695pt;}
.ws36{word-spacing:-13.068692pt;}
.ws61{word-spacing:-13.068690pt;}
.wsb9{word-spacing:-13.068675pt;}
.ws9a{word-spacing:-13.068670pt;}
.ws8e{word-spacing:-13.068659pt;}
.ws90{word-spacing:-13.068656pt;}
.ws55{word-spacing:-13.068652pt;}
.ws88{word-spacing:-13.068650pt;}
.ws77{word-spacing:-13.068644pt;}
.wsa8{word-spacing:-13.068638pt;}
.wsdf{word-spacing:-13.068625pt;}
.wsdc{word-spacing:-13.068624pt;}
.wsac{word-spacing:-13.068621pt;}
.ws2d{word-spacing:-13.068618pt;}
.ws72{word-spacing:-13.068616pt;}
.wsc8{word-spacing:-13.068615pt;}
.wse1{word-spacing:-13.068613pt;}
.ws5a{word-spacing:-13.068609pt;}
.ws7a{word-spacing:-13.068607pt;}
.ws39{word-spacing:-13.068606pt;}
.ws3c{word-spacing:-13.068605pt;}
.ws52{word-spacing:-13.068602pt;}
.ws2e{word-spacing:-13.068599pt;}
.wsc6{word-spacing:-13.068593pt;}
.ws97{word-spacing:-13.068590pt;}
.ws35{word-spacing:-13.068584pt;}
.ws5c{word-spacing:-13.068579pt;}
.wsb4{word-spacing:-13.068570pt;}
.ws8d{word-spacing:-13.068550pt;}
.wsc7{word-spacing:-13.068544pt;}
.wsd3{word-spacing:-13.068481pt;}
.wsc2{word-spacing:-13.068292pt;}
.wsc0{word-spacing:-13.068252pt;}
.ws15{word-spacing:-13.067814pt;}
.ws1d{word-spacing:-13.067756pt;}
.ws89{word-spacing:-13.066327pt;}
.ws2f{word-spacing:-13.066279pt;}
.ws75{word-spacing:-13.066268pt;}
.ws64{word-spacing:-13.066266pt;}
.ws99{word-spacing:-13.066264pt;}
.wsa2{word-spacing:-13.066207pt;}
.wsae{word-spacing:-13.059308pt;}
.ws43{word-spacing:-13.058554pt;}
.wsab{word-spacing:-13.057009pt;}
.ws56{word-spacing:-13.057007pt;}
.ws49{word-spacing:-13.056887pt;}
.ws83{word-spacing:-13.054688pt;}
.ws46{word-spacing:-9.070177pt;}
.ws4c{word-spacing:-9.070129pt;}
.ws4e{word-spacing:-9.070005pt;}
.ws16{word-spacing:-9.069414pt;}
.ws92{word-spacing:-9.068810pt;}
.ws6c{word-spacing:-9.068770pt;}
.ws6f{word-spacing:-9.068761pt;}
.ws9b{word-spacing:-9.068724pt;}
.ws3e{word-spacing:-9.068721pt;}
.wsb2{word-spacing:-9.068695pt;}
.ws8f{word-spacing:-9.068673pt;}
.wsd7{word-spacing:-9.068650pt;}
.ws79{word-spacing:-9.068627pt;}
.wse0{word-spacing:-9.068623pt;}
.wsde{word-spacing:-9.068619pt;}
.ws68{word-spacing:-9.068617pt;}
.ws91{word-spacing:-9.068616pt;}
.wsd4{word-spacing:-9.068613pt;}
.wsb3{word-spacing:-9.068607pt;}
.ws3b{word-spacing:-9.068606pt;}
.ws37{word-spacing:-9.068605pt;}
.ws44{word-spacing:-9.068603pt;}
.ws94{word-spacing:-9.068602pt;}
.wsce{word-spacing:-9.068578pt;}
.ws5d{word-spacing:-9.068570pt;}
.ws93{word-spacing:-9.068530pt;}
.wsbc{word-spacing:-9.066336pt;}
.ws22{word-spacing:-9.066267pt;}
.ws25{word-spacing:-9.066265pt;}
.ws1e{word-spacing:-9.059373pt;}
.ws67{word-spacing:-9.054687pt;}
.ws11{word-spacing:-6.218761pt;}
.ws47{word-spacing:-5.081014pt;}
.wsb0{word-spacing:-5.070890pt;}
.ws51{word-spacing:-5.070205pt;}
.ws4b{word-spacing:-5.070185pt;}
.ws9f{word-spacing:-5.068770pt;}
.ws9e{word-spacing:-5.068761pt;}
.ws3a{word-spacing:-5.068744pt;}
.wsa3{word-spacing:-5.068721pt;}
.wsa5{word-spacing:-5.068690pt;}
.wsd8{word-spacing:-5.068673pt;}
.ws3d{word-spacing:-5.068647pt;}
.ws96{word-spacing:-5.068623pt;}
.ws57{word-spacing:-5.068619pt;}
.ws7e{word-spacing:-5.068615pt;}
.ws82{word-spacing:-5.068607pt;}
.ws74{word-spacing:-5.068605pt;}
.ws95{word-spacing:-5.068603pt;}
.ws7f{word-spacing:-5.068598pt;}
.ws24{word-spacing:-5.068590pt;}
.ws60{word-spacing:-5.068515pt;}
.ws20{word-spacing:-5.068069pt;}
.ws23{word-spacing:-5.067811pt;}
.ws6a{word-spacing:-5.066267pt;}
.ws66{word-spacing:-5.066266pt;}
.ws10{word-spacing:-2.218752pt;}
.wsd9{word-spacing:-1.082500pt;}
.ws34{word-spacing:-1.070954pt;}
.wsb8{word-spacing:-1.070714pt;}
.ws48{word-spacing:-1.070245pt;}
.ws13{word-spacing:-1.070022pt;}
.ws87{word-spacing:-1.068761pt;}
.ws71{word-spacing:-1.068721pt;}
.wsbb{word-spacing:-1.068715pt;}
.ws7d{word-spacing:-1.068689pt;}
.wsd2{word-spacing:-1.068687pt;}
.ws32{word-spacing:-1.068679pt;}
.wscc{word-spacing:-1.068656pt;}
.wsdb{word-spacing:-1.068649pt;}
.ws2b{word-spacing:-1.068605pt;}
.ws5e{word-spacing:-1.068603pt;}
.ws62{word-spacing:-1.068601pt;}
.ws81{word-spacing:-1.068583pt;}
.ws73{word-spacing:-1.068576pt;}
.ws1b{word-spacing:-1.067829pt;}
.ws86{word-spacing:-1.066266pt;}
.ws63{word-spacing:-1.066264pt;}
.wsa1{word-spacing:-1.066142pt;}
.wsd{word-spacing:-0.128000pt;}
.ws5{word-spacing:-0.096000pt;}
.ws11b{word-spacing:-0.058667pt;}
.wsf{word-spacing:-0.051200pt;}
.wsa{word-spacing:0.000000pt;}
.ws78{word-spacing:2.680980pt;}
.ws10a{word-spacing:2.687501pt;}
.ws84{word-spacing:2.929046pt;}
.wse2{word-spacing:2.931184pt;}
.ws98{word-spacing:2.931208pt;}
.ws8c{word-spacing:2.931253pt;}
.ws38{word-spacing:2.931308pt;}
.ws33{word-spacing:2.931330pt;}
.wsb6{word-spacing:2.931350pt;}
.wsb7{word-spacing:2.931359pt;}
.ws80{word-spacing:2.931390pt;}
.ws85{word-spacing:2.931394pt;}
.wsb5{word-spacing:2.931396pt;}
.ws54{word-spacing:2.931397pt;}
.wsca{word-spacing:2.931417pt;}
.ws21{word-spacing:2.932072pt;}
.ws1a{word-spacing:2.933698pt;}
.ws7b{word-spacing:2.940757pt;}
.wsb1{word-spacing:2.945312pt;}
.ws12{word-spacing:5.781248pt;}
.ws41{word-spacing:6.929875pt;}
.ws2c{word-spacing:6.931210pt;}
.ws6b{word-spacing:6.931350pt;}
.ws31{word-spacing:6.931394pt;}
.ws9d{word-spacing:6.931396pt;}
.ws76{word-spacing:6.931430pt;}
.ws17{word-spacing:6.932074pt;}
.ws50{word-spacing:10.929875pt;}
.wscb{word-spacing:10.931265pt;}
.ws6e{word-spacing:10.931279pt;}
.wscf{word-spacing:10.931378pt;}
.ws30{word-spacing:10.931396pt;}
.wsd0{word-spacing:10.931399pt;}
.wsda{word-spacing:10.931401pt;}
.ws26{word-spacing:10.931534pt;}
.ws18{word-spacing:10.932164pt;}
.ws6d{word-spacing:10.933736pt;}
.ws11a{word-spacing:14.284816pt;}
.ws102{word-spacing:14.423136pt;}
.ws120{word-spacing:14.427271pt;}
.ws111{word-spacing:14.427275pt;}
.ws114{word-spacing:14.428547pt;}
.wsed{word-spacing:14.428555pt;}
.ws109{word-spacing:14.429734pt;}
.ws11f{word-spacing:14.430724pt;}
.ws110{word-spacing:14.430840pt;}
.ws10e{word-spacing:14.430957pt;}
.wsfd{word-spacing:14.430960pt;}
.wsfc{word-spacing:14.431024pt;}
.ws104{word-spacing:14.431077pt;}
.ws118{word-spacing:14.431080pt;}
.ws113{word-spacing:14.431353pt;}
.wsea{word-spacing:14.431467pt;}
.wsf1{word-spacing:14.431473pt;}
.wse5{word-spacing:14.432364pt;}
.ws119{word-spacing:14.432380pt;}
.wsf6{word-spacing:14.432645pt;}
.wse8{word-spacing:14.432972pt;}
.wsef{word-spacing:14.434727pt;}
.ws112{word-spacing:14.443470pt;}
.wsf9{word-spacing:14.444343pt;}
.ws106{word-spacing:14.446264pt;}
.ws116{word-spacing:14.446273pt;}
.wsf3{word-spacing:14.446277pt;}
.ws11c{word-spacing:14.446327pt;}
.ws100{word-spacing:14.662606pt;}
.ws9{word-spacing:14.742417pt;}
.ws70{word-spacing:14.931333pt;}
.wse3{word-spacing:14.931419pt;}
.wsaf{word-spacing:14.931450pt;}
.ws14{word-spacing:14.933721pt;}
.ws0{word-spacing:17.717228pt;}
.ws3f{word-spacing:17.717248pt;}
.ws27{word-spacing:17.717250pt;}
.ws10d{word-spacing:18.430764pt;}
.ws108{word-spacing:18.430911pt;}
.wse7{word-spacing:18.431369pt;}
.wsf0{word-spacing:18.443617pt;}
.ws103{word-spacing:18.444412pt;}
.wse9{word-spacing:18.446274pt;}
.ws11e{word-spacing:18.446275pt;}
.ws10f{word-spacing:18.446277pt;}
.wsf7{word-spacing:18.446283pt;}
.ws1c{word-spacing:18.933738pt;}
.wsa4{word-spacing:19.176737pt;}
.ws53{word-spacing:19.182173pt;}
.wsf5{word-spacing:22.417963pt;}
.ws117{word-spacing:22.428547pt;}
.wsff{word-spacing:22.431593pt;}
.ws10b{word-spacing:22.432324pt;}
.wsec{word-spacing:22.443621pt;}
.ws10c{word-spacing:22.446095pt;}
.wsf4{word-spacing:22.446277pt;}
.wseb{word-spacing:22.446282pt;}
.ws59{word-spacing:22.931395pt;}
.ws1{word-spacing:23.601066pt;}
.wsee{word-spacing:26.428547pt;}
.ws105{word-spacing:26.430943pt;}
.wsf8{word-spacing:26.440358pt;}
.wsfe{word-spacing:26.443461pt;}
.wse4{word-spacing:26.443488pt;}
.ws107{word-spacing:26.446277pt;}
.wse6{word-spacing:26.446279pt;}
.ws4{word-spacing:26.575850pt;}
.ws6{word-spacing:26.575859pt;}
.ws2{word-spacing:26.575865pt;}
.ws3{word-spacing:26.575877pt;}
.ws5b{word-spacing:29.343751pt;}
.ws101{word-spacing:30.432398pt;}
.wsfb{word-spacing:30.446278pt;}
.wsfa{word-spacing:34.427339pt;}
.ws115{word-spacing:34.430923pt;}
.wsf2{word-spacing:34.431529pt;}
.wsb{word-spacing:35.434480pt;}
.wsc{word-spacing:35.434500pt;}
.ws28{word-spacing:43.434500pt;}
.ws2a{word-spacing:59.434500pt;}
.ws11d{word-spacing:66.431145pt;}
.ws40{word-spacing:71.434480pt;}
.ws29{word-spacing:75.434520pt;}
._3{margin-left:-8.625000pt;}
._16{margin-left:-7.593802pt;}
._2{margin-left:-5.843772pt;}
._1b{margin-left:-4.550992pt;}
._1{margin-left:-3.468750pt;}
._0{margin-left:-1.937454pt;}
._4{margin-left:-0.935654pt;}
._6{width:1.091808pt;}
._26{width:2.136316pt;}
._20{width:14.475960pt;}
._13{width:15.670257pt;}
._15{width:16.674071pt;}
._24{width:18.474894pt;}
._12{width:19.693677pt;}
._11{width:20.905340pt;}
._1e{width:22.020786pt;}
._1f{width:23.088684pt;}
._b{width:24.260904pt;}
._22{width:25.883662pt;}
._21{width:26.993693pt;}
._14{width:28.256264pt;}
._5{width:29.493012pt;}
._23{width:31.024401pt;}
._8{width:32.253191pt;}
._1d{width:33.156036pt;}
._7{width:34.562500pt;}
._f{width:36.238525pt;}
._25{width:38.269768pt;}
._d{width:39.478197pt;}
._c{width:40.962513pt;}
._e{width:44.276650pt;}
._1a{width:47.072916pt;}
._9{width:48.091851pt;}
._a{width:49.090623pt;}
._10{width:52.951729pt;}
._18{width:63.562454pt;}
._19{width:75.562500pt;}
._1c{width:76.463541pt;}
._17{width:79.562500pt;}
.fs9{font-size:35.200001pt;}
.fs6{font-size:51.200001pt;}
.fs4{font-size:53.333332pt;}
.fs7{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.333336pt;}
.fs3{font-size:74.666664pt;}
.fs1{font-size:85.333336pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y15d{bottom:3.107415pt;}
.y113{bottom:3.107422pt;}
.y116{bottom:3.108073pt;}
.y14f{bottom:3.108716pt;}
.y148{bottom:3.108724pt;}
.y10a{bottom:9.774089pt;}
.yee{bottom:9.774740pt;}
.y2c{bottom:11.260255pt;}
.y6a{bottom:11.260418pt;}
.y2a{bottom:13.650227pt;}
.y68{bottom:13.650721pt;}
.y14d{bottom:19.972005pt;}
.yf3{bottom:19.973308pt;}
.y14a{bottom:19.974609pt;}
.y146{bottom:33.305338pt;}
.yf0{bottom:33.305989pt;}
.y104{bottom:33.306635pt;}
.y11d{bottom:33.306640pt;}
.yf8{bottom:33.306641pt;}
.y29{bottom:34.906574pt;}
.y67{bottom:34.906894pt;}
.y4e{bottom:38.091147pt;}
.y4c{bottom:38.366212pt;}
.y103{bottom:50.171875pt;}
.y28{bottom:56.162761pt;}
.y4b{bottom:57.761065pt;}
.y1c7{bottom:65.082030pt;}
.y2d{bottom:65.082683pt;}
.yb{bottom:65.082763pt;}
.y6b{bottom:65.083003pt;}
.y98{bottom:65.083336pt;}
.y4a{bottom:77.156239pt;}
.y27{bottom:77.419267pt;}
.y111{bottom:88.408856pt;}
.y97{bottom:92.992185pt;}
.y49{bottom:96.551425pt;}
.y26{bottom:98.675454pt;}
.y66{bottom:98.675774pt;}
.y112{bottom:101.742190pt;}
.y163{bottom:105.370439pt;}
.y96{bottom:109.857425pt;}
.ya{bottom:112.713953pt;}
.y48{bottom:115.946279pt;}
.y25{bottom:119.931801pt;}
.y65{bottom:119.931961pt;}
.y4d{bottom:120.805995pt;}
.y162{bottom:122.235025pt;}
.ye7{bottom:122.836585pt;}
.y95{bottom:126.722652pt;}
.y1c6{bottom:130.910162pt;}
.y110{bottom:132.408856pt;}
.y47{bottom:135.341145pt;}
.y161{bottom:139.100905pt;}
.ye6{bottom:139.701172pt;}
.y187{bottom:141.388665pt;}
.y94{bottom:143.587892pt;}
.y24{bottom:147.854654pt;}
.yc2{bottom:148.169919pt;}
.y1c5{bottom:148.514322pt;}
.y160{bottom:155.966799pt;}
.ye5{bottom:156.567052pt;}
.y9{bottom:157.239915pt;}
.y93{bottom:160.453119pt;}
.y10f{bottom:163.606771pt;}
.yc1{bottom:165.035159pt;}
.y1c4{bottom:166.117188pt;}
.y10e{bottom:167.139323pt;}
.y23{bottom:169.111001pt;}
.ye4{bottom:173.431639pt;}
.y186{bottom:174.254559pt;}
.y64{bottom:175.777987pt;}
.y92{bottom:177.318358pt;}
.y8{bottom:180.764728pt;}
.yc0{bottom:181.900385pt;}
.y36{bottom:183.134120pt;}
.y2b{bottom:185.911300pt;}
.y46{bottom:187.464519pt;}
.y15f{bottom:188.831385pt;}
.ye3{bottom:190.297532pt;}
.y22{bottom:190.367187pt;}
.y63{bottom:197.034174pt;}
.y10d{bottom:198.337237pt;}
.y1c3{bottom:198.386722pt;}
.ybf{bottom:198.765625pt;}
.y10c{bottom:201.869789pt;}
.y45{bottom:206.859692pt;}
.y185{bottom:207.119145pt;}
.ye2{bottom:207.162105pt;}
.y91{bottom:210.183599pt;}
.y21{bottom:211.623534pt;}
.y69{bottom:215.458337pt;}
.y1c2{bottom:215.988282pt;}
.y62{bottom:218.290361pt;}
.y14{bottom:221.408533pt;}
.y184{bottom:223.985025pt;}
.y44{bottom:226.254545pt;}
.y90{bottom:227.048825pt;}
.ybe{bottom:231.630865pt;}
.y20{bottom:232.879721pt;}
.y10b{bottom:233.067704pt;}
.y1c1{bottom:233.592442pt;}
.y15c{bottom:237.986984pt;}
.y61{bottom:239.546867pt;}
.ye1{bottom:240.027999pt;}
.y8f{bottom:243.914065pt;}
.y43{bottom:245.649732pt;}
.y56{bottom:250.955080pt;}
.y1f{bottom:254.136067pt;}
.y15e{bottom:254.851568pt;}
.y138{bottom:256.559892pt;}
.y109{bottom:256.600256pt;}
.y183{bottom:256.849612pt;}
.ye0{bottom:256.892572pt;}
.y8e{bottom:260.779292pt;}
.y60{bottom:260.803054pt;}
.y42{bottom:265.044585pt;}
.y1c0{bottom:265.860682pt;}
.y15b{bottom:272.717451pt;}
.y137{bottom:273.425132pt;}
.y182{bottom:273.715492pt;}
.ydf{bottom:273.758465pt;}
.y1e{bottom:275.392254pt;}
.y8d{bottom:277.644531pt;}
.y5f{bottom:282.059241pt;}
.y1bf{bottom:283.464842pt;}
.y41{bottom:284.439772pt;}
.y7{bottom:285.739171pt;}
.y15a{bottom:289.583337pt;}
.y136{bottom:290.290359pt;}
.y181{bottom:290.580079pt;}
.yde{bottom:290.623052pt;}
.y1d{bottom:296.648761pt;}
.ybd{bottom:297.361332pt;}
.y1be{bottom:301.066402pt;}
.y5e{bottom:303.315427pt;}
.y40{bottom:303.834625pt;}
.y135{bottom:307.155598pt;}
.y180{bottom:307.445959pt;}
.y159{bottom:307.447917pt;}
.ydd{bottom:307.488932pt;}
.y1e8{bottom:307.704428pt;}
.y8c{bottom:310.509772pt;}
.ybc{bottom:314.226559pt;}
.y1c{bottom:317.904947pt;}
.y3f{bottom:323.229812pt;}
.y17f{bottom:324.310545pt;}
.y158{bottom:324.312501pt;}
.ydc{bottom:324.353519pt;}
.y5d{bottom:324.571934pt;}
.y1e7{bottom:325.308588pt;}
.y8b{bottom:327.374999pt;}
.ybb{bottom:331.091799pt;}
.y1bd{bottom:333.335935pt;}
.y108{bottom:337.664064pt;}
.y134{bottom:340.020839pt;}
.y17e{bottom:341.176439pt;}
.ydb{bottom:341.219399pt;}
.y157{bottom:342.178384pt;}
.y3e{bottom:342.624665pt;}
.y1e6{bottom:342.912762pt;}
.y8a{bottom:344.240239pt;}
.y1b{bottom:345.827801pt;}
.yba{bottom:347.957025pt;}
.y1bc{bottom:350.938802pt;}
.y133{bottom:356.886065pt;}
.yda{bottom:358.084638pt;}
.y1e5{bottom:360.514322pt;}
.y89{bottom:361.105465pt;}
.y107{bottom:361.195965pt;}
.y1a{bottom:367.084147pt;}
.y1bb{bottom:368.542962pt;}
.y132{bottom:373.751305pt;}
.y17d{bottom:374.041012pt;}
.y88{bottom:377.970705pt;}
.y3d{bottom:378.019852pt;}
.y5c{bottom:380.417961pt;}
.yb9{bottom:380.822265pt;}
.y1ba{bottom:386.144535pt;}
.y19{bottom:388.340494pt;}
.y17c{bottom:390.906905pt;}
.yd9{bottom:390.949865pt;}
.y106{bottom:392.394529pt;}
.y1e4{bottom:392.782548pt;}
.y87{bottom:394.835932pt;}
.y3c{bottom:397.414705pt;}
.yb8{bottom:397.687505pt;}
.y5b{bottom:401.674147pt;}
.y131{bottom:406.616532pt;}
.y17b{bottom:407.771479pt;}
.y105{bottom:409.259112pt;}
.y18{bottom:409.596681pt;}
.y1e3{bottom:410.386722pt;}
.y86{bottom:411.701171pt;}
.yb7{bottom:414.552732pt;}
.y156{bottom:416.016279pt;}
.y3b{bottom:416.809892pt;}
.y1b9{bottom:418.414068pt;}
.yd8{bottom:422.481119pt;}
.y5a{bottom:422.930334pt;}
.y130{bottom:423.481771pt;}
.y17a{bottom:424.637372pt;}
.y1e2{bottom:427.990882pt;}
.yb6{bottom:431.417972pt;}
.y155{bottom:432.882159pt;}
.y1b8{bottom:436.016922pt;}
.y3a{bottom:436.204745pt;}
.y17{bottom:437.519694pt;}
.yd7{bottom:439.346359pt;}
.y102{bottom:440.458337pt;}
.y179{bottom:441.501959pt;}
.y85{bottom:444.566412pt;}
.yb5{bottom:448.283199pt;}
.y154{bottom:449.748052pt;}
.y1b7{bottom:453.621095pt;}
.y12f{bottom:456.346999pt;}
.y16{bottom:458.776041pt;}
.y1e1{bottom:458.925775pt;}
.y6{bottom:460.330358pt;}
.y84{bottom:461.431639pt;}
.yb4{bottom:465.148439pt;}
.y153{bottom:466.612625pt;}
.yd6{bottom:470.878905pt;}
.y39{bottom:471.599932pt;}
.y12e{bottom:473.212239pt;}
.y101{bottom:474.188805pt;}
.y178{bottom:474.367839pt;}
.y1e0{bottom:476.529948pt;}
.y83{bottom:478.296879pt;}
.y59{bottom:478.776041pt;}
.y15{bottom:480.032227pt;}
.yb3{bottom:482.013665pt;}
.y1b6{bottom:485.890628pt;}
.yd5{bottom:487.744145pt;}
.y12d{bottom:490.077478pt;}
.y38{bottom:490.994785pt;}
.y1df{bottom:494.131508pt;}
.y82{bottom:495.162105pt;}
.yb2{bottom:498.878905pt;}
.y152{bottom:499.477212pt;}
.y5{bottom:499.650224pt;}
.y58{bottom:500.032547pt;}
.y1b5{bottom:503.492188pt;}
.y100{bottom:505.387371pt;}
.y177{bottom:507.232425pt;}
.y37{bottom:510.389971pt;}
.y81{bottom:512.027345pt;}
.y151{bottom:516.344399pt;}
.yd4{bottom:519.275385pt;}
.y1b4{bottom:521.095055pt;}
.y57{bottom:521.288734pt;}
.y12c{bottom:522.942705pt;}
.y176{bottom:524.098305pt;}
.y1de{bottom:526.399735pt;}
.yff{bottom:528.919272pt;}
.yb1{bottom:531.744145pt;}
.y4{bottom:538.970211pt;}
.y12b{bottom:539.807945pt;}
.y175{bottom:540.962892pt;}
.y1dd{bottom:544.003908pt;}
.y80{bottom:544.892572pt;}
.yb0{bottom:548.609372pt;}
.yd3{bottom:550.807945pt;}
.y1b3{bottom:553.365882pt;}
.y12a{bottom:556.673172pt;}
.y174{bottom:557.828772pt;}
.yfe{bottom:560.117837pt;}
.y1dc{bottom:561.608068pt;}
.y7f{bottom:561.757812pt;}
.yfd{bottom:563.649739pt;}
.yaf{bottom:565.474612pt;}
.y1b2{bottom:570.968748pt;}
.y14e{bottom:572.250003pt;}
.y129{bottom:573.538412pt;}
.y3{bottom:578.290078pt;}
.y7e{bottom:578.623052pt;}
.yae{bottom:582.339838pt;}
.yd2{bottom:582.339839pt;}
.y1b1{bottom:588.570308pt;}
.y150{bottom:589.115888pt;}
.y128{bottom:590.403652pt;}
.y173{bottom:590.693359pt;}
.y1db{bottom:593.876295pt;}
.yfc{bottom:594.848304pt;}
.y7d{bottom:595.488279pt;}
.yd1{bottom:599.205079pt;}
.y14c{bottom:606.981767pt;}
.y127{bottom:607.268879pt;}
.y172{bottom:607.559239pt;}
.y1da{bottom:611.477868pt;}
.y7c{bottom:612.353519pt;}
.yad{bottom:615.205079pt;}
.yd0{bottom:616.070319pt;}
.yfb{bottom:618.380205pt;}
.y1b0{bottom:620.839842pt;}
.y14b{bottom:623.846350pt;}
.y126{bottom:624.134118pt;}
.y171{bottom:624.423825pt;}
.y7b{bottom:629.218745pt;}
.yac{bottom:632.070319pt;}
.ycf{bottom:632.935545pt;}
.y1af{bottom:638.444015pt;}
.y170{bottom:641.289719pt;}
.y149{bottom:641.710936pt;}
.y1d9{bottom:643.748695pt;}
.y7a{bottom:646.083331pt;}
.y19f{bottom:648.537105pt;}
.yab{bottom:648.935545pt;}
.yfa{bottom:649.578771pt;}
.yce{bottom:649.800785pt;}
.y1ae{bottom:656.045575pt;}
.y125{bottom:656.999345pt;}
.y16f{bottom:658.154292pt;}
.y147{bottom:658.576821pt;}
.y1d8{bottom:661.351562pt;}
.y19e{bottom:665.401692pt;}
.yaa{bottom:665.800785pt;}
.yf9{bottom:673.110672pt;}
.y1ad{bottom:673.648442pt;}
.y124{bottom:673.864585pt;}
.y145{bottom:676.442713pt;}
.y79{bottom:678.949225pt;}
.y1d7{bottom:678.954428pt;}
.ya9{bottom:682.666011pt;}
.ycd{bottom:682.666012pt;}
.y16e{bottom:691.020185pt;}
.y19d{bottom:698.266279pt;}
.ycc{bottom:699.531252pt;}
.yf7{bottom:704.309251pt;}
.y1ac{bottom:705.917962pt;}
.y123{bottom:706.729812pt;}
.y16d{bottom:707.884772pt;}
.y78{bottom:710.480465pt;}
.y1d6{bottom:711.225255pt;}
.y19c{bottom:715.132159pt;}
.ya8{bottom:715.531252pt;}
.ycb{bottom:716.396479pt;}
.y1ab{bottom:723.522135pt;}
.y122{bottom:723.595052pt;}
.y16c{bottom:724.750652pt;}
.yf6{bottom:727.841152pt;}
.y1d5{bottom:728.826828pt;}
.y19b{bottom:731.998052pt;}
.ya7{bottom:732.396478pt;}
.yca{bottom:733.261718pt;}
.y13{bottom:735.640621pt;}
.y35{bottom:736.541661pt;}
.y2{bottom:738.689331pt;}
.y1aa{bottom:741.123695pt;}
.y16b{bottom:741.615239pt;}
.y77{bottom:742.012371pt;}
.y19a{bottom:748.862625pt;}
.y121{bottom:755.217451pt;}
.y12{bottom:755.804688pt;}
.y34{bottom:756.705727pt;}
.y16a{bottom:758.481119pt;}
.yf5{bottom:759.039717pt;}
.y1d4{bottom:761.095055pt;}
.yf4{bottom:762.571619pt;}
.ya6{bottom:765.261719pt;}
.y199{bottom:765.727212pt;}
.yc9{bottom:766.126959pt;}
.y120{bottom:772.082685pt;}
.y1a9{bottom:773.393228pt;}
.y76{bottom:774.877599pt;}
.y144{bottom:775.345705pt;}
.y1d3{bottom:778.699215pt;}
.ya5{bottom:782.126959pt;}
.yc8{bottom:782.992185pt;}
.y11{bottom:786.372184pt;}
.y33{bottom:787.273224pt;}
.y1a8{bottom:790.996095pt;}
.y169{bottom:791.345705pt;}
.y75{bottom:791.742839pt;}
.y143{bottom:792.211585pt;}
.yf2{bottom:793.770184pt;}
.y1d2{bottom:796.303388pt;}
.yf1{bottom:797.302085pt;}
.y198{bottom:798.593105pt;}
.ya4{bottom:798.992185pt;}
.yc7{bottom:799.857425pt;}
.y11f{bottom:803.281249pt;}
.y55{bottom:806.443688pt;}
.y168{bottom:808.211585pt;}
.y1a7{bottom:808.600255pt;}
.y74{bottom:808.608078pt;}
.y142{bottom:809.076172pt;}
.y10{bottom:811.052076pt;}
.y32{bottom:811.953129pt;}
.y197{bottom:815.458985pt;}
.ya3{bottom:815.857425pt;}
.y11e{bottom:820.145832pt;}
.y18f{bottom:821.936854pt;}
.y167{bottom:825.076172pt;}
.y141{bottom:825.942052pt;}
.y54{bottom:826.607741pt;}
.yef{bottom:828.500649pt;}
.y1d1{bottom:828.571615pt;}
.y196{bottom:832.323572pt;}
.ya2{bottom:832.722651pt;}
.yc6{bottom:832.722652pt;}
.y1{bottom:834.519261pt;}
.y18e{bottom:839.318359pt;}
.y1a6{bottom:840.868495pt;}
.y73{bottom:841.473305pt;}
.y166{bottom:841.942052pt;}
.y1d0{bottom:846.173175pt;}
.y195{bottom:849.188145pt;}
.yc5{bottom:849.587892pt;}
.yf{bottom:850.019042pt;}
.y31{bottom:850.920082pt;}
.y11c{bottom:851.345052pt;}
.yed{bottom:852.031899pt;}
.y53{bottom:857.175571pt;}
.y72{bottom:858.338545pt;}
.y1a5{bottom:858.471348pt;}
.y140{bottom:858.806639pt;}
.y1cf{bottom:863.777348pt;}
.ya1{bottom:865.587892pt;}
.yc4{bottom:866.453119pt;}
.y18d{bottom:870.849612pt;}
.y13f{bottom:875.672532pt;}
.y52{bottom:881.855468pt;}
.y194{bottom:882.054039pt;}
.ya0{bottom:882.453119pt;}
.yc3{bottom:883.318359pt;}
.y11b{bottom:885.075520pt;}
.y1a4{bottom:890.740884pt;}
.y71{bottom:891.203776pt;}
.y165{bottom:891.672527pt;}
.y13e{bottom:892.537109pt;}
.ye{bottom:892.699707pt;}
.y30{bottom:893.600748pt;}
.y1ce{bottom:896.046875pt;}
.y193{bottom:898.919921pt;}
.y9f{bottom:899.318360pt;}
.y18c{bottom:902.382161pt;}
.y70{bottom:908.069010pt;}
.y1a3{bottom:908.343750pt;}
.y164{bottom:908.537109pt;}
.y1cd{bottom:913.649739pt;}
.y9e{bottom:916.183593pt;}
.y11a{bottom:916.274089pt;}
.yec{bottom:916.537109pt;}
.y51{bottom:918.470052pt;}
.y13d{bottom:925.402995pt;}
.y1a2{bottom:925.946614pt;}
.y1cc{bottom:931.251302pt;}
.y192{bottom:931.784505pt;}
.y9d{bottom:933.048828pt;}
.y119{bottom:933.139323pt;}
.yeb{bottom:933.402995pt;}
.y18b{bottom:933.913412pt;}
.yd{bottom:935.380290pt;}
.y2f{bottom:936.281412pt;}
.y6f{bottom:940.934245pt;}
.y13c{bottom:942.267579pt;}
.y191{bottom:948.649088pt;}
.y1cb{bottom:948.855468pt;}
.y9c{bottom:949.914062pt;}
.yea{bottom:950.267579pt;}
.y6e{bottom:957.799479pt;}
.y1a1{bottom:958.217447pt;}
.y50{bottom:958.798178pt;}
.y13b{bottom:959.133464pt;}
.y118{bottom:964.337239pt;}
.y190{bottom:965.514975pt;}
.y18a{bottom:966.779297pt;}
.ye9{bottom:967.133464pt;}
.y117{bottom:967.869791pt;}
.y6d{bottom:974.665039pt;}
.y1a0{bottom:975.819009pt;}
.y13a{bottom:975.998046pt;}
.yc{bottom:978.060871pt;}
.y2e{bottom:978.962076pt;}
.y1ca{bottom:981.124999pt;}
.y9b{bottom:982.779297pt;}
.ye8{bottom:983.998047pt;}
.y1c9{bottom:998.727864pt;}
.y114{bottom:999.067708pt;}
.y4f{bottom:999.126302pt;}
.y189{bottom:999.643880pt;}
.y9a{bottom:999.644532pt;}
.y115{bottom:1012.401042pt;}
.y139{bottom:1013.397787pt;}
.y6c{bottom:1013.399089pt;}
.y1c8{bottom:1016.329427pt;}
.y188{bottom:1016.508464pt;}
.y99{bottom:1016.509765pt;}
.h24{height:16.864583pt;}
.h25{height:16.865234pt;}
.h28{height:16.865885pt;}
.h23{height:30.197917pt;}
.h1d{height:30.198568pt;}
.hf{height:33.497233pt;}
.h16{height:33.497396pt;}
.h2a{height:33.729167pt;}
.h1f{height:33.730469pt;}
.h29{height:33.731771pt;}
.h8{height:36.041666pt;}
.h10{height:46.781250pt;}
.hc{height:46.843750pt;}
.h22{height:47.063151pt;}
.h26{height:47.063803pt;}
.h2b{height:47.065105pt;}
.hb{height:47.150001pt;}
.h6{height:49.114582pt;}
.h18{height:50.679689pt;}
.h13{height:52.593751pt;}
.h1b{height:52.966147pt;}
.h27{height:53.729167pt;}
.h1e{height:53.729817pt;}
.h20{height:53.730469pt;}
.h19{height:53.818359pt;}
.he{height:54.083335pt;}
.h1{height:58.937500pt;}
.h14{height:60.328125pt;}
.h1c{height:63.848961pt;}
.h21{height:63.929036pt;}
.h5{height:68.833331pt;}
.h4{height:70.171875pt;}
.h2c{height:77.529947pt;}
.h11{height:77.530600pt;}
.h7{height:77.530680pt;}
.h17{height:77.530920pt;}
.h1a{height:77.531253pt;}
.h2{height:78.583336pt;}
.ha{height:82.638755pt;}
.h3{height:88.406250pt;}
.h9{height:117.875000pt;}
.hd{height:500.971680pt;}
.h12{height:540.147133pt;}
.h15{height:542.228187pt;}
.h0{height:1122.666667pt;}
.w4{width:111.999989pt;}
.w7{width:220.999980pt;}
.w6{width:391.000080pt;}
.w5{width:452.000080pt;}
.w2{width:627.000080pt;}
.w3{width:629.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xd{left:6.000000pt;}
.xe{left:7.000000pt;}
.x12{left:9.659849pt;}
.x1f{left:17.121216pt;}
.x16{left:47.348883pt;}
.x15{left:51.424437pt;}
.x19{left:58.653221pt;}
.x1c{left:72.111694pt;}
.x1d{left:81.876564pt;}
.x1a{left:97.774445pt;}
.x2{left:113.400004pt;}
.xc{left:114.400004pt;}
.x14{left:115.710907pt;}
.x4{left:123.101049pt;}
.x3{left:130.835423pt;}
.xf{left:137.400004pt;}
.x5{left:160.249487pt;}
.x10{left:161.400004pt;}
.x11{left:162.399993pt;}
.x1e{left:184.420410pt;}
.x22{left:185.400004pt;}
.x21{left:186.456390pt;}
.x1b{left:188.495970pt;}
.x20{left:190.531950pt;}
.x23{left:209.400004pt;}
.x7{left:251.825663pt;}
.x8{left:259.863032pt;}
.x13{left:275.399987pt;}
.x9{left:279.228800pt;}
.x1{left:291.575664pt;}
.x18{left:336.399987pt;}
.x6{left:354.265114pt;}
.xa{left:371.753524pt;}
.x17{left:714.306014pt;}
.xb{left:720.970074pt;}
}




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