
    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_0bbac231cc3aa15314d8510b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_18be9c39f9a1d5b694966b46.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_95ff48e8817b4151047cbed6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_6b999626e65f99b1cf6696c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_d7c31292855c70ab3c16b4c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_f4929935cfe8707156b46442.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.388000;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_86e91fe2cf0f90f2d9c04b71.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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_86e91fe2cf0f90f2d9c04b71.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_86e91fe2cf0f90f2d9c04b71.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732000;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_858fce6d93811ad03a39db3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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;}
.m1{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-16.878000px;}
.v6{vertical-align:-8.028000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.053204px;}
.v1{vertical-align:21.690000px;}
.v5{vertical-align:23.564480px;}
.ls5{letter-spacing:-0.072284px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.994600px;}
.ls3{letter-spacing:29.884200px;}
.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;}
}
.ws20{word-spacing:-14.943900px;}
.ws3b{word-spacing:-13.449600px;}
.wsa0{word-spacing:-12.268420px;}
.wsa1{word-spacing:-12.252084px;}
.wsa2{word-spacing:-12.179800px;}
.wsa3{word-spacing:-10.863514px;}
.ws9a{word-spacing:-3.586536px;}
.wsc8{word-spacing:-3.287658px;}
.wsd9{word-spacing:-3.227882px;}
.ws8b{word-spacing:-3.168107px;}
.ws68{word-spacing:-3.108331px;}
.wse0{word-spacing:-2.988780px;}
.ws5d{word-spacing:-2.929004px;}
.wsbd{word-spacing:-2.869229px;}
.ws4e{word-spacing:-2.809453px;}
.wsbe{word-spacing:-2.689902px;}
.wsba{word-spacing:-2.630126px;}
.ws9c{word-spacing:-2.570351px;}
.wsd4{word-spacing:-2.510575px;}
.wse7{word-spacing:-2.450800px;}
.ws91{word-spacing:-2.391024px;}
.ws19{word-spacing:-2.331248px;}
.ws4f{word-spacing:-2.211697px;}
.ws2f{word-spacing:-2.151922px;}
.ws31{word-spacing:-1.972595px;}
.wsb0{word-spacing:-1.912819px;}
.ws41{word-spacing:-1.853044px;}
.wse8{word-spacing:-1.793268px;}
.ws66{word-spacing:-1.733492px;}
.ws74{word-spacing:-1.721549px;}
.ws92{word-spacing:-1.673717px;}
.wse5{word-spacing:-1.568975px;}
.wse6{word-spacing:-1.554166px;}
.wsaf{word-spacing:-1.494390px;}
.ws6c{word-spacing:-1.374839px;}
.wsd5{word-spacing:-1.195512px;}
.ws46{word-spacing:-1.135736px;}
.ws22{word-spacing:-1.075961px;}
.wsb2{word-spacing:-1.058975px;}
.wsb1{word-spacing:-1.056558px;}
.ws14{word-spacing:-1.016185px;}
.wsf6{word-spacing:-0.956410px;}
.ws1a{word-spacing:-0.896634px;}
.ws49{word-spacing:-0.777083px;}
.wsbf{word-spacing:-0.717307px;}
.ws3f{word-spacing:-0.657532px;}
.ws9e{word-spacing:-0.537980px;}
.wsa5{word-spacing:-0.537608px;}
.wsd3{word-spacing:-0.478205px;}
.ws57{word-spacing:-0.418429px;}
.wsc9{word-spacing:-0.406373px;}
.ws8d{word-spacing:-0.358654px;}
.ws25{word-spacing:-0.298878px;}
.ws8c{word-spacing:-0.179327px;}
.ws69{word-spacing:-0.119551px;}
.ws27{word-spacing:-0.065891px;}
.ws29{word-spacing:-0.065825px;}
.ws2{word-spacing:-0.059776px;}
.ws2a{word-spacing:-0.054964px;}
.ws4b{word-spacing:-0.003866px;}
.wsb9{word-spacing:-0.002975px;}
.ws3{word-spacing:0.000000px;}
.ws4a{word-spacing:0.000883px;}
.wsed{word-spacing:0.003025px;}
.ws8e{word-spacing:0.059776px;}
.ws52{word-spacing:0.119551px;}
.ws85{word-spacing:0.179327px;}
.ws102{word-spacing:0.200917px;}
.ws5b{word-spacing:0.239102px;}
.ws1f{word-spacing:0.298878px;}
.ws58{word-spacing:0.358654px;}
.wsaa{word-spacing:0.418429px;}
.wsa6{word-spacing:0.537980px;}
.ws35{word-spacing:0.657532px;}
.ws5f{word-spacing:0.717307px;}
.ws93{word-spacing:0.777083px;}
.ws9d{word-spacing:0.836858px;}
.ws51{word-spacing:0.896634px;}
.ws72{word-spacing:0.956410px;}
.ws90{word-spacing:1.016185px;}
.wsda{word-spacing:1.075961px;}
.ws65{word-spacing:1.135736px;}
.ws32{word-spacing:1.195512px;}
.ws24{word-spacing:1.255288px;}
.ws9b{word-spacing:1.315063px;}
.ws40{word-spacing:1.374839px;}
.ws47{word-spacing:1.434614px;}
.ws3e{word-spacing:1.494390px;}
.ws95{word-spacing:1.539025px;}
.ws81{word-spacing:1.554166px;}
.ws82{word-spacing:1.565134px;}
.wsc6{word-spacing:1.613941px;}
.ws12{word-spacing:1.673717px;}
.ws13{word-spacing:1.733492px;}
.wseb{word-spacing:1.793268px;}
.ws42{word-spacing:1.912819px;}
.ws1c{word-spacing:1.972595px;}
.ws26{word-spacing:2.032370px;}
.ws8f{word-spacing:2.092146px;}
.ws34{word-spacing:2.151922px;}
.wsd{word-spacing:2.211697px;}
.ws99{word-spacing:2.271473px;}
.ws67{word-spacing:2.450800px;}
.wsa4{word-spacing:2.510575px;}
.wse2{word-spacing:2.547025px;}
.ws44{word-spacing:2.570351px;}
.wsc1{word-spacing:2.689902px;}
.wsff{word-spacing:2.869229px;}
.ws55{word-spacing:2.929004px;}
.ws86{word-spacing:2.981425px;}
.ws87{word-spacing:2.988780px;}
.ws89{word-spacing:3.048556px;}
.ws16{word-spacing:3.108331px;}
.ws79{word-spacing:3.120307px;}
.ws2c{word-spacing:3.168107px;}
.ws64{word-spacing:3.227419px;}
.ws1d{word-spacing:3.227882px;}
.ws61{word-spacing:3.228216px;}
.ws62{word-spacing:3.230134px;}
.ws63{word-spacing:3.237059px;}
.ws2b{word-spacing:3.347434px;}
.ws3a{word-spacing:3.389299px;}
.wsf0{word-spacing:3.407209px;}
.ws53{word-spacing:3.466985px;}
.ws33{word-spacing:3.526760px;}
.ws56{word-spacing:3.586536px;}
.ws50{word-spacing:3.706087px;}
.ws7a{word-spacing:3.712090px;}
.ws30{word-spacing:3.765863px;}
.wsa{word-spacing:3.825638px;}
.ws5e{word-spacing:3.885414px;}
.wscc{word-spacing:3.920134px;}
.wsc3{word-spacing:3.945190px;}
.wse3{word-spacing:3.998392px;}
.ws94{word-spacing:4.004965px;}
.ws2e{word-spacing:4.064741px;}
.ws76{word-spacing:4.088678px;}
.ws48{word-spacing:4.244068px;}
.ws70{word-spacing:4.287126px;}
.ws18{word-spacing:4.303843px;}
.ws7d{word-spacing:4.357670px;}
.wsec{word-spacing:4.363619px;}
.wsdd{word-spacing:4.423394px;}
.ws21{word-spacing:4.483170px;}
.ws7f{word-spacing:4.540129px;}
.ws7e{word-spacing:4.542946px;}
.wsdc{word-spacing:4.782048px;}
.ws38{word-spacing:4.841824px;}
.ws23{word-spacing:4.901599px;}
.wsd7{word-spacing:4.961375px;}
.ws59{word-spacing:5.021150px;}
.ws83{word-spacing:5.080926px;}
.ws1e{word-spacing:5.140702px;}
.wsbc{word-spacing:5.260253px;}
.wsd6{word-spacing:5.379804px;}
.ws71{word-spacing:5.439580px;}
.ws2d{word-spacing:5.499355px;}
.wsef{word-spacing:5.559131px;}
.ws9f{word-spacing:5.618906px;}
.wsc{word-spacing:5.678682px;}
.ws4d{word-spacing:5.738458px;}
.ws97{word-spacing:5.773400px;}
.ws96{word-spacing:5.774309px;}
.ws98{word-spacing:5.798233px;}
.wsb8{word-spacing:5.870999px;}
.wsb7{word-spacing:5.917784px;}
.ws88{word-spacing:5.977560px;}
.wsf1{word-spacing:6.037336px;}
.ws78{word-spacing:6.079219px;}
.wsde{word-spacing:6.097111px;}
.wsf7{word-spacing:6.276438px;}
.wsf{word-spacing:6.336214px;}
.wsca{word-spacing:6.395989px;}
.ws5a{word-spacing:6.455765px;}
.ws4c{word-spacing:6.515540px;}
.wsb3{word-spacing:6.574313px;}
.ws54{word-spacing:6.575316px;}
.ws10{word-spacing:6.635092px;}
.wsfa{word-spacing:6.694867px;}
.wsc0{word-spacing:6.754643px;}
.wsc2{word-spacing:6.814418px;}
.ws36{word-spacing:6.874194px;}
.ws6{word-spacing:6.933970px;}
.ws15{word-spacing:7.053521px;}
.wsd8{word-spacing:7.113296px;}
.wsd1{word-spacing:7.173072px;}
.ws6d{word-spacing:7.221568px;}
.ws6f{word-spacing:7.232848px;}
.ws6e{word-spacing:7.245025px;}
.wse{word-spacing:7.352399px;}
.wsc5{word-spacing:7.412174px;}
.ws7{word-spacing:7.471950px;}
.wsb{word-spacing:7.591501px;}
.ws80{word-spacing:7.651277px;}
.ws75{word-spacing:7.746970px;}
.wsa7{word-spacing:7.770828px;}
.ws8a{word-spacing:7.830604px;}
.wse4{word-spacing:8.009930px;}
.wsb4{word-spacing:8.069706px;}
.ws6a{word-spacing:8.129482px;}
.ws6b{word-spacing:8.140276px;}
.ws73{word-spacing:8.168979px;}
.ws77{word-spacing:8.182586px;}
.wsce{word-spacing:8.189257px;}
.ws37{word-spacing:8.249033px;}
.ws17{word-spacing:8.308808px;}
.ws43{word-spacing:8.368584px;}
.wsdf{word-spacing:8.428360px;}
.wsa8{word-spacing:8.547911px;}
.wsa9{word-spacing:8.607686px;}
.wsc7{word-spacing:8.667462px;}
.wse9{word-spacing:8.727238px;}
.ws5c{word-spacing:8.906564px;}
.ws45{word-spacing:9.026116px;}
.ws5{word-spacing:9.085891px;}
.wsfd{word-spacing:9.564096px;}
.wsf5{word-spacing:9.623872px;}
.wsfe{word-spacing:9.743423px;}
.wsf9{word-spacing:9.803198px;}
.wsbb{word-spacing:9.982525px;}
.wsdb{word-spacing:10.042301px;}
.wscd{word-spacing:10.102076px;}
.ws1b{word-spacing:10.400954px;}
.wscb{word-spacing:10.460730px;}
.wsd0{word-spacing:10.520506px;}
.ws9{word-spacing:10.699832px;}
.wsd2{word-spacing:11.178037px;}
.ws8{word-spacing:11.237813px;}
.wsf8{word-spacing:11.417140px;}
.wsc4{word-spacing:11.596466px;}
.ws60{word-spacing:11.716018px;}
.ws101{word-spacing:11.895344px;}
.wsb6{word-spacing:12.074671px;}
.ws84{word-spacing:12.433325px;}
.wsf3{word-spacing:12.791978px;}
.wsea{word-spacing:12.851754px;}
.wsb5{word-spacing:13.031081px;}
.wscf{word-spacing:13.090856px;}
.ws3c{word-spacing:14.202778px;}
.wsab{word-spacing:14.226593px;}
.wsee{word-spacing:14.286368px;}
.ws1{word-spacing:14.884124px;}
.ws103{word-spacing:14.943900px;}
.wsfb{word-spacing:15.242778px;}
.ws4{word-spacing:15.302554px;}
.wsf4{word-spacing:16.318739px;}
.ws7c{word-spacing:17.269286px;}
.ws100{word-spacing:17.693578px;}
.ws7b{word-spacing:17.807270px;}
.ws0{word-spacing:17.861069px;}
.wsac{word-spacing:18.112007px;}
.wse1{word-spacing:18.829314px;}
.wsf2{word-spacing:21.459440px;}
.wsae{word-spacing:25.703508px;}
.ws104{word-spacing:26.241488px;}
.wsfc{word-spacing:34.550297px;}
.wsad{word-spacing:38.615038px;}
.ws3d{word-spacing:40.940582px;}
.ws39{word-spacing:58.855450px;}
.ws11{word-spacing:59.715824px;}
.ws28{word-spacing:156.548972px;}
._1{margin-left:-6.814464px;}
._0{margin-left:-5.308109px;}
._3{margin-left:-3.586560px;}
._2{margin-left:-2.151936px;}
._6{margin-left:-1.075961px;}
._1d{width:1.597479px;}
._26{width:3.007013px;}
._5{width:4.274495px;}
._4{width:5.949319px;}
._1c{width:9.005990px;}
._22{width:13.090895px;}
._f{width:14.943914px;}
._18{width:16.617631px;}
._7{width:17.932680px;}
._8{width:19.068479px;}
._c{width:20.383489px;}
._16{width:21.519216px;}
._17{width:22.595177px;}
._a{width:23.611362px;}
._e{width:24.866650px;}
._20{width:26.600180px;}
._12{width:27.616342px;}
._b{width:29.050956px;}
._d{width:30.963775px;}
._15{width:32.010048px;}
._1b{width:33.892794px;}
._11{width:34.968726px;}
._1a{width:36.989177px;}
._14{width:38.352062px;}
._9{width:40.109466px;}
._2c{width:41.185388px;}
._10{width:43.456861px;}
._24{width:44.592574px;}
._2b{width:46.086973px;}
._2d{width:47.222724px;}
._27{width:48.597587px;}
._13{width:49.793075px;}
._2a{width:52.542776px;}
._21{width:53.785986px;}
._1e{width:55.830410px;}
._29{width:57.504142px;}
._19{width:59.775600px;}
._28{width:63.962624px;}
._23{width:68.323511px;}
._1f{width:445.761046px;}
._25{width:587.460758px;}
.fc2{color:transparent;}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:23.640718px;}
.fsa{font-size:23.681260px;}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:48.068647px;}
.fse{font-size:48.140931px;}
.fs6{font-size:53.798400px;}
.fsc{font-size:54.212760px;}
.fsb{font-size:54.285044px;}
.fs5{font-size:54.964109px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:65.825280px;}
.fs3{font-size:65.891105px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y35{bottom:10.482676px;}
.y93{bottom:16.469720px;}
.yab{bottom:16.497964px;}
.y94{bottom:22.222262px;}
.yac{bottom:22.260372px;}
.y34{bottom:26.938996px;}
.y32{bottom:31.316377px;}
.y95{bottom:32.479675px;}
.yad{bottom:32.535376px;}
.y96{bottom:42.737088px;}
.yae{bottom:42.810379px;}
.yfd{bottom:46.406123px;}
.y31{bottom:50.800660px;}
.y97{bottom:52.994501px;}
.yaf{bottom:53.085383px;}
.yf5{bottom:55.098235px;}
.yfc{bottom:61.838688px;}
.yef{bottom:62.886802px;}
.y98{bottom:63.251914px;}
.yb0{bottom:63.360387px;}
.y30{bottom:70.563329px;}
.yf4{bottom:71.362063px;}
.y99{bottom:73.509326px;}
.yb1{bottom:73.635390px;}
.yf0{bottom:74.885892px;}
.yfb{bottom:78.104022px;}
.y9a{bottom:83.766739px;}
.yb2{bottom:83.910394px;}
.y9b{bottom:94.024152px;}
.yb3{bottom:94.185398px;}
.yfa{bottom:94.367850px;}
.yeb{bottom:96.807424px;}
.ye5{bottom:96.912838px;}
.y9c{bottom:104.281565px;}
.yb4{bottom:104.460401px;}
.yf9{bottom:110.631678px;}
.yea{bottom:113.071252px;}
.ye4{bottom:113.176666px;}
.y9d{bottom:114.538978px;}
.yb5{bottom:114.735405px;}
.y9e{bottom:124.796390px;}
.yb6{bottom:125.010409px;}
.y9f{bottom:135.053685px;}
.yb7{bottom:135.285294px;}
.ya0{bottom:145.311098px;}
.yb8{bottom:145.560298px;}
.y2e{bottom:152.118000px;}
.ya1{bottom:155.568511px;}
.yb9{bottom:155.835301px;}
.y73{bottom:156.337500px;}
.yee{bottom:160.597772px;}
.ya2{bottom:165.825924px;}
.yba{bottom:166.110305px;}
.y4c{bottom:168.481500px;}
.y177{bottom:168.483000px;}
.y72{bottom:174.865500px;}
.y11a{bottom:175.629000px;}
.ya3{bottom:176.083336px;}
.ybb{bottom:176.385309px;}
.y2d{bottom:182.295000px;}
.ye9{bottom:183.224070px;}
.y39{bottom:184.159934px;}
.yed{bottom:184.790216px;}
.y4b{bottom:184.845000px;}
.y176{bottom:184.846500px;}
.ya4{bottom:186.340749px;}
.ybc{bottom:186.660312px;}
.y1ac{bottom:191.203500px;}
.y71{bottom:191.229000px;}
.y1cc{bottom:191.824500px;}
.y119{bottom:191.992500px;}
.yf3{bottom:193.705203px;}
.ya5{bottom:196.598162px;}
.ybd{bottom:196.935316px;}
.y2c{bottom:198.658500px;}
.ye8{bottom:199.487898px;}
.y38{bottom:200.616254px;}
.y4a{bottom:201.208500px;}
.y175{bottom:201.210000px;}
.y1ab{bottom:207.567000px;}
.y70{bottom:207.592500px;}
.y1cb{bottom:208.188000px;}
.y118{bottom:208.356000px;}
.ye3{bottom:208.523358px;}
.y33{bottom:213.321905px;}
.y2b{bottom:215.022000px;}
.y49{bottom:217.572000px;}
.yde{bottom:217.573500px;}
.y6f{bottom:223.956000px;}
.y1ca{bottom:224.551500px;}
.y117{bottom:224.721000px;}
.ye2{bottom:224.787186px;}
.y91{bottom:225.438000px;}
.y2a{bottom:231.385500px;}
.y37{bottom:232.870642px;}
.y48{bottom:233.937000px;}
.y1aa{bottom:239.568000px;}
.y6e{bottom:240.319500px;}
.y1c9{bottom:240.915000px;}
.y116{bottom:241.084500px;}
.y29{bottom:247.749000px;}
.yf6{bottom:249.160339px;}
.y36{bottom:249.326962px;}
.yf8{bottom:249.453992px;}
.y192{bottom:249.681000px;}
.y47{bottom:250.300500px;}
.y6d{bottom:256.684500px;}
.y28{bottom:264.112500px;}
.y1c8{bottom:264.258000px;}
.yf7{bottom:264.272146px;}
.y174{bottom:265.531500px;}
.yf2{bottom:265.552169px;}
.y191{bottom:266.044500px;}
.y46{bottom:266.664000px;}
.y115{bottom:268.921500px;}
.y6c{bottom:273.048000px;}
.yec{bottom:275.385762px;}
.y90{bottom:277.077000px;}
.y27{bottom:280.477500px;}
.yf1{bottom:280.566092px;}
.y1c7{bottom:280.621500px;}
.y173{bottom:281.895000px;}
.y190{bottom:282.408000px;}
.y45{bottom:283.027500px;}
.y114{bottom:285.285000px;}
.y6b{bottom:289.411500px;}
.ye1{bottom:290.053325px;}
.ye7{bottom:290.904164px;}
.y8f{bottom:293.442000px;}
.y1a9{bottom:295.458000px;}
.y26{bottom:296.841000px;}
.y1c6{bottom:296.985000px;}
.y172{bottom:298.258500px;}
.y18f{bottom:298.771500px;}
.yc8{bottom:299.391000px;}
.y113{bottom:301.648500px;}
.y6a{bottom:305.775000px;}
.ye0{bottom:306.339742px;}
.ye6{bottom:307.167992px;}
.y8e{bottom:309.805500px;}
.y1a8{bottom:311.821500px;}
.y25{bottom:313.204500px;}
.y1c5{bottom:313.348500px;}
.y171{bottom:314.622000px;}
.yc7{bottom:315.754500px;}
.y112{bottom:318.012000px;}
.y44{bottom:318.255000px;}
.y69{bottom:322.138500px;}
.y8d{bottom:326.169000px;}
.y1a7{bottom:328.185000px;}
.y24{bottom:329.568000px;}
.y1c4{bottom:329.713500px;}
.y170{bottom:330.985500px;}
.yc6{bottom:332.118000px;}
.y111{bottom:334.375500px;}
.y43{bottom:334.618500px;}
.y8c{bottom:342.532500px;}
.y1a6{bottom:344.548500px;}
.y23{bottom:345.931500px;}
.y144{bottom:345.972000px;}
.y1c3{bottom:346.077000px;}
.y18e{bottom:347.067000px;}
.y16f{bottom:347.349000px;}
.ydd{bottom:348.481500px;}
.y42{bottom:350.982000px;}
.y8b{bottom:358.896000px;}
.y1a5{bottom:360.912000px;}
.y110{bottom:362.212500px;}
.y22{bottom:362.295000px;}
.y1c2{bottom:362.440500px;}
.y68{bottom:362.929500px;}
.y16e{bottom:363.712500px;}
.ydc{bottom:364.845000px;}
.y41{bottom:367.345500px;}
.y8a{bottom:375.259500px;}
.y1a4{bottom:377.275500px;}
.y10f{bottom:378.577500px;}
.y21{bottom:378.658500px;}
.y1c1{bottom:378.804000px;}
.y16d{bottom:380.077500px;}
.ydb{bottom:381.208500px;}
.y40{bottom:383.709000px;}
.yc5{bottom:387.364500px;}
.y89{bottom:391.623000px;}
.y10e{bottom:394.941000px;}
.y20{bottom:395.022000px;}
.y1c0{bottom:395.167500px;}
.yda{bottom:397.572000px;}
.y3f{bottom:400.072500px;}
.y143{bottom:400.450500px;}
.yc4{bottom:403.728000px;}
.y18d{bottom:406.314000px;}
.y1a3{bottom:408.774000px;}
.y10d{bottom:411.304500px;}
.y1f{bottom:411.385500px;}
.y127{bottom:413.935500px;}
.yd9{bottom:413.937000px;}
.y67{bottom:414.945000px;}
.y3e{bottom:416.436000px;}
.y142{bottom:416.814000px;}
.y1bf{bottom:418.510500px;}
.y88{bottom:422.128500px;}
.y18c{bottom:422.677500px;}
.y1a2{bottom:425.137500px;}
.y16c{bottom:427.396500px;}
.y1e{bottom:427.749000px;}
.y126{bottom:430.300500px;}
.y66{bottom:431.308500px;}
.y3d{bottom:432.799500px;}
.y141{bottom:433.177500px;}
.y1be{bottom:434.874000px;}
.y87{bottom:438.492000px;}
.y18b{bottom:439.041000px;}
.y1a1{bottom:441.501000px;}
.y1d{bottom:444.112500px;}
.y65{bottom:447.672000px;}
.y3c{bottom:449.163000px;}
.y140{bottom:449.541000px;}
.y1bd{bottom:451.237500px;}
.y86{bottom:454.855500px;}
.y18a{bottom:455.404500px;}
.y10c{bottom:456.111000px;}
.y1a0{bottom:457.864500px;}
.y1c{bottom:460.476000px;}
.yd8{bottom:463.621500px;}
.y1d8{bottom:463.627500px;}
.y64{bottom:464.035500px;}
.y13f{bottom:465.906000px;}
.y1bc{bottom:467.601000px;}
.y125{bottom:468.582000px;}
.y85{bottom:471.219000px;}
.y189{bottom:471.768000px;}
.y10b{bottom:472.474500px;}
.y19f{bottom:474.228000px;}
.y1b{bottom:476.841000px;}
.y1d7{bottom:479.991000px;}
.y63{bottom:480.399000px;}
.y13e{bottom:482.269500px;}
.y16b{bottom:483.820500px;}
.y1bb{bottom:483.964500px;}
.y124{bottom:484.945500px;}
.y84{bottom:487.582500px;}
.y188{bottom:488.131500px;}
.y10a{bottom:488.838000px;}
.y19e{bottom:490.591500px;}
.y1a{bottom:493.204500px;}
.y1d6{bottom:496.354500px;}
.y62{bottom:496.762500px;}
.y13d{bottom:498.633000px;}
.y16a{bottom:500.184000px;}
.y123{bottom:501.309000px;}
.y83{bottom:503.947500px;}
.y187{bottom:504.495000px;}
.y109{bottom:505.201500px;}
.y3b{bottom:506.743500px;}
.y19d{bottom:506.955000px;}
.y1ba{bottom:507.307500px;}
.y1d5{bottom:512.718000px;}
.y61{bottom:513.126000px;}
.y13c{bottom:514.996500px;}
.y169{bottom:516.547500px;}
.y122{bottom:517.672500px;}
.y82{bottom:520.311000px;}
.y186{bottom:520.860000px;}
.y108{bottom:521.566500px;}
.y3a{bottom:523.107000px;}
.y19c{bottom:523.318500px;}
.y1b9{bottom:523.671000px;}
.yd7{bottom:526.891500px;}
.y60{bottom:529.489500px;}
.y13b{bottom:531.360000px;}
.y168{bottom:532.911000px;}
.y1d4{bottom:535.059000px;}
.y81{bottom:536.674500px;}
.y185{bottom:537.223500px;}
.y107{bottom:537.930000px;}
.y19{bottom:538.848000px;}
.y1b8{bottom:540.034500px;}
.yd6{bottom:543.255000px;}
.y121{bottom:543.334500px;}
.y13a{bottom:547.723500px;}
.y167{bottom:549.274500px;}
.y2f{bottom:549.505500px;}
.y1d3{bottom:551.422500px;}
.y80{bottom:553.038000px;}
.y184{bottom:553.587000px;}
.y106{bottom:554.293500px;}
.y19b{bottom:554.817000px;}
.y1b7{bottom:556.398000px;}
.yd5{bottom:559.618500px;}
.y120{bottom:559.698000px;}
.y139{bottom:564.087000px;}
.y166{bottom:565.638000px;}
.y1d2{bottom:567.786000px;}
.y7f{bottom:569.401500px;}
.y183{bottom:569.950500px;}
.y105{bottom:570.657000px;}
.y19a{bottom:571.180500px;}
.y1b6{bottom:572.761500px;}
.y5f{bottom:575.661000px;}
.yd4{bottom:575.982000px;}
.y11f{bottom:576.061500px;}
.y138{bottom:580.450500px;}
.y165{bottom:582.001500px;}
.y1d1{bottom:584.149500px;}
.y7e{bottom:585.765000px;}
.y182{bottom:586.314000px;}
.y199{bottom:587.544000px;}
.y1b5{bottom:589.125000px;}
.y18{bottom:591.543000px;}
.yd3{bottom:592.345500px;}
.y11e{bottom:592.425000px;}
.y137{bottom:596.814000px;}
.y104{bottom:601.723500px;}
.y7d{bottom:602.128500px;}
.y181{bottom:602.677500px;}
.y198{bottom:603.907500px;}
.y1d0{bottom:606.490500px;}
.y17{bottom:607.906500px;}
.yd2{bottom:608.710500px;}
.y11d{bottom:608.788500px;}
.y1b4{bottom:612.468000px;}
.y136{bottom:613.177500px;}
.y164{bottom:613.596000px;}
.y103{bottom:618.087000px;}
.y7c{bottom:618.492000px;}
.y180{bottom:619.041000px;}
.y197{bottom:620.271000px;}
.y1cf{bottom:622.854000px;}
.yd1{bottom:625.074000px;}
.y11c{bottom:625.152000px;}
.y1b3{bottom:628.831500px;}
.y5e{bottom:629.356500px;}
.y135{bottom:629.541000px;}
.y163{bottom:629.959500px;}
.y102{bottom:634.450500px;}
.y7b{bottom:634.855500px;}
.y17f{bottom:635.404500px;}
.y196{bottom:636.634500px;}
.y1ce{bottom:639.219000px;}
.yd0{bottom:641.437500px;}
.y1b2{bottom:645.196500px;}
.y16{bottom:645.555000px;}
.y5d{bottom:645.720000px;}
.y134{bottom:645.904500px;}
.y162{bottom:646.323000px;}
.y101{bottom:650.814000px;}
.y17e{bottom:651.768000px;}
.y195{bottom:652.998000px;}
.y1cd{bottom:655.582500px;}
.ycf{bottom:657.801000px;}
.y1b1{bottom:661.560000px;}
.y15{bottom:661.918500px;}
.y5c{bottom:662.085000px;}
.y133{bottom:662.269500px;}
.y161{bottom:662.688000px;}
.y100{bottom:667.177500px;}
.y17d{bottom:668.131500px;}
.y194{bottom:669.361500px;}
.y7a{bottom:674.109000px;}
.yce{bottom:674.164500px;}
.y1b0{bottom:677.923500px;}
.y14{bottom:678.282000px;}
.y5b{bottom:678.448500px;}
.y132{bottom:678.633000px;}
.y160{bottom:679.051500px;}
.yff{bottom:683.541000px;}
.y11b{bottom:683.542500px;}
.y17c{bottom:684.495000px;}
.y193{bottom:685.725000px;}
.y79{bottom:690.472500px;}
.ycd{bottom:690.528000px;}
.y1af{bottom:694.287000px;}
.y13{bottom:694.645500px;}
.y5a{bottom:694.812000px;}
.y131{bottom:694.996500px;}
.y15f{bottom:695.415000px;}
.y17b{bottom:700.858500px;}
.y78{bottom:706.836000px;}
.ycc{bottom:706.891500px;}
.y1ae{bottom:710.650500px;}
.y12{bottom:711.009000px;}
.y59{bottom:711.175500px;}
.y130{bottom:711.360000px;}
.y15e{bottom:711.778500px;}
.y17a{bottom:717.223500px;}
.ycb{bottom:723.255000px;}
.y11{bottom:727.372500px;}
.y58{bottom:727.539000px;}
.y12f{bottom:727.723500px;}
.y15d{bottom:728.142000px;}
.yfe{bottom:733.282500px;}
.y77{bottom:733.551000px;}
.yca{bottom:739.618500px;}
.y10{bottom:743.736000px;}
.y57{bottom:743.902500px;}
.y12e{bottom:744.087000px;}
.y15c{bottom:744.505500px;}
.y76{bottom:749.914500px;}
.yc9{bottom:755.982000px;}
.ydf{bottom:759.681000px;}
.yf{bottom:760.099500px;}
.y56{bottom:760.266000px;}
.y1ad{bottom:760.392000px;}
.y12d{bottom:760.450500px;}
.y15b{bottom:760.869000px;}
.y75{bottom:766.278000px;}
.y179{bottom:766.963500px;}
.ye{bottom:776.464500px;}
.y55{bottom:776.629500px;}
.y12c{bottom:776.814000px;}
.y15a{bottom:777.232500px;}
.y74{bottom:782.641500px;}
.yd{bottom:792.828000px;}
.y54{bottom:792.993000px;}
.y12b{bottom:793.177500px;}
.y159{bottom:793.596000px;}
.y178{bottom:800.301000px;}
.yc3{bottom:805.723500px;}
.yc{bottom:809.191500px;}
.y53{bottom:809.356500px;}
.y12a{bottom:809.541000px;}
.y158{bottom:809.959500px;}
.yc2{bottom:822.087000px;}
.yb{bottom:825.555000px;}
.y52{bottom:825.720000px;}
.y157{bottom:826.323000px;}
.ya{bottom:841.918500px;}
.y156{bottom:842.686500px;}
.yc1{bottom:853.417500px;}
.ya9{bottom:853.608000px;}
.y9{bottom:858.282000px;}
.y129{bottom:858.511500px;}
.y155{bottom:859.051500px;}
.yc0{bottom:869.856000px;}
.ya8{bottom:870.046500px;}
.y128{bottom:874.875000px;}
.y51{bottom:875.461500px;}
.ybf{bottom:886.293000px;}
.ya7{bottom:886.485000px;}
.y154{bottom:890.646000px;}
.y50{bottom:891.825000px;}
.ybe{bottom:902.731500px;}
.ya6{bottom:902.923500px;}
.y8{bottom:903.925500px;}
.y153{bottom:907.009500px;}
.y4f{bottom:908.188500px;}
.y152{bottom:923.373000px;}
.y4e{bottom:939.519000px;}
.yaa{bottom:939.568500px;}
.y151{bottom:939.736500px;}
.y92{bottom:939.759000px;}
.y4d{bottom:955.957500px;}
.y150{bottom:956.100000px;}
.y14f{bottom:972.463500px;}
.y14e{bottom:988.827000px;}
.y7{bottom:994.626000px;}
.y14d{bottom:1005.190500px;}
.y6{bottom:1005.567000px;}
.y5{bottom:1010.989500px;}
.y14c{bottom:1021.554000px;}
.y4{bottom:1021.930500px;}
.y3{bottom:1027.353000px;}
.y14b{bottom:1037.917500px;}
.y2{bottom:1046.797500px;}
.y14a{bottom:1054.281000px;}
.y149{bottom:1070.646000px;}
.y148{bottom:1087.009500px;}
.y1{bottom:1100.521500px;}
.y147{bottom:1103.373000px;}
.y146{bottom:1119.736500px;}
.y145{bottom:1151.331000px;}
.h11{height:16.761269px;}
.h13{height:16.790014px;}
.hf{height:24.675533px;}
.h5{height:28.787846px;}
.h17{height:32.859427px;}
.h18{height:32.908839px;}
.he{height:37.013299px;}
.h16{height:37.059504px;}
.h15{height:37.108917px;}
.hd{height:37.573121px;}
.h6{height:40.826735px;}
.h8{height:41.125613px;}
.h1b{height:41.425613px;}
.h7{height:42.620003px;}
.h3{height:43.340003px;}
.hc{height:44.997750px;}
.ha{height:45.042748px;}
.hb{height:46.050954px;}
.h4{height:50.477846px;}
.h1a{height:50.483846px;}
.h2{height:51.144346px;}
.h19{height:56.423906px;}
.h10{height:226.320000px;}
.h12{height:226.708125px;}
.h9{height:369.362102px;}
.h14{height:406.595700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:238.521600px;}
.w4{width:238.536375px;}
.w2{width:340.152129px;}
.w5{width:722.836789px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:15.071137px;}
.x14{left:19.780492px;}
.x1c{left:22.592640px;}
.x1b{left:25.898880px;}
.x1a{left:29.520000px;}
.x2e{left:40.786056px;}
.x30{left:47.869856px;}
.xf{left:80.649677px;}
.xd{left:85.039500px;}
.x1{left:87.768000px;}
.x3c{left:92.511000px;}
.x36{left:99.984000px;}
.x17{left:101.328000px;}
.x3b{left:109.587000px;}
.x37{left:114.927000px;}
.x3d{left:117.408000px;}
.x38{left:138.456000px;}
.x10{left:147.976596px;}
.x3e{left:153.553500px;}
.x9{left:165.571500px;}
.x5{left:167.641500px;}
.x21{left:179.481873px;}
.x11{left:193.855445px;}
.x1f{left:198.072332px;}
.x29{left:201.867225px;}
.x26{left:205.029636px;}
.x20{left:222.468074px;}
.x2c{left:223.973984px;}
.x27{left:243.972468px;}
.x39{left:253.285500px;}
.x2{left:262.983000px;}
.x28{left:269.874120px;}
.x13{left:274.443415px;}
.xa{left:279.309000px;}
.x6{left:281.379000px;}
.x12{left:286.963932px;}
.x3f{left:292.992000px;}
.x3{left:304.198500px;}
.x1d{left:327.189000px;}
.x31{left:362.517704px;}
.xb{left:370.482000px;}
.x7{left:372.552000px;}
.x40{left:379.977000px;}
.x2b{left:388.291353px;}
.x25{left:390.617984px;}
.x22{left:393.403918px;}
.x2a{left:396.980454px;}
.x4{left:403.680000px;}
.x24{left:423.416704px;}
.x32{left:433.122294px;}
.x23{left:436.141643px;}
.x15{left:439.480500px;}
.xe{left:467.716505px;}
.xc{left:474.312000px;}
.x8{left:476.382000px;}
.x18{left:482.661000px;}
.x2d{left:488.057891px;}
.x19{left:497.604000px;}
.x3a{left:500.085000px;}
.x1e{left:569.337000px;}
.x33{left:600.549368px;}
.x34{left:606.241707px;}
.x35{left:613.289366px;}
.x16{left:616.699500px;}
.x41{left:649.740000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-15.002667pt;}
.v6{vertical-align:-7.136000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.936182pt;}
.v1{vertical-align:19.280000pt;}
.v5{vertical-align:20.946204pt;}
.ls5{letter-spacing:-0.064252pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.661867pt;}
.ls3{letter-spacing:26.563733pt;}
.ws20{word-spacing:-13.283467pt;}
.ws3b{word-spacing:-11.955200pt;}
.wsa0{word-spacing:-10.905262pt;}
.wsa1{word-spacing:-10.890741pt;}
.wsa2{word-spacing:-10.826489pt;}
.wsa3{word-spacing:-9.656457pt;}
.ws9a{word-spacing:-3.188032pt;}
.wsc8{word-spacing:-2.922363pt;}
.wsd9{word-spacing:-2.869229pt;}
.ws8b{word-spacing:-2.816095pt;}
.ws68{word-spacing:-2.762961pt;}
.wse0{word-spacing:-2.656693pt;}
.ws5d{word-spacing:-2.603559pt;}
.wsbd{word-spacing:-2.550426pt;}
.ws4e{word-spacing:-2.497292pt;}
.wsbe{word-spacing:-2.391024pt;}
.wsba{word-spacing:-2.337890pt;}
.ws9c{word-spacing:-2.284756pt;}
.wsd4{word-spacing:-2.231622pt;}
.wse7{word-spacing:-2.178489pt;}
.ws91{word-spacing:-2.125355pt;}
.ws19{word-spacing:-2.072221pt;}
.ws4f{word-spacing:-1.965953pt;}
.ws2f{word-spacing:-1.912819pt;}
.ws31{word-spacing:-1.753418pt;}
.wsb0{word-spacing:-1.700284pt;}
.ws41{word-spacing:-1.647150pt;}
.wse8{word-spacing:-1.594016pt;}
.ws66{word-spacing:-1.540882pt;}
.ws74{word-spacing:-1.530266pt;}
.ws92{word-spacing:-1.487748pt;}
.wse5{word-spacing:-1.394644pt;}
.wse6{word-spacing:-1.381481pt;}
.wsaf{word-spacing:-1.328347pt;}
.ws6c{word-spacing:-1.222079pt;}
.wsd5{word-spacing:-1.062677pt;}
.ws46{word-spacing:-1.009543pt;}
.ws22{word-spacing:-0.956410pt;}
.wsb2{word-spacing:-0.941311pt;}
.wsb1{word-spacing:-0.939163pt;}
.ws14{word-spacing:-0.903276pt;}
.wsf6{word-spacing:-0.850142pt;}
.ws1a{word-spacing:-0.797008pt;}
.ws49{word-spacing:-0.690740pt;}
.wsbf{word-spacing:-0.637606pt;}
.ws3f{word-spacing:-0.584473pt;}
.ws9e{word-spacing:-0.478205pt;}
.wsa5{word-spacing:-0.477874pt;}
.wsd3{word-spacing:-0.425071pt;}
.ws57{word-spacing:-0.371937pt;}
.wsc9{word-spacing:-0.361220pt;}
.ws8d{word-spacing:-0.318803pt;}
.ws25{word-spacing:-0.265669pt;}
.ws8c{word-spacing:-0.159402pt;}
.ws69{word-spacing:-0.106268pt;}
.ws27{word-spacing:-0.058570pt;}
.ws29{word-spacing:-0.058511pt;}
.ws2{word-spacing:-0.053134pt;}
.ws2a{word-spacing:-0.048857pt;}
.ws4b{word-spacing:-0.003437pt;}
.wsb9{word-spacing:-0.002644pt;}
.ws3{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.000785pt;}
.wsed{word-spacing:0.002689pt;}
.ws8e{word-spacing:0.053134pt;}
.ws52{word-spacing:0.106268pt;}
.ws85{word-spacing:0.159402pt;}
.ws102{word-spacing:0.178593pt;}
.ws5b{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.265669pt;}
.ws58{word-spacing:0.318803pt;}
.wsaa{word-spacing:0.371937pt;}
.wsa6{word-spacing:0.478205pt;}
.ws35{word-spacing:0.584473pt;}
.ws5f{word-spacing:0.637606pt;}
.ws93{word-spacing:0.690740pt;}
.ws9d{word-spacing:0.743874pt;}
.ws51{word-spacing:0.797008pt;}
.ws72{word-spacing:0.850142pt;}
.ws90{word-spacing:0.903276pt;}
.wsda{word-spacing:0.956410pt;}
.ws65{word-spacing:1.009543pt;}
.ws32{word-spacing:1.062677pt;}
.ws24{word-spacing:1.115811pt;}
.ws9b{word-spacing:1.168945pt;}
.ws40{word-spacing:1.222079pt;}
.ws47{word-spacing:1.275213pt;}
.ws3e{word-spacing:1.328347pt;}
.ws95{word-spacing:1.368022pt;}
.ws81{word-spacing:1.381481pt;}
.ws82{word-spacing:1.391230pt;}
.wsc6{word-spacing:1.434614pt;}
.ws12{word-spacing:1.487748pt;}
.ws13{word-spacing:1.540882pt;}
.wseb{word-spacing:1.594016pt;}
.ws42{word-spacing:1.700284pt;}
.ws1c{word-spacing:1.753418pt;}
.ws26{word-spacing:1.806551pt;}
.ws8f{word-spacing:1.859685pt;}
.ws34{word-spacing:1.912819pt;}
.wsd{word-spacing:1.965953pt;}
.ws99{word-spacing:2.019087pt;}
.ws67{word-spacing:2.178489pt;}
.wsa4{word-spacing:2.231622pt;}
.wse2{word-spacing:2.264022pt;}
.ws44{word-spacing:2.284756pt;}
.wsc1{word-spacing:2.391024pt;}
.wsff{word-spacing:2.550426pt;}
.ws55{word-spacing:2.603559pt;}
.ws86{word-spacing:2.650156pt;}
.ws87{word-spacing:2.656693pt;}
.ws89{word-spacing:2.709827pt;}
.ws16{word-spacing:2.762961pt;}
.ws79{word-spacing:2.773606pt;}
.ws2c{word-spacing:2.816095pt;}
.ws64{word-spacing:2.868817pt;}
.ws1d{word-spacing:2.869229pt;}
.ws61{word-spacing:2.869525pt;}
.ws62{word-spacing:2.871230pt;}
.ws63{word-spacing:2.877386pt;}
.ws2b{word-spacing:2.975497pt;}
.ws3a{word-spacing:3.012710pt;}
.wsf0{word-spacing:3.028630pt;}
.ws53{word-spacing:3.081764pt;}
.ws33{word-spacing:3.134898pt;}
.ws56{word-spacing:3.188032pt;}
.ws50{word-spacing:3.294300pt;}
.ws7a{word-spacing:3.299635pt;}
.ws30{word-spacing:3.347434pt;}
.wsa{word-spacing:3.400567pt;}
.ws5e{word-spacing:3.453701pt;}
.wscc{word-spacing:3.484563pt;}
.wsc3{word-spacing:3.506835pt;}
.wse3{word-spacing:3.554126pt;}
.ws94{word-spacing:3.559969pt;}
.ws2e{word-spacing:3.613103pt;}
.ws76{word-spacing:3.634381pt;}
.ws48{word-spacing:3.772505pt;}
.ws70{word-spacing:3.810779pt;}
.ws18{word-spacing:3.825638pt;}
.ws7d{word-spacing:3.873485pt;}
.wsec{word-spacing:3.878772pt;}
.wsdd{word-spacing:3.931906pt;}
.ws21{word-spacing:3.985040pt;}
.ws7f{word-spacing:4.035670pt;}
.ws7e{word-spacing:4.038174pt;}
.wsdc{word-spacing:4.250709pt;}
.ws38{word-spacing:4.303843pt;}
.ws23{word-spacing:4.356977pt;}
.wsd7{word-spacing:4.410111pt;}
.ws59{word-spacing:4.463245pt;}
.ws83{word-spacing:4.516379pt;}
.ws1e{word-spacing:4.569513pt;}
.wsbc{word-spacing:4.675780pt;}
.wsd6{word-spacing:4.782048pt;}
.ws71{word-spacing:4.835182pt;}
.ws2d{word-spacing:4.888316pt;}
.wsef{word-spacing:4.941450pt;}
.ws9f{word-spacing:4.994583pt;}
.wsc{word-spacing:5.047717pt;}
.ws4d{word-spacing:5.100851pt;}
.ws97{word-spacing:5.131911pt;}
.ws96{word-spacing:5.132719pt;}
.ws98{word-spacing:5.153985pt;}
.wsb8{word-spacing:5.218666pt;}
.wsb7{word-spacing:5.260253pt;}
.ws88{word-spacing:5.313387pt;}
.wsf1{word-spacing:5.366521pt;}
.ws78{word-spacing:5.403750pt;}
.wsde{word-spacing:5.419654pt;}
.wsf7{word-spacing:5.579056pt;}
.wsf{word-spacing:5.632190pt;}
.wsca{word-spacing:5.685324pt;}
.ws5a{word-spacing:5.738458pt;}
.ws4c{word-spacing:5.791591pt;}
.wsb3{word-spacing:5.843834pt;}
.ws54{word-spacing:5.844725pt;}
.ws10{word-spacing:5.897859pt;}
.wsfa{word-spacing:5.950993pt;}
.wsc0{word-spacing:6.004127pt;}
.wsc2{word-spacing:6.057261pt;}
.ws36{word-spacing:6.110395pt;}
.ws6{word-spacing:6.163529pt;}
.ws15{word-spacing:6.269796pt;}
.wsd8{word-spacing:6.322930pt;}
.wsd1{word-spacing:6.376064pt;}
.ws6d{word-spacing:6.419171pt;}
.ws6f{word-spacing:6.429198pt;}
.ws6e{word-spacing:6.440022pt;}
.wse{word-spacing:6.535466pt;}
.wsc5{word-spacing:6.588599pt;}
.ws7{word-spacing:6.641733pt;}
.wsb{word-spacing:6.748001pt;}
.ws80{word-spacing:6.801135pt;}
.ws75{word-spacing:6.886195pt;}
.wsa7{word-spacing:6.907403pt;}
.ws8a{word-spacing:6.960537pt;}
.wse4{word-spacing:7.119938pt;}
.wsb4{word-spacing:7.173072pt;}
.ws6a{word-spacing:7.226206pt;}
.ws6b{word-spacing:7.235801pt;}
.ws73{word-spacing:7.261315pt;}
.ws77{word-spacing:7.273410pt;}
.wsce{word-spacing:7.279340pt;}
.ws37{word-spacing:7.332474pt;}
.ws17{word-spacing:7.385607pt;}
.ws43{word-spacing:7.438741pt;}
.wsdf{word-spacing:7.491875pt;}
.wsa8{word-spacing:7.598143pt;}
.wsa9{word-spacing:7.651277pt;}
.wsc7{word-spacing:7.704411pt;}
.wse9{word-spacing:7.757545pt;}
.ws5c{word-spacing:7.916946pt;}
.ws45{word-spacing:8.023214pt;}
.ws5{word-spacing:8.076348pt;}
.wsfd{word-spacing:8.501419pt;}
.wsf5{word-spacing:8.554553pt;}
.wsfe{word-spacing:8.660820pt;}
.wsf9{word-spacing:8.713954pt;}
.wsbb{word-spacing:8.873356pt;}
.wsdb{word-spacing:8.926490pt;}
.wscd{word-spacing:8.979623pt;}
.ws1b{word-spacing:9.245293pt;}
.wscb{word-spacing:9.298427pt;}
.wsd0{word-spacing:9.351561pt;}
.ws9{word-spacing:9.510962pt;}
.wsd2{word-spacing:9.936033pt;}
.ws8{word-spacing:9.989167pt;}
.wsf8{word-spacing:10.148569pt;}
.wsc4{word-spacing:10.307970pt;}
.ws60{word-spacing:10.414238pt;}
.ws101{word-spacing:10.573639pt;}
.wsb6{word-spacing:10.733041pt;}
.ws84{word-spacing:11.051844pt;}
.wsf3{word-spacing:11.370647pt;}
.wsea{word-spacing:11.423781pt;}
.wsb5{word-spacing:11.583183pt;}
.wscf{word-spacing:11.636317pt;}
.ws3c{word-spacing:12.624691pt;}
.wsab{word-spacing:12.645860pt;}
.wsee{word-spacing:12.698994pt;}
.ws1{word-spacing:13.230333pt;}
.ws103{word-spacing:13.283467pt;}
.wsfb{word-spacing:13.549136pt;}
.ws4{word-spacing:13.602270pt;}
.wsf4{word-spacing:14.505546pt;}
.ws7c{word-spacing:15.350477pt;}
.ws100{word-spacing:15.727625pt;}
.ws7b{word-spacing:15.828685pt;}
.ws0{word-spacing:15.876506pt;}
.wsac{word-spacing:16.099562pt;}
.wse1{word-spacing:16.737168pt;}
.wsf2{word-spacing:19.075058pt;}
.wsae{word-spacing:22.847563pt;}
.ws104{word-spacing:23.325767pt;}
.wsfc{word-spacing:30.711375pt;}
.wsad{word-spacing:34.324478pt;}
.ws3d{word-spacing:36.391629pt;}
.ws39{word-spacing:52.315955pt;}
.ws11{word-spacing:53.080733pt;}
.ws28{word-spacing:139.154642pt;}
._1{margin-left:-6.057301pt;}
._0{margin-left:-4.718319pt;}
._3{margin-left:-3.188053pt;}
._2{margin-left:-1.912832pt;}
._6{margin-left:-0.956410pt;}
._1d{width:1.419981pt;}
._26{width:2.672900pt;}
._5{width:3.799551pt;}
._4{width:5.288284pt;}
._1c{width:8.005324pt;}
._22{width:11.636351pt;}
._f{width:13.283479pt;}
._18{width:14.771228pt;}
._7{width:15.940160pt;}
._8{width:16.949759pt;}
._c{width:18.118657pt;}
._16{width:19.128192pt;}
._17{width:20.084602pt;}
._a{width:20.987877pt;}
._e{width:22.103689pt;}
._20{width:23.644605pt;}
._12{width:24.547859pt;}
._b{width:25.823072pt;}
._d{width:27.523356pt;}
._15{width:28.453376pt;}
._1b{width:30.126928pt;}
._11{width:31.083312pt;}
._1a{width:32.879268pt;}
._14{width:34.090722pt;}
._9{width:35.652859pt;}
._2c{width:36.609234pt;}
._10{width:38.628321pt;}
._24{width:39.637843pt;}
._2b{width:40.966198pt;}
._2d{width:41.975755pt;}
._27{width:43.197855pt;}
._13{width:44.260511pt;}
._2a{width:46.704690pt;}
._21{width:47.809765pt;}
._1e{width:49.627031pt;}
._29{width:51.114793pt;}
._19{width:53.133867pt;}
._28{width:56.855666pt;}
._23{width:60.732010pt;}
._1f{width:396.232041pt;}
._25{width:522.187341pt;}
.fs9{font-size:21.013972pt;}
.fsa{font-size:21.050009pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.727686pt;}
.fse{font-size:42.791939pt;}
.fs6{font-size:47.820800pt;}
.fsc{font-size:48.189120pt;}
.fsb{font-size:48.253372pt;}
.fs5{font-size:48.856986pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:58.511360pt;}
.fs3{font-size:58.569871pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:9.317934pt;}
.y93{bottom:14.639751pt;}
.yab{bottom:14.664857pt;}
.y94{bottom:19.753122pt;}
.yac{bottom:19.786998pt;}
.y34{bottom:23.945774pt;}
.y32{bottom:27.836780pt;}
.y95{bottom:28.870822pt;}
.yad{bottom:28.920334pt;}
.y96{bottom:37.988523pt;}
.yae{bottom:38.053671pt;}
.yfd{bottom:41.249887pt;}
.y31{bottom:45.156142pt;}
.y97{bottom:47.106223pt;}
.yaf{bottom:47.187007pt;}
.yf5{bottom:48.976209pt;}
.yfc{bottom:54.967723pt;}
.yef{bottom:55.899379pt;}
.y98{bottom:56.223923pt;}
.yb0{bottom:56.320344pt;}
.y30{bottom:62.722959pt;}
.yf4{bottom:63.432945pt;}
.y99{bottom:65.341623pt;}
.yb1{bottom:65.453680pt;}
.yf0{bottom:66.565238pt;}
.yfb{bottom:69.425797pt;}
.y9a{bottom:74.459324pt;}
.yb2{bottom:74.587017pt;}
.y9b{bottom:83.577024pt;}
.yb3{bottom:83.720353pt;}
.yfa{bottom:83.882533pt;}
.yeb{bottom:86.051044pt;}
.ye5{bottom:86.144745pt;}
.y9c{bottom:92.694724pt;}
.yb4{bottom:92.853690pt;}
.yf9{bottom:98.339269pt;}
.yea{bottom:100.507780pt;}
.ye4{bottom:100.601481pt;}
.y9d{bottom:101.812425pt;}
.yb5{bottom:101.987027pt;}
.y9e{bottom:110.930125pt;}
.yb6{bottom:111.120363pt;}
.y9f{bottom:120.047720pt;}
.yb7{bottom:120.253595pt;}
.ya0{bottom:129.165420pt;}
.yb8{bottom:129.386931pt;}
.y2e{bottom:135.216000pt;}
.ya1{bottom:138.283121pt;}
.yb9{bottom:138.520268pt;}
.y73{bottom:138.966667pt;}
.yee{bottom:142.753575pt;}
.ya2{bottom:147.400821pt;}
.yba{bottom:147.653604pt;}
.y4c{bottom:149.761333pt;}
.y177{bottom:149.762667pt;}
.y72{bottom:155.436000pt;}
.y11a{bottom:156.114667pt;}
.ya3{bottom:156.518521pt;}
.ybb{bottom:156.786941pt;}
.y2d{bottom:162.040000pt;}
.ye9{bottom:162.865840pt;}
.y39{bottom:163.697719pt;}
.yed{bottom:164.257970pt;}
.y4b{bottom:164.306667pt;}
.y176{bottom:164.308000pt;}
.ya4{bottom:165.636221pt;}
.ybc{bottom:165.920277pt;}
.y1ac{bottom:169.958667pt;}
.y71{bottom:169.981333pt;}
.y1cc{bottom:170.510667pt;}
.y119{bottom:170.660000pt;}
.yf3{bottom:172.182403pt;}
.ya5{bottom:174.753922pt;}
.ybd{bottom:175.053614pt;}
.y2c{bottom:176.585333pt;}
.ye8{bottom:177.322576pt;}
.y38{bottom:178.325559pt;}
.y4a{bottom:178.852000pt;}
.y175{bottom:178.853333pt;}
.y1ab{bottom:184.504000pt;}
.y70{bottom:184.526667pt;}
.y1cb{bottom:185.056000pt;}
.y118{bottom:185.205333pt;}
.ye3{bottom:185.354096pt;}
.y33{bottom:189.619471pt;}
.y2b{bottom:191.130667pt;}
.y49{bottom:193.397333pt;}
.yde{bottom:193.398667pt;}
.y6f{bottom:199.072000pt;}
.y1ca{bottom:199.601333pt;}
.y117{bottom:199.752000pt;}
.ye2{bottom:199.810832pt;}
.y91{bottom:200.389333pt;}
.y2a{bottom:205.676000pt;}
.y37{bottom:206.996126pt;}
.y48{bottom:207.944000pt;}
.y1aa{bottom:212.949333pt;}
.y6e{bottom:213.617333pt;}
.y1c9{bottom:214.146667pt;}
.y116{bottom:214.297333pt;}
.y29{bottom:220.221333pt;}
.yf6{bottom:221.475857pt;}
.y36{bottom:221.623966pt;}
.yf8{bottom:221.736881pt;}
.y192{bottom:221.938667pt;}
.y47{bottom:222.489333pt;}
.y6d{bottom:228.164000pt;}
.y28{bottom:234.766667pt;}
.y1c8{bottom:234.896000pt;}
.yf7{bottom:234.908574pt;}
.y174{bottom:236.028000pt;}
.yf2{bottom:236.046373pt;}
.y191{bottom:236.484000pt;}
.y46{bottom:237.034667pt;}
.y115{bottom:239.041333pt;}
.y6c{bottom:242.709333pt;}
.yec{bottom:244.787344pt;}
.y90{bottom:246.290667pt;}
.y27{bottom:249.313333pt;}
.yf1{bottom:249.392082pt;}
.y1c7{bottom:249.441333pt;}
.y173{bottom:250.573333pt;}
.y190{bottom:251.029333pt;}
.y45{bottom:251.580000pt;}
.y114{bottom:253.586667pt;}
.y6b{bottom:257.254667pt;}
.ye1{bottom:257.825178pt;}
.ye7{bottom:258.581479pt;}
.y8f{bottom:260.837333pt;}
.y1a9{bottom:262.629333pt;}
.y26{bottom:263.858667pt;}
.y1c6{bottom:263.986667pt;}
.y172{bottom:265.118667pt;}
.y18f{bottom:265.574667pt;}
.yc8{bottom:266.125333pt;}
.y113{bottom:268.132000pt;}
.y6a{bottom:271.800000pt;}
.ye0{bottom:272.301993pt;}
.ye6{bottom:273.038215pt;}
.y8e{bottom:275.382667pt;}
.y1a8{bottom:277.174667pt;}
.y25{bottom:278.404000pt;}
.y1c5{bottom:278.532000pt;}
.y171{bottom:279.664000pt;}
.yc7{bottom:280.670667pt;}
.y112{bottom:282.677333pt;}
.y44{bottom:282.893333pt;}
.y69{bottom:286.345333pt;}
.y8d{bottom:289.928000pt;}
.y1a7{bottom:291.720000pt;}
.y24{bottom:292.949333pt;}
.y1c4{bottom:293.078667pt;}
.y170{bottom:294.209333pt;}
.yc6{bottom:295.216000pt;}
.y111{bottom:297.222667pt;}
.y43{bottom:297.438667pt;}
.y8c{bottom:304.473333pt;}
.y1a6{bottom:306.265333pt;}
.y23{bottom:307.494667pt;}
.y144{bottom:307.530667pt;}
.y1c3{bottom:307.624000pt;}
.y18e{bottom:308.504000pt;}
.y16f{bottom:308.754667pt;}
.ydd{bottom:309.761333pt;}
.y42{bottom:311.984000pt;}
.y8b{bottom:319.018667pt;}
.y1a5{bottom:320.810667pt;}
.y110{bottom:321.966667pt;}
.y22{bottom:322.040000pt;}
.y1c2{bottom:322.169333pt;}
.y68{bottom:322.604000pt;}
.y16e{bottom:323.300000pt;}
.ydc{bottom:324.306667pt;}
.y41{bottom:326.529333pt;}
.y8a{bottom:333.564000pt;}
.y1a4{bottom:335.356000pt;}
.y10f{bottom:336.513333pt;}
.y21{bottom:336.585333pt;}
.y1c1{bottom:336.714667pt;}
.y16d{bottom:337.846667pt;}
.ydb{bottom:338.852000pt;}
.y40{bottom:341.074667pt;}
.yc5{bottom:344.324000pt;}
.y89{bottom:348.109333pt;}
.y10e{bottom:351.058667pt;}
.y20{bottom:351.130667pt;}
.y1c0{bottom:351.260000pt;}
.yda{bottom:353.397333pt;}
.y3f{bottom:355.620000pt;}
.y143{bottom:355.956000pt;}
.yc4{bottom:358.869333pt;}
.y18d{bottom:361.168000pt;}
.y1a3{bottom:363.354667pt;}
.y10d{bottom:365.604000pt;}
.y1f{bottom:365.676000pt;}
.y127{bottom:367.942667pt;}
.yd9{bottom:367.944000pt;}
.y67{bottom:368.840000pt;}
.y3e{bottom:370.165333pt;}
.y142{bottom:370.501333pt;}
.y1bf{bottom:372.009333pt;}
.y88{bottom:375.225333pt;}
.y18c{bottom:375.713333pt;}
.y1a2{bottom:377.900000pt;}
.y16c{bottom:379.908000pt;}
.y1e{bottom:380.221333pt;}
.y126{bottom:382.489333pt;}
.y66{bottom:383.385333pt;}
.y3d{bottom:384.710667pt;}
.y141{bottom:385.046667pt;}
.y1be{bottom:386.554667pt;}
.y87{bottom:389.770667pt;}
.y18b{bottom:390.258667pt;}
.y1a1{bottom:392.445333pt;}
.y1d{bottom:394.766667pt;}
.y65{bottom:397.930667pt;}
.y3c{bottom:399.256000pt;}
.y140{bottom:399.592000pt;}
.y1bd{bottom:401.100000pt;}
.y86{bottom:404.316000pt;}
.y18a{bottom:404.804000pt;}
.y10c{bottom:405.432000pt;}
.y1a0{bottom:406.990667pt;}
.y1c{bottom:409.312000pt;}
.yd8{bottom:412.108000pt;}
.y1d8{bottom:412.113333pt;}
.y64{bottom:412.476000pt;}
.y13f{bottom:414.138667pt;}
.y1bc{bottom:415.645333pt;}
.y125{bottom:416.517333pt;}
.y85{bottom:418.861333pt;}
.y189{bottom:419.349333pt;}
.y10b{bottom:419.977333pt;}
.y19f{bottom:421.536000pt;}
.y1b{bottom:423.858667pt;}
.y1d7{bottom:426.658667pt;}
.y63{bottom:427.021333pt;}
.y13e{bottom:428.684000pt;}
.y16b{bottom:430.062667pt;}
.y1bb{bottom:430.190667pt;}
.y124{bottom:431.062667pt;}
.y84{bottom:433.406667pt;}
.y188{bottom:433.894667pt;}
.y10a{bottom:434.522667pt;}
.y19e{bottom:436.081333pt;}
.y1a{bottom:438.404000pt;}
.y1d6{bottom:441.204000pt;}
.y62{bottom:441.566667pt;}
.y13d{bottom:443.229333pt;}
.y16a{bottom:444.608000pt;}
.y123{bottom:445.608000pt;}
.y83{bottom:447.953333pt;}
.y187{bottom:448.440000pt;}
.y109{bottom:449.068000pt;}
.y3b{bottom:450.438667pt;}
.y19d{bottom:450.626667pt;}
.y1ba{bottom:450.940000pt;}
.y1d5{bottom:455.749333pt;}
.y61{bottom:456.112000pt;}
.y13c{bottom:457.774667pt;}
.y169{bottom:459.153333pt;}
.y122{bottom:460.153333pt;}
.y82{bottom:462.498667pt;}
.y186{bottom:462.986667pt;}
.y108{bottom:463.614667pt;}
.y3a{bottom:464.984000pt;}
.y19c{bottom:465.172000pt;}
.y1b9{bottom:465.485333pt;}
.yd7{bottom:468.348000pt;}
.y60{bottom:470.657333pt;}
.y13b{bottom:472.320000pt;}
.y168{bottom:473.698667pt;}
.y1d4{bottom:475.608000pt;}
.y81{bottom:477.044000pt;}
.y185{bottom:477.532000pt;}
.y107{bottom:478.160000pt;}
.y19{bottom:478.976000pt;}
.y1b8{bottom:480.030667pt;}
.yd6{bottom:482.893333pt;}
.y121{bottom:482.964000pt;}
.y13a{bottom:486.865333pt;}
.y167{bottom:488.244000pt;}
.y2f{bottom:488.449333pt;}
.y1d3{bottom:490.153333pt;}
.y80{bottom:491.589333pt;}
.y184{bottom:492.077333pt;}
.y106{bottom:492.705333pt;}
.y19b{bottom:493.170667pt;}
.y1b7{bottom:494.576000pt;}
.yd5{bottom:497.438667pt;}
.y120{bottom:497.509333pt;}
.y139{bottom:501.410667pt;}
.y166{bottom:502.789333pt;}
.y1d2{bottom:504.698667pt;}
.y7f{bottom:506.134667pt;}
.y183{bottom:506.622667pt;}
.y105{bottom:507.250667pt;}
.y19a{bottom:507.716000pt;}
.y1b6{bottom:509.121333pt;}
.y5f{bottom:511.698667pt;}
.yd4{bottom:511.984000pt;}
.y11f{bottom:512.054667pt;}
.y138{bottom:515.956000pt;}
.y165{bottom:517.334667pt;}
.y1d1{bottom:519.244000pt;}
.y7e{bottom:520.680000pt;}
.y182{bottom:521.168000pt;}
.y199{bottom:522.261333pt;}
.y1b5{bottom:523.666667pt;}
.y18{bottom:525.816000pt;}
.yd3{bottom:526.529333pt;}
.y11e{bottom:526.600000pt;}
.y137{bottom:530.501333pt;}
.y104{bottom:534.865333pt;}
.y7d{bottom:535.225333pt;}
.y181{bottom:535.713333pt;}
.y198{bottom:536.806667pt;}
.y1d0{bottom:539.102667pt;}
.y17{bottom:540.361333pt;}
.yd2{bottom:541.076000pt;}
.y11d{bottom:541.145333pt;}
.y1b4{bottom:544.416000pt;}
.y136{bottom:545.046667pt;}
.y164{bottom:545.418667pt;}
.y103{bottom:549.410667pt;}
.y7c{bottom:549.770667pt;}
.y180{bottom:550.258667pt;}
.y197{bottom:551.352000pt;}
.y1cf{bottom:553.648000pt;}
.yd1{bottom:555.621333pt;}
.y11c{bottom:555.690667pt;}
.y1b3{bottom:558.961333pt;}
.y5e{bottom:559.428000pt;}
.y135{bottom:559.592000pt;}
.y163{bottom:559.964000pt;}
.y102{bottom:563.956000pt;}
.y7b{bottom:564.316000pt;}
.y17f{bottom:564.804000pt;}
.y196{bottom:565.897333pt;}
.y1ce{bottom:568.194667pt;}
.yd0{bottom:570.166667pt;}
.y1b2{bottom:573.508000pt;}
.y16{bottom:573.826667pt;}
.y5d{bottom:573.973333pt;}
.y134{bottom:574.137333pt;}
.y162{bottom:574.509333pt;}
.y101{bottom:578.501333pt;}
.y17e{bottom:579.349333pt;}
.y195{bottom:580.442667pt;}
.y1cd{bottom:582.740000pt;}
.ycf{bottom:584.712000pt;}
.y1b1{bottom:588.053333pt;}
.y15{bottom:588.372000pt;}
.y5c{bottom:588.520000pt;}
.y133{bottom:588.684000pt;}
.y161{bottom:589.056000pt;}
.y100{bottom:593.046667pt;}
.y17d{bottom:593.894667pt;}
.y194{bottom:594.988000pt;}
.y7a{bottom:599.208000pt;}
.yce{bottom:599.257333pt;}
.y1b0{bottom:602.598667pt;}
.y14{bottom:602.917333pt;}
.y5b{bottom:603.065333pt;}
.y132{bottom:603.229333pt;}
.y160{bottom:603.601333pt;}
.yff{bottom:607.592000pt;}
.y11b{bottom:607.593333pt;}
.y17c{bottom:608.440000pt;}
.y193{bottom:609.533333pt;}
.y79{bottom:613.753333pt;}
.ycd{bottom:613.802667pt;}
.y1af{bottom:617.144000pt;}
.y13{bottom:617.462667pt;}
.y5a{bottom:617.610667pt;}
.y131{bottom:617.774667pt;}
.y15f{bottom:618.146667pt;}
.y17b{bottom:622.985333pt;}
.y78{bottom:628.298667pt;}
.ycc{bottom:628.348000pt;}
.y1ae{bottom:631.689333pt;}
.y12{bottom:632.008000pt;}
.y59{bottom:632.156000pt;}
.y130{bottom:632.320000pt;}
.y15e{bottom:632.692000pt;}
.y17a{bottom:637.532000pt;}
.ycb{bottom:642.893333pt;}
.y11{bottom:646.553333pt;}
.y58{bottom:646.701333pt;}
.y12f{bottom:646.865333pt;}
.y15d{bottom:647.237333pt;}
.yfe{bottom:651.806667pt;}
.y77{bottom:652.045333pt;}
.yca{bottom:657.438667pt;}
.y10{bottom:661.098667pt;}
.y57{bottom:661.246667pt;}
.y12e{bottom:661.410667pt;}
.y15c{bottom:661.782667pt;}
.y76{bottom:666.590667pt;}
.yc9{bottom:671.984000pt;}
.ydf{bottom:675.272000pt;}
.yf{bottom:675.644000pt;}
.y56{bottom:675.792000pt;}
.y1ad{bottom:675.904000pt;}
.y12d{bottom:675.956000pt;}
.y15b{bottom:676.328000pt;}
.y75{bottom:681.136000pt;}
.y179{bottom:681.745333pt;}
.ye{bottom:690.190667pt;}
.y55{bottom:690.337333pt;}
.y12c{bottom:690.501333pt;}
.y15a{bottom:690.873333pt;}
.y74{bottom:695.681333pt;}
.yd{bottom:704.736000pt;}
.y54{bottom:704.882667pt;}
.y12b{bottom:705.046667pt;}
.y159{bottom:705.418667pt;}
.y178{bottom:711.378667pt;}
.yc3{bottom:716.198667pt;}
.yc{bottom:719.281333pt;}
.y53{bottom:719.428000pt;}
.y12a{bottom:719.592000pt;}
.y158{bottom:719.964000pt;}
.yc2{bottom:730.744000pt;}
.yb{bottom:733.826667pt;}
.y52{bottom:733.973333pt;}
.y157{bottom:734.509333pt;}
.ya{bottom:748.372000pt;}
.y156{bottom:749.054667pt;}
.yc1{bottom:758.593333pt;}
.ya9{bottom:758.762667pt;}
.y9{bottom:762.917333pt;}
.y129{bottom:763.121333pt;}
.y155{bottom:763.601333pt;}
.yc0{bottom:773.205333pt;}
.ya8{bottom:773.374667pt;}
.y128{bottom:777.666667pt;}
.y51{bottom:778.188000pt;}
.ybf{bottom:787.816000pt;}
.ya7{bottom:787.986667pt;}
.y154{bottom:791.685333pt;}
.y50{bottom:792.733333pt;}
.ybe{bottom:802.428000pt;}
.ya6{bottom:802.598667pt;}
.y8{bottom:803.489333pt;}
.y153{bottom:806.230667pt;}
.y4f{bottom:807.278667pt;}
.y152{bottom:820.776000pt;}
.y4e{bottom:835.128000pt;}
.yaa{bottom:835.172000pt;}
.y151{bottom:835.321333pt;}
.y92{bottom:835.341333pt;}
.y4d{bottom:849.740000pt;}
.y150{bottom:849.866667pt;}
.y14f{bottom:864.412000pt;}
.y14e{bottom:878.957333pt;}
.y7{bottom:884.112000pt;}
.y14d{bottom:893.502667pt;}
.y6{bottom:893.837333pt;}
.y5{bottom:898.657333pt;}
.y14c{bottom:908.048000pt;}
.y4{bottom:908.382667pt;}
.y3{bottom:913.202667pt;}
.y14b{bottom:922.593333pt;}
.y2{bottom:930.486667pt;}
.y14a{bottom:937.138667pt;}
.y149{bottom:951.685333pt;}
.y148{bottom:966.230667pt;}
.y1{bottom:978.241333pt;}
.y147{bottom:980.776000pt;}
.y146{bottom:995.321333pt;}
.y145{bottom:1023.405333pt;}
.h11{height:14.898906pt;}
.h13{height:14.924457pt;}
.hf{height:21.933807pt;}
.h5{height:25.589197pt;}
.h17{height:29.208379pt;}
.h18{height:29.252302pt;}
.he{height:32.900710pt;}
.h16{height:32.941781pt;}
.h15{height:32.985704pt;}
.hd{height:33.398330pt;}
.h6{height:36.290431pt;}
.h8{height:36.556100pt;}
.h1b{height:36.822767pt;}
.h7{height:37.884447pt;}
.h3{height:38.524447pt;}
.hc{height:39.998000pt;}
.ha{height:40.037998pt;}
.hb{height:40.934182pt;}
.h4{height:44.869197pt;}
.h1a{height:44.874530pt;}
.h2{height:45.461641pt;}
.h19{height:50.154584pt;}
.h10{height:201.173333pt;}
.h12{height:201.518333pt;}
.h9{height:328.321869pt;}
.h14{height:361.418400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:212.019200pt;}
.w4{width:212.032333pt;}
.w2{width:302.357448pt;}
.w5{width:642.521590pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:13.396566pt;}
.x14{left:17.582659pt;}
.x1c{left:20.082347pt;}
.x1b{left:23.021227pt;}
.x1a{left:26.240000pt;}
.x2e{left:36.254272pt;}
.x30{left:42.550983pt;}
.xf{left:71.688601pt;}
.xd{left:75.590667pt;}
.x1{left:78.016000pt;}
.x3c{left:82.232000pt;}
.x36{left:88.874667pt;}
.x17{left:90.069333pt;}
.x3b{left:97.410667pt;}
.x37{left:102.157333pt;}
.x3d{left:104.362667pt;}
.x38{left:123.072000pt;}
.x10{left:131.534752pt;}
.x3e{left:136.492000pt;}
.x9{left:147.174667pt;}
.x5{left:149.014667pt;}
.x21{left:159.539442pt;}
.x11{left:172.315951pt;}
.x1f{left:176.064295pt;}
.x29{left:179.437533pt;}
.x26{left:182.248565pt;}
.x20{left:197.749399pt;}
.x2c{left:199.087985pt;}
.x27{left:216.864416pt;}
.x39{left:225.142667pt;}
.x2{left:233.762667pt;}
.x28{left:239.888107pt;}
.x13{left:243.949702pt;}
.xa{left:248.274667pt;}
.x6{left:250.114667pt;}
.x12{left:255.079050pt;}
.x3f{left:260.437333pt;}
.x3{left:270.398667pt;}
.x1d{left:290.834667pt;}
.x31{left:322.237959pt;}
.xb{left:329.317333pt;}
.x7{left:331.157333pt;}
.x40{left:337.757333pt;}
.x2b{left:345.147869pt;}
.x25{left:347.215986pt;}
.x22{left:349.692371pt;}
.x2a{left:352.871515pt;}
.x4{left:358.826667pt;}
.x24{left:376.370403pt;}
.x32{left:384.997595pt;}
.x23{left:387.681461pt;}
.x15{left:390.649333pt;}
.xe{left:415.748005pt;}
.xc{left:421.610667pt;}
.x8{left:423.450667pt;}
.x18{left:429.032000pt;}
.x2d{left:433.829236pt;}
.x19{left:442.314667pt;}
.x3a{left:444.520000pt;}
.x1e{left:506.077333pt;}
.x33{left:533.821660pt;}
.x34{left:538.881518pt;}
.x35{left:545.146103pt;}
.x16{left:548.177333pt;}
.x41{left:577.546667pt;}
}




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