
    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_d0aa4613d6d7d666b7252109.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_723faf5b221cd2af9b676c20.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903809;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_36f405454f451b42ede2378c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ce2204c67a8449c96c8f68c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.709961;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_64cd4953816ec6098a4e9da0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_e77f8314deebc2523e55250f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_c94b4527b89f7229b3416692.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e74c88789788e56ae80ee3fa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0a04a129affe304c047b5da7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_d125fa7f596e422cfb66e9a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677734;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_7c39ae6cd832613f1f77c8b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_2fd01454aaaaa020d3c93be8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_67bf09700bee510db758c524.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d7a09f8f4855c3419582ea53.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ac2e80e7102a2f4a21130c36.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fc385d2a5550ce9f4e237a6f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b6ead128e0b9da8cc898900f.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_82057c141ec7588e45a1417c.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_065fbd1e0161bd438e9d171c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.690918;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.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360600px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-1.689307px;}
.ls3{letter-spacing:-1.631465px;}
.ls1{letter-spacing:-0.596226px;}
.ls8{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000600px;}
.ls2b{letter-spacing:0.000660px;}
.ls38{letter-spacing:0.010800px;}
.lse{letter-spacing:0.014400px;}
.ls29{letter-spacing:0.058320px;}
.ls17{letter-spacing:0.116928px;}
.ls36{letter-spacing:0.118800px;}
.ls19{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.158688px;}
.ls30{letter-spacing:0.160440px;}
.ls1c{letter-spacing:0.200448px;}
.ls4{letter-spacing:0.222472px;}
.ls1d{letter-spacing:0.240000px;}
.ls2d{letter-spacing:0.242064px;}
.ls1e{letter-spacing:0.242208px;}
.ls26{letter-spacing:0.242352px;}
.ls32{letter-spacing:0.253872px;}
.ls22{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.276000px;}
.ls18{letter-spacing:0.280080px;}
.ls21{letter-spacing:0.283968px;}
.ls7{letter-spacing:0.317376px;}
.ls23{letter-spacing:0.325728px;}
.ls20{letter-spacing:0.359136px;}
.ls33{letter-spacing:0.419184px;}
.ls14{letter-spacing:0.442656px;}
.ls12{letter-spacing:0.451008px;}
.ls1a{letter-spacing:0.476064px;}
.ls28{letter-spacing:0.478224px;}
.ls1b{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.484416px;}
.ls10{letter-spacing:0.492768px;}
.ls31{letter-spacing:0.543168px;}
.ls27{letter-spacing:0.578592px;}
.ls2{letter-spacing:0.593260px;}
.ls2c{letter-spacing:0.596160px;}
.ls6{letter-spacing:0.596226px;}
.ls2e{letter-spacing:0.637632px;}
.ls34{letter-spacing:0.702576px;}
.lsc{letter-spacing:1.774800px;}
.lsb{letter-spacing:2.373600px;}
.ls37{letter-spacing:3.708000px;}
.ls13{letter-spacing:3.781440px;}
.ls24{letter-spacing:4.686000px;}
.ls2a{letter-spacing:6.121200px;}
.ls35{letter-spacing:11.299200px;}
.lsf{letter-spacing:21.781440px;}
.ls15{letter-spacing:24.781440px;}
.ls2f{letter-spacing:33.984000px;}
.ls9{letter-spacing:35.035200px;}
.ls25{letter-spacing:64.007400px;}
.ls11{letter-spacing:66.781440px;}
.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;}
}
.ws3{word-spacing:-25.438982px;}
.ws0{word-spacing:-24.246530px;}
.wsb{word-spacing:-21.372768px;}
.wsf{word-spacing:-21.364416px;}
.ws13{word-spacing:-21.360000px;}
.ws12{word-spacing:-21.356064px;}
.wsd{word-spacing:-21.331008px;}
.wse{word-spacing:-21.322656px;}
.wsc{word-spacing:-21.239136px;}
.ws14{word-spacing:-21.205728px;}
.ws6{word-spacing:-21.197376px;}
.wsa{word-spacing:-21.122208px;}
.ws11{word-spacing:-21.080448px;}
.ws9{word-spacing:-21.038688px;}
.ws10{word-spacing:-20.996928px;}
.ws1{word-spacing:-19.132630px;}
.ws2{word-spacing:-18.761842px;}
.ws18{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws17{word-spacing:-15.338592px;}
.ws15{word-spacing:-12.122352px;}
.ws1c{word-spacing:-11.998800px;}
.ws1b{word-spacing:-11.880000px;}
.ws16{word-spacing:-9.778320px;}
.ws19{word-spacing:-0.660960px;}
.ws1a{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.064800px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2.594029px;}
._0{margin-left:-1.222115px;}
._2{width:1.099014px;}
._3{width:3.000412px;}
._8{width:4.463400px;}
._7{width:5.943600px;}
._12{width:7.315200px;}
._9{width:8.355000px;}
._e{width:9.590400px;}
._f{width:10.644600px;}
._11{width:11.841000px;}
._13{width:12.990600px;}
._5{width:14.371200px;}
._4{width:15.811200px;}
._a{width:16.824600px;}
._6{width:19.807200px;}
._16{width:21.578400px;}
._14{width:22.845600px;}
._b{width:24.674400px;}
._19{width:26.251200px;}
._1d{width:27.304392px;}
._17{width:29.030400px;}
._c{width:30.729600px;}
._1a{width:31.791000px;}
._38{width:32.865000px;}
._10{width:33.873000px;}
._d{width:34.977600px;}
._2d{width:36.705600px;}
._35{width:37.778400px;}
._15{width:38.815200px;}
._1e{width:40.644000px;}
._37{width:41.774400px;}
._20{width:42.782400px;}
._22{width:43.869600px;}
._18{width:44.942400px;}
._24{width:46.874400px;}
._3a{width:49.937171px;}
._39{width:51.064429px;}
._2e{width:52.290600px;}
._2f{width:53.856000px;}
._1c{width:54.964800px;}
._27{width:57.196800px;}
._1b{width:60.233400px;}
._28{width:63.201600px;}
._3b{width:67.276800px;}
._23{width:70.156800px;}
._31{width:71.380800px;}
._2a{width:75.852000px;}
._21{width:77.544000px;}
._32{width:78.840000px;}
._34{width:83.570400px;}
._2b{width:86.148000px;}
._26{width:89.899200px;}
._2c{width:100.098600px;}
._30{width:102.124800px;}
._33{width:104.889600px;}
._29{width:116.275800px;}
._1f{width:117.367200px;}
._25{width:130.176000px;}
._36{width:134.100000px;}
.fc3{color:transparent;}
.fc2{color:rgb(112,173,71);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:11.520000px;}
.fse{font-size:38.880000px;}
.fsc{font-size:47.520000px;}
.fs6{font-size:48.943937px;}
.fs3{font-size:56.359685px;}
.fsd{font-size:59.040000px;}
.fs7{font-size:62.292283px;}
.fsa{font-size:64.800000px;}
.fs9{font-size:68.224882px;}
.fsb{font-size:72.000000px;}
.fs5{font-size:74.157480px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:86.022677px;}
.fs4{font-size:99.371023px;}
.fs2{font-size:111.236220px;}
.fs1{font-size:136.449763px;}
.y0{bottom:0.000000px;}
.y16c{bottom:3.960000px;}
.y176{bottom:4.320000px;}
.y31{bottom:4.820297px;}
.y124{bottom:7.920000px;}
.y165{bottom:8.280000px;}
.y160{bottom:9.720000px;}
.y15d{bottom:10.440000px;}
.y1c9{bottom:11.879850px;}
.y1{bottom:12.755859px;}
.y130{bottom:13.320000px;}
.y141{bottom:14.400000px;}
.y1c0{bottom:14.760000px;}
.y14b{bottom:16.199985px;}
.y186{bottom:24.839940px;}
.y16b{bottom:24.840000px;}
.y123{bottom:28.440000px;}
.y164{bottom:32.760000px;}
.y15f{bottom:33.840000px;}
.y15c{bottom:34.200000px;}
.y12f{bottom:42.120000px;}
.y169{bottom:44.081751px;}
.y38{bottom:44.282871px;}
.y152{bottom:44.640000px;}
.y35{bottom:44.859141px;}
.y185{bottom:45.359940px;}
.y146{bottom:45.359970px;}
.y14e{bottom:45.360000px;}
.y140{bottom:45.720000px;}
.y14a{bottom:47.159970px;}
.y163{bottom:56.520000px;}
.y167{bottom:57.600000px;}
.y15b{bottom:57.960000px;}
.y37{bottom:64.082871px;}
.y168{bottom:64.241751px;}
.y198{bottom:64.442871px;}
.y184{bottom:66.239940px;}
.y175{bottom:66.240000px;}
.y12e{bottom:73.080000px;}
.y34{bottom:73.409771px;}
.y151{bottom:75.600000px;}
.y145{bottom:76.319970px;}
.y14d{bottom:76.320000px;}
.y13f{bottom:76.680000px;}
.y149{bottom:78.479970px;}
.y162{bottom:80.280000px;}
.y36{bottom:85.230651px;}
.y183{bottom:86.759925px;}
.y18e{bottom:86.760000px;}
.y18c{bottom:87.119850px;}
.y174{bottom:87.120000px;}
.y1a2{bottom:99.002871px;}
.y20e{bottom:99.722871px;}
.y33{bottom:101.635962px;}
.y21e{bottom:101.882871px;}
.y12d{bottom:104.040000px;}
.y10d{bottom:104.042871px;}
.y150{bottom:106.920000px;}
.y182{bottom:107.279940px;}
.y144{bottom:107.279970px;}
.y13e{bottom:107.640000px;}
.y148{bottom:109.439970px;}
.y104{bottom:110.882871px;}
.y17{bottom:111.242871px;}
.y55{bottom:112.682871px;}
.y30{bottom:114.301110px;}
.y11b{bottom:114.482871px;}
.y142{bottom:114.638730px;}
.y1bc{bottom:115.922871px;}
.yf9{bottom:116.282871px;}
.yaf{bottom:118.082856px;}
.ydc{bottom:118.802871px;}
.y89{bottom:122.042856px;}
.y1d8{bottom:122.762871px;}
.y1b8{bottom:127.802871px;}
.y181{bottom:128.159940px;}
.y173{bottom:128.160000px;}
.y18b{bottom:128.520000px;}
.yd2{bottom:129.962871px;}
.y32{bottom:130.186592px;}
.y208{bottom:131.042856px;}
.y137{bottom:131.760000px;}
.y21d{bottom:132.842871px;}
.y10c{bottom:135.002871px;}
.y12c{bottom:135.360000px;}
.y71{bottom:136.082856px;}
.y13d{bottom:138.600000px;}
.y143{bottom:140.039970px;}
.y147{bottom:140.399970px;}
.y179{bottom:141.437610px;}
.y177{bottom:141.437625px;}
.y103{bottom:141.842841px;}
.yee{bottom:144.362841px;}
.y11a{bottom:145.442841px;}
.y1bb{bottom:146.882841px;}
.yf8{bottom:147.242841px;}
.y180{bottom:148.679925px;}
.y18a{bottom:149.039850px;}
.y172{bottom:149.040000px;}
.yae{bottom:149.042841px;}
.ydb{bottom:149.762841px;}
.y1d7{bottom:153.722841px;}
.y54{bottom:155.882841px;}
.y1b7{bottom:158.762841px;}
.y16{bottom:159.482841px;}
.ybc{bottom:160.922841px;}
.y207{bottom:162.002841px;}
.y136{bottom:162.720000px;}
.y21c{bottom:163.802841px;}
.y10b{bottom:165.962841px;}
.y12b{bottom:166.320000px;}
.y17f{bottom:169.559940px;}
.y171{bottom:169.560000px;}
.y13c{bottom:169.920000px;}
.y88{bottom:170.282841px;}
.y1e5{bottom:172.802841px;}
.yed{bottom:175.322841px;}
.y119{bottom:176.402841px;}
.y1e1{bottom:177.842841px;}
.yf7{bottom:178.202841px;}
.yda{bottom:180.722841px;}
.y70{bottom:184.322841px;}
.y1d6{bottom:184.682841px;}
.y102{bottom:185.042841px;}
.y9d{bottom:186.842841px;}
.y17e{bottom:190.079940px;}
.y1ba{bottom:190.082841px;}
.y170{bottom:190.440000px;}
.y1a1{bottom:191.882841px;}
.yad{bottom:192.242841px;}
.y206{bottom:192.962841px;}
.y135{bottom:193.680000px;}
.y21b{bottom:195.122841px;}
.y10a{bottom:196.922841px;}
.y12a{bottom:197.280000px;}
.y53{bottom:199.082841px;}
.y13b{bottom:200.880000px;}
.y1b6{bottom:201.962841px;}
.y1e4{bottom:203.762841px;}
.y197{bottom:204.077550px;}
.y120{bottom:204.122841px;}
.yec{bottom:206.282841px;}
.y15{bottom:207.722841px;}
.y1f3{bottom:208.802841px;}
.y17d{bottom:210.959940px;}
.y16f{bottom:210.960000px;}
.y188{bottom:211.320000px;}
.yd9{bottom:211.682841px;}
.y101{bottom:216.002841px;}
.y9c{bottom:217.802841px;}
.y87{bottom:218.522841px;}
.y1e0{bottom:221.042841px;}
.yf6{bottom:221.402841px;}
.yac{bottom:223.202841px;}
.y205{bottom:223.922841px;}
.y134{bottom:224.640000px;}
.y21a{bottom:226.082841px;}
.y129{bottom:228.240000px;}
.y109{bottom:228.242841px;}
.y17c{bottom:231.479940px;}
.y13a{bottom:231.840000px;}
.y6f{bottom:232.562841px;}
.y1b5{bottom:232.922841px;}
.yd1{bottom:235.082841px;}
.yeb{bottom:237.242841px;}
.y118{bottom:238.682841px;}
.y1f2{bottom:239.762841px;}
.y52{bottom:241.922841px;}
.y100{bottom:246.962841px;}
.y9b{bottom:249.122841px;}
.yd8{bottom:252.002841px;}
.y17b{bottom:252.359940px;}
.y16e{bottom:252.360000px;}
.y196{bottom:252.720000px;}
.yab{bottom:254.162841px;}
.y204{bottom:255.242841px;}
.y133{bottom:255.960000px;}
.y14{bottom:255.962841px;}
.y219{bottom:257.042841px;}
.y108{bottom:259.202841px;}
.y128{bottom:259.560000px;}
.y139{bottom:262.800000px;}
.y159{bottom:263.162841px;}
.y1b4{bottom:263.882841px;}
.yf5{bottom:264.242841px;}
.y1a0{bottom:266.042841px;}
.y86{bottom:266.762841px;}
.yea{bottom:268.562841px;}
.y117{bottom:269.642841px;}
.y1f1{bottom:271.082841px;}
.y138{bottom:272.318700px;}
.y17a{bottom:272.879940px;}
.y195{bottom:273.240000px;}
.y1d5{bottom:277.922841px;}
.y6e{bottom:278.282841px;}
.y9a{bottom:280.082841px;}
.y1df{bottom:282.962841px;}
.y51{bottom:285.122841px;}
.y203{bottom:286.202841px;}
.y132{bottom:286.920000px;}
.y218{bottom:288.002841px;}
.yff{bottom:290.162841px;}
.y127{bottom:290.520000px;}
.y178{bottom:293.759925px;}
.y194{bottom:294.120000px;}
.y1b3{bottom:295.202841px;}
.yf4{bottom:295.562841px;}
.y19f{bottom:297.002841px;}
.y1f0{bottom:302.042841px;}
.y85{bottom:303.122841px;}
.y13{bottom:304.202841px;}
.y158{bottom:306.362841px;}
.y1d4{bottom:308.882841px;}
.y11f{bottom:309.242841px;}
.ye9{bottom:311.402841px;}
.y116{bottom:312.842841px;}
.y2f{bottom:314.077545px;}
.yd7{bottom:314.282841px;}
.y193{bottom:314.640000px;}
.y50{bottom:316.082841px;}
.yaa{bottom:316.442841px;}
.y202{bottom:317.162841px;}
.y131{bottom:317.880000px;}
.y217{bottom:318.962841px;}
.y126{bottom:320.040000px;}
.y6d{bottom:321.122841px;}
.y238{bottom:322.922841px;}
.y99{bottom:323.282841px;}
.y1b2{bottom:326.162841px;}
.yf3{bottom:326.522841px;}
.y1e3{bottom:327.962841px;}
.y19e{bottom:328.322841px;}
.y1ef{bottom:333.002841px;}
.y192{bottom:335.520000px;}
.y157{bottom:337.322841px;}
.y84{bottom:339.122841px;}
.y11e{bottom:340.202841px;}
.ye8{bottom:342.362841px;}
.y1de{bottom:345.242841px;}
.ybb{bottom:347.402841px;}
.y201{bottom:348.122841px;}
.y18d{bottom:349.157550px;}
.y216{bottom:350.282841px;}
.y12{bottom:352.442841px;}
.y98{bottom:354.242841px;}
.y191{bottom:356.040000px;}
.y2e{bottom:357.088883px;}
.y1b1{bottom:357.122841px;}
.y115{bottom:358.562841px;}
.y4f{bottom:359.282841px;}
.y1ee{bottom:363.962841px;}
.y107{bottom:364.322841px;}
.y237{bottom:365.762841px;}
.yf2{bottom:369.722841px;}
.y18f{bottom:370.397550px;}
.y11d{bottom:371.162841px;}
.y83{bottom:375.482841px;}
.y1dd{bottom:376.202841px;}
.y190{bottom:376.920000px;}
.yba{bottom:378.362841px;}
.y200{bottom:379.442841px;}
.y156{bottom:380.162841px;}
.y215{bottom:381.242841px;}
.yfe{bottom:383.402841px;}
.y97{bottom:385.202841px;}
.ye7{bottom:385.562841px;}
.y1b0{bottom:388.082841px;}
.y4e{bottom:390.242841px;}
.y6c{bottom:395.282841px;}
.y236{bottom:397.082841px;}
.y2d{bottom:397.504710px;}
.y11{bottom:400.682841px;}
.y1d3{bottom:402.122841px;}
.ya9{bottom:402.482841px;}
.y114{bottom:403.922841px;}
.y1dc{bottom:407.162841px;}
.yb9{bottom:409.322841px;}
.y1ff{bottom:410.402841px;}
.y82{bottom:411.482841px;}
.y214{bottom:412.202841px;}
.yfd{bottom:414.362841px;}
.y1af{bottom:419.402841px;}
.y4d{bottom:421.202841px;}
.y6b{bottom:426.242841px;}
.y235{bottom:428.042841px;}
.y96{bottom:428.402841px;}
.ye6{bottom:428.762841px;}
.y2c{bottom:431.617150px;}
.y1d2{bottom:433.082841px;}
.ya8{bottom:433.442841px;}
.y113{bottom:435.242841px;}
.y1e2{bottom:435.962841px;}
.yd0{bottom:438.482841px;}
.yb8{bottom:440.642841px;}
.yf1{bottom:441.002841px;}
.y1fe{bottom:441.362841px;}
.y166{bottom:442.598700px;}
.y213{bottom:443.162841px;}
.y81{bottom:447.842841px;}
.y10{bottom:448.562841px;}
.y1ae{bottom:450.362841px;}
.y4c{bottom:452.162841px;}
.y16d{bottom:452.477550px;}
.y19d{bottom:452.522841px;}
.y1ed{bottom:457.202841px;}
.y6a{bottom:457.562841px;}
.y234{bottom:459.002841px;}
.ye5{bottom:459.722841px;}
.ya7{bottom:464.402841px;}
.y112{bottom:466.202841px;}
.yf0{bottom:467.282841px;}
.ycf{bottom:469.442841px;}
.y95{bottom:471.242841px;}
.y1fd{bottom:472.322841px;}
.y212{bottom:474.482841px;}
.y2b{bottom:474.674837px;}
.y1ad{bottom:481.322841px;}
.y4b{bottom:483.122841px;}
.yb7{bottom:483.482841px;}
.y80{bottom:484.202841px;}
.y1ec{bottom:488.162841px;}
.y69{bottom:488.522841px;}
.y233{bottom:489.962841px;}
.ye4{bottom:490.682841px;}
.ya6{bottom:495.362841px;}
.yf{bottom:496.802841px;}
.yce{bottom:500.402841px;}
.yef{bottom:503.642841px;}
.y211{bottom:505.442841px;}
.y11c{bottom:507.602841px;}
.y111{bottom:511.922841px;}
.y1ac{bottom:512.282841px;}
.y1db{bottom:512.642841px;}
.y2a{bottom:513.978302px;}
.y4a{bottom:514.442841px;}
.y1eb{bottom:519.122841px;}
.y68{bottom:519.482841px;}
.y7f{bottom:520.202841px;}
.y232{bottom:521.282841px;}
.ye3{bottom:521.642841px;}
.yb6{bottom:526.682841px;}
.y161{bottom:531.158700px;}
.ycd{bottom:531.362841px;}
.y1fc{bottom:534.602841px;}
.y187{bottom:535.997550px;}
.y189{bottom:535.997700px;}
.y210{bottom:536.402841px;}
.y1d1{bottom:538.202841px;}
.ya5{bottom:538.562841px;}
.y1ab{bottom:543.602841px;}
.y29{bottom:543.641294px;}
.ye{bottom:545.042841px;}
.y49{bottom:545.402841px;}
.y67{bottom:550.442841px;}
.y231{bottom:552.242841px;}
.y125{bottom:552.398700px;}
.ye2{bottom:552.962841px;}
.y1b9{bottom:555.482841px;}
.y7e{bottom:556.562841px;}
.y94{bottom:557.282841px;}
.yb5{bottom:557.642841px;}
.y15e{bottom:560.678700px;}
.ycc{bottom:562.682841px;}
.y20d{bottom:565.562841px;}
.y28{bottom:566.661011px;}
.y1fb{bottom:567.002841px;}
.y20f{bottom:567.362841px;}
.ya4{bottom:569.522841px;}
.y1da{bottom:574.562841px;}
.y48{bottom:576.362841px;}
.y1ea{bottom:581.402841px;}
.y66{bottom:581.762841px;}
.y230{bottom:583.202841px;}
.ye1{bottom:583.922841px;}
.y1aa{bottom:586.442841px;}
.y93{bottom:588.602841px;}
.y7d{bottom:592.562841px;}
.yd{bottom:593.282841px;}
.ycb{bottom:593.642841px;}
.y20c{bottom:596.522841px;}
.y1fa{bottom:598.682841px;}
.ya3{bottom:600.482841px;}
.y27{bottom:603.739751px;}
.yfc{bottom:605.522841px;}
.y47{bottom:607.322841px;}
.y1e9{bottom:612.362841px;}
.y65{bottom:612.722841px;}
.y22f{bottom:614.162841px;}
.ye0{bottom:614.882841px;}
.y1a9{bottom:617.402841px;}
.y92{bottom:619.562841px;}
.y106{bottom:624.602841px;}
.y20b{bottom:627.842841px;}
.y7c{bottom:628.922841px;}
.y1f9{bottom:629.642841px;}
.y1d0{bottom:631.442841px;}
.yb4{bottom:631.802841px;}
.y26{bottom:634.515106px;}
.yca{bottom:636.482841px;}
.y46{bottom:638.642841px;}
.yc{bottom:641.522841px;}
.y1e8{bottom:643.322841px;}
.y64{bottom:643.682841px;}
.y22e{bottom:645.482841px;}
.ydf{bottom:645.842841px;}
.y1a8{bottom:648.722841px;}
.y91{bottom:650.522841px;}
.y105{bottom:655.562841px;}
.y20a{bottom:658.802841px;}
.y1f8{bottom:660.602841px;}
.y1cf{bottom:662.402841px;}
.y7b{bottom:665.282841px;}
.y25{bottom:665.290460px;}
.yc9{bottom:667.802841px;}
.yb3{bottom:674.642841px;}
.y22d{bottom:676.442841px;}
.y15a{bottom:678.758700px;}
.y1a7{bottom:679.682841px;}
.y45{bottom:681.482841px;}
.yde{bottom:686.162841px;}
.y63{bottom:686.882841px;}
.yb{bottom:689.762841px;}
.y1f7{bottom:691.562841px;}
.y1ce{bottom:693.722841px;}
.yc8{bottom:698.762841px;}
.y7a{bottom:701.282841px;}
.y19c{bottom:705.602841px;}
.yb2{bottom:705.962841px;}
.y24{bottom:706.107973px;}
.y22c{bottom:707.402841px;}
.y1a6{bottom:710.642841px;}
.ydd{bottom:712.442841px;}
.y44{bottom:712.802841px;}
.y62{bottom:717.842841px;}
.y16a{bottom:722.477550px;}
.y209{bottom:722.522841px;}
.y1f6{bottom:722.882841px;}
.y110{bottom:724.682841px;}
.yc7{bottom:729.722841px;}
.y23{bottom:736.512540px;}
.y1e7{bottom:736.562841px;}
.yb1{bottom:736.922841px;}
.y79{bottom:737.642841px;}
.ya{bottom:738.002841px;}
.y22b{bottom:738.362841px;}
.y1a5{bottom:741.602841px;}
.y1d9{bottom:741.962841px;}
.y43{bottom:743.762841px;}
.y61{bottom:748.802841px;}
.y1f5{bottom:753.842841px;}
.y10f{bottom:755.642841px;}
.yfb{bottom:760.682841px;}
.y22{bottom:767.287894px;}
.y1e6{bottom:767.522841px;}
.y22a{bottom:769.682841px;}
.yc6{bottom:772.922841px;}
.y78{bottom:774.002841px;}
.y42{bottom:774.722841px;}
.y60{bottom:779.762841px;}
.y1f4{bottom:784.802841px;}
.y9{bottom:786.242841px;}
.y10e{bottom:786.602841px;}
.y1ca{bottom:786.962841px;}
.yfa{bottom:792.002841px;}
.y21{bottom:798.063248px;}
.y1cd{bottom:798.842841px;}
.y229{bottom:800.642841px;}
.y155{bottom:802.442841px;}
.yd6{bottom:803.882841px;}
.y90{bottom:805.682841px;}
.y77{bottom:810.002841px;}
.y19b{bottom:810.722841px;}
.y5f{bottom:811.082841px;}
.yc5{bottom:815.762841px;}
.y1c8{bottom:816.278850px;}
.y41{bottom:817.922841px;}
.y20{bottom:828.884951px;}
.y1cc{bottom:829.802841px;}
.y228{bottom:831.602841px;}
.y154{bottom:833.402841px;}
.y8{bottom:834.482841px;}
.yd5{bottom:834.842841px;}
.yb0{bottom:842.042841px;}
.y1c7{bottom:842.558700px;}
.y76{bottom:846.362841px;}
.yc4{bottom:847.082841px;}
.y40{bottom:848.882841px;}
.y5e{bottom:853.922841px;}
.y1f{bottom:859.289517px;}
.y1cb{bottom:860.762841px;}
.y227{bottom:862.562841px;}
.y1a4{bottom:865.802841px;}
.yd4{bottom:866.162841px;}
.y1c6{bottom:873.878700px;}
.y153{bottom:876.242841px;}
.yc3{bottom:878.042841px;}
.y8f{bottom:879.842841px;}
.y75{bottom:882.362841px;}
.y7{bottom:882.722841px;}
.y5d{bottom:884.882841px;}
.y122{bottom:887.558700px;}
.y1e{bottom:890.064872px;}
.y3f{bottom:891.722841px;}
.y226{bottom:893.882841px;}
.yd3{bottom:897.122841px;}
.y1c5{bottom:904.838700px;}
.y14f{bottom:906.638700px;}
.yc2{bottom:909.002841px;}
.y8e{bottom:910.802841px;}
.y19a{bottom:915.842841px;}
.ya2{bottom:916.202841px;}
.y74{bottom:918.722841px;}
.y1d{bottom:920.840226px;}
.y3e{bottom:923.042841px;}
.y225{bottom:924.842841px;}
.y5c{bottom:928.082841px;}
.y6{bottom:930.962841px;}
.y1c4{bottom:935.798700px;}
.yc1{bottom:939.962841px;}
.y8d{bottom:942.122841px;}
.y121{bottom:944.642841px;}
.ya1{bottom:947.162841px;}
.y1c{bottom:951.275692px;}
.y3d{bottom:954.002841px;}
.y73{bottom:955.082841px;}
.y224{bottom:955.802841px;}
.y5b{bottom:959.042841px;}
.y1c3{bottom:966.758700px;}
.y1a3{bottom:970.922841px;}
.yc0{bottom:971.282841px;}
.y8c{bottom:973.082841px;}
.ya0{bottom:978.122841px;}
.y5{bottom:979.202841px;}
.y3c{bottom:984.962841px;}
.y1b{bottom:985.758920px;}
.y5a{bottom:990.002841px;}
.y72{bottom:991.082841px;}
.y1c2{bottom:998.078700px;}
.y223{bottom:999.002841px;}
.ybf{bottom:1002.242841px;}
.y8b{bottom:1004.042841px;}
.y9f{bottom:1009.082841px;}
.y3b{bottom:1015.922841px;}
.y59{bottom:1021.322841px;}
.y4{bottom:1027.442841px;}
.y1c1{bottom:1029.038700px;}
.y222{bottom:1029.962841px;}
.y14c{bottom:1030.838700px;}
.y1a{bottom:1032.478132px;}
.ybe{bottom:1033.202841px;}
.y8a{bottom:1035.002841px;}
.y3a{bottom:1047.242841px;}
.y58{bottom:1052.282841px;}
.y1bf{bottom:1060.718700px;}
.ybd{bottom:1064.162841px;}
.y221{bottom:1072.802841px;}
.y3{bottom:1075.682841px;}
.y39{bottom:1078.202841px;}
.y19{bottom:1079.614480px;}
.y57{bottom:1083.242841px;}
.y199{bottom:1095.122841px;}
.y9e{bottom:1095.482841px;}
.y1be{bottom:1103.042841px;}
.y220{bottom:1104.122841px;}
.y21f{bottom:1123.562841px;}
.y2{bottom:1123.922841px;}
.y56{bottom:1126.442841px;}
.y18{bottom:1128.187630px;}
.y1bd{bottom:1129.322841px;}
.h44{height:7.785000px;}
.h42{height:25.559880px;}
.h40{height:30.959925px;}
.h3d{height:30.960015px;}
.h3c{height:31.319910px;}
.h3f{height:31.320000px;}
.h6{height:37.563950px;}
.h1b{height:39.350391px;}
.h14{height:40.993594px;}
.h2e{height:41.399970px;}
.h2c{height:41.400015px;}
.hf{height:43.189453px;}
.h9{height:43.471202px;}
.h19{height:44.999910px;}
.h17{height:45.000000px;}
.he{height:45.472150px;}
.h1e{height:47.988281px;}
.h2d{height:48.796875px;}
.h18{height:49.289063px;}
.h11{height:49.992188px;}
.h30{height:50.027344px;}
.h8{height:51.490203px;}
.h43{height:51.804141px;}
.h3b{height:51.948281px;}
.h15{height:54.356381px;}
.ha{height:55.326984px;}
.hc{height:59.728636px;}
.h39{height:61.920015px;}
.h10{height:63.175781px;}
.h3a{height:63.351563px;}
.h34{height:66.138047px;}
.h31{height:66.138647px;}
.hd{height:68.996873px;}
.h3{height:73.283906px;}
.h12{height:74.816016px;}
.h16{height:74.816136px;}
.h13{height:74.816616px;}
.h3e{height:74.932031px;}
.h41{height:74.932631px;}
.h28{height:77.039925px;}
.h27{height:77.040030px;}
.h23{height:77.399970px;}
.h24{height:77.400015px;}
.h7{height:88.259713px;}
.h5{height:98.798186px;}
.h4{height:121.192441px;}
.h25{height:122.039985px;}
.h26{height:122.040030px;}
.h21{height:123.479925px;}
.h22{height:123.480015px;}
.h1f{height:124.199895px;}
.h20{height:124.199985px;}
.h1d{height:156.960000px;}
.h38{height:165.600000px;}
.h35{height:186.120000px;}
.hb{height:192.840300px;}
.h36{height:206.640000px;}
.h33{height:227.880000px;}
.h2f{height:268.920000px;}
.h1c{height:279.360000px;}
.h32{height:310.320000px;}
.h1a{height:334.440000px;}
.h37{height:393.480000px;}
.h2b{height:867.401700px;}
.h29{height:892.913400px;}
.h2a{height:893.250000px;}
.h2{height:1237.322850px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w1c{width:21.239985px;}
.w1d{width:22.320000px;}
.w1e{width:25.199940px;}
.w1f{width:25.199985px;}
.w21{width:34.199940px;}
.w20{width:34.199985px;}
.w12{width:101.520015px;}
.w8{width:107.279940px;}
.w7{width:107.279985px;}
.w13{width:109.440015px;}
.w22{width:116.280030px;}
.w17{width:120.239910px;}
.w14{width:120.239955px;}
.wa{width:204.479850px;}
.w9{width:204.480000px;}
.w5{width:208.032450px;}
.wb{width:210.240000px;}
.wc{width:224.640000px;}
.w4{width:229.954050px;}
.w23{width:254.160000px;}
.w1b{width:254.520000px;}
.we{width:277.559850px;}
.wd{width:277.560000px;}
.w6{width:352.800000px;}
.w19{width:381.239700px;}
.w18{width:381.239850px;}
.w16{width:381.240000px;}
.w15{width:394.560000px;}
.w24{width:659.160000px;}
.w3{width:866.681700px;}
.w2{width:867.401700px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.w1a{width:1110.240000px;}
.w11{width:1237.322850px;}
.wf{width:1262.834700px;}
.w10{width:1263.000000px;}
.x0{left:0.000000px;}
.x22{left:7.920000px;}
.x13{left:10.010661px;}
.x2d{left:11.482950px;}
.x1{left:12.755851px;}
.x38{left:17.828925px;}
.x33{left:21.449850px;}
.x3b{left:25.288650px;}
.x20{left:27.287055px;}
.x15{left:32.256804px;}
.x40{left:34.560000px;}
.x39{left:36.567210px;}
.x4d{left:39.261000px;}
.x2c{left:41.941500px;}
.x34{left:49.711050px;}
.x14{left:50.795256px;}
.x4e{left:53.767350px;}
.x30{left:58.488300px;}
.x27{left:61.019700px;}
.x3f{left:70.692150px;}
.x31{left:71.696850px;}
.x2e{left:75.612450px;}
.x16{left:77.119857px;}
.x32{left:80.112450px;}
.x35{left:84.612450px;}
.x28{left:88.778550px;}
.x2a{left:90.791250px;}
.xb{left:101.627794px;}
.x25{left:104.774700px;}
.x29{left:108.773700px;}
.x9{left:110.897020px;}
.x2{left:115.559999px;}
.x26{left:116.762850px;}
.x6{left:120.907784px;}
.x1c{left:136.784833px;}
.x7{left:137.963160px;}
.x19{left:142.559999px;}
.x2b{left:154.595850px;}
.x8{left:161.315430px;}
.x1f{left:163.784848px;}
.x1a{left:169.559999px;}
.xa{left:170.955425px;}
.x5{left:175.775422px;}
.x3{left:192.089260px;}
.x24{left:196.769850px;}
.x3a{left:204.636000px;}
.x11{left:224.845200px;}
.xd{left:226.941550px;}
.x10{left:245.897117px;}
.x4{left:251.829422px;}
.x3c{left:314.796000px;}
.xf{left:363.430903px;}
.x41{left:374.915850px;}
.xc{left:385.306276px;}
.x42{left:396.155850px;}
.x43{left:418.475850px;}
.xe{left:430.200227px;}
.x3d{left:436.116000px;}
.x44{left:443.675850px;}
.x2f{left:450.155850px;}
.x12{left:454.799250px;}
.x45{left:468.875850px;}
.x21{left:474.275850px;}
.x46{left:494.075850px;}
.x47{left:519.275850px;}
.x48{left:544.475850px;}
.x49{left:569.675850px;}
.x23{left:582.275850px;}
.x4a{left:594.875850px;}
.x4b{left:629.075850px;}
.x4c{left:663.275850px;}
.x1d{left:736.634398px;}
.x17{left:744.997199px;}
.x18{left:753.359999px;}
.x1e{left:797.744699px;}
.x1b{left:823.680149px;}
.x3e{left:831.396000px;}
.x36{left:1127.744600px;}
.x37{left:1144.470200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320533pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-1.501607pt;}
.ls3{letter-spacing:-1.450191pt;}
.ls1{letter-spacing:-0.529979pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000533pt;}
.ls2b{letter-spacing:0.000587pt;}
.ls38{letter-spacing:0.009600pt;}
.lse{letter-spacing:0.012800pt;}
.ls29{letter-spacing:0.051840pt;}
.ls17{letter-spacing:0.103936pt;}
.ls36{letter-spacing:0.105600pt;}
.ls19{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.141056pt;}
.ls30{letter-spacing:0.142613pt;}
.ls1c{letter-spacing:0.178176pt;}
.ls4{letter-spacing:0.197753pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls2d{letter-spacing:0.215168pt;}
.ls1e{letter-spacing:0.215296pt;}
.ls26{letter-spacing:0.215424pt;}
.ls32{letter-spacing:0.225664pt;}
.ls22{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.245333pt;}
.ls18{letter-spacing:0.248960pt;}
.ls21{letter-spacing:0.252416pt;}
.ls7{letter-spacing:0.282112pt;}
.ls23{letter-spacing:0.289536pt;}
.ls20{letter-spacing:0.319232pt;}
.ls33{letter-spacing:0.372608pt;}
.ls14{letter-spacing:0.393472pt;}
.ls12{letter-spacing:0.400896pt;}
.ls1a{letter-spacing:0.423168pt;}
.ls28{letter-spacing:0.425088pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.430592pt;}
.ls10{letter-spacing:0.438016pt;}
.ls31{letter-spacing:0.482816pt;}
.ls27{letter-spacing:0.514304pt;}
.ls2{letter-spacing:0.527342pt;}
.ls2c{letter-spacing:0.529920pt;}
.ls6{letter-spacing:0.529979pt;}
.ls2e{letter-spacing:0.566784pt;}
.ls34{letter-spacing:0.624512pt;}
.lsc{letter-spacing:1.577600pt;}
.lsb{letter-spacing:2.109867pt;}
.ls37{letter-spacing:3.296000pt;}
.ls13{letter-spacing:3.361280pt;}
.ls24{letter-spacing:4.165333pt;}
.ls2a{letter-spacing:5.441067pt;}
.ls35{letter-spacing:10.043733pt;}
.lsf{letter-spacing:19.361280pt;}
.ls15{letter-spacing:22.027947pt;}
.ls2f{letter-spacing:30.208000pt;}
.ls9{letter-spacing:31.142400pt;}
.ls25{letter-spacing:56.895467pt;}
.ls11{letter-spacing:59.361280pt;}
.ws3{word-spacing:-22.612428pt;}
.ws0{word-spacing:-21.552471pt;}
.wsb{word-spacing:-18.998016pt;}
.wsf{word-spacing:-18.990592pt;}
.ws13{word-spacing:-18.986667pt;}
.ws12{word-spacing:-18.983168pt;}
.wsd{word-spacing:-18.960896pt;}
.wse{word-spacing:-18.953472pt;}
.wsc{word-spacing:-18.879232pt;}
.ws14{word-spacing:-18.849536pt;}
.ws6{word-spacing:-18.842112pt;}
.wsa{word-spacing:-18.775296pt;}
.ws11{word-spacing:-18.738176pt;}
.ws9{word-spacing:-18.701056pt;}
.ws10{word-spacing:-18.663936pt;}
.ws1{word-spacing:-17.006782pt;}
.ws2{word-spacing:-16.677193pt;}
.ws18{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws17{word-spacing:-13.634304pt;}
.ws15{word-spacing:-10.775424pt;}
.ws1c{word-spacing:-10.665600pt;}
.ws1b{word-spacing:-10.560000pt;}
.ws16{word-spacing:-8.691840pt;}
.ws19{word-spacing:-0.587520pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.057600pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2.305803pt;}
._0{margin-left:-1.086325pt;}
._2{width:0.976901pt;}
._3{width:2.667033pt;}
._8{width:3.967467pt;}
._7{width:5.283200pt;}
._12{width:6.502400pt;}
._9{width:7.426667pt;}
._e{width:8.524800pt;}
._f{width:9.461867pt;}
._11{width:10.525333pt;}
._13{width:11.547200pt;}
._5{width:12.774400pt;}
._4{width:14.054400pt;}
._a{width:14.955200pt;}
._6{width:17.606400pt;}
._16{width:19.180800pt;}
._14{width:20.307200pt;}
._b{width:21.932800pt;}
._19{width:23.334400pt;}
._1d{width:24.270571pt;}
._17{width:25.804800pt;}
._c{width:27.315200pt;}
._1a{width:28.258667pt;}
._38{width:29.213333pt;}
._10{width:30.109333pt;}
._d{width:31.091200pt;}
._2d{width:32.627200pt;}
._35{width:33.580800pt;}
._15{width:34.502400pt;}
._1e{width:36.128000pt;}
._37{width:37.132800pt;}
._20{width:38.028800pt;}
._22{width:38.995200pt;}
._18{width:39.948800pt;}
._24{width:41.666133pt;}
._3a{width:44.388597pt;}
._39{width:45.390603pt;}
._2e{width:46.480533pt;}
._2f{width:47.872000pt;}
._1c{width:48.857600pt;}
._27{width:50.841600pt;}
._1b{width:53.540800pt;}
._28{width:56.179200pt;}
._3b{width:59.801600pt;}
._23{width:62.361600pt;}
._31{width:63.449600pt;}
._2a{width:67.424000pt;}
._21{width:68.928000pt;}
._32{width:70.080000pt;}
._34{width:74.284800pt;}
._2b{width:76.576000pt;}
._26{width:79.910400pt;}
._2c{width:88.976533pt;}
._30{width:90.777600pt;}
._33{width:93.235200pt;}
._29{width:103.356267pt;}
._1f{width:104.326400pt;}
._25{width:115.712000pt;}
._36{width:119.200000pt;}
.fsf{font-size:10.240000pt;}
.fse{font-size:34.560000pt;}
.fsc{font-size:42.240000pt;}
.fs6{font-size:43.505722pt;}
.fs3{font-size:50.097498pt;}
.fsd{font-size:52.480000pt;}
.fs7{font-size:55.370918pt;}
.fsa{font-size:57.600000pt;}
.fs9{font-size:60.644339pt;}
.fsb{font-size:64.000000pt;}
.fs5{font-size:65.917760pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:76.464602pt;}
.fs4{font-size:88.329798pt;}
.fs2{font-size:98.876640pt;}
.fs1{font-size:121.288678pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:3.520000pt;}
.y176{bottom:3.840000pt;}
.y31{bottom:4.284709pt;}
.y124{bottom:7.040000pt;}
.y165{bottom:7.360000pt;}
.y160{bottom:8.640000pt;}
.y15d{bottom:9.280000pt;}
.y1c9{bottom:10.559867pt;}
.y1{bottom:11.338541pt;}
.y130{bottom:11.840000pt;}
.y141{bottom:12.800000pt;}
.y1c0{bottom:13.120000pt;}
.y14b{bottom:14.399987pt;}
.y186{bottom:22.079947pt;}
.y16b{bottom:22.080000pt;}
.y123{bottom:25.280000pt;}
.y164{bottom:29.120000pt;}
.y15f{bottom:30.080000pt;}
.y15c{bottom:30.400000pt;}
.y12f{bottom:37.440000pt;}
.y169{bottom:39.183779pt;}
.y38{bottom:39.362552pt;}
.y152{bottom:39.680000pt;}
.y35{bottom:39.874792pt;}
.y185{bottom:40.319947pt;}
.y146{bottom:40.319973pt;}
.y14e{bottom:40.320000pt;}
.y140{bottom:40.640000pt;}
.y14a{bottom:41.919973pt;}
.y163{bottom:50.240000pt;}
.y167{bottom:51.200000pt;}
.y15b{bottom:51.520000pt;}
.y37{bottom:56.962552pt;}
.y168{bottom:57.103779pt;}
.y198{bottom:57.282552pt;}
.y184{bottom:58.879947pt;}
.y175{bottom:58.880000pt;}
.y12e{bottom:64.960000pt;}
.y34{bottom:65.253130pt;}
.y151{bottom:67.200000pt;}
.y145{bottom:67.839973pt;}
.y14d{bottom:67.840000pt;}
.y13f{bottom:68.160000pt;}
.y149{bottom:69.759973pt;}
.y162{bottom:71.360000pt;}
.y36{bottom:75.760579pt;}
.y183{bottom:77.119933pt;}
.y18e{bottom:77.120000pt;}
.y18c{bottom:77.439867pt;}
.y174{bottom:77.440000pt;}
.y1a2{bottom:88.002552pt;}
.y20e{bottom:88.642552pt;}
.y33{bottom:90.343077pt;}
.y21e{bottom:90.562552pt;}
.y12d{bottom:92.480000pt;}
.y10d{bottom:92.482552pt;}
.y150{bottom:95.040000pt;}
.y182{bottom:95.359947pt;}
.y144{bottom:95.359973pt;}
.y13e{bottom:95.680000pt;}
.y148{bottom:97.279973pt;}
.y104{bottom:98.562552pt;}
.y17{bottom:98.882552pt;}
.y55{bottom:100.162552pt;}
.y30{bottom:101.600987pt;}
.y11b{bottom:101.762552pt;}
.y142{bottom:101.901093pt;}
.y1bc{bottom:103.042552pt;}
.yf9{bottom:103.362552pt;}
.yaf{bottom:104.962539pt;}
.ydc{bottom:105.602552pt;}
.y89{bottom:108.482539pt;}
.y1d8{bottom:109.122552pt;}
.y1b8{bottom:113.602552pt;}
.y181{bottom:113.919947pt;}
.y173{bottom:113.920000pt;}
.y18b{bottom:114.240000pt;}
.yd2{bottom:115.522552pt;}
.y32{bottom:115.721415pt;}
.y208{bottom:116.482539pt;}
.y137{bottom:117.120000pt;}
.y21d{bottom:118.082552pt;}
.y10c{bottom:120.002552pt;}
.y12c{bottom:120.320000pt;}
.y71{bottom:120.962539pt;}
.y13d{bottom:123.200000pt;}
.y143{bottom:124.479973pt;}
.y147{bottom:124.799973pt;}
.y179{bottom:125.722320pt;}
.y177{bottom:125.722333pt;}
.y103{bottom:126.082525pt;}
.yee{bottom:128.322525pt;}
.y11a{bottom:129.282525pt;}
.y1bb{bottom:130.562525pt;}
.yf8{bottom:130.882525pt;}
.y180{bottom:132.159933pt;}
.y18a{bottom:132.479867pt;}
.y172{bottom:132.480000pt;}
.yae{bottom:132.482525pt;}
.ydb{bottom:133.122525pt;}
.y1d7{bottom:136.642525pt;}
.y54{bottom:138.562525pt;}
.y1b7{bottom:141.122525pt;}
.y16{bottom:141.762525pt;}
.ybc{bottom:143.042525pt;}
.y207{bottom:144.002525pt;}
.y136{bottom:144.640000pt;}
.y21c{bottom:145.602525pt;}
.y10b{bottom:147.522525pt;}
.y12b{bottom:147.840000pt;}
.y17f{bottom:150.719947pt;}
.y171{bottom:150.720000pt;}
.y13c{bottom:151.040000pt;}
.y88{bottom:151.362525pt;}
.y1e5{bottom:153.602525pt;}
.yed{bottom:155.842525pt;}
.y119{bottom:156.802525pt;}
.y1e1{bottom:158.082525pt;}
.yf7{bottom:158.402525pt;}
.yda{bottom:160.642525pt;}
.y70{bottom:163.842525pt;}
.y1d6{bottom:164.162525pt;}
.y102{bottom:164.482525pt;}
.y9d{bottom:166.082525pt;}
.y17e{bottom:168.959947pt;}
.y1ba{bottom:168.962525pt;}
.y170{bottom:169.280000pt;}
.y1a1{bottom:170.562525pt;}
.yad{bottom:170.882525pt;}
.y206{bottom:171.522525pt;}
.y135{bottom:172.160000pt;}
.y21b{bottom:173.442525pt;}
.y10a{bottom:175.042525pt;}
.y12a{bottom:175.360000pt;}
.y53{bottom:176.962525pt;}
.y13b{bottom:178.560000pt;}
.y1b6{bottom:179.522525pt;}
.y1e4{bottom:181.122525pt;}
.y197{bottom:181.402267pt;}
.y120{bottom:181.442525pt;}
.yec{bottom:183.362525pt;}
.y15{bottom:184.642525pt;}
.y1f3{bottom:185.602525pt;}
.y17d{bottom:187.519947pt;}
.y16f{bottom:187.520000pt;}
.y188{bottom:187.840000pt;}
.yd9{bottom:188.162525pt;}
.y101{bottom:192.002525pt;}
.y9c{bottom:193.602525pt;}
.y87{bottom:194.242525pt;}
.y1e0{bottom:196.482525pt;}
.yf6{bottom:196.802525pt;}
.yac{bottom:198.402525pt;}
.y205{bottom:199.042525pt;}
.y134{bottom:199.680000pt;}
.y21a{bottom:200.962525pt;}
.y129{bottom:202.880000pt;}
.y109{bottom:202.882525pt;}
.y17c{bottom:205.759947pt;}
.y13a{bottom:206.080000pt;}
.y6f{bottom:206.722525pt;}
.y1b5{bottom:207.042525pt;}
.yd1{bottom:208.962525pt;}
.yeb{bottom:210.882525pt;}
.y118{bottom:212.162525pt;}
.y1f2{bottom:213.122525pt;}
.y52{bottom:215.042525pt;}
.y100{bottom:219.522525pt;}
.y9b{bottom:221.442525pt;}
.yd8{bottom:224.002525pt;}
.y17b{bottom:224.319947pt;}
.y16e{bottom:224.320000pt;}
.y196{bottom:224.640000pt;}
.yab{bottom:225.922525pt;}
.y204{bottom:226.882525pt;}
.y133{bottom:227.520000pt;}
.y14{bottom:227.522525pt;}
.y219{bottom:228.482525pt;}
.y108{bottom:230.402525pt;}
.y128{bottom:230.720000pt;}
.y139{bottom:233.600000pt;}
.y159{bottom:233.922525pt;}
.y1b4{bottom:234.562525pt;}
.yf5{bottom:234.882525pt;}
.y1a0{bottom:236.482525pt;}
.y86{bottom:237.122525pt;}
.yea{bottom:238.722525pt;}
.y117{bottom:239.682525pt;}
.y1f1{bottom:240.962525pt;}
.y138{bottom:242.061067pt;}
.y17a{bottom:242.559947pt;}
.y195{bottom:242.880000pt;}
.y1d5{bottom:247.042525pt;}
.y6e{bottom:247.362525pt;}
.y9a{bottom:248.962525pt;}
.y1df{bottom:251.522525pt;}
.y51{bottom:253.442525pt;}
.y203{bottom:254.402525pt;}
.y132{bottom:255.040000pt;}
.y218{bottom:256.002525pt;}
.yff{bottom:257.922525pt;}
.y127{bottom:258.240000pt;}
.y178{bottom:261.119933pt;}
.y194{bottom:261.440000pt;}
.y1b3{bottom:262.402525pt;}
.yf4{bottom:262.722525pt;}
.y19f{bottom:264.002525pt;}
.y1f0{bottom:268.482525pt;}
.y85{bottom:269.442525pt;}
.y13{bottom:270.402525pt;}
.y158{bottom:272.322525pt;}
.y1d4{bottom:274.562525pt;}
.y11f{bottom:274.882525pt;}
.ye9{bottom:276.802525pt;}
.y116{bottom:278.082525pt;}
.y2f{bottom:279.180040pt;}
.yd7{bottom:279.362525pt;}
.y193{bottom:279.680000pt;}
.y50{bottom:280.962525pt;}
.yaa{bottom:281.282525pt;}
.y202{bottom:281.922525pt;}
.y131{bottom:282.560000pt;}
.y217{bottom:283.522525pt;}
.y126{bottom:284.480000pt;}
.y6d{bottom:285.442525pt;}
.y238{bottom:287.042525pt;}
.y99{bottom:287.362525pt;}
.y1b2{bottom:289.922525pt;}
.yf3{bottom:290.242525pt;}
.y1e3{bottom:291.522525pt;}
.y19e{bottom:291.842525pt;}
.y1ef{bottom:296.002525pt;}
.y192{bottom:298.240000pt;}
.y157{bottom:299.842525pt;}
.y84{bottom:301.442525pt;}
.y11e{bottom:302.402525pt;}
.ye8{bottom:304.322525pt;}
.y1de{bottom:306.882525pt;}
.ybb{bottom:308.802525pt;}
.y201{bottom:309.442525pt;}
.y18d{bottom:310.362267pt;}
.y216{bottom:311.362525pt;}
.y12{bottom:313.282525pt;}
.y98{bottom:314.882525pt;}
.y191{bottom:316.480000pt;}
.y2e{bottom:317.412340pt;}
.y1b1{bottom:317.442525pt;}
.y115{bottom:318.722525pt;}
.y4f{bottom:319.362525pt;}
.y1ee{bottom:323.522525pt;}
.y107{bottom:323.842525pt;}
.y237{bottom:325.122525pt;}
.yf2{bottom:328.642525pt;}
.y18f{bottom:329.242267pt;}
.y11d{bottom:329.922525pt;}
.y83{bottom:333.762525pt;}
.y1dd{bottom:334.402525pt;}
.y190{bottom:335.040000pt;}
.yba{bottom:336.322525pt;}
.y200{bottom:337.282525pt;}
.y156{bottom:337.922525pt;}
.y215{bottom:338.882525pt;}
.yfe{bottom:340.802525pt;}
.y97{bottom:342.402525pt;}
.ye7{bottom:342.722525pt;}
.y1b0{bottom:344.962525pt;}
.y4e{bottom:346.882525pt;}
.y6c{bottom:351.362525pt;}
.y236{bottom:352.962525pt;}
.y2d{bottom:353.337520pt;}
.y11{bottom:356.162525pt;}
.y1d3{bottom:357.442525pt;}
.ya9{bottom:357.762525pt;}
.y114{bottom:359.042525pt;}
.y1dc{bottom:361.922525pt;}
.yb9{bottom:363.842525pt;}
.y1ff{bottom:364.802525pt;}
.y82{bottom:365.762525pt;}
.y214{bottom:366.402525pt;}
.yfd{bottom:368.322525pt;}
.y1af{bottom:372.802525pt;}
.y4d{bottom:374.402525pt;}
.y6b{bottom:378.882525pt;}
.y235{bottom:380.482525pt;}
.y96{bottom:380.802525pt;}
.ye6{bottom:381.122525pt;}
.y2c{bottom:383.659689pt;}
.y1d2{bottom:384.962525pt;}
.ya8{bottom:385.282525pt;}
.y113{bottom:386.882525pt;}
.y1e2{bottom:387.522525pt;}
.yd0{bottom:389.762525pt;}
.yb8{bottom:391.682525pt;}
.yf1{bottom:392.002525pt;}
.y1fe{bottom:392.322525pt;}
.y166{bottom:393.421067pt;}
.y213{bottom:393.922525pt;}
.y81{bottom:398.082525pt;}
.y10{bottom:398.722525pt;}
.y1ae{bottom:400.322525pt;}
.y4c{bottom:401.922525pt;}
.y16d{bottom:402.202267pt;}
.y19d{bottom:402.242525pt;}
.y1ed{bottom:406.402525pt;}
.y6a{bottom:406.722525pt;}
.y234{bottom:408.002525pt;}
.ye5{bottom:408.642525pt;}
.ya7{bottom:412.802525pt;}
.y112{bottom:414.402525pt;}
.yf0{bottom:415.362525pt;}
.ycf{bottom:417.282525pt;}
.y95{bottom:418.882525pt;}
.y1fd{bottom:419.842525pt;}
.y212{bottom:421.762525pt;}
.y2b{bottom:421.933189pt;}
.y1ad{bottom:427.842525pt;}
.y4b{bottom:429.442525pt;}
.yb7{bottom:429.762525pt;}
.y80{bottom:430.402525pt;}
.y1ec{bottom:433.922525pt;}
.y69{bottom:434.242525pt;}
.y233{bottom:435.522525pt;}
.ye4{bottom:436.162525pt;}
.ya6{bottom:440.322525pt;}
.yf{bottom:441.602525pt;}
.yce{bottom:444.802525pt;}
.yef{bottom:447.682525pt;}
.y211{bottom:449.282525pt;}
.y11c{bottom:451.202525pt;}
.y111{bottom:455.042525pt;}
.y1ac{bottom:455.362525pt;}
.y1db{bottom:455.682525pt;}
.y2a{bottom:456.869601pt;}
.y4a{bottom:457.282525pt;}
.y1eb{bottom:461.442525pt;}
.y68{bottom:461.762525pt;}
.y7f{bottom:462.402525pt;}
.y232{bottom:463.362525pt;}
.ye3{bottom:463.682525pt;}
.yb6{bottom:468.162525pt;}
.y161{bottom:472.141067pt;}
.ycd{bottom:472.322525pt;}
.y1fc{bottom:475.202525pt;}
.y187{bottom:476.442267pt;}
.y189{bottom:476.442400pt;}
.y210{bottom:476.802525pt;}
.y1d1{bottom:478.402525pt;}
.ya5{bottom:478.722525pt;}
.y1ab{bottom:483.202525pt;}
.y29{bottom:483.236705pt;}
.ye{bottom:484.482525pt;}
.y49{bottom:484.802525pt;}
.y67{bottom:489.282525pt;}
.y231{bottom:490.882525pt;}
.y125{bottom:491.021067pt;}
.ye2{bottom:491.522525pt;}
.y1b9{bottom:493.762525pt;}
.y7e{bottom:494.722525pt;}
.y94{bottom:495.362525pt;}
.yb5{bottom:495.682525pt;}
.y15e{bottom:498.381067pt;}
.ycc{bottom:500.162525pt;}
.y20d{bottom:502.722525pt;}
.y28{bottom:503.698677pt;}
.y1fb{bottom:504.002525pt;}
.y20f{bottom:504.322525pt;}
.ya4{bottom:506.242525pt;}
.y1da{bottom:510.722525pt;}
.y48{bottom:512.322525pt;}
.y1ea{bottom:516.802525pt;}
.y66{bottom:517.122525pt;}
.y230{bottom:518.402525pt;}
.ye1{bottom:519.042525pt;}
.y1aa{bottom:521.282525pt;}
.y93{bottom:523.202525pt;}
.y7d{bottom:526.722525pt;}
.yd{bottom:527.362525pt;}
.ycb{bottom:527.682525pt;}
.y20c{bottom:530.242525pt;}
.y1fa{bottom:532.162525pt;}
.ya3{bottom:533.762525pt;}
.y27{bottom:536.657557pt;}
.yfc{bottom:538.242525pt;}
.y47{bottom:539.842525pt;}
.y1e9{bottom:544.322525pt;}
.y65{bottom:544.642525pt;}
.y22f{bottom:545.922525pt;}
.ye0{bottom:546.562525pt;}
.y1a9{bottom:548.802525pt;}
.y92{bottom:550.722525pt;}
.y106{bottom:555.202525pt;}
.y20b{bottom:558.082525pt;}
.y7c{bottom:559.042525pt;}
.y1f9{bottom:559.682525pt;}
.y1d0{bottom:561.282525pt;}
.yb4{bottom:561.602525pt;}
.y26{bottom:564.013427pt;}
.yca{bottom:565.762525pt;}
.y46{bottom:567.682525pt;}
.yc{bottom:570.242525pt;}
.y1e8{bottom:571.842525pt;}
.y64{bottom:572.162525pt;}
.y22e{bottom:573.762525pt;}
.ydf{bottom:574.082525pt;}
.y1a8{bottom:576.642525pt;}
.y91{bottom:578.242525pt;}
.y105{bottom:582.722525pt;}
.y20a{bottom:585.602525pt;}
.y1f8{bottom:587.202525pt;}
.y1cf{bottom:588.802525pt;}
.y7b{bottom:591.362525pt;}
.y25{bottom:591.369298pt;}
.yc9{bottom:593.602525pt;}
.yb3{bottom:599.682525pt;}
.y22d{bottom:601.282525pt;}
.y15a{bottom:603.341067pt;}
.y1a7{bottom:604.162525pt;}
.y45{bottom:605.762525pt;}
.yde{bottom:609.922525pt;}
.y63{bottom:610.562525pt;}
.yb{bottom:613.122525pt;}
.y1f7{bottom:614.722525pt;}
.y1ce{bottom:616.642525pt;}
.yc8{bottom:621.122525pt;}
.y7a{bottom:623.362525pt;}
.y19c{bottom:627.202525pt;}
.yb2{bottom:627.522525pt;}
.y24{bottom:627.651531pt;}
.y22c{bottom:628.802525pt;}
.y1a6{bottom:631.682525pt;}
.ydd{bottom:633.282525pt;}
.y44{bottom:633.602525pt;}
.y62{bottom:638.082525pt;}
.y16a{bottom:642.202267pt;}
.y209{bottom:642.242525pt;}
.y1f6{bottom:642.562525pt;}
.y110{bottom:644.162525pt;}
.yc7{bottom:648.642525pt;}
.y23{bottom:654.677813pt;}
.y1e7{bottom:654.722525pt;}
.yb1{bottom:655.042525pt;}
.y79{bottom:655.682525pt;}
.ya{bottom:656.002525pt;}
.y22b{bottom:656.322525pt;}
.y1a5{bottom:659.202525pt;}
.y1d9{bottom:659.522525pt;}
.y43{bottom:661.122525pt;}
.y61{bottom:665.602525pt;}
.y1f5{bottom:670.082525pt;}
.y10f{bottom:671.682525pt;}
.yfb{bottom:676.162525pt;}
.y22{bottom:682.033683pt;}
.y1e6{bottom:682.242525pt;}
.y22a{bottom:684.162525pt;}
.yc6{bottom:687.042525pt;}
.y78{bottom:688.002525pt;}
.y42{bottom:688.642525pt;}
.y60{bottom:693.122525pt;}
.y1f4{bottom:697.602525pt;}
.y9{bottom:698.882525pt;}
.y10e{bottom:699.202525pt;}
.y1ca{bottom:699.522525pt;}
.yfa{bottom:704.002525pt;}
.y21{bottom:709.389554pt;}
.y1cd{bottom:710.082525pt;}
.y229{bottom:711.682525pt;}
.y155{bottom:713.282525pt;}
.yd6{bottom:714.562525pt;}
.y90{bottom:716.162525pt;}
.y77{bottom:720.002525pt;}
.y19b{bottom:720.642525pt;}
.y5f{bottom:720.962525pt;}
.yc5{bottom:725.122525pt;}
.y1c8{bottom:725.581200pt;}
.y41{bottom:727.042525pt;}
.y20{bottom:736.786623pt;}
.y1cc{bottom:737.602525pt;}
.y228{bottom:739.202525pt;}
.y154{bottom:740.802525pt;}
.y8{bottom:741.762525pt;}
.yd5{bottom:742.082525pt;}
.yb0{bottom:748.482525pt;}
.y1c7{bottom:748.941067pt;}
.y76{bottom:752.322525pt;}
.yc4{bottom:752.962525pt;}
.y40{bottom:754.562525pt;}
.y5e{bottom:759.042525pt;}
.y1f{bottom:763.812904pt;}
.y1cb{bottom:765.122525pt;}
.y227{bottom:766.722525pt;}
.y1a4{bottom:769.602525pt;}
.yd4{bottom:769.922525pt;}
.y1c6{bottom:776.781067pt;}
.y153{bottom:778.882525pt;}
.yc3{bottom:780.482525pt;}
.y8f{bottom:782.082525pt;}
.y75{bottom:784.322525pt;}
.y7{bottom:784.642525pt;}
.y5d{bottom:786.562525pt;}
.y122{bottom:788.941067pt;}
.y1e{bottom:791.168775pt;}
.y3f{bottom:792.642525pt;}
.y226{bottom:794.562525pt;}
.yd3{bottom:797.442525pt;}
.y1c5{bottom:804.301067pt;}
.y14f{bottom:805.901067pt;}
.yc2{bottom:808.002525pt;}
.y8e{bottom:809.602525pt;}
.y19a{bottom:814.082525pt;}
.ya2{bottom:814.402525pt;}
.y74{bottom:816.642525pt;}
.y1d{bottom:818.524645pt;}
.y3e{bottom:820.482525pt;}
.y225{bottom:822.082525pt;}
.y5c{bottom:824.962525pt;}
.y6{bottom:827.522525pt;}
.y1c4{bottom:831.821067pt;}
.yc1{bottom:835.522525pt;}
.y8d{bottom:837.442525pt;}
.y121{bottom:839.682525pt;}
.ya1{bottom:841.922525pt;}
.y1c{bottom:845.578392pt;}
.y3d{bottom:848.002525pt;}
.y73{bottom:848.962525pt;}
.y224{bottom:849.602525pt;}
.y5b{bottom:852.482525pt;}
.y1c3{bottom:859.341067pt;}
.y1a3{bottom:863.042525pt;}
.yc0{bottom:863.362525pt;}
.y8c{bottom:864.962525pt;}
.ya0{bottom:869.442525pt;}
.y5{bottom:870.402525pt;}
.y3c{bottom:875.522525pt;}
.y1b{bottom:876.230151pt;}
.y5a{bottom:880.002525pt;}
.y72{bottom:880.962525pt;}
.y1c2{bottom:887.181067pt;}
.y223{bottom:888.002525pt;}
.ybf{bottom:890.882525pt;}
.y8b{bottom:892.482525pt;}
.y9f{bottom:896.962525pt;}
.y3b{bottom:903.042525pt;}
.y59{bottom:907.842525pt;}
.y4{bottom:913.282525pt;}
.y1c1{bottom:914.701067pt;}
.y222{bottom:915.522525pt;}
.y14c{bottom:916.301067pt;}
.y1a{bottom:917.758340pt;}
.ybe{bottom:918.402525pt;}
.y8a{bottom:920.002525pt;}
.y3a{bottom:930.882525pt;}
.y58{bottom:935.362525pt;}
.y1bf{bottom:942.861067pt;}
.ybd{bottom:945.922525pt;}
.y221{bottom:953.602525pt;}
.y3{bottom:956.162525pt;}
.y39{bottom:958.402525pt;}
.y19{bottom:959.657316pt;}
.y57{bottom:962.882525pt;}
.y199{bottom:973.442525pt;}
.y9e{bottom:973.762525pt;}
.y1be{bottom:980.482525pt;}
.y220{bottom:981.442525pt;}
.y21f{bottom:998.722525pt;}
.y2{bottom:999.042525pt;}
.y56{bottom:1001.282525pt;}
.y18{bottom:1002.833449pt;}
.y1bd{bottom:1003.842525pt;}
.h44{height:6.920000pt;}
.h42{height:22.719893pt;}
.h40{height:27.519933pt;}
.h3d{height:27.520013pt;}
.h3c{height:27.839920pt;}
.h3f{height:27.840000pt;}
.h6{height:33.390178pt;}
.h1b{height:34.978125pt;}
.h14{height:36.438750pt;}
.h2e{height:36.799973pt;}
.h2c{height:36.800013pt;}
.hf{height:38.390625pt;}
.h9{height:38.641068pt;}
.h19{height:39.999920pt;}
.h17{height:40.000000pt;}
.he{height:40.419689pt;}
.h1e{height:42.656250pt;}
.h2d{height:43.375000pt;}
.h18{height:43.812500pt;}
.h11{height:44.437500pt;}
.h30{height:44.468750pt;}
.h8{height:45.769070pt;}
.h43{height:46.048125pt;}
.h3b{height:46.176250pt;}
.h15{height:48.316783pt;}
.ha{height:49.179541pt;}
.hc{height:53.092121pt;}
.h39{height:55.040013pt;}
.h10{height:56.156250pt;}
.h3a{height:56.312500pt;}
.h34{height:58.789375pt;}
.h31{height:58.789908pt;}
.hd{height:61.330553pt;}
.h3{height:65.141250pt;}
.h12{height:66.503125pt;}
.h16{height:66.503232pt;}
.h13{height:66.503658pt;}
.h3e{height:66.606250pt;}
.h41{height:66.606783pt;}
.h28{height:68.479933pt;}
.h27{height:68.480027pt;}
.h23{height:68.799973pt;}
.h24{height:68.800013pt;}
.h7{height:78.453078pt;}
.h5{height:87.820609pt;}
.h4{height:107.726614pt;}
.h25{height:108.479987pt;}
.h26{height:108.480027pt;}
.h21{height:109.759933pt;}
.h22{height:109.760013pt;}
.h1f{height:110.399907pt;}
.h20{height:110.399987pt;}
.h1d{height:139.520000pt;}
.h38{height:147.200000pt;}
.h35{height:165.440000pt;}
.hb{height:171.413600pt;}
.h36{height:183.680000pt;}
.h33{height:202.560000pt;}
.h2f{height:239.040000pt;}
.h1c{height:248.320000pt;}
.h32{height:275.840000pt;}
.h1a{height:297.280000pt;}
.h37{height:349.760000pt;}
.h2b{height:771.023733pt;}
.h29{height:793.700800pt;}
.h2a{height:794.000000pt;}
.h2{height:1099.842533pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w1c{width:18.879987pt;}
.w1d{width:19.840000pt;}
.w1e{width:22.399947pt;}
.w1f{width:22.399987pt;}
.w21{width:30.399947pt;}
.w20{width:30.399987pt;}
.w12{width:90.240013pt;}
.w8{width:95.359947pt;}
.w7{width:95.359987pt;}
.w13{width:97.280013pt;}
.w22{width:103.360027pt;}
.w17{width:106.879920pt;}
.w14{width:106.879960pt;}
.wa{width:181.759867pt;}
.w9{width:181.760000pt;}
.w5{width:184.917733pt;}
.wb{width:186.880000pt;}
.wc{width:199.680000pt;}
.w4{width:204.403600pt;}
.w23{width:225.920000pt;}
.w1b{width:226.240000pt;}
.we{width:246.719867pt;}
.wd{width:246.720000pt;}
.w6{width:313.600000pt;}
.w19{width:338.879733pt;}
.w18{width:338.879867pt;}
.w16{width:338.880000pt;}
.w15{width:350.720000pt;}
.w24{width:585.920000pt;}
.w3{width:770.383733pt;}
.w2{width:771.023733pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.w1a{width:986.880000pt;}
.w11{width:1099.842533pt;}
.wf{width:1122.519733pt;}
.w10{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x22{left:7.040000pt;}
.x13{left:8.898365pt;}
.x2d{left:10.207067pt;}
.x1{left:11.338535pt;}
.x38{left:15.847933pt;}
.x33{left:19.066533pt;}
.x3b{left:22.478800pt;}
.x20{left:24.255160pt;}
.x15{left:28.672714pt;}
.x40{left:30.720000pt;}
.x39{left:32.504187pt;}
.x4d{left:34.898667pt;}
.x2c{left:37.281333pt;}
.x34{left:44.187600pt;}
.x14{left:45.151338pt;}
.x4e{left:47.793200pt;}
.x30{left:51.989600pt;}
.x27{left:54.239733pt;}
.x3f{left:62.837467pt;}
.x31{left:63.730533pt;}
.x2e{left:67.211067pt;}
.x16{left:68.550984pt;}
.x32{left:71.211067pt;}
.x35{left:75.211067pt;}
.x28{left:78.914267pt;}
.x2a{left:80.703333pt;}
.xb{left:90.335817pt;}
.x25{left:93.133067pt;}
.x29{left:96.687733pt;}
.x9{left:98.575129pt;}
.x2{left:102.719999pt;}
.x26{left:103.789200pt;}
.x6{left:107.473586pt;}
.x1c{left:121.586519pt;}
.x7{left:122.633920pt;}
.x19{left:126.719999pt;}
.x2b{left:137.418533pt;}
.x8{left:143.391493pt;}
.x1f{left:145.586532pt;}
.x1a{left:150.719999pt;}
.xa{left:151.960378pt;}
.x5{left:156.244820pt;}
.x3{left:170.746009pt;}
.x24{left:174.906533pt;}
.x3a{left:181.898667pt;}
.x11{left:199.862400pt;}
.xd{left:201.725822pt;}
.x10{left:218.575215pt;}
.x4{left:223.848375pt;}
.x3c{left:279.818667pt;}
.xf{left:323.049691pt;}
.x41{left:333.258533pt;}
.xc{left:342.494468pt;}
.x42{left:352.138533pt;}
.x43{left:371.978533pt;}
.xe{left:382.400202pt;}
.x3d{left:387.658667pt;}
.x44{left:394.378533pt;}
.x2f{left:400.138533pt;}
.x12{left:404.266000pt;}
.x45{left:416.778533pt;}
.x21{left:421.578533pt;}
.x46{left:439.178533pt;}
.x47{left:461.578533pt;}
.x48{left:483.978533pt;}
.x49{left:506.378533pt;}
.x23{left:517.578533pt;}
.x4a{left:528.778533pt;}
.x4b{left:559.178533pt;}
.x4c{left:589.578533pt;}
.x1d{left:654.786132pt;}
.x17{left:662.219732pt;}
.x18{left:669.653332pt;}
.x1e{left:709.106399pt;}
.x1b{left:732.160132pt;}
.x3e{left:739.018667pt;}
.x36{left:1002.439644pt;}
.x37{left:1017.306844pt;}
}




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