
    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_95952773b970b2ec99059f15.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.751953;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_568b6ad6f6f18ce9c5c40e58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140000;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_94de03bc881de36c6f203e59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7fea52d8e3dfe625f249d533.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_1bfc95ac4a7310f5789c6432.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.742676;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_5e318eaa6991b634168b3c60.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_921f639f24ab8f0ba74de99f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.953125;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_d42c94772e51e56f3aef7639.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_3f352ece04f6764f033afa6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087402;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_4193851b02259bd80561d276.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01d5598583bb881946562008.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_6f6104a84186e08bd40c6003.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.905762;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;}
.m2{transform:matrix(0.000000,-0.249550,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249550,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249550,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-53.772600px;}
.v6{vertical-align:-26.071800px;}
.v3{vertical-align:-22.609200px;}
.v8{vertical-align:-4.888200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:28.261287px;}
.v2{vertical-align:33.913200px;}
.v1{vertical-align:39.565920px;}
.v5{vertical-align:40.736880px;}
.ls28{letter-spacing:-4.557422px;}
.ls20{letter-spacing:-2.552844px;}
.ls46{letter-spacing:-2.254607px;}
.ls34{letter-spacing:-1.680390px;}
.ls37{letter-spacing:-1.663417px;}
.ls23{letter-spacing:-1.654930px;}
.lsc{letter-spacing:-1.642196px;}
.ls15{letter-spacing:-1.519141px;}
.ls53{letter-spacing:-1.260290px;}
.ls45{letter-spacing:-0.863466px;}
.ls50{letter-spacing:-0.495632px;}
.ls4d{letter-spacing:-0.088263px;}
.ls35{letter-spacing:-0.084868px;}
.ls1f{letter-spacing:-0.076381px;}
.ls4c{letter-spacing:-0.061105px;}
.ls4e{letter-spacing:-0.054316px;}
.ls25{letter-spacing:-0.050921px;}
.lsd{letter-spacing:-0.047526px;}
.ls1e{letter-spacing:-0.042434px;}
.ls4f{letter-spacing:-0.040737px;}
.ls1d{letter-spacing:-0.033947px;}
.ls30{letter-spacing:-0.033660px;}
.ls44{letter-spacing:-0.025460px;}
.ls24{letter-spacing:-0.016974px;}
.ls4b{letter-spacing:-0.013579px;}
.ls21{letter-spacing:-0.008487px;}
.lsb{letter-spacing:-0.007638px;}
.ls4a{letter-spacing:-0.006789px;}
.ls31{letter-spacing:-0.006732px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006789px;}
.ls19{letter-spacing:0.008487px;}
.ls8{letter-spacing:0.013579px;}
.ls49{letter-spacing:0.014632px;}
.ls6{letter-spacing:0.015276px;}
.ls16{letter-spacing:0.016974px;}
.ls3{letter-spacing:0.017083px;}
.ls52{letter-spacing:0.020368px;}
.ls2e{letter-spacing:0.026928px;}
.ls48{letter-spacing:0.027158px;}
.ls7{letter-spacing:0.028222px;}
.ls11{letter-spacing:0.033845px;}
.ls13{letter-spacing:0.033947px;}
.ls1b{letter-spacing:0.034445px;}
.ls1a{letter-spacing:0.035045px;}
.ls0{letter-spacing:0.035645px;}
.ls4{letter-spacing:0.038191px;}
.ls2c{letter-spacing:0.040392px;}
.lse{letter-spacing:0.042434px;}
.ls14{letter-spacing:0.054316px;}
.ls27{letter-spacing:0.059408px;}
.ls2a{letter-spacing:0.060588px;}
.ls29{letter-spacing:0.060594px;}
.ls18{letter-spacing:0.067895px;}
.ls36{letter-spacing:0.071289px;}
.ls10{letter-spacing:0.076873px;}
.ls2{letter-spacing:0.083171px;}
.ls5{letter-spacing:0.091657px;}
.ls1{letter-spacing:0.095052px;}
.lsf{letter-spacing:0.101842px;}
.ls3f{letter-spacing:0.359337px;}
.ls32{letter-spacing:0.592416px;}
.ls2b{letter-spacing:0.605880px;}
.ls2d{letter-spacing:0.632808px;}
.ls2f{letter-spacing:0.659736px;}
.ls39{letter-spacing:0.682740px;}
.ls3a{letter-spacing:0.689927px;}
.ls40{letter-spacing:0.697114px;}
.ls43{letter-spacing:0.704301px;}
.ls41{letter-spacing:0.711487px;}
.ls42{letter-spacing:0.718674px;}
.ls38{letter-spacing:0.719555px;}
.ls3d{letter-spacing:0.725861px;}
.ls3c{letter-spacing:0.733047px;}
.ls3e{letter-spacing:0.761794px;}
.ls3b{letter-spacing:0.862409px;}
.ls47{letter-spacing:2.036844px;}
.ls22{letter-spacing:4.922356px;}
.ls33{letter-spacing:7.612678px;}
.ls17{letter-spacing:12.399244px;}
.ls26{letter-spacing:12.628596px;}
.ls51{letter-spacing:14.094960px;}
.ls1c{letter-spacing:18.212716px;}
.ls12{letter-spacing:59.374003px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-118.815600px;}
.ws39{word-spacing:-101.841600px;}
.ws10{word-spacing:-84.868200px;}
.ws3c{word-spacing:-79.950600px;}
.ws5{word-spacing:-76.381200px;}
.ws7{word-spacing:-67.894800px;}
.ws2a{word-spacing:-67.320000px;}
.ws2{word-spacing:-26.139432px;}
.ws38{word-spacing:-22.405152px;}
.ws3e{word-spacing:-20.740932px;}
.ws3d{word-spacing:-20.712185px;}
.ws41{word-spacing:-20.697811px;}
.ws40{word-spacing:-20.690624px;}
.ws3f{word-spacing:-20.676251px;}
.ws3b{word-spacing:-19.971660px;}
.ws27{word-spacing:-19.374696px;}
.ws29{word-spacing:-19.347768px;}
.ws2d{word-spacing:-19.307376px;}
.ws23{word-spacing:-18.777556px;}
.ws2b{word-spacing:-18.775548px;}
.wse{word-spacing:-18.772846px;}
.ws2c{word-spacing:-18.755352px;}
.ws28{word-spacing:-18.681300px;}
.wsd{word-spacing:-18.671004px;}
.ws4{word-spacing:-16.895521px;}
.ws3{word-spacing:-16.803864px;}
.ws56{word-spacing:-15.543574px;}
.ws6{word-spacing:-14.936856px;}
.ws47{word-spacing:-14.896119px;}
.ws21{word-spacing:-14.113582px;}
.ws46{word-spacing:-7.001627px;}
.ws48{word-spacing:-3.815688px;}
.ws44{word-spacing:-1.293613px;}
.ws43{word-spacing:-1.286426px;}
.ws45{word-spacing:-1.264866px;}
.ws42{word-spacing:-1.243306px;}
.ws30{word-spacing:-0.787644px;}
.ws31{word-spacing:-0.767448px;}
.ws33{word-spacing:-0.753984px;}
.ws32{word-spacing:-0.720324px;}
.ws49{word-spacing:-0.407369px;}
.ws0{word-spacing:-0.067895px;}
.ws18{word-spacing:-0.008487px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.047526px;}
.ws4e{word-spacing:2.030055px;}
.ws4f{word-spacing:2.220160px;}
.ws19{word-spacing:2.484950px;}
.wsf{word-spacing:2.826111px;}
.ws4c{word-spacing:3.347214px;}
.ws4a{word-spacing:4.501425px;}
.ws1c{word-spacing:4.922356px;}
.ws50{word-spacing:5.655637px;}
.ws4b{word-spacing:6.592585px;}
.ws34{word-spacing:7.239257px;}
.ws36{word-spacing:7.595704px;}
.ws15{word-spacing:7.824848px;}
.ws14{word-spacing:7.850309px;}
.ws51{word-spacing:8.004797px;}
.ws52{word-spacing:8.514008px;}
.ws53{word-spacing:9.009640px;}
.ws37{word-spacing:11.100761px;}
.ws54{word-spacing:11.134747px;}
.ws57{word-spacing:14.081382px;}
.ws12{word-spacing:14.520949px;}
.ws55{word-spacing:15.900962px;}
.ws58{word-spacing:17.564385px;}
.ws13{word-spacing:18.212716px;}
.ws4d{word-spacing:18.752544px;}
.ws9{word-spacing:39.657119px;}
.ws11{word-spacing:67.181667px;}
.ws2e{word-spacing:71.144652px;}
.ws24{word-spacing:71.147386px;}
.ws26{word-spacing:72.780099px;}
.ws25{word-spacing:72.780701px;}
.ws2f{word-spacing:72.780703px;}
.wsa{word-spacing:109.713956px;}
.ws1f{word-spacing:135.809968px;}
.ws20{word-spacing:267.328986px;}
.ws17{word-spacing:327.476989px;}
.ws1b{word-spacing:346.270269px;}
.ws1a{word-spacing:372.029557px;}
.ws1e{word-spacing:436.258037px;}
.wsc{word-spacing:798.130532px;}
.ws16{word-spacing:809.930648px;}
.ws35{word-spacing:809.964596px;}
.ws3a{word-spacing:810.134333px;}
.ws1d{word-spacing:810.494175px;}
.ws22{word-spacing:811.356439px;}
._0{margin-left:-2167.093384px;}
._25{margin-left:-1944.225317px;}
._32{margin-left:-1942.611122px;}
._18{margin-left:-110.185010px;}
._2c{margin-left:-67.558473px;}
._2a{margin-left:-21.132182px;}
._26{margin-left:-18.861175px;}
._2d{margin-left:-17.379477px;}
._3{margin-left:-12.436595px;}
._24{margin-left:-10.887828px;}
._8{margin-left:-9.692730px;}
._7{margin-left:-8.118488px;}
._f{margin-left:-6.647696px;}
._2{margin-left:-4.930847px;}
._4{margin-left:-3.255547px;}
._1{margin-left:-1.262843px;}
._5{width:1.274725px;}
._6{width:2.287193px;}
._10{width:3.496569px;}
._c{width:4.671998px;}
._e{width:6.069752px;}
._1e{width:7.125543px;}
._9{width:8.906048px;}
._1b{width:10.165297px;}
._14{width:11.406506px;}
._a{width:13.297967px;}
._1f{width:14.529441px;}
._b{width:15.598816px;}
._15{width:16.768222px;}
._d{width:18.071792px;}
._17{width:19.530152px;}
._27{width:20.708663px;}
._12{width:21.758514px;}
._13{width:23.320088px;}
._28{width:24.688159px;}
._20{width:25.706583px;}
._21{width:26.995731px;}
._2e{width:27.996326px;}
._2b{width:29.195442px;}
._39{width:30.348868px;}
._1d{width:32.080180px;}
._1c{width:33.449960px;}
._22{width:34.928365px;}
._23{width:36.372806px;}
._11{width:38.266134px;}
._40{width:47.006803px;}
._2f{width:48.497972px;}
._19{width:49.547765px;}
._1a{width:50.638231px;}
._16{width:59.360424px;}
._3b{width:75.852071px;}
._29{width:84.087413px;}
._3a{width:98.848039px;}
._41{width:109.713956px;}
._3d{width:258.203924px;}
._3c{width:270.533620px;}
._33{width:290.107691px;}
._38{width:327.463410px;}
._31{width:338.733947px;}
._34{width:342.413845px;}
._36{width:361.207125px;}
._3f{width:534.287936px;}
._35{width:595.473028px;}
._30{width:701.611284px;}
._3e{width:716.790831px;}
._37{width:1697.818106px;}
.fc2{color:rgb(5,3,1);}
.fc1{color:rgb(238,38,41);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:39.582600px;}
.fs9{font-size:49.478400px;}
.fs5{font-size:59.373600px;}
.fsb{font-size:67.320000px;}
.fsa{font-size:67.327200px;}
.fs0{font-size:67.894800px;}
.fs3{font-size:69.269400px;}
.fsd{font-size:71.867400px;}
.fs7{font-size:76.381200px;}
.fsc{font-size:79.950600px;}
.fs8{font-size:84.868200px;}
.fs1{font-size:93.355200px;}
.fs4{font-size:101.841600px;}
.fs2{font-size:118.815600px;}
.y0{bottom:0.000000px;}
.y2{bottom:107.084550px;}
.yc2{bottom:144.343620px;}
.y24{bottom:144.343860px;}
.y1be{bottom:144.710840px;}
.y126{bottom:146.476080px;}
.ya0{bottom:149.995950px;}
.y199{bottom:150.254880px;}
.y104{bottom:152.011689px;}
.y67{bottom:154.791530px;}
.y1e8{bottom:158.478276px;}
.y14c{bottom:159.076899px;}
.y84{bottom:162.431460px;}
.y9f{bottom:164.711970px;}
.yc1{bottom:164.712060px;}
.y166{bottom:167.530397px;}
.y1bd{bottom:169.322618px;}
.y23{bottom:170.364450px;}
.y125{bottom:171.936540px;}
.y198{bottom:175.715340px;}
.y103{bottom:177.472149px;}
.y1e7{bottom:178.846716px;}
.y66{bottom:180.251990px;}
.y14b{bottom:184.537359px;}
.y9e{bottom:185.080410px;}
.y83{bottom:187.891920px;}
.yc0{bottom:190.732800px;}
.y165{bottom:192.990857px;}
.y1bc{bottom:193.934396px;}
.y22{bottom:198.035653px;}
.y197{bottom:201.175800px;}
.y1e6{bottom:202.221198px;}
.y185{bottom:202.414923px;}
.ye3{bottom:202.794624px;}
.y102{bottom:202.932609px;}
.y124{bottom:210.129351px;}
.y9d{bottom:211.101000px;}
.y82{bottom:213.352380px;}
.y45{bottom:215.147207px;}
.y65{bottom:218.444801px;}
.y164{bottom:218.451317px;}
.y1bb{bottom:218.546174px;}
.y1e5{bottom:222.589638px;}
.y21{bottom:223.496113px;}
.y184{bottom:227.875383px;}
.ye2{bottom:228.255084px;}
.y101{bottom:234.408103px;}
.y123{bottom:235.589811px;}
.y81{bottom:238.812840px;}
.y44{bottom:240.607667px;}
.y189{bottom:242.710350px;}
.y1ba{bottom:243.157952px;}
.y64{bottom:243.905261px;}
.y163{bottom:243.911777px;}
.y1e4{bottom:245.967515px;}
.y20{bottom:248.320062px;}
.y14a{bottom:252.096690px;}
.ye1{bottom:253.715544px;}
.y16e{bottom:256.644128px;}
.y122{bottom:261.050271px;}
.y80{bottom:264.273300px;}
.y188{bottom:265.930200px;}
.y183{bottom:266.068195px;}
.y1e3{bottom:266.335955px;}
.y1b9{bottom:267.769730px;}
.y63{bottom:269.365721px;}
.y162{bottom:269.372237px;}
.y1f{bottom:273.144010px;}
.y149{bottom:277.557150px;}
.y43{bottom:278.800478px;}
.ye0{bottom:279.176004px;}
.y16d{bottom:282.104588px;}
.y204{bottom:286.380474px;}
.y121{bottom:286.510731px;}
.y100{bottom:287.635316px;}
.y187{bottom:289.150200px;}
.y1e2{bottom:289.710438px;}
.y7f{bottom:289.733760px;}
.y182{bottom:291.528655px;}
.y1b8{bottom:292.381508px;}
.y161{bottom:294.832697px;}
.y1e{bottom:297.967959px;}
.y42{bottom:304.260938px;}
.y62{bottom:307.558533px;}
.y16c{bottom:307.565048px;}
.y203{bottom:309.294834px;}
.y1e1{bottom:310.078878px;}
.ydf{bottom:310.649376px;}
.y120{bottom:311.971191px;}
.y186{bottom:312.853950px;}
.yff{bottom:313.095776px;}
.y7e{bottom:315.194220px;}
.y181{bottom:316.989115px;}
.y1b7{bottom:316.993286px;}
.y160{bottom:320.293157px;}
.y136{bottom:321.196697px;}
.y1d{bottom:322.791907px;}
.y41{bottom:329.721398px;}
.y61{bottom:333.018993px;}
.y16b{bottom:333.025508px;}
.y1e0{bottom:333.453360px;}
.y18d{bottom:336.072900px;}
.y11f{bottom:337.431651px;}
.yfe{bottom:338.556236px;}
.y7d{bottom:340.654680px;}
.y1b6{bottom:341.605064px;}
.y180{bottom:342.449575px;}
.y15f{bottom:345.753617px;}
.y1c{bottom:347.615856px;}
.y202{bottom:347.949450px;}
.y1df{bottom:353.820752px;}
.y40{bottom:355.181858px;}
.y139{bottom:356.230050px;}
.y16a{bottom:358.485968px;}
.ybf{bottom:358.718820px;}
.y133{bottom:359.896350px;}
.yde{bottom:361.757006px;}
.yfd{bottom:364.016696px;}
.y7c{bottom:366.115140px;}
.y1b5{bottom:366.216842px;}
.y201{bottom:370.863810px;}
.y134{bottom:370.895250px;}
.y60{bottom:371.209683px;}
.y15e{bottom:371.214077px;}
.y1b{bottom:372.439804px;}
.y18a{bottom:374.773650px;}
.y11e{bottom:375.624463px;}
.y1de{bottom:377.198629px;}
.y135{bottom:378.228319px;}
.y3f{bottom:380.642318px;}
.y17f{bottom:380.642387px;}
.y18b{bottom:381.545698px;}
.y169{bottom:383.946428px;}
.ybe{bottom:384.179280px;}
.ydd{bottom:387.217466px;}
.y138{bottom:388.412297px;}
.yfc{bottom:389.477156px;}
.y1b4{bottom:390.828620px;}
.y7b{bottom:391.575600px;}
.y200{bottom:393.778170px;}
.y15d{bottom:396.674537px;}
.y1a{bottom:397.263753px;}
.y1dd{bottom:397.565372px;}
.y11d{bottom:401.084923px;}
.y3e{bottom:406.102778px;}
.y17e{bottom:406.102847px;}
.y5f{bottom:409.402495px;}
.y168{bottom:409.406888px;}
.ybd{bottom:409.639740px;}
.ydc{bottom:412.677926px;}
.yfb{bottom:414.937616px;}
.y1b3{bottom:415.440398px;}
.y1ff{bottom:416.692530px;}
.y137{bottom:418.149446px;}
.y9c{bottom:420.530370px;}
.y1dc{bottom:420.941551px;}
.y190{bottom:421.697250px;}
.y19{bottom:422.087701px;}
.y11c{bottom:426.545383px;}
.y7a{bottom:429.766200px;}
.y3d{bottom:431.563238px;}
.y17d{bottom:431.563307px;}
.y5e{bottom:434.862955px;}
.y15c{bottom:434.867348px;}
.ybc{bottom:435.100200px;}
.ydb{bottom:438.138386px;}
.y1fe{bottom:439.606890px;}
.y1b2{bottom:440.052176px;}
.yfa{bottom:440.398076px;}
.y1db{bottom:441.309991px;}
.y9b{bottom:445.990830px;}
.y18c{bottom:446.367974px;}
.y18{bottom:446.911650px;}
.y11b{bottom:452.005843px;}
.y18f{bottom:456.041817px;}
.y3c{bottom:457.023698px;}
.y17c{bottom:457.023767px;}
.y15b{bottom:460.327808px;}
.ybb{bottom:460.560660px;}
.y1da{bottom:461.678431px;}
.y1fd{bottom:462.521250px;}
.yda{bottom:463.598846px;}
.y1b1{bottom:464.663954px;}
.yf9{bottom:465.858536px;}
.y9a{bottom:471.451290px;}
.y5d{bottom:473.055767px;}
.y11a{bottom:477.466303px;}
.y17b{bottom:482.484227px;}
.y17{bottom:484.467900px;}
.y1d9{bottom:485.052913px;}
.y1fc{bottom:485.435610px;}
.y79{bottom:485.783875px;}
.y15a{bottom:485.788268px;}
.yba{bottom:486.021120px;}
.y18e{bottom:487.968725px;}
.yd9{bottom:489.059306px;}
.y1b0{bottom:489.275732px;}
.yf8{bottom:491.318996px;}
.y3b{bottom:495.216510px;}
.y99{bottom:496.911840px;}
.y5c{bottom:498.516227px;}
.y119{bottom:502.926763px;}
.y1d8{bottom:505.421353px;}
.y17a{bottom:507.944687px;}
.y1fb{bottom:508.349970px;}
.y78{bottom:511.244335px;}
.y159{bottom:511.248728px;}
.yb9{bottom:511.481580px;}
.y1af{bottom:513.887510px;}
.y13a{bottom:516.325350px;}
.yf7{bottom:516.779456px;}
.yd8{bottom:520.534800px;}
.y3a{bottom:520.676970px;}
.y98{bottom:522.370556px;}
.y5b{bottom:523.976687px;}
.y1d7{bottom:525.789793px;}
.y118{bottom:528.387223px;}
.y1fa{bottom:531.264330px;}
.y179{bottom:533.405147px;}
.y77{bottom:536.704795px;}
.y158{bottom:536.709188px;}
.yb8{bottom:536.942040px;}
.y1ae{bottom:538.499288px;}
.y13b{bottom:541.988795px;}
.yf6{bottom:542.239916px;}
.y16{bottom:543.489862px;}
.y39{bottom:546.137430px;}
.y97{bottom:547.831016px;}
.y1d6{bottom:549.164276px;}
.y5a{bottom:549.437147px;}
.y117{bottom:553.847683px;}
.y1f9{bottom:554.178690px;}
.y76{bottom:562.165255px;}
.y157{bottom:562.169648px;}
.yb7{bottom:562.402368px;}
.y1ad{bottom:563.111066px;}
.y15{bottom:566.404222px;}
.y13c{bottom:567.652241px;}
.yf5{bottom:567.700376px;}
.y1d5{bottom:569.532716px;}
.y38{bottom:571.597890px;}
.y178{bottom:571.597958px;}
.y96{bottom:573.291476px;}
.y1f8{bottom:577.093050px;}
.y116{bottom:579.308143px;}
.y59{bottom:587.629958px;}
.y156{bottom:587.630108px;}
.y1ac{bottom:587.722844px;}
.yb6{bottom:587.862828px;}
.yd7{bottom:590.573040px;}
.y1d4{bottom:592.910593px;}
.y191{bottom:592.944450px;}
.yf4{bottom:593.160836px;}
.y13d{bottom:593.315686px;}
.y37{bottom:597.058328px;}
.y177{bottom:597.058418px;}
.y95{bottom:598.751936px;}
.y75{bottom:600.358067px;}
.y14{bottom:604.633012px;}
.y115{bottom:604.768603px;}
.y1f7{bottom:612.740366px;}
.y58{bottom:613.090418px;}
.y155{bottom:613.090568px;}
.y1d3{bottom:613.279033px;}
.yb5{bottom:613.323288px;}
.yd5{bottom:615.804445px;}
.yf3{bottom:618.621296px;}
.y13e{bottom:618.979132px;}
.y176{bottom:622.518878px;}
.y1ab{bottom:625.066974px;}
.y74{bottom:625.818527px;}
.y13{bottom:627.123457px;}
.y192{bottom:628.742331px;}
.y114{bottom:630.229063px;}
.y36{bottom:635.251140px;}
.yd4{bottom:636.172885px;}
.y1d2{bottom:636.653515px;}
.y94{bottom:636.944748px;}
.y57{bottom:638.550878px;}
.y154{bottom:638.551028px;}
.yb4{bottom:638.783748px;}
.y1f6{bottom:643.290300px;}
.yf2{bottom:644.081756px;}
.y13f{bottom:644.642577px;}
.yd6{bottom:646.357105px;}
.y175{bottom:647.979338px;}
.y12{bottom:649.613901px;}
.y1aa{bottom:649.678752px;}
.y73{bottom:651.278987px;}
.y113{bottom:655.689523px;}
.yd3{bottom:656.541325px;}
.y1d1{bottom:657.021955px;}
.y35{bottom:660.711600px;}
.y93{bottom:662.405208px;}
.y56{bottom:664.011338px;}
.y153{bottom:664.011488px;}
.yb3{bottom:664.244208px;}
.y193{bottom:664.540212px;}
.yf1{bottom:669.542216px;}
.y140{bottom:670.306023px;}
.y11{bottom:672.104345px;}
.y174{bottom:673.439798px;}
.y146{bottom:673.568218px;}
.y130{bottom:673.569150px;}
.y1a9{bottom:674.290530px;}
.y72{bottom:676.739447px;}
.yd2{bottom:676.909765px;}
.y1d0{bottom:680.396437px;}
.y112{bottom:681.149983px;}
.y34{bottom:686.172060px;}
.y92{bottom:687.865668px;}
.y55{bottom:689.471798px;}
.y152{bottom:689.471948px;}
.yb2{bottom:689.704668px;}
.y148{bottom:691.492402px;}
.y132{bottom:691.493250px;}
.y10{bottom:694.594790px;}
.yf0{bottom:695.002676px;}
.y141{bottom:695.562139px;}
.y173{bottom:698.900258px;}
.y1a8{bottom:698.902308px;}
.y194{bottom:699.854392px;}
.y1cf{bottom:700.764877px;}
.yd1{bottom:702.141170px;}
.y71{bottom:702.199907px;}
.y167{bottom:702.204300px;}
.y145{bottom:706.565279px;}
.y12f{bottom:706.565850px;}
.y111{bottom:706.610443px;}
.y33{bottom:711.632520px;}
.y91{bottom:713.326128px;}
.y54{bottom:714.932258px;}
.yb1{bottom:715.165128px;}
.yf{bottom:717.085234px;}
.yef{bottom:720.463136px;}
.y142{bottom:721.225584px;}
.yd0{bottom:722.509610px;}
.y1a7{bottom:723.514086px;}
.y1ce{bottom:724.142754px;}
.y172{bottom:724.360718px;}
.y70{bottom:727.660367px;}
.y151{bottom:727.664760px;}
.y1f5{bottom:728.676248px;}
.y110{bottom:732.070903px;}
.y195{bottom:735.652273px;}
.y32{bottom:737.092980px;}
.y90{bottom:738.786588px;}
.y147{bottom:739.562339px;}
.y131{bottom:739.562700px;}
.ye{bottom:739.575678px;}
.y53{bottom:740.392718px;}
.ycf{bottom:742.878050px;}
.y1cd{bottom:744.511194px;}
.yee{bottom:745.923596px;}
.yb0{bottom:746.638500px;}
.y143{bottom:746.889030px;}
.y1a6{bottom:748.125864px;}
.y150{bottom:753.125220px;}
.y1f4{bottom:754.136708px;}
.y10f{bottom:757.531363px;}
.yd{bottom:762.066123px;}
.y31{bottom:762.553440px;}
.y171{bottom:762.553530px;}
.y8f{bottom:764.247048px;}
.y1cc{bottom:764.879634px;}
.y52{bottom:765.853178px;}
.yce{bottom:768.109455px;}
.y196{bottom:770.964000px;}
.yed{bottom:771.384056px;}
.y144{bottom:772.559400px;}
.y1a5{bottom:772.737642px;}
.y14f{bottom:778.585680px;}
.y1f3{bottom:779.597168px;}
.yc{bottom:784.556567px;}
.y30{bottom:788.013900px;}
.y170{bottom:788.013990px;}
.y1cb{bottom:788.254117px;}
.ycd{bottom:788.477895px;}
.y10e{bottom:789.006857px;}
.y8e{bottom:789.707508px;}
.y51{bottom:791.313638px;}
.y1a4{bottom:797.349420px;}
.y12e{bottom:801.739847px;}
.yec{bottom:802.859550px;}
.y14e{bottom:804.046140px;}
.yb{bottom:807.047011px;}
.y1ca{bottom:808.622557px;}
.ycc{bottom:808.846335px;}
.y2f{bottom:813.474360px;}
.y10d{bottom:814.467317px;}
.y8d{bottom:815.167968px;}
.y50{bottom:816.774098px;}
.y1f2{bottom:817.789980px;}
.yaf{bottom:818.801260px;}
.y1a3{bottom:821.961198px;}
.y14d{bottom:829.506600px;}
.ya{bottom:829.537456px;}
.y1c9{bottom:831.997039px;}
.ycb{bottom:834.077740px;}
.y2e{bottom:838.934820px;}
.yae{bottom:839.169700px;}
.y8c{bottom:840.628428px;}
.y4f{bottom:842.234558px;}
.y1f1{bottom:843.250440px;}
.y1a2{bottom:846.572976px;}
.yab{bottom:849.353920px;}
.y9{bottom:852.027900px;}
.y1c8{bottom:852.365479px;}
.yca{bottom:854.446180px;}
.yeb{bottom:854.675145px;}
.y12d{bottom:854.967060px;}
.yad{bottom:859.538140px;}
.y2d{bottom:864.395280px;}
.y10c{bottom:867.694530px;}
.y6f{bottom:867.695018px;}
.y1f0{bottom:868.710900px;}
.yaa{bottom:869.722360px;}
.y1a1{bottom:871.184754px;}
.y8b{bottom:872.103921px;}
.y1c7{bottom:872.733919px;}
.yc9{bottom:874.814620px;}
.yea{bottom:875.043585px;}
.yac{bottom:879.906580px;}
.y4e{bottom:880.427370px;}
.y12c{bottom:880.427520px;}
.y2c{bottom:889.855740px;}
.y10b{bottom:893.154990px;}
.y6e{bottom:893.155478px;}
.y1a0{bottom:895.796532px;}
.y1c6{bottom:896.111796px;}
.y8{bottom:899.981618px;}
.yc8{bottom:900.046025px;}
.ye9{bottom:900.274990px;}
.ya9{bottom:900.275020px;}
.y4d{bottom:905.887830px;}
.y12b{bottom:905.887980px;}
.y1ef{bottom:906.903600px;}
.y2b{bottom:915.316200px;}
.y1c5{bottom:916.480236px;}
.y6d{bottom:918.615938px;}
.y10a{bottom:918.616088px;}
.y19f{bottom:920.408310px;}
.yc7{bottom:920.414465px;}
.ye8{bottom:920.643430px;}
.y8a{bottom:925.333256px;}
.ya8{bottom:925.506425px;}
.y4c{bottom:931.348290px;}
.y12a{bottom:931.348440px;}
.y1c4{bottom:939.854718px;}
.y2a{bottom:940.776660px;}
.yc6{bottom:940.782905px;}
.y6c{bottom:944.076398px;}
.y109{bottom:944.076548px;}
.y19e{bottom:945.020088px;}
.ye7{bottom:945.874835px;}
.ya7{bottom:945.874865px;}
.y89{bottom:950.793716px;}
.y7{bottom:951.468000px;}
.y4b{bottom:956.808750px;}
.y129{bottom:956.808900px;}
.y1c3{bottom:960.223158px;}
.yc5{bottom:966.014310px;}
.y29{bottom:966.237120px;}
.ye6{bottom:966.243275px;}
.ya6{bottom:966.243305px;}
.y6b{bottom:969.536858px;}
.y108{bottom:969.537008px;}
.y19d{bottom:969.631866px;}
.y6{bottom:971.836350px;}
.y88{bottom:976.254176px;}
.y1c2{bottom:980.591598px;}
.y4a{bottom:982.269210px;}
.y128{bottom:982.269360px;}
.y1ee{bottom:982.563708px;}
.yc4{bottom:986.382750px;}
.ye5{bottom:991.474680px;}
.ya5{bottom:991.474710px;}
.y28{bottom:991.697580px;}
.y19c{bottom:994.243644px;}
.y6a{bottom:994.997318px;}
.y107{bottom:994.997468px;}
.y5{bottom:999.284850px;}
.ye4{bottom:1001.658900px;}
.y87{bottom:1001.714636px;}
.y1ed{bottom:1002.932148px;}
.y1c1{bottom:1003.966080px;}
.y49{bottom:1007.729670px;}
.y127{bottom:1007.729820px;}
.ya4{bottom:1011.843150px;}
.y27{bottom:1017.158040px;}
.y19b{bottom:1018.855422px;}
.y69{bottom:1020.457778px;}
.y1ec{bottom:1023.300588px;}
.yc3{bottom:1024.168790px;}
.y86{bottom:1027.175096px;}
.y1c0{bottom:1027.342260px;}
.y48{bottom:1033.190130px;}
.y106{bottom:1033.190280px;}
.y4{bottom:1041.865020px;}
.y26{bottom:1042.618500px;}
.y19a{bottom:1043.467200px;}
.y1eb{bottom:1046.675070px;}
.y1bf{bottom:1047.710700px;}
.ya3{bottom:1049.629250px;}
.y85{bottom:1052.635556px;}
.y47{bottom:1058.650590px;}
.y105{bottom:1058.650740px;}
.y1ea{bottom:1067.043510px;}
.y3{bottom:1077.509700px;}
.y25{bottom:1080.810450px;}
.y16f{bottom:1080.810750px;}
.y46{bottom:1084.111050px;}
.ya2{bottom:1084.111200px;}
.y1e9{bottom:1087.411950px;}
.y68{bottom:1159.253550px;}
.y1{bottom:1159.253700px;}
.ya1{bottom:1159.253850px;}
.h5{height:36.964509px;}
.ha{height:36.965109px;}
.hb{height:59.076432px;}
.h2{height:59.573709px;}
.h19{height:59.577901px;}
.h15{height:60.154102px;}
.h14{height:60.160535px;}
.hc{height:60.290582px;}
.h18{height:64.217452px;}
.h7{height:67.020028px;}
.h6{height:67.057323px;}
.h17{height:71.440233px;}
.he{height:73.845279px;}
.h9{height:74.466873px;}
.hd{height:74.466960px;}
.h16{height:74.467233px;}
.h11{height:74.467401px;}
.h10{height:74.473849px;}
.hf{height:74.508312px;}
.h1{height:82.899418px;}
.h4{height:89.360037px;}
.h8{height:89.409764px;}
.h12{height:100.310589px;}
.h3{height:104.311743px;}
.h13{height:141.047469px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:103.600650px;}
.xf{left:109.615225px;}
.x7{left:119.670300px;}
.x3{left:126.409200px;}
.x9{left:127.657715px;}
.xb{left:133.672050px;}
.xa{left:139.686609px;}
.x6{left:158.016450px;}
.x4{left:160.221149px;}
.x2b{left:163.415850px;}
.x23{left:170.874600px;}
.x22{left:184.608150px;}
.x15{left:205.114350px;}
.x24{left:236.665500px;}
.x8{left:240.772227px;}
.x18{left:248.156700px;}
.x1c{left:270.154500px;}
.x5{left:271.656750px;}
.x19{left:295.818600px;}
.x25{left:312.613172px;}
.x1d{left:318.223950px;}
.x10{left:320.114566px;}
.x2c{left:374.329804px;}
.x26{left:388.077535px;}
.x16{left:404.947417px;}
.x1a{left:415.177350px;}
.x1e{left:437.175024px;}
.x27{left:464.025207px;}
.x1f{left:492.576018px;}
.x28{left:539.489570px;}
.x20{left:547.977012px;}
.xc{left:566.021044px;}
.x11{left:598.977180px;}
.x14{left:603.675500px;}
.x13{left:610.115322px;}
.x29{left:614.953933px;}
.x1b{left:635.970450px;}
.x21{left:658.375650px;}
.x2a{left:690.905700px;}
.xd{left:695.350454px;}
.x17{left:702.621984px;}
.xe{left:712.551602px;}
.x1{left:760.909050px;}
.x12{left:763.569750px;}
@media print{
.v7{vertical-align:-47.797867pt;}
.v6{vertical-align:-23.174933pt;}
.v3{vertical-align:-20.097067pt;}
.v8{vertical-align:-4.345067pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:25.121144pt;}
.v2{vertical-align:30.145067pt;}
.v1{vertical-align:35.169707pt;}
.v5{vertical-align:36.210560pt;}
.ls28{letter-spacing:-4.051042pt;}
.ls20{letter-spacing:-2.269195pt;}
.ls46{letter-spacing:-2.004095pt;}
.ls34{letter-spacing:-1.493680pt;}
.ls37{letter-spacing:-1.478593pt;}
.ls23{letter-spacing:-1.471049pt;}
.lsc{letter-spacing:-1.459730pt;}
.ls15{letter-spacing:-1.350347pt;}
.ls53{letter-spacing:-1.120258pt;}
.ls45{letter-spacing:-0.767526pt;}
.ls50{letter-spacing:-0.440562pt;}
.ls4d{letter-spacing:-0.078456pt;}
.ls35{letter-spacing:-0.075438pt;}
.ls1f{letter-spacing:-0.067895pt;}
.ls4c{letter-spacing:-0.054316pt;}
.ls4e{letter-spacing:-0.048281pt;}
.ls25{letter-spacing:-0.045263pt;}
.lsd{letter-spacing:-0.042246pt;}
.ls1e{letter-spacing:-0.037719pt;}
.ls4f{letter-spacing:-0.036211pt;}
.ls1d{letter-spacing:-0.030175pt;}
.ls30{letter-spacing:-0.029920pt;}
.ls44{letter-spacing:-0.022632pt;}
.ls24{letter-spacing:-0.015088pt;}
.ls4b{letter-spacing:-0.012070pt;}
.ls21{letter-spacing:-0.007544pt;}
.lsb{letter-spacing:-0.006789pt;}
.ls4a{letter-spacing:-0.006035pt;}
.ls31{letter-spacing:-0.005984pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.006035pt;}
.ls19{letter-spacing:0.007544pt;}
.ls8{letter-spacing:0.012070pt;}
.ls49{letter-spacing:0.013007pt;}
.ls6{letter-spacing:0.013579pt;}
.ls16{letter-spacing:0.015088pt;}
.ls3{letter-spacing:0.015185pt;}
.ls52{letter-spacing:0.018105pt;}
.ls2e{letter-spacing:0.023936pt;}
.ls48{letter-spacing:0.024140pt;}
.ls7{letter-spacing:0.025086pt;}
.ls11{letter-spacing:0.030084pt;}
.ls13{letter-spacing:0.030175pt;}
.ls1b{letter-spacing:0.030618pt;}
.ls1a{letter-spacing:0.031151pt;}
.ls0{letter-spacing:0.031684pt;}
.ls4{letter-spacing:0.033947pt;}
.ls2c{letter-spacing:0.035904pt;}
.lse{letter-spacing:0.037719pt;}
.ls14{letter-spacing:0.048281pt;}
.ls27{letter-spacing:0.052807pt;}
.ls2a{letter-spacing:0.053856pt;}
.ls29{letter-spacing:0.053862pt;}
.ls18{letter-spacing:0.060351pt;}
.ls36{letter-spacing:0.063368pt;}
.ls10{letter-spacing:0.068331pt;}
.ls2{letter-spacing:0.073930pt;}
.ls5{letter-spacing:0.081473pt;}
.ls1{letter-spacing:0.084491pt;}
.lsf{letter-spacing:0.090526pt;}
.ls3f{letter-spacing:0.319411pt;}
.ls32{letter-spacing:0.526592pt;}
.ls2b{letter-spacing:0.538560pt;}
.ls2d{letter-spacing:0.562496pt;}
.ls2f{letter-spacing:0.586432pt;}
.ls39{letter-spacing:0.606880pt;}
.ls3a{letter-spacing:0.613268pt;}
.ls40{letter-spacing:0.619657pt;}
.ls43{letter-spacing:0.626045pt;}
.ls41{letter-spacing:0.632433pt;}
.ls42{letter-spacing:0.638821pt;}
.ls38{letter-spacing:0.639605pt;}
.ls3d{letter-spacing:0.645210pt;}
.ls3c{letter-spacing:0.651598pt;}
.ls3e{letter-spacing:0.677151pt;}
.ls3b{letter-spacing:0.766586pt;}
.ls47{letter-spacing:1.810528pt;}
.ls22{letter-spacing:4.375427pt;}
.ls33{letter-spacing:6.766824pt;}
.ls17{letter-spacing:11.021550pt;}
.ls26{letter-spacing:11.225419pt;}
.ls51{letter-spacing:12.528854pt;}
.ls1c{letter-spacing:16.189081pt;}
.ls12{letter-spacing:52.776891pt;}
.ws1{word-spacing:-105.613867pt;}
.ws39{word-spacing:-90.525867pt;}
.ws10{word-spacing:-75.438400pt;}
.ws3c{word-spacing:-71.067200pt;}
.ws5{word-spacing:-67.894400pt;}
.ws7{word-spacing:-60.350933pt;}
.ws2a{word-spacing:-59.840000pt;}
.ws2{word-spacing:-23.235051pt;}
.ws38{word-spacing:-19.915691pt;}
.ws3e{word-spacing:-18.436384pt;}
.ws3d{word-spacing:-18.410831pt;}
.ws41{word-spacing:-18.398054pt;}
.ws40{word-spacing:-18.391666pt;}
.ws3f{word-spacing:-18.378890pt;}
.ws3b{word-spacing:-17.752587pt;}
.ws27{word-spacing:-17.221952pt;}
.ws29{word-spacing:-17.198016pt;}
.ws2d{word-spacing:-17.162112pt;}
.ws23{word-spacing:-16.691161pt;}
.ws2b{word-spacing:-16.689376pt;}
.wse{word-spacing:-16.686974pt;}
.ws2c{word-spacing:-16.671424pt;}
.ws28{word-spacing:-16.605600pt;}
.wsd{word-spacing:-16.596448pt;}
.ws4{word-spacing:-15.018241pt;}
.ws3{word-spacing:-14.936768pt;}
.ws56{word-spacing:-13.816510pt;}
.ws6{word-spacing:-13.277205pt;}
.ws47{word-spacing:-13.240995pt;}
.ws21{word-spacing:-12.545406pt;}
.ws46{word-spacing:-6.223668pt;}
.ws48{word-spacing:-3.391722pt;}
.ws44{word-spacing:-1.149878pt;}
.ws43{word-spacing:-1.143490pt;}
.ws45{word-spacing:-1.124326pt;}
.ws42{word-spacing:-1.105161pt;}
.ws30{word-spacing:-0.700128pt;}
.ws31{word-spacing:-0.682176pt;}
.ws33{word-spacing:-0.670208pt;}
.ws32{word-spacing:-0.640288pt;}
.ws49{word-spacing:-0.362106pt;}
.ws0{word-spacing:-0.060351pt;}
.ws18{word-spacing:-0.007544pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.042246pt;}
.ws4e{word-spacing:1.804493pt;}
.ws4f{word-spacing:1.973476pt;}
.ws19{word-spacing:2.208844pt;}
.wsf{word-spacing:2.512099pt;}
.ws4c{word-spacing:2.975301pt;}
.ws4a{word-spacing:4.001267pt;}
.ws1c{word-spacing:4.375427pt;}
.ws50{word-spacing:5.027233pt;}
.ws4b{word-spacing:5.860076pt;}
.ws34{word-spacing:6.434896pt;}
.ws36{word-spacing:6.751737pt;}
.ws15{word-spacing:6.955420pt;}
.ws14{word-spacing:6.978052pt;}
.ws51{word-spacing:7.115375pt;}
.ws52{word-spacing:7.568007pt;}
.ws53{word-spacing:8.008569pt;}
.ws37{word-spacing:9.867343pt;}
.ws54{word-spacing:9.897553pt;}
.ws57{word-spacing:12.516784pt;}
.ws12{word-spacing:12.907510pt;}
.ws55{word-spacing:14.134189pt;}
.ws58{word-spacing:15.612786pt;}
.ws13{word-spacing:16.189081pt;}
.ws4d{word-spacing:16.668928pt;}
.ws9{word-spacing:35.250772pt;}
.ws11{word-spacing:59.717037pt;}
.ws2e{word-spacing:63.239691pt;}
.ws24{word-spacing:63.242121pt;}
.ws26{word-spacing:64.693422pt;}
.ws25{word-spacing:64.693956pt;}
.ws2f{word-spacing:64.693958pt;}
.wsa{word-spacing:97.523516pt;}
.ws1f{word-spacing:120.719972pt;}
.ws20{word-spacing:237.625765pt;}
.ws17{word-spacing:291.090657pt;}
.ws1b{word-spacing:307.795795pt;}
.ws1a{word-spacing:330.692939pt;}
.ws1e{word-spacing:387.784922pt;}
.wsc{word-spacing:709.449362pt;}
.ws16{word-spacing:719.938354pt;}
.ws35{word-spacing:719.968529pt;}
.ws3a{word-spacing:720.119407pt;}
.ws1d{word-spacing:720.439267pt;}
.ws22{word-spacing:721.205724pt;}
._0{margin-left:-1926.305231pt;}
._25{margin-left:-1728.200282pt;}
._32{margin-left:-1726.765442pt;}
._18{margin-left:-97.942231pt;}
._2c{margin-left:-60.051976pt;}
._2a{margin-left:-18.784162pt;}
._26{margin-left:-16.765489pt;}
._2d{margin-left:-15.448424pt;}
._3{margin-left:-11.054751pt;}
._24{margin-left:-9.678069pt;}
._8{margin-left:-8.615760pt;}
._7{margin-left:-7.216434pt;}
._f{margin-left:-5.909063pt;}
._2{margin-left:-4.382975pt;}
._4{margin-left:-2.893820pt;}
._1{margin-left:-1.122527pt;}
._5{width:1.133089pt;}
._6{width:2.033060pt;}
._10{width:3.108062pt;}
._c{width:4.152887pt;}
._e{width:5.395335pt;}
._1e{width:6.333816pt;}
._9{width:7.916487pt;}
._1b{width:9.035820pt;}
._14{width:10.139117pt;}
._a{width:11.820415pt;}
._1f{width:12.915059pt;}
._b{width:13.865615pt;}
._15{width:14.905086pt;}
._d{width:16.063815pt;}
._17{width:17.360135pt;}
._27{width:18.407701pt;}
._12{width:19.340901pt;}
._13{width:20.728968pt;}
._28{width:21.945031pt;}
._20{width:22.850296pt;}
._21{width:23.996206pt;}
._2e{width:24.885623pt;}
._2b{width:25.951504pt;}
._39{width:26.976772pt;}
._1d{width:28.515715pt;}
._1c{width:29.733298pt;}
._22{width:31.047436pt;}
._23{width:32.331383pt;}
._11{width:34.014342pt;}
._40{width:41.783825pt;}
._2f{width:43.109308pt;}
._19{width:44.042458pt;}
._1a{width:45.011761pt;}
._16{width:52.764821pt;}
._3b{width:67.424063pt;}
._29{width:74.744367pt;}
._3a{width:87.864924pt;}
._41{width:97.523516pt;}
._3d{width:229.514599pt;}
._3c{width:240.474329pt;}
._33{width:257.873503pt;}
._38{width:291.078587pt;}
._31{width:301.096841pt;}
._34{width:304.367862pt;}
._36{width:321.073000pt;}
._3f{width:474.922610pt;}
._35{width:529.309359pt;}
._30{width:623.654475pt;}
._3e{width:637.147406pt;}
._37{width:1509.171649pt;}
.fs6{font-size:35.184533pt;}
.fs9{font-size:43.980800pt;}
.fs5{font-size:52.776533pt;}
.fsb{font-size:59.840000pt;}
.fsa{font-size:59.846400pt;}
.fs0{font-size:60.350933pt;}
.fs3{font-size:61.572800pt;}
.fsd{font-size:63.882133pt;}
.fs7{font-size:67.894400pt;}
.fsc{font-size:71.067200pt;}
.fs8{font-size:75.438400pt;}
.fs1{font-size:82.982400pt;}
.fs4{font-size:90.525867pt;}
.fs2{font-size:105.613867pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:95.186267pt;}
.yc2{bottom:128.305440pt;}
.y24{bottom:128.305653pt;}
.y1be{bottom:128.631858pt;}
.y126{bottom:130.200960pt;}
.ya0{bottom:133.329733pt;}
.y199{bottom:133.559893pt;}
.y104{bottom:135.121502pt;}
.y67{bottom:137.592471pt;}
.y1e8{bottom:140.869579pt;}
.y14c{bottom:141.401688pt;}
.y84{bottom:144.383520pt;}
.y9f{bottom:146.410640pt;}
.yc1{bottom:146.410720pt;}
.y166{bottom:148.915908pt;}
.y1bd{bottom:150.508994pt;}
.y23{bottom:151.435067pt;}
.y125{bottom:152.832480pt;}
.y198{bottom:156.191413pt;}
.y103{bottom:157.753022pt;}
.y1e7{bottom:158.974859pt;}
.y66{bottom:160.223991pt;}
.y14b{bottom:164.033208pt;}
.y9e{bottom:164.515920pt;}
.y83{bottom:167.015040pt;}
.yc0{bottom:169.540267pt;}
.y165{bottom:171.547428pt;}
.y1bc{bottom:172.386130pt;}
.y22{bottom:176.031692pt;}
.y197{bottom:178.822933pt;}
.y1e6{bottom:179.752176pt;}
.y185{bottom:179.924376pt;}
.ye3{bottom:180.261888pt;}
.y102{bottom:180.384542pt;}
.y124{bottom:186.781646pt;}
.y9d{bottom:187.645333pt;}
.y82{bottom:189.646560pt;}
.y45{bottom:191.241961pt;}
.y65{bottom:194.173157pt;}
.y164{bottom:194.178948pt;}
.y1bb{bottom:194.263266pt;}
.y1e5{bottom:197.857456pt;}
.y21{bottom:198.663212pt;}
.y184{bottom:202.555896pt;}
.ye2{bottom:202.893408pt;}
.y101{bottom:208.362758pt;}
.y123{bottom:209.413166pt;}
.y81{bottom:212.278080pt;}
.y44{bottom:213.873481pt;}
.y189{bottom:215.742533pt;}
.y1ba{bottom:216.140402pt;}
.y64{bottom:216.804677pt;}
.y163{bottom:216.810468pt;}
.y1e4{bottom:218.637792pt;}
.y20{bottom:220.728944pt;}
.y14a{bottom:224.085947pt;}
.ye1{bottom:225.524928pt;}
.y16e{bottom:228.128114pt;}
.y122{bottom:232.044686pt;}
.y80{bottom:234.909600pt;}
.y188{bottom:236.382400pt;}
.y183{bottom:236.505062pt;}
.y1e3{bottom:236.743072pt;}
.y1b9{bottom:238.017538pt;}
.y63{bottom:239.436197pt;}
.y162{bottom:239.441988pt;}
.y1f{bottom:242.794676pt;}
.y149{bottom:246.717467pt;}
.y43{bottom:247.822647pt;}
.ye0{bottom:248.156448pt;}
.y16d{bottom:250.759634pt;}
.y204{bottom:254.560422pt;}
.y121{bottom:254.676206pt;}
.y100{bottom:255.675837pt;}
.y187{bottom:257.022400pt;}
.y1e2{bottom:257.520389pt;}
.y7f{bottom:257.541120pt;}
.y182{bottom:259.136582pt;}
.y1b8{bottom:259.894674pt;}
.y161{bottom:262.073508pt;}
.y1e{bottom:264.860408pt;}
.y42{bottom:270.454167pt;}
.y62{bottom:273.385363pt;}
.y16c{bottom:273.391154pt;}
.y203{bottom:274.928742pt;}
.y1e1{bottom:275.625669pt;}
.ydf{bottom:276.132779pt;}
.y120{bottom:277.307726pt;}
.y186{bottom:278.092400pt;}
.yff{bottom:278.307357pt;}
.y7e{bottom:280.172640pt;}
.y181{bottom:281.768102pt;}
.y1b7{bottom:281.771810pt;}
.y160{bottom:284.705028pt;}
.y136{bottom:285.508176pt;}
.y1d{bottom:286.926140pt;}
.y41{bottom:293.085687pt;}
.y61{bottom:296.016883pt;}
.y16b{bottom:296.022674pt;}
.y1e0{bottom:296.402987pt;}
.y18d{bottom:298.731467pt;}
.y11f{bottom:299.939246pt;}
.yfe{bottom:300.938877pt;}
.y7d{bottom:302.804160pt;}
.y1b6{bottom:303.648946pt;}
.y180{bottom:304.399622pt;}
.y15f{bottom:307.336548pt;}
.y1c{bottom:308.991872pt;}
.y202{bottom:309.288400pt;}
.y1df{bottom:314.507335pt;}
.y40{bottom:315.717207pt;}
.y139{bottom:316.648933pt;}
.y16a{bottom:318.654194pt;}
.ybf{bottom:318.861173pt;}
.y133{bottom:319.907867pt;}
.yde{bottom:321.561783pt;}
.yfd{bottom:323.570397pt;}
.y7c{bottom:325.435680pt;}
.y1b5{bottom:325.526082pt;}
.y201{bottom:329.656720pt;}
.y134{bottom:329.684667pt;}
.y60{bottom:329.964163pt;}
.y15e{bottom:329.968068pt;}
.y1b{bottom:331.057604pt;}
.y18a{bottom:333.132133pt;}
.y11e{bottom:333.888412pt;}
.y1de{bottom:335.287670pt;}
.y135{bottom:336.202950pt;}
.y3f{bottom:338.348727pt;}
.y17f{bottom:338.348788pt;}
.y18b{bottom:339.151732pt;}
.y169{bottom:341.285714pt;}
.ybe{bottom:341.492693pt;}
.ydd{bottom:344.193303pt;}
.y138{bottom:345.255375pt;}
.yfc{bottom:346.201917pt;}
.y1b4{bottom:347.403218pt;}
.y7b{bottom:348.067200pt;}
.y200{bottom:350.025040pt;}
.y15d{bottom:352.599588pt;}
.y1a{bottom:353.123336pt;}
.y1dd{bottom:353.391441pt;}
.y11d{bottom:356.519932pt;}
.y3e{bottom:360.980247pt;}
.y17e{bottom:360.980308pt;}
.y5f{bottom:363.913329pt;}
.y168{bottom:363.917234pt;}
.ybd{bottom:364.124213pt;}
.ydc{bottom:366.824823pt;}
.yfb{bottom:368.833437pt;}
.y1b3{bottom:369.280354pt;}
.y1ff{bottom:370.393360pt;}
.y137{bottom:371.688397pt;}
.y9c{bottom:373.804773pt;}
.y1dc{bottom:374.170268pt;}
.y190{bottom:374.842000pt;}
.y19{bottom:375.189068pt;}
.y11c{bottom:379.151452pt;}
.y7a{bottom:382.014400pt;}
.y3d{bottom:383.611767pt;}
.y17d{bottom:383.611828pt;}
.y5e{bottom:386.544849pt;}
.y15c{bottom:386.548754pt;}
.ybc{bottom:386.755733pt;}
.ydb{bottom:389.456343pt;}
.y1fe{bottom:390.761680pt;}
.y1b2{bottom:391.157490pt;}
.yfa{bottom:391.464957pt;}
.y1db{bottom:392.275548pt;}
.y9b{bottom:396.436293pt;}
.y18c{bottom:396.771533pt;}
.y18{bottom:397.254800pt;}
.y11b{bottom:401.782972pt;}
.y18f{bottom:405.370504pt;}
.y3c{bottom:406.243287pt;}
.y17c{bottom:406.243348pt;}
.y15b{bottom:409.180274pt;}
.ybb{bottom:409.387253pt;}
.y1da{bottom:410.380828pt;}
.y1fd{bottom:411.130000pt;}
.yda{bottom:412.087863pt;}
.y1b1{bottom:413.034626pt;}
.yf9{bottom:414.096477pt;}
.y9a{bottom:419.067813pt;}
.y5d{bottom:420.494015pt;}
.y11a{bottom:424.414492pt;}
.y17b{bottom:428.874868pt;}
.y17{bottom:430.638133pt;}
.y1d9{bottom:431.158145pt;}
.y1fc{bottom:431.498320pt;}
.y79{bottom:431.807889pt;}
.y15a{bottom:431.811794pt;}
.yba{bottom:432.018773pt;}
.y18e{bottom:433.749977pt;}
.yd9{bottom:434.719383pt;}
.y1b0{bottom:434.911762pt;}
.yf8{bottom:436.727997pt;}
.y3b{bottom:440.192453pt;}
.y99{bottom:441.699413pt;}
.y5c{bottom:443.125535pt;}
.y119{bottom:447.046012pt;}
.y1d8{bottom:449.263425pt;}
.y17a{bottom:451.506388pt;}
.y1fb{bottom:451.866640pt;}
.y78{bottom:454.439409pt;}
.y159{bottom:454.443314pt;}
.yb9{bottom:454.650293pt;}
.y1af{bottom:456.788898pt;}
.y13a{bottom:458.955867pt;}
.yf7{bottom:459.359517pt;}
.yd8{bottom:462.697600pt;}
.y3a{bottom:462.823973pt;}
.y98{bottom:464.329383pt;}
.y5b{bottom:465.757055pt;}
.y1d7{bottom:467.368705pt;}
.y118{bottom:469.677532pt;}
.y1fa{bottom:472.234960pt;}
.y179{bottom:474.137908pt;}
.y77{bottom:477.070929pt;}
.y158{bottom:477.074834pt;}
.yb8{bottom:477.281813pt;}
.y1ae{bottom:478.666034pt;}
.y13b{bottom:481.767818pt;}
.yf6{bottom:481.991037pt;}
.y16{bottom:483.102099pt;}
.y39{bottom:485.455493pt;}
.y97{bottom:486.960903pt;}
.y1d6{bottom:488.146023pt;}
.y5a{bottom:488.388575pt;}
.y117{bottom:492.309052pt;}
.y1f9{bottom:492.603280pt;}
.y76{bottom:499.702449pt;}
.y157{bottom:499.706354pt;}
.yb7{bottom:499.913216pt;}
.y1ad{bottom:500.543170pt;}
.y15{bottom:503.470419pt;}
.y13c{bottom:504.579770pt;}
.yf5{bottom:504.622557pt;}
.y1d5{bottom:506.251303pt;}
.y38{bottom:508.087013pt;}
.y178{bottom:508.087074pt;}
.y96{bottom:509.592423pt;}
.y1f8{bottom:512.971600pt;}
.y116{bottom:514.940572pt;}
.y59{bottom:522.337741pt;}
.y156{bottom:522.337874pt;}
.y1ac{bottom:522.420306pt;}
.yb6{bottom:522.544736pt;}
.yd7{bottom:524.953813pt;}
.y1d4{bottom:527.031638pt;}
.y191{bottom:527.061733pt;}
.yf4{bottom:527.254077pt;}
.y13d{bottom:527.391721pt;}
.y37{bottom:530.718514pt;}
.y177{bottom:530.718594pt;}
.y95{bottom:532.223943pt;}
.y75{bottom:533.651615pt;}
.y14{bottom:537.451566pt;}
.y115{bottom:537.572092pt;}
.y1f7{bottom:544.658103pt;}
.y58{bottom:544.969261pt;}
.y155{bottom:544.969394pt;}
.y1d3{bottom:545.136918pt;}
.yb5{bottom:545.176256pt;}
.yd5{bottom:547.381729pt;}
.yf3{bottom:549.885597pt;}
.y13e{bottom:550.203673pt;}
.y176{bottom:553.350114pt;}
.y1ab{bottom:555.615088pt;}
.y74{bottom:556.283135pt;}
.y13{bottom:557.443073pt;}
.y192{bottom:558.882072pt;}
.y114{bottom:560.203612pt;}
.y36{bottom:564.667680pt;}
.yd4{bottom:565.487009pt;}
.y1d2{bottom:565.914236pt;}
.y94{bottom:566.173109pt;}
.y57{bottom:567.600781pt;}
.y154{bottom:567.600914pt;}
.yb4{bottom:567.807776pt;}
.y1f6{bottom:571.813600pt;}
.yf2{bottom:572.517117pt;}
.y13f{bottom:573.015624pt;}
.yd6{bottom:574.539649pt;}
.y175{bottom:575.981634pt;}
.y12{bottom:577.434579pt;}
.y1aa{bottom:577.492224pt;}
.y73{bottom:578.914655pt;}
.y113{bottom:582.835132pt;}
.yd3{bottom:583.592289pt;}
.y1d1{bottom:584.019516pt;}
.y35{bottom:587.299200pt;}
.y93{bottom:588.804629pt;}
.y56{bottom:590.232301pt;}
.y153{bottom:590.232434pt;}
.yb3{bottom:590.439296pt;}
.y193{bottom:590.702411pt;}
.yf1{bottom:595.148637pt;}
.y140{bottom:595.827576pt;}
.y11{bottom:597.426085pt;}
.y174{bottom:598.613154pt;}
.y146{bottom:598.727305pt;}
.y130{bottom:598.728133pt;}
.y1a9{bottom:599.369360pt;}
.y72{bottom:601.546175pt;}
.yd2{bottom:601.697569pt;}
.y1d0{bottom:604.796833pt;}
.y112{bottom:605.466652pt;}
.y34{bottom:609.930720pt;}
.y92{bottom:611.436149pt;}
.y55{bottom:612.863821pt;}
.y152{bottom:612.863954pt;}
.yb2{bottom:613.070816pt;}
.y148{bottom:614.659913pt;}
.y132{bottom:614.660667pt;}
.y10{bottom:617.417591pt;}
.yf0{bottom:617.780157pt;}
.y141{bottom:618.277457pt;}
.y173{bottom:621.244674pt;}
.y1a8{bottom:621.246496pt;}
.y194{bottom:622.092793pt;}
.y1cf{bottom:622.902113pt;}
.yd1{bottom:624.125484pt;}
.y71{bottom:624.177695pt;}
.y167{bottom:624.181600pt;}
.y145{bottom:628.058025pt;}
.y12f{bottom:628.058533pt;}
.y111{bottom:628.098172pt;}
.y33{bottom:632.562240pt;}
.y91{bottom:634.067669pt;}
.y54{bottom:635.495341pt;}
.yb1{bottom:635.702336pt;}
.yf{bottom:637.409097pt;}
.yef{bottom:640.411677pt;}
.y142{bottom:641.089408pt;}
.yd0{bottom:642.230764pt;}
.y1a7{bottom:643.123632pt;}
.y1ce{bottom:643.682448pt;}
.y172{bottom:643.876194pt;}
.y70{bottom:646.809215pt;}
.y151{bottom:646.813120pt;}
.y1f5{bottom:647.712221pt;}
.y110{bottom:650.729692pt;}
.y195{bottom:653.913132pt;}
.y32{bottom:655.193760pt;}
.y90{bottom:656.699189pt;}
.y147{bottom:657.388746pt;}
.y131{bottom:657.389067pt;}
.ye{bottom:657.400603pt;}
.y53{bottom:658.126861pt;}
.ycf{bottom:660.336044pt;}
.y1cd{bottom:661.787728pt;}
.yee{bottom:663.043197pt;}
.yb0{bottom:663.678667pt;}
.y143{bottom:663.901360pt;}
.y1a6{bottom:665.000768pt;}
.y150{bottom:669.444640pt;}
.y1f4{bottom:670.343741pt;}
.y10f{bottom:673.361212pt;}
.yd{bottom:677.392109pt;}
.y31{bottom:677.825280pt;}
.y171{bottom:677.825360pt;}
.y8f{bottom:679.330709pt;}
.y1cc{bottom:679.893008pt;}
.y52{bottom:680.758381pt;}
.yce{bottom:682.763960pt;}
.y196{bottom:685.301333pt;}
.yed{bottom:685.674717pt;}
.y144{bottom:686.719467pt;}
.y1a5{bottom:686.877904pt;}
.y14f{bottom:692.076160pt;}
.y1f3{bottom:692.975261pt;}
.yc{bottom:697.383615pt;}
.y30{bottom:700.456800pt;}
.y170{bottom:700.456880pt;}
.y1cb{bottom:700.670326pt;}
.ycd{bottom:700.869240pt;}
.y10e{bottom:701.339428pt;}
.y8e{bottom:701.962229pt;}
.y51{bottom:703.389901pt;}
.y1a4{bottom:708.755040pt;}
.y12e{bottom:712.657641pt;}
.yec{bottom:713.652933pt;}
.y14e{bottom:714.707680pt;}
.yb{bottom:717.375121pt;}
.y1ca{bottom:718.775606pt;}
.ycc{bottom:718.974520pt;}
.y2f{bottom:723.088320pt;}
.y10d{bottom:723.970948pt;}
.y8d{bottom:724.593749pt;}
.y50{bottom:726.021421pt;}
.y1f2{bottom:726.924427pt;}
.yaf{bottom:727.823342pt;}
.y1a3{bottom:730.632176pt;}
.y14d{bottom:737.339200pt;}
.ya{bottom:737.366627pt;}
.y1c9{bottom:739.552923pt;}
.ycb{bottom:741.402435pt;}
.y2e{bottom:745.719840pt;}
.yae{bottom:745.928622pt;}
.y8c{bottom:747.225269pt;}
.y4f{bottom:748.652941pt;}
.y1f1{bottom:749.555947pt;}
.y1a2{bottom:752.509312pt;}
.yab{bottom:754.981262pt;}
.y9{bottom:757.358133pt;}
.y1c8{bottom:757.658203pt;}
.yca{bottom:759.507715pt;}
.yeb{bottom:759.711240pt;}
.y12d{bottom:759.970720pt;}
.yad{bottom:764.033902pt;}
.y2d{bottom:768.351360pt;}
.y10c{bottom:771.284027pt;}
.y6f{bottom:771.284461pt;}
.y1f0{bottom:772.187467pt;}
.yaa{bottom:773.086542pt;}
.y1a1{bottom:774.386448pt;}
.y8b{bottom:775.203486pt;}
.y1c7{bottom:775.763483pt;}
.yc9{bottom:777.612995pt;}
.yea{bottom:777.816520pt;}
.yac{bottom:782.139182pt;}
.y4e{bottom:782.602107pt;}
.y12c{bottom:782.602240pt;}
.y2c{bottom:790.982880pt;}
.y10b{bottom:793.915547pt;}
.y6e{bottom:793.915981pt;}
.y1a0{bottom:796.263584pt;}
.y1c6{bottom:796.543819pt;}
.y8{bottom:799.983660pt;}
.yc8{bottom:800.040911pt;}
.ye9{bottom:800.244435pt;}
.ya9{bottom:800.244462pt;}
.y4d{bottom:805.233627pt;}
.y12b{bottom:805.233760pt;}
.y1ef{bottom:806.136533pt;}
.y2b{bottom:813.614400pt;}
.y1c5{bottom:814.649099pt;}
.y6d{bottom:816.547501pt;}
.y10a{bottom:816.547634pt;}
.y19f{bottom:818.140720pt;}
.yc7{bottom:818.146191pt;}
.ye8{bottom:818.349715pt;}
.y8a{bottom:822.518450pt;}
.ya8{bottom:822.672378pt;}
.y4c{bottom:827.865147pt;}
.y12a{bottom:827.865280pt;}
.y1c4{bottom:835.426416pt;}
.y2a{bottom:836.245920pt;}
.yc6{bottom:836.251471pt;}
.y6c{bottom:839.179021pt;}
.y109{bottom:839.179154pt;}
.y19e{bottom:840.017856pt;}
.ye7{bottom:840.777631pt;}
.ya7{bottom:840.777658pt;}
.y89{bottom:845.149970pt;}
.y7{bottom:845.749333pt;}
.y4b{bottom:850.496667pt;}
.y129{bottom:850.496800pt;}
.y1c3{bottom:853.531696pt;}
.yc5{bottom:858.679387pt;}
.y29{bottom:858.877440pt;}
.ye6{bottom:858.882911pt;}
.ya6{bottom:858.882938pt;}
.y6b{bottom:861.810541pt;}
.y108{bottom:861.810674pt;}
.y19d{bottom:861.894992pt;}
.y6{bottom:863.854533pt;}
.y88{bottom:867.781490pt;}
.y1c2{bottom:871.636976pt;}
.y4a{bottom:873.128187pt;}
.y128{bottom:873.128320pt;}
.y1ee{bottom:873.389962pt;}
.yc4{bottom:876.784667pt;}
.ye5{bottom:881.310827pt;}
.ya5{bottom:881.310853pt;}
.y28{bottom:881.508960pt;}
.y19c{bottom:883.772128pt;}
.y6a{bottom:884.442061pt;}
.y107{bottom:884.442194pt;}
.y5{bottom:888.253200pt;}
.ye4{bottom:890.363467pt;}
.y87{bottom:890.413010pt;}
.y1ed{bottom:891.495242pt;}
.y1c1{bottom:892.414294pt;}
.y49{bottom:895.759707pt;}
.y127{bottom:895.759840pt;}
.ya4{bottom:899.416133pt;}
.y27{bottom:904.140480pt;}
.y19b{bottom:905.649264pt;}
.y69{bottom:907.073581pt;}
.y1ec{bottom:909.600522pt;}
.yc3{bottom:910.372258pt;}
.y86{bottom:913.044530pt;}
.y1c0{bottom:913.193120pt;}
.y48{bottom:918.391227pt;}
.y106{bottom:918.391360pt;}
.y4{bottom:926.102240pt;}
.y26{bottom:926.772000pt;}
.y19a{bottom:927.526400pt;}
.y1eb{bottom:930.377840pt;}
.y1bf{bottom:931.298400pt;}
.ya3{bottom:933.003778pt;}
.y85{bottom:935.676050pt;}
.y47{bottom:941.022747pt;}
.y105{bottom:941.022880pt;}
.y1ea{bottom:948.483120pt;}
.y3{bottom:957.786400pt;}
.y25{bottom:960.720400pt;}
.y16f{bottom:960.720667pt;}
.y46{bottom:963.654267pt;}
.ya2{bottom:963.654400pt;}
.y1e9{bottom:966.588400pt;}
.y68{bottom:1030.447600pt;}
.y1{bottom:1030.447733pt;}
.ya1{bottom:1030.447867pt;}
.h5{height:32.857341pt;}
.ha{height:32.857874pt;}
.hb{height:52.512384pt;}
.h2{height:52.954408pt;}
.h19{height:52.958134pt;}
.h15{height:53.470312pt;}
.h14{height:53.476031pt;}
.hc{height:53.591629pt;}
.h18{height:57.082180pt;}
.h7{height:59.573358pt;}
.h6{height:59.606509pt;}
.h17{height:63.502430pt;}
.he{height:65.640248pt;}
.h9{height:66.192776pt;}
.hd{height:66.192853pt;}
.h16{height:66.193096pt;}
.h11{height:66.193245pt;}
.h10{height:66.198977pt;}
.hf{height:66.229611pt;}
.h1{height:73.688371pt;}
.h4{height:79.431144pt;}
.h8{height:79.475346pt;}
.h12{height:89.164968pt;}
.h3{height:92.721549pt;}
.h13{height:125.375528pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:92.089467pt;}
.xf{left:97.435756pt;}
.x7{left:106.373600pt;}
.x3{left:112.363733pt;}
.x9{left:113.473524pt;}
.xb{left:118.819600pt;}
.xa{left:124.165874pt;}
.x6{left:140.459067pt;}
.x4{left:142.418799pt;}
.x2b{left:145.258533pt;}
.x23{left:151.888533pt;}
.x22{left:164.096133pt;}
.x15{left:182.323867pt;}
.x24{left:210.369333pt;}
.x8{left:214.019757pt;}
.x18{left:220.583733pt;}
.x1c{left:240.137333pt;}
.x5{left:241.472667pt;}
.x19{left:262.949867pt;}
.x25{left:277.878375pt;}
.x1d{left:282.865733pt;}
.x10{left:284.546280pt;}
.x2c{left:332.737603pt;}
.x26{left:344.957809pt;}
.x16{left:359.953260pt;}
.x1a{left:369.046533pt;}
.x1e{left:388.600021pt;}
.x27{left:412.466850pt;}
.x1f{left:437.845349pt;}
.x28{left:479.546284pt;}
.x20{left:487.090677pt;}
.xc{left:503.129817pt;}
.x11{left:532.424160pt;}
.x14{left:536.600445pt;}
.x13{left:542.324731pt;}
.x29{left:546.625719pt;}
.x1b{left:565.307067pt;}
.x21{left:585.222800pt;}
.x2a{left:614.138400pt;}
.xd{left:618.089293pt;}
.x17{left:624.552875pt;}
.xe{left:633.379201pt;}
.x1{left:676.363600pt;}
.x12{left:678.728667pt;}
}




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