
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_941335309677a69d4b45ea49.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_c94c1576597c995a9743f5d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_34f47ceb44bb0577c1041537.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_5fc3b979115ec93cbcf951f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_c88e0055d4552ee96d94e5f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_aeafff7d98437037b6e24b61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_77bab6cefb5f7507462d27bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2d49969e722ca0a967824a12.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_161849e5060234f757ee78e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v10{vertical-align:-169.500000px;}
.v1f{vertical-align:-151.920000px;}
.v20{vertical-align:-130.200000px;}
.ve{vertical-align:-94.740000px;}
.vc{vertical-align:-89.700000px;}
.vb{vertical-align:-68.940000px;}
.v1{vertical-align:-66.960000px;}
.v1e{vertical-align:-60.480000px;}
.v1d{vertical-align:-55.980000px;}
.vd{vertical-align:-39.900000px;}
.v1c{vertical-align:-35.520000px;}
.v1b{vertical-align:-29.640000px;}
.v5{vertical-align:-28.200000px;}
.v11{vertical-align:-24.960000px;}
.v3{vertical-align:-23.760000px;}
.vf{vertical-align:-19.920000px;}
.v17{vertical-align:-12.780000px;}
.v19{vertical-align:-10.380000px;}
.v1a{vertical-align:-5.880000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:4.740000px;}
.v14{vertical-align:8.040000px;}
.v18{vertical-align:11.820000px;}
.v8{vertical-align:17.280000px;}
.va{vertical-align:18.720000px;}
.v12{vertical-align:19.980000px;}
.v13{vertical-align:22.320000px;}
.v2{vertical-align:23.760000px;}
.v9{vertical-align:28.080000px;}
.v15{vertical-align:33.540000px;}
.v4{vertical-align:70.440000px;}
.v6{vertical-align:98.640000px;}
.v7{vertical-align:117.360000px;}
.ls12{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.315600px;}
.ls8{letter-spacing:-0.274800px;}
.ls19{letter-spacing:-0.262200px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.080640px;}
.ls14{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.135360px;}
.ls15{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.720000px;}
.lsc{letter-spacing:6.480000px;}
.ls17{letter-spacing:6.785280px;}
.ls16{letter-spacing:39.905280px;}
.ls9{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws1{word-spacing:-59.760000px;}
.ws9{word-spacing:-28.712400px;}
.ws12{word-spacing:-20.056032px;}
.ws11{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-16.974600px;}
.ws27{word-spacing:-16.865400px;}
.ws22{word-spacing:-16.822200px;}
.ws21{word-spacing:-16.712400px;}
.ws1d{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws28{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.145400px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.124400px;}
.ws6{word-spacing:0.000000px;}
.ws26{word-spacing:256.152000px;}
.ws20{word-spacing:266.232000px;}
.ws1c{word-spacing:291.312000px;}
.ws18{word-spacing:349.632000px;}
.ws23{word-spacing:355.008000px;}
.ws15{word-spacing:389.352000px;}
.ws25{word-spacing:395.256000px;}
.ws24{word-spacing:395.436000px;}
.ws1e{word-spacing:405.336000px;}
.ws1f{word-spacing:405.396000px;}
.ws1a{word-spacing:430.296000px;}
.ws19{word-spacing:430.416000px;}
.ws1b{word-spacing:430.455312px;}
.ws16{word-spacing:488.736000px;}
.ws17{word-spacing:488.775312px;}
.ws14{word-spacing:528.348000px;}
.ws10{word-spacing:528.456000px;}
.ws13{word-spacing:528.516000px;}
.wsf{word-spacing:528.636000px;}
._c{margin-left:-6.742560px;}
._b{margin-left:-5.491200px;}
._8{margin-left:-4.206240px;}
._5{margin-left:-2.995680px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._6{width:2.715840px;}
._7{width:4.092960px;}
._d{width:5.177280px;}
._a{width:6.624000px;}
._9{width:7.750080px;}
._1a{width:9.259200px;}
._19{width:10.679040px;}
._f{width:12.034560px;}
._e{width:13.726080px;}
._18{width:15.367680px;}
._21{width:17.832960px;}
._23{width:18.878400px;}
._36{width:19.926720px;}
._22{width:20.931840px;}
._11{width:21.962880px;}
._16{width:23.080320px;}
._12{width:24.641280px;}
._13{width:25.767360px;}
._15{width:26.952000px;}
._14{width:28.563840px;}
._27{width:30.286080px;}
._1d{width:31.581120px;}
._1e{width:32.658240px;}
._10{width:34.246080px;}
._2d{width:35.253120px;}
._4{width:36.394080px;}
._3{width:37.624320px;}
._17{width:38.882880px;}
._20{width:40.273920px;}
._1b{width:41.400000px;}
._1c{width:42.658560px;}
._2e{width:44.314560px;}
._2f{width:45.506880px;}
._30{width:46.932480px;}
._29{width:48.941760px;}
._28{width:50.077440px;}
._34{width:51.203520px;}
._3e{width:53.087040px;}
._3d{width:54.250560px;}
._3b{width:55.929600px;}
._2a{width:56.976960px;}
._45{width:63.047040px;}
._38{width:64.824960px;}
._26{width:66.121920px;}
._25{width:67.233600px;}
._2b{width:69.018240px;}
._2c{width:70.247520px;}
._3c{width:72.406080px;}
._24{width:75.594240px;}
._32{width:77.633280px;}
._44{width:85.714560px;}
._43{width:91.344960px;}
._3a{width:98.035200px;}
._42{width:100.284480px;}
._3f{width:104.460480px;}
._41{width:108.028800px;}
._40{width:111.761280px;}
._33{width:119.699280px;}
._1f{width:120.755520px;}
._39{width:122.731728px;}
._35{width:130.224000px;}
._46{width:149.238720px;}
._31{width:386.175360px;}
._2{width:961.680000px;}
._37{width:2709.240000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(33,33,33);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.ya3{bottom:12.240000px;}
.y95{bottom:12.420000px;}
.y9c{bottom:12.450000px;}
.ybd{bottom:13.500000px;}
.y121{bottom:13.530000px;}
.yeb{bottom:13.545000px;}
.y156{bottom:13.674000px;}
.ye4{bottom:13.680000px;}
.y132{bottom:13.860000px;}
.y1fc{bottom:14.040000px;}
.y16a{bottom:14.070000px;}
.ydf{bottom:14.220000px;}
.y1d2{bottom:14.400000px;}
.y9a{bottom:14.580000px;}
.y14d{bottom:14.760000px;}
.y106{bottom:14.940000px;}
.y17b{bottom:14.970000px;}
.y1a2{bottom:14.985000px;}
.y153{bottom:15.114000px;}
.yf1{bottom:15.120000px;}
.y10e{bottom:15.300000px;}
.yd4{bottom:15.480000px;}
.y14c{bottom:15.660000px;}
.y1e5{bottom:15.840000px;}
.ydd{bottom:16.200000px;}
.yc5{bottom:16.920000px;}
.y11e{bottom:17.100000px;}
.y11c{bottom:17.430000px;}
.y165{bottom:17.460000px;}
.y10d{bottom:17.820000px;}
.y1e4{bottom:18.174000px;}
.yd2{bottom:18.720000px;}
.ye8{bottom:18.765000px;}
.yac{bottom:19.800000px;}
.ya{bottom:20.880000px;}
.yca{bottom:21.960000px;}
.yc2{bottom:22.140000px;}
.ya0{bottom:23.760000px;}
.y1f5{bottom:25.020000px;}
.y1ef{bottom:26.280000px;}
.y1fd{bottom:26.820000px;}
.y1d8{bottom:27.360000px;}
.y1e8{bottom:27.750000px;}
.ybe{bottom:28.080000px;}
.yd9{bottom:28.110000px;}
.y173{bottom:28.125000px;}
.y102{bottom:28.260000px;}
.y1db{bottom:28.305000px;}
.y1ec{bottom:30.240000px;}
.y1f8{bottom:30.420000px;}
.y37{bottom:30.600000px;}
.y1e2{bottom:31.680000px;}
.y94{bottom:38.340000px;}
.ya7{bottom:38.880000px;}
.y9b{bottom:40.170000px;}
.y1d9{bottom:41.220000px;}
.y1d6{bottom:41.940000px;}
.y1e7{bottom:41.970000px;}
.ybb{bottom:42.660000px;}
.yd7{bottom:42.690000px;}
.yad{bottom:42.705000px;}
.ye2{bottom:42.840000px;}
.y198{bottom:42.870000px;}
.y172{bottom:42.885000px;}
.y105{bottom:43.380000px;}
.y12b{bottom:43.425000px;}
.y152{bottom:43.554000px;}
.yf0{bottom:43.560000px;}
.y17a{bottom:43.590000px;}
.y1a1{bottom:43.605000px;}
.y124{bottom:43.920000px;}
.ydc{bottom:44.640000px;}
.y1ae{bottom:45.570000px;}
.y10c{bottom:46.254000px;}
.y1ea{bottom:46.800000px;}
.y36{bottom:46.980000px;}
.yd1{bottom:47.160000px;}
.ye7{bottom:47.205000px;}
.y1f7{bottom:47.340000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y1e0{bottom:50.040000px;}
.y149{bottom:50.445000px;}
.yc1{bottom:50.580000px;}
.ya1{bottom:50.940000px;}
.y11a{bottom:51.150000px;}
.y163{bottom:51.195000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.ya5{bottom:65.520000px;}
.y98{bottom:67.890000px;}
.y5{bottom:68.976000px;}
.y1d5{bottom:70.380000px;}
.y1f3{bottom:70.425000px;}
.y104{bottom:71.820000px;}
.y12a{bottom:71.865000px;}
.y151{bottom:71.994000px;}
.yef{bottom:72.000000px;}
.y137{bottom:72.030000px;}
.y1a0{bottom:72.045000px;}
.y191{bottom:72.405000px;}
.y123{bottom:72.540000px;}
.y114{bottom:72.615000px;}
.y15d{bottom:72.645000px;}
.ydb{bottom:73.080000px;}
.y168{bottom:73.110000px;}
.yaa{bottom:73.125000px;}
.y1ad{bottom:74.010000px;}
.yd0{bottom:75.600000px;}
.ye6{bottom:75.645000px;}
.y9e{bottom:76.860000px;}
.y148{bottom:78.885000px;}
.yc0{bottom:79.020000px;}
.y34{bottom:79.056000px;}
.yc9{bottom:79.065000px;}
.y30{bottom:97.596000px;}
.y8a{bottom:100.476000px;}
.y1aa{bottom:104.256000px;}
.y181{bottom:106.956000px;}
.y1c7{bottom:109.650000px;}
.y5d{bottom:109.836000px;}
.y202{bottom:111.816000px;}
.y186{bottom:112.575000px;}
.y1c2{bottom:113.436000px;}
.yb5{bottom:113.616000px;}
.y208{bottom:115.590000px;}
.y157{bottom:117.576000px;}
.y10b{bottom:121.716000px;}
.y18d{bottom:125.715000px;}
.y2f{bottom:126.036000px;}
.y89{bottom:128.916000px;}
.y1ab{bottom:133.416000px;}
.y1e3{bottom:133.956000px;}
.y15e{bottom:134.925000px;}
.y180{bottom:135.576000px;}
.y66{bottom:135.936000px;}
.yb9{bottom:138.096000px;}
.y5c{bottom:138.456000px;}
.y1d0{bottom:139.890000px;}
.y201{bottom:140.256000px;}
.y115{bottom:141.090000px;}
.y1c1{bottom:141.876000px;}
.yb4{bottom:142.236000px;}
.y20f{bottom:143.280000px;}
.y1c8{bottom:146.700000px;}
.y150{bottom:146.736000px;}
.yf4{bottom:149.256000px;}
.y187{bottom:152.490000px;}
.y2e{bottom:154.470000px;}
.y88{bottom:157.350000px;}
.y207{bottom:158.475000px;}
.y209{bottom:158.580000px;}
.y17f{bottom:160.050000px;}
.y182{bottom:160.200000px;}
.y1a7{bottom:162.750000px;}
.y65{bottom:164.550000px;}
.yee{bottom:164.910000px;}
.yb8{bottom:166.530000px;}
.y5b{bottom:166.890000px;}
.y1df{bottom:167.790000px;}
.y200{bottom:169.050000px;}
.y1c0{bottom:170.310000px;}
.yb3{bottom:170.670000px;}
.y164{bottom:172.440000px;}
.y155{bottom:176.070000px;}
.y2d{bottom:182.910000px;}
.y109{bottom:183.630000px;}
.y1c9{bottom:183.705000px;}
.y87{bottom:185.790000px;}
.y15c{bottom:189.870000px;}
.y1a9{bottom:191.910000px;}
.y188{bottom:192.450000px;}
.y64{bottom:192.990000px;}
.y1ff{bottom:193.710000px;}
.y11b{bottom:193.890000px;}
.yf3{bottom:194.250000px;}
.y203{bottom:195.120000px;}
.y5a{bottom:195.330000px;}
.y15f{bottom:197.205000px;}
.y1bf{bottom:198.750000px;}
.yb2{bottom:199.110000px;}
.y20a{bottom:201.525000px;}
.y1e1{bottom:204.150000px;}
.y154{bottom:205.230000px;}
.y116{bottom:209.550000px;}
.y2c{bottom:211.350000px;}
.y10a{bottom:212.790000px;}
.y86{bottom:214.230000px;}
.y1ca{bottom:220.710000px;}
.y1a8{bottom:221.070000px;}
.y63{bottom:222.510000px;}
.yf2{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.y1be{bottom:227.190000px;}
.yb1{bottom:227.550000px;}
.y185{bottom:230.325000px;}
.y189{bottom:232.380000px;}
.y1dd{bottom:233.490000px;}
.y14e{bottom:234.390000px;}
.y113{bottom:237.270000px;}
.y2b{bottom:239.790000px;}
.y103{bottom:242.130000px;}
.y85{bottom:242.670000px;}
.y1bc{bottom:242.850000px;}
.y20b{bottom:244.470000px;}
.y1a5{bottom:250.230000px;}
.y62{bottom:251.130000px;}
.y212{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.yec{bottom:252.570000px;}
.yb0{bottom:255.990000px;}
.y1cb{bottom:257.730000px;}
.y160{bottom:259.485000px;}
.y112{bottom:261.105000px;}
.y1de{bottom:262.650000px;}
.y14f{bottom:263.730000px;}
.y2a{bottom:268.230000px;}
.y84{bottom:271.110000px;}
.y108{bottom:271.290000px;}
.y1bd{bottom:272.190000px;}
.y18a{bottom:272.310000px;}
.y184{bottom:273.060000px;}
.y206{bottom:275.610000px;}
.y117{bottom:278.070000px;}
.y1a6{bottom:279.570000px;}
.y61{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.yed{bottom:281.730000px;}
.yaf{bottom:284.430000px;}
.y20c{bottom:287.460000px;}
.y15b{bottom:290.775000px;}
.y1da{bottom:291.810000px;}
.y147{bottom:292.890000px;}
.y1cc{bottom:294.735000px;}
.y204{bottom:296.130000px;}
.y29{bottom:296.850000px;}
.y83{bottom:299.730000px;}
.ya9{bottom:300.090000px;}
.y107{bottom:300.450000px;}
.y1ba{bottom:301.350000px;}
.y1c6{bottom:303.690000px;}
.y19f{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.y183{bottom:310.605000px;}
.ye5{bottom:311.070000px;}
.y18b{bottom:312.225000px;}
.y1dc{bottom:321.195000px;}
.y161{bottom:321.765000px;}
.y14b{bottom:324.795000px;}
.y28{bottom:325.335000px;}
.yae{bottom:326.775000px;}
.y82{bottom:328.215000px;}
.y100{bottom:329.655000px;}
.y20d{bottom:330.405000px;}
.y1bb{bottom:330.555000px;}
.y1cd{bottom:331.770000px;}
.y1c5{bottom:335.520000px;}
.y55{bottom:337.575000px;}
.y1a4{bottom:337.935000px;}
.yea{bottom:340.275000px;}
.y110{bottom:346.425000px;}
.y118{bottom:346.530000px;}
.y1d4{bottom:350.355000px;}
.y18c{bottom:352.155000px;}
.y205{bottom:352.515000px;}
.y159{bottom:353.055000px;}
.yab{bottom:353.415000px;}
.y27{bottom:353.775000px;}
.y81{bottom:356.655000px;}
.y14a{bottom:358.275000px;}
.y101{bottom:358.995000px;}
.y1b8{bottom:359.895000px;}
.y54{bottom:366.015000px;}
.y1a3{bottom:367.275000px;}
.y1c4{bottom:368.100000px;}
.y111{bottom:368.745000px;}
.y1ce{bottom:368.790000px;}
.ye9{bottom:369.435000px;}
.y20e{bottom:373.395000px;}
.y15a{bottom:379.185000px;}
.y26{bottom:382.215000px;}
.y162{bottom:384.045000px;}
.y80{bottom:385.095000px;}
.ya4{bottom:387.435000px;}
.y1b9{bottom:389.055000px;}
.y53{bottom:394.635000px;}
.y19d{bottom:396.435000px;}
.yff{bottom:401.655000px;}
.ye1{bottom:402.375000px;}
.y1cf{bottom:405.795000px;}
.y1d7{bottom:407.235000px;}
.y25{bottom:410.655000px;}
.y7f{bottom:413.175000px;}
.ya8{bottom:414.075000px;}
.y119{bottom:415.005000px;}
.y146{bottom:416.595000px;}
.y1b6{bottom:418.215000px;}
.y52{bottom:423.075000px;}
.y19e{bottom:425.595000px;}
.yfe{bottom:430.095000px;}
.ye3{bottom:431.535000px;}
.y1d1{bottom:436.395000px;}
.y24{bottom:438.735000px;}
.y31{bottom:439.095000px;}
.ya6{bottom:440.715000px;}
.y7e{bottom:441.975000px;}
.y1b7{bottom:447.375000px;}
.y51{bottom:451.515000px;}
.y13b{bottom:452.235000px;}
.y19a{bottom:454.755000px;}
.yfd{bottom:458.535000px;}
.y145{bottom:459.435000px;}
.yda{bottom:460.875000px;}
.y1d3{bottom:465.735000px;}
.y9d{bottom:467.355000px;}
.y7d{bottom:470.415000px;}
.y23{bottom:471.315000px;}
.y1b5{bottom:476.715000px;}
.y50{bottom:479.595000px;}
.y5e{bottom:479.955000px;}
.y13a{bottom:480.675000px;}
.y19c{bottom:484.095000px;}
.yfc{bottom:486.975000px;}
.y144{bottom:487.875000px;}
.ye0{bottom:490.035000px;}
.ya2{bottom:493.815000px;}
.y136{bottom:496.335000px;}
.y7c{bottom:498.855000px;}
.y22{bottom:499.755000px;}
.y4f{bottom:508.395000px;}
.y19b{bottom:513.255000px;}
.yfb{bottom:515.595000px;}
.y143{bottom:516.315000px;}
.yde{bottom:519.195000px;}
.y1b4{bottom:519.375000px;}
.y9f{bottom:520.455000px;}
.y139{bottom:525.675000px;}
.y7b{bottom:527.295000px;}
.y21{bottom:528.195000px;}
.y60{bottom:536.475000px;}
.y4e{bottom:536.835000px;}
.y197{bottom:542.415000px;}
.yfa{bottom:544.035000px;}
.y142{bottom:544.755000px;}
.y1b3{bottom:547.815000px;}
.y17e{bottom:549.255000px;}
.yd6{bottom:549.615000px;}
.y138{bottom:554.835000px;}
.y7a{bottom:555.915000px;}
.y20{bottom:556.635000px;}
.y97{bottom:558.435000px;}
.y5f{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.y199{bottom:571.785000px;}
.y1b2{bottom:572.325000px;}
.yf9{bottom:572.505000px;}
.y1c3{bottom:572.940000px;}
.y141{bottom:573.225000px;}
.yd8{bottom:578.805000px;}
.y134{bottom:584.025000px;}
.y79{bottom:584.385000px;}
.y1f{bottom:585.105000px;}
.y4c{bottom:593.745000px;}
.y17d{bottom:594.105000px;}
.yf8{bottom:600.945000px;}
.y140{bottom:601.665000px;}
.y1fe{bottom:605.445000px;}
.ycf{bottom:608.145000px;}
.y99{bottom:611.745000px;}
.y78{bottom:612.825000px;}
.y135{bottom:613.185000px;}
.y1e{bottom:613.725000px;}
.y1fa{bottom:621.105000px;}
.yb7{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y17c{bottom:623.445000px;}
.yf7{bottom:629.385000px;}
.y13f{bottom:630.105000px;}
.yd5{bottom:637.305000px;}
.y96{bottom:640.545000px;}
.y77{bottom:641.265000px;}
.y1d{bottom:642.165000px;}
.y130{bottom:642.525000px;}
.yb6{bottom:650.445000px;}
.y4a{bottom:650.805000px;}
.y178{bottom:652.605000px;}
.yf6{bottom:657.825000px;}
.y13e{bottom:658.725000px;}
.y196{bottom:659.265000px;}
.yd3{bottom:666.465000px;}
.y93{bottom:667.185000px;}
.y76{bottom:669.705000px;}
.y1c{bottom:670.605000px;}
.y133{bottom:671.685000px;}
.y1fb{bottom:676.905000px;}
.y49{bottom:679.245000px;}
.y179{bottom:681.765000px;}
.yf5{bottom:682.305000px;}
.y10f{bottom:682.740000px;}
.y13d{bottom:687.165000px;}
.y194{bottom:688.605000px;}
.y75{bottom:698.145000px;}
.y1b{bottom:699.045000px;}
.ycd{bottom:699.405000px;}
.y1f6{bottom:707.145000px;}
.y131{bottom:707.505000px;}
.y48{bottom:707.685000px;}
.y175{bottom:710.925000px;}
.y13c{bottom:711.645000px;}
.y158{bottom:713.700000px;}
.y195{bottom:717.765000px;}
.y74{bottom:726.585000px;}
.y1a{bottom:727.485000px;}
.yce{bottom:728.565000px;}
.y92{bottom:733.245000px;}
.y47{bottom:736.125000px;}
.y12e{bottom:737.205000px;}
.y177{bottom:740.265000px;}
.y1f9{bottom:740.985000px;}
.y190{bottom:746.925000px;}
.y73{bottom:754.665000px;}
.y19{bottom:755.925000px;}
.yc8{bottom:757.905000px;}
.y91{bottom:761.325000px;}
.y46{bottom:764.565000px;}
.y12f{bottom:766.365000px;}
.y176{bottom:769.425000px;}
.y1f2{bottom:770.325000px;}
.y193{bottom:776.085000px;}
.y72{bottom:783.645000px;}
.y18{bottom:784.365000px;}
.y8f{bottom:790.125000px;}
.y45{bottom:793.005000px;}
.ycc{bottom:794.085000px;}
.y129{bottom:795.705000px;}
.y171{bottom:798.585000px;}
.y192{bottom:805.425000px;}
.y71{bottom:813.345000px;}
.y8e{bottom:818.565000px;}
.y17{bottom:818.745000px;}
.y213{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.y1f4{bottom:822.570000px;}
.ycb{bottom:823.470000px;}
.y12d{bottom:824.910000px;}
.y174{bottom:827.970000px;}
.y18e{bottom:834.990000px;}
.y16{bottom:841.290000px;}
.y70{bottom:842.910000px;}
.y8d{bottom:846.690000px;}
.y43{bottom:849.930000px;}
.yc6{bottom:852.630000px;}
.y12c{bottom:854.070000px;}
.y1f0{bottom:856.410000px;}
.y16e{bottom:857.130000px;}
.y18f{bottom:864.150000px;}
.y6f{bottom:872.610000px;}
.y8c{bottom:875.310000px;}
.y15{bottom:875.850000px;}
.y42{bottom:878.370000px;}
.yc7{bottom:881.790000px;}
.y127{bottom:883.410000px;}
.y1f1{bottom:885.570000px;}
.y170{bottom:886.290000px;}
.y14{bottom:898.350000px;}
.y8b{bottom:900.150000px;}
.y6e{bottom:902.310000px;}
.y41{bottom:906.990000px;}
.ybf{bottom:910.950000px;}
.y128{bottom:912.570000px;}
.y1ed{bottom:914.910000px;}
.y16f{bottom:915.450000px;}
.y6d{bottom:931.830000px;}
.y13{bottom:932.730000px;}
.y40{bottom:935.430000px;}
.yc4{bottom:940.290000px;}
.y122{bottom:941.730000px;}
.y16c{bottom:944.790000px;}
.y12{bottom:954.870000px;}
.y6c{bottom:960.450000px;}
.y211{bottom:963.510000px;}
.y3f{bottom:963.870000px;}
.y1ee{bottom:969.810000px;}
.y126{bottom:970.890000px;}
.y16d{bottom:973.950000px;}
.yc3{bottom:976.470000px;}
.y11{bottom:983.310000px;}
.y6b{bottom:989.610000px;}
.y90{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y125{bottom:1000.230000px;}
.y1e9{bottom:1000.950000px;}
.y167{bottom:1003.110000px;}
.yba{bottom:1005.810000px;}
.y10{bottom:1011.750000px;}
.y1b1{bottom:1015.530000px;}
.y6a{bottom:1018.410000px;}
.y3d{bottom:1020.750000px;}
.y11f{bottom:1029.930000px;}
.y1eb{bottom:1030.110000px;}
.y1ac{bottom:1031.370000px;}
.y16b{bottom:1032.270000px;}
.y4{bottom:1032.810000px;}
.ybc{bottom:1034.970000px;}
.y69{bottom:1047.030000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y120{bottom:1059.090000px;}
.y1b0{bottom:1060.530000px;}
.y169{bottom:1061.610000px;}
.y1e6{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y68{bottom:1076.580000px;}
.y3b{bottom:1077.660000px;}
.y11d{bottom:1088.280000px;}
.y1af{bottom:1089.720000px;}
.y166{bottom:1091.880000px;}
.y67{bottom:1105.020000px;}
.y210{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h1e{height:25.740000px;}
.h18{height:25.920000px;}
.h1b{height:25.956000px;}
.h1a{height:28.080000px;}
.h23{height:28.440000px;}
.h27{height:28.476000px;}
.h2e{height:28.620000px;}
.h4c{height:28.836000px;}
.h3b{height:28.980000px;}
.hc{height:29.178984px;}
.h5e{height:29.520000px;}
.h44{height:29.556000px;}
.h2c{height:29.700000px;}
.h59{height:30.420000px;}
.h4e{height:30.600000px;}
.h40{height:31.176000px;}
.h33{height:32.040000px;}
.h29{height:32.220000px;}
.h58{height:32.580000px;}
.h3f{height:32.760000px;}
.h55{height:33.120000px;}
.h21{height:33.300000px;}
.h6{height:33.480000px;}
.h3c{height:35.100000px;}
.h25{height:35.460000px;}
.h54{height:35.640000px;}
.h1d{height:37.260000px;}
.h13{height:46.283906px;}
.h1{height:48.045938px;}
.h5c{height:51.516000px;}
.h16{height:51.840000px;}
.hd{height:52.938984px;}
.hf{height:52.971680px;}
.ha{height:53.224453px;}
.he{height:53.709961px;}
.h5a{height:54.180000px;}
.h7{height:54.421875px;}
.h5f{height:54.900000px;}
.h52{height:56.160000px;}
.h56{height:56.916000px;}
.h22{height:57.600000px;}
.h2a{height:57.636000px;}
.h2d{height:57.780000px;}
.h46{height:57.816000px;}
.h2{height:58.621992px;}
.h17{height:58.651172px;}
.h12{height:60.679688px;}
.h32{height:61.200000px;}
.h57{height:61.740000px;}
.h5d{height:62.280000px;}
.h9{height:63.019687px;}
.h53{height:64.980000px;}
.h3{height:65.010937px;}
.hb{height:66.757500px;}
.h15{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h39{height:75.093750px;}
.h36{height:75.243937px;}
.h1f{height:79.020000px;}
.h19{height:81.396000px;}
.h51{height:85.320000px;}
.h5b{height:85.356000px;}
.h20{height:86.616000px;}
.h45{height:86.760000px;}
.h31{height:86.796000px;}
.h50{height:86.913750px;}
.h30{height:86.940000px;}
.h3d{height:86.976000px;}
.h4b{height:87.336000px;}
.h3a{height:87.480000px;}
.h2b{height:88.020000px;}
.h43{height:88.056000px;}
.h4d{height:88.956000px;}
.h1c{height:90.360000px;}
.h28{height:90.540000px;}
.h2f{height:90.576000px;}
.h3e{height:93.816000px;}
.h24{height:93.960000px;}
.h26{height:93.996000px;}
.h42{height:95.223938px;}
.h4a{height:102.333750px;}
.h38{height:103.173750px;}
.h48{height:103.773750px;}
.h49{height:108.633750px;}
.h14{height:111.043849px;}
.h11{height:111.043854px;}
.h35{height:145.533750px;}
.h4{height:167.250000px;}
.h37{height:192.453750px;}
.h10{height:268.635000px;}
.h47{height:375.660000px;}
.h60{height:396.900000px;}
.h41{height:407.340000px;}
.h4f{height:429.120000px;}
.h34{height:438.300000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w11{width:65.196000px;}
.wf{width:66.600000px;}
.w13{width:66.636000px;}
.w15{width:73.116000px;}
.w2d{width:73.440000px;}
.w10{width:80.100000px;}
.we{width:80.136000px;}
.w26{width:85.680000px;}
.w9{width:86.940000px;}
.w12{width:91.800000px;}
.w14{width:92.520000px;}
.w32{width:93.816000px;}
.w20{width:102.960000px;}
.w1b{width:104.040000px;}
.w8{width:107.316000px;}
.w2f{width:113.040000px;}
.w2b{width:120.780000px;}
.w17{width:125.136000px;}
.w16{width:127.296000px;}
.w2c{width:127.476000px;}
.w23{width:131.076000px;}
.w1d{width:132.300000px;}
.w2a{width:134.316000px;}
.w1f{width:139.356000px;}
.w34{width:140.940000px;}
.w1a{width:140.976000px;}
.w1e{width:142.956000px;}
.w24{width:144.720000px;}
.w22{width:144.756000px;}
.w19{width:144.936000px;}
.wb{width:146.016000px;}
.wa{width:147.636000px;}
.w33{width:154.470000px;}
.w25{width:158.430000px;}
.wc{width:159.330000px;}
.wd{width:166.350000px;}
.w18{width:166.680000px;}
.w2e{width:167.970000px;}
.w1c{width:174.810000px;}
.w31{width:201.810000px;}
.w29{width:215.310000px;}
.w3{width:361.335000px;}
.w28{width:676.800000px;}
.w30{width:676.980000px;}
.w27{width:750.240000px;}
.w21{width:800.100000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x29{left:35.676000px;}
.x27{left:43.992000px;}
.x47{left:46.260000px;}
.x2{left:53.999986px;}
.x44{left:57.960000px;}
.x34{left:59.004000px;}
.xd{left:80.999986px;}
.x37{left:92.880000px;}
.x3a{left:108.360000px;}
.x30{left:111.990000px;}
.x45{left:116.355000px;}
.x1{left:122.435986px;}
.x24{left:124.635000px;}
.x38{left:125.715000px;}
.x6{left:130.860000px;}
.x4d{left:132.015000px;}
.x50{left:139.215000px;}
.x28{left:145.650000px;}
.x32{left:148.065000px;}
.x39{left:158.550000px;}
.x10{left:162.390000px;}
.x4f{left:176.400000px;}
.x46{left:179.250000px;}
.x19{left:182.370000px;}
.x33{left:184.140000px;}
.x3b{left:198.570000px;}
.x2c{left:199.830000px;}
.x26{left:201.240000px;}
.x1f{left:229.890000px;}
.x35{left:235.260000px;}
.x48{left:248.790000px;}
.x11{left:250.230000px;}
.x51{left:255.885000px;}
.x2a{left:260.175000px;}
.x3c{left:270.390000px;}
.x31{left:274.350000px;}
.x1a{left:308.415000px;}
.x15{left:331.275000px;}
.x20{left:337.935000px;}
.x49{left:343.335000px;}
.x12{left:398.775000px;}
.x3d{left:405.435000px;}
.x4e{left:409.680000px;}
.xe{left:435.314986px;}
.x41{left:439.275000px;}
.x21{left:470.955000px;}
.x1b{left:475.815000px;}
.x2d{left:477.255000px;}
.x16{left:479.595000px;}
.x8{left:482.144986px;}
.x4a{left:498.705000px;}
.xc{left:509.144986px;}
.x5{left:521.025000px;}
.x3e{left:540.465000px;}
.x13{left:545.505000px;}
.x42{left:607.965000px;}
.x22{left:614.805000px;}
.x1c{left:621.465000px;}
.x2e{left:622.725000px;}
.x17{left:638.205000px;}
.x4b{left:640.365000px;}
.x25{left:641.595000px;}
.x3f{left:661.965000px;}
.x14{left:705.570000px;}
.x36{left:731.309986px;}
.x43{left:749.850000px;}
.x23{left:754.890000px;}
.x1d{left:763.170000px;}
.x4c{left:768.750000px;}
.x2f{left:781.890000px;}
.x40{left:790.350000px;}
.x18{left:798.810000px;}
.x2b{left:805.649986px;}
.x1e{left:855.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v10{vertical-align:-150.666667pt;}
.v1f{vertical-align:-135.040000pt;}
.v20{vertical-align:-115.733333pt;}
.ve{vertical-align:-84.213333pt;}
.vc{vertical-align:-79.733333pt;}
.vb{vertical-align:-61.280000pt;}
.v1{vertical-align:-59.520000pt;}
.v1e{vertical-align:-53.760000pt;}
.v1d{vertical-align:-49.760000pt;}
.vd{vertical-align:-35.466667pt;}
.v1c{vertical-align:-31.573333pt;}
.v1b{vertical-align:-26.346667pt;}
.v5{vertical-align:-25.066667pt;}
.v11{vertical-align:-22.186667pt;}
.v3{vertical-align:-21.120000pt;}
.vf{vertical-align:-17.706667pt;}
.v17{vertical-align:-11.360000pt;}
.v19{vertical-align:-9.226667pt;}
.v1a{vertical-align:-5.226667pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:4.213333pt;}
.v14{vertical-align:7.146667pt;}
.v18{vertical-align:10.506667pt;}
.v8{vertical-align:15.360000pt;}
.va{vertical-align:16.640000pt;}
.v12{vertical-align:17.760000pt;}
.v13{vertical-align:19.840000pt;}
.v2{vertical-align:21.120000pt;}
.v9{vertical-align:24.960000pt;}
.v15{vertical-align:29.813333pt;}
.v4{vertical-align:62.613333pt;}
.v6{vertical-align:87.680000pt;}
.v7{vertical-align:104.320000pt;}
.ls12{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.280533pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls19{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.071680pt;}
.ls14{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.120320pt;}
.ls15{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.640000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls17{letter-spacing:6.031360pt;}
.ls16{letter-spacing:35.471360pt;}
.ls9{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsa{word-spacing:-58.880000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws9{word-spacing:-25.522133pt;}
.ws12{word-spacing:-17.827584pt;}
.ws11{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.088533pt;}
.ws27{word-spacing:-14.991467pt;}
.ws22{word-spacing:-14.953067pt;}
.ws21{word-spacing:-14.855467pt;}
.ws1d{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws28{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.351467pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws0{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.999467pt;}
.ws6{word-spacing:0.000000pt;}
.ws26{word-spacing:227.690667pt;}
.ws20{word-spacing:236.650667pt;}
.ws1c{word-spacing:258.944000pt;}
.ws18{word-spacing:310.784000pt;}
.ws23{word-spacing:315.562667pt;}
.ws15{word-spacing:346.090667pt;}
.ws25{word-spacing:351.338667pt;}
.ws24{word-spacing:351.498667pt;}
.ws1e{word-spacing:360.298667pt;}
.ws1f{word-spacing:360.352000pt;}
.ws1a{word-spacing:382.485333pt;}
.ws19{word-spacing:382.592000pt;}
.ws1b{word-spacing:382.626944pt;}
.ws16{word-spacing:434.432000pt;}
.ws17{word-spacing:434.466944pt;}
.ws14{word-spacing:469.642667pt;}
.ws10{word-spacing:469.738667pt;}
.ws13{word-spacing:469.792000pt;}
.wsf{word-spacing:469.898667pt;}
._c{margin-left:-5.993387pt;}
._b{margin-left:-4.881067pt;}
._8{margin-left:-3.738880pt;}
._5{margin-left:-2.662827pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._6{width:2.414080pt;}
._7{width:3.638187pt;}
._d{width:4.602027pt;}
._a{width:5.888000pt;}
._9{width:6.888960pt;}
._1a{width:8.230400pt;}
._19{width:9.492480pt;}
._f{width:10.697387pt;}
._e{width:12.200960pt;}
._18{width:13.660160pt;}
._21{width:15.851520pt;}
._23{width:16.780800pt;}
._36{width:17.712640pt;}
._22{width:18.606080pt;}
._11{width:19.522560pt;}
._16{width:20.515840pt;}
._12{width:21.903360pt;}
._13{width:22.904320pt;}
._15{width:23.957333pt;}
._14{width:25.390080pt;}
._27{width:26.920960pt;}
._1d{width:28.072107pt;}
._1e{width:29.029547pt;}
._10{width:30.440960pt;}
._2d{width:31.336107pt;}
._4{width:32.350293pt;}
._3{width:33.443840pt;}
._17{width:34.562560pt;}
._20{width:35.799040pt;}
._1b{width:36.800000pt;}
._1c{width:37.918720pt;}
._2e{width:39.390720pt;}
._2f{width:40.450560pt;}
._30{width:41.717760pt;}
._29{width:43.503787pt;}
._28{width:44.513280pt;}
._34{width:45.514240pt;}
._3e{width:47.188480pt;}
._3d{width:48.222720pt;}
._3b{width:49.715200pt;}
._2a{width:50.646187pt;}
._45{width:56.041813pt;}
._38{width:57.622187pt;}
._26{width:58.775040pt;}
._25{width:59.763200pt;}
._2b{width:61.349547pt;}
._2c{width:62.442240pt;}
._3c{width:64.360960pt;}
._24{width:67.194880pt;}
._32{width:69.007360pt;}
._44{width:76.190720pt;}
._43{width:81.195520pt;}
._3a{width:87.142400pt;}
._42{width:89.141760pt;}
._3f{width:92.853760pt;}
._41{width:96.025600pt;}
._40{width:99.343360pt;}
._33{width:106.399360pt;}
._1f{width:107.338240pt;}
._39{width:109.094869pt;}
._35{width:115.754667pt;}
._46{width:132.656640pt;}
._31{width:343.266987pt;}
._2{width:854.826667pt;}
._37{width:2408.213333pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.ya3{bottom:10.880000pt;}
.y95{bottom:11.040000pt;}
.y9c{bottom:11.066667pt;}
.ybd{bottom:12.000000pt;}
.y121{bottom:12.026667pt;}
.yeb{bottom:12.040000pt;}
.y156{bottom:12.154667pt;}
.ye4{bottom:12.160000pt;}
.y132{bottom:12.320000pt;}
.y1fc{bottom:12.480000pt;}
.y16a{bottom:12.506667pt;}
.ydf{bottom:12.640000pt;}
.y1d2{bottom:12.800000pt;}
.y9a{bottom:12.960000pt;}
.y14d{bottom:13.120000pt;}
.y106{bottom:13.280000pt;}
.y17b{bottom:13.306667pt;}
.y1a2{bottom:13.320000pt;}
.y153{bottom:13.434667pt;}
.yf1{bottom:13.440000pt;}
.y10e{bottom:13.600000pt;}
.yd4{bottom:13.760000pt;}
.y14c{bottom:13.920000pt;}
.y1e5{bottom:14.080000pt;}
.ydd{bottom:14.400000pt;}
.yc5{bottom:15.040000pt;}
.y11e{bottom:15.200000pt;}
.y11c{bottom:15.493333pt;}
.y165{bottom:15.520000pt;}
.y10d{bottom:15.840000pt;}
.y1e4{bottom:16.154667pt;}
.yd2{bottom:16.640000pt;}
.ye8{bottom:16.680000pt;}
.yac{bottom:17.600000pt;}
.ya{bottom:18.560000pt;}
.yca{bottom:19.520000pt;}
.yc2{bottom:19.680000pt;}
.ya0{bottom:21.120000pt;}
.y1f5{bottom:22.240000pt;}
.y1ef{bottom:23.360000pt;}
.y1fd{bottom:23.840000pt;}
.y1d8{bottom:24.320000pt;}
.y1e8{bottom:24.666667pt;}
.ybe{bottom:24.960000pt;}
.yd9{bottom:24.986667pt;}
.y173{bottom:25.000000pt;}
.y102{bottom:25.120000pt;}
.y1db{bottom:25.160000pt;}
.y1ec{bottom:26.880000pt;}
.y1f8{bottom:27.040000pt;}
.y37{bottom:27.200000pt;}
.y1e2{bottom:28.160000pt;}
.y94{bottom:34.080000pt;}
.ya7{bottom:34.560000pt;}
.y9b{bottom:35.706667pt;}
.y1d9{bottom:36.640000pt;}
.y1d6{bottom:37.280000pt;}
.y1e7{bottom:37.306667pt;}
.ybb{bottom:37.920000pt;}
.yd7{bottom:37.946667pt;}
.yad{bottom:37.960000pt;}
.ye2{bottom:38.080000pt;}
.y198{bottom:38.106667pt;}
.y172{bottom:38.120000pt;}
.y105{bottom:38.560000pt;}
.y12b{bottom:38.600000pt;}
.y152{bottom:38.714667pt;}
.yf0{bottom:38.720000pt;}
.y17a{bottom:38.746667pt;}
.y1a1{bottom:38.760000pt;}
.y124{bottom:39.040000pt;}
.ydc{bottom:39.680000pt;}
.y1ae{bottom:40.506667pt;}
.y10c{bottom:41.114667pt;}
.y1ea{bottom:41.600000pt;}
.y36{bottom:41.760000pt;}
.yd1{bottom:41.920000pt;}
.ye7{bottom:41.960000pt;}
.y1f7{bottom:42.080000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y1e0{bottom:44.480000pt;}
.y149{bottom:44.840000pt;}
.yc1{bottom:44.960000pt;}
.ya1{bottom:45.280000pt;}
.y11a{bottom:45.466667pt;}
.y163{bottom:45.506667pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.ya5{bottom:58.240000pt;}
.y98{bottom:60.346667pt;}
.y5{bottom:61.312000pt;}
.y1d5{bottom:62.560000pt;}
.y1f3{bottom:62.600000pt;}
.y104{bottom:63.840000pt;}
.y12a{bottom:63.880000pt;}
.y151{bottom:63.994667pt;}
.yef{bottom:64.000000pt;}
.y137{bottom:64.026667pt;}
.y1a0{bottom:64.040000pt;}
.y191{bottom:64.360000pt;}
.y123{bottom:64.480000pt;}
.y114{bottom:64.546667pt;}
.y15d{bottom:64.573333pt;}
.ydb{bottom:64.960000pt;}
.y168{bottom:64.986667pt;}
.yaa{bottom:65.000000pt;}
.y1ad{bottom:65.786667pt;}
.yd0{bottom:67.200000pt;}
.ye6{bottom:67.240000pt;}
.y9e{bottom:68.320000pt;}
.y148{bottom:70.120000pt;}
.yc0{bottom:70.240000pt;}
.y34{bottom:70.272000pt;}
.yc9{bottom:70.280000pt;}
.y30{bottom:86.752000pt;}
.y8a{bottom:89.312000pt;}
.y1aa{bottom:92.672000pt;}
.y181{bottom:95.072000pt;}
.y1c7{bottom:97.466667pt;}
.y5d{bottom:97.632000pt;}
.y202{bottom:99.392000pt;}
.y186{bottom:100.066667pt;}
.y1c2{bottom:100.832000pt;}
.yb5{bottom:100.992000pt;}
.y208{bottom:102.746667pt;}
.y157{bottom:104.512000pt;}
.y10b{bottom:108.192000pt;}
.y18d{bottom:111.746667pt;}
.y2f{bottom:112.032000pt;}
.y89{bottom:114.592000pt;}
.y1ab{bottom:118.592000pt;}
.y1e3{bottom:119.072000pt;}
.y15e{bottom:119.933333pt;}
.y180{bottom:120.512000pt;}
.y66{bottom:120.832000pt;}
.yb9{bottom:122.752000pt;}
.y5c{bottom:123.072000pt;}
.y1d0{bottom:124.346667pt;}
.y201{bottom:124.672000pt;}
.y115{bottom:125.413333pt;}
.y1c1{bottom:126.112000pt;}
.yb4{bottom:126.432000pt;}
.y20f{bottom:127.360000pt;}
.y1c8{bottom:130.400000pt;}
.y150{bottom:130.432000pt;}
.yf4{bottom:132.672000pt;}
.y187{bottom:135.546667pt;}
.y2e{bottom:137.306667pt;}
.y88{bottom:139.866667pt;}
.y207{bottom:140.866667pt;}
.y209{bottom:140.960000pt;}
.y17f{bottom:142.266667pt;}
.y182{bottom:142.400000pt;}
.y1a7{bottom:144.666667pt;}
.y65{bottom:146.266667pt;}
.yee{bottom:146.586667pt;}
.yb8{bottom:148.026667pt;}
.y5b{bottom:148.346667pt;}
.y1df{bottom:149.146667pt;}
.y200{bottom:150.266667pt;}
.y1c0{bottom:151.386667pt;}
.yb3{bottom:151.706667pt;}
.y164{bottom:153.280000pt;}
.y155{bottom:156.506667pt;}
.y2d{bottom:162.586667pt;}
.y109{bottom:163.226667pt;}
.y1c9{bottom:163.293333pt;}
.y87{bottom:165.146667pt;}
.y15c{bottom:168.773333pt;}
.y1a9{bottom:170.586667pt;}
.y188{bottom:171.066667pt;}
.y64{bottom:171.546667pt;}
.y1ff{bottom:172.186667pt;}
.y11b{bottom:172.346667pt;}
.yf3{bottom:172.666667pt;}
.y203{bottom:173.440000pt;}
.y5a{bottom:173.626667pt;}
.y15f{bottom:175.293333pt;}
.y1bf{bottom:176.666667pt;}
.yb2{bottom:176.986667pt;}
.y20a{bottom:179.133333pt;}
.y1e1{bottom:181.466667pt;}
.y154{bottom:182.426667pt;}
.y116{bottom:186.266667pt;}
.y2c{bottom:187.866667pt;}
.y10a{bottom:189.146667pt;}
.y86{bottom:190.426667pt;}
.y1ca{bottom:196.186667pt;}
.y1a8{bottom:196.506667pt;}
.y63{bottom:197.786667pt;}
.yf2{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.y1be{bottom:201.946667pt;}
.yb1{bottom:202.266667pt;}
.y185{bottom:204.733333pt;}
.y189{bottom:206.560000pt;}
.y1dd{bottom:207.546667pt;}
.y14e{bottom:208.346667pt;}
.y113{bottom:210.906667pt;}
.y2b{bottom:213.146667pt;}
.y103{bottom:215.226667pt;}
.y85{bottom:215.706667pt;}
.y1bc{bottom:215.866667pt;}
.y20b{bottom:217.306667pt;}
.y1a5{bottom:222.426667pt;}
.y62{bottom:223.226667pt;}
.y212{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.yec{bottom:224.506667pt;}
.yb0{bottom:227.546667pt;}
.y1cb{bottom:229.093333pt;}
.y160{bottom:230.653333pt;}
.y112{bottom:232.093333pt;}
.y1de{bottom:233.466667pt;}
.y14f{bottom:234.426667pt;}
.y2a{bottom:238.426667pt;}
.y84{bottom:240.986667pt;}
.y108{bottom:241.146667pt;}
.y1bd{bottom:241.946667pt;}
.y18a{bottom:242.053333pt;}
.y184{bottom:242.720000pt;}
.y206{bottom:244.986667pt;}
.y117{bottom:247.173333pt;}
.y1a6{bottom:248.506667pt;}
.y61{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.yed{bottom:250.426667pt;}
.yaf{bottom:252.826667pt;}
.y20c{bottom:255.520000pt;}
.y15b{bottom:258.466667pt;}
.y1da{bottom:259.386667pt;}
.y147{bottom:260.346667pt;}
.y1cc{bottom:261.986667pt;}
.y204{bottom:263.226667pt;}
.y29{bottom:263.866667pt;}
.y83{bottom:266.426667pt;}
.ya9{bottom:266.746667pt;}
.y107{bottom:267.066667pt;}
.y1ba{bottom:267.866667pt;}
.y1c6{bottom:269.946667pt;}
.y19f{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.y183{bottom:276.093333pt;}
.ye5{bottom:276.506667pt;}
.y18b{bottom:277.533333pt;}
.y1dc{bottom:285.506667pt;}
.y161{bottom:286.013333pt;}
.y14b{bottom:288.706667pt;}
.y28{bottom:289.186667pt;}
.yae{bottom:290.466667pt;}
.y82{bottom:291.746667pt;}
.y100{bottom:293.026667pt;}
.y20d{bottom:293.693333pt;}
.y1bb{bottom:293.826667pt;}
.y1cd{bottom:294.906667pt;}
.y1c5{bottom:298.240000pt;}
.y55{bottom:300.066667pt;}
.y1a4{bottom:300.386667pt;}
.yea{bottom:302.466667pt;}
.y110{bottom:307.933333pt;}
.y118{bottom:308.026667pt;}
.y1d4{bottom:311.426667pt;}
.y18c{bottom:313.026667pt;}
.y205{bottom:313.346667pt;}
.y159{bottom:313.826667pt;}
.yab{bottom:314.146667pt;}
.y27{bottom:314.466667pt;}
.y81{bottom:317.026667pt;}
.y14a{bottom:318.466667pt;}
.y101{bottom:319.106667pt;}
.y1b8{bottom:319.906667pt;}
.y54{bottom:325.346667pt;}
.y1a3{bottom:326.466667pt;}
.y1c4{bottom:327.200000pt;}
.y111{bottom:327.773333pt;}
.y1ce{bottom:327.813333pt;}
.ye9{bottom:328.386667pt;}
.y20e{bottom:331.906667pt;}
.y15a{bottom:337.053333pt;}
.y26{bottom:339.746667pt;}
.y162{bottom:341.373333pt;}
.y80{bottom:342.306667pt;}
.ya4{bottom:344.386667pt;}
.y1b9{bottom:345.826667pt;}
.y53{bottom:350.786667pt;}
.y19d{bottom:352.386667pt;}
.yff{bottom:357.026667pt;}
.ye1{bottom:357.666667pt;}
.y1cf{bottom:360.706667pt;}
.y1d7{bottom:361.986667pt;}
.y25{bottom:365.026667pt;}
.y7f{bottom:367.266667pt;}
.ya8{bottom:368.066667pt;}
.y119{bottom:368.893333pt;}
.y146{bottom:370.306667pt;}
.y1b6{bottom:371.746667pt;}
.y52{bottom:376.066667pt;}
.y19e{bottom:378.306667pt;}
.yfe{bottom:382.306667pt;}
.ye3{bottom:383.586667pt;}
.y1d1{bottom:387.906667pt;}
.y24{bottom:389.986667pt;}
.y31{bottom:390.306667pt;}
.ya6{bottom:391.746667pt;}
.y7e{bottom:392.866667pt;}
.y1b7{bottom:397.666667pt;}
.y51{bottom:401.346667pt;}
.y13b{bottom:401.986667pt;}
.y19a{bottom:404.226667pt;}
.yfd{bottom:407.586667pt;}
.y145{bottom:408.386667pt;}
.yda{bottom:409.666667pt;}
.y1d3{bottom:413.986667pt;}
.y9d{bottom:415.426667pt;}
.y7d{bottom:418.146667pt;}
.y23{bottom:418.946667pt;}
.y1b5{bottom:423.746667pt;}
.y50{bottom:426.306667pt;}
.y5e{bottom:426.626667pt;}
.y13a{bottom:427.266667pt;}
.y19c{bottom:430.306667pt;}
.yfc{bottom:432.866667pt;}
.y144{bottom:433.666667pt;}
.ye0{bottom:435.586667pt;}
.ya2{bottom:438.946667pt;}
.y136{bottom:441.186667pt;}
.y7c{bottom:443.426667pt;}
.y22{bottom:444.226667pt;}
.y4f{bottom:451.906667pt;}
.y19b{bottom:456.226667pt;}
.yfb{bottom:458.306667pt;}
.y143{bottom:458.946667pt;}
.yde{bottom:461.506667pt;}
.y1b4{bottom:461.666667pt;}
.y9f{bottom:462.626667pt;}
.y139{bottom:467.266667pt;}
.y7b{bottom:468.706667pt;}
.y21{bottom:469.506667pt;}
.y60{bottom:476.866667pt;}
.y4e{bottom:477.186667pt;}
.y197{bottom:482.146667pt;}
.yfa{bottom:483.586667pt;}
.y142{bottom:484.226667pt;}
.y1b3{bottom:486.946667pt;}
.y17e{bottom:488.226667pt;}
.yd6{bottom:488.546667pt;}
.y138{bottom:493.186667pt;}
.y7a{bottom:494.146667pt;}
.y20{bottom:494.786667pt;}
.y97{bottom:496.386667pt;}
.y5f{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.y199{bottom:508.253333pt;}
.y1b2{bottom:508.733333pt;}
.yf9{bottom:508.893333pt;}
.y1c3{bottom:509.280000pt;}
.y141{bottom:509.533333pt;}
.yd8{bottom:514.493333pt;}
.y134{bottom:519.133333pt;}
.y79{bottom:519.453333pt;}
.y1f{bottom:520.093333pt;}
.y4c{bottom:527.773333pt;}
.y17d{bottom:528.093333pt;}
.yf8{bottom:534.173333pt;}
.y140{bottom:534.813333pt;}
.y1fe{bottom:538.173333pt;}
.ycf{bottom:540.573333pt;}
.y99{bottom:543.773333pt;}
.y78{bottom:544.733333pt;}
.y135{bottom:545.053333pt;}
.y1e{bottom:545.533333pt;}
.y1fa{bottom:552.093333pt;}
.yb7{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y17c{bottom:554.173333pt;}
.yf7{bottom:559.453333pt;}
.y13f{bottom:560.093333pt;}
.yd5{bottom:566.493333pt;}
.y96{bottom:569.373333pt;}
.y77{bottom:570.013333pt;}
.y1d{bottom:570.813333pt;}
.y130{bottom:571.133333pt;}
.yb6{bottom:578.173333pt;}
.y4a{bottom:578.493333pt;}
.y178{bottom:580.093333pt;}
.yf6{bottom:584.733333pt;}
.y13e{bottom:585.533333pt;}
.y196{bottom:586.013333pt;}
.yd3{bottom:592.413333pt;}
.y93{bottom:593.053333pt;}
.y76{bottom:595.293333pt;}
.y1c{bottom:596.093333pt;}
.y133{bottom:597.053333pt;}
.y1fb{bottom:601.693333pt;}
.y49{bottom:603.773333pt;}
.y179{bottom:606.013333pt;}
.yf5{bottom:606.493333pt;}
.y10f{bottom:606.880000pt;}
.y13d{bottom:610.813333pt;}
.y194{bottom:612.093333pt;}
.y75{bottom:620.573333pt;}
.y1b{bottom:621.373333pt;}
.ycd{bottom:621.693333pt;}
.y1f6{bottom:628.573333pt;}
.y131{bottom:628.893333pt;}
.y48{bottom:629.053333pt;}
.y175{bottom:631.933333pt;}
.y13c{bottom:632.573333pt;}
.y158{bottom:634.400000pt;}
.y195{bottom:638.013333pt;}
.y74{bottom:645.853333pt;}
.y1a{bottom:646.653333pt;}
.yce{bottom:647.613333pt;}
.y92{bottom:651.773333pt;}
.y47{bottom:654.333333pt;}
.y12e{bottom:655.293333pt;}
.y177{bottom:658.013333pt;}
.y1f9{bottom:658.653333pt;}
.y190{bottom:663.933333pt;}
.y73{bottom:670.813333pt;}
.y19{bottom:671.933333pt;}
.yc8{bottom:673.693333pt;}
.y91{bottom:676.733333pt;}
.y46{bottom:679.613333pt;}
.y12f{bottom:681.213333pt;}
.y176{bottom:683.933333pt;}
.y1f2{bottom:684.733333pt;}
.y193{bottom:689.853333pt;}
.y72{bottom:696.573333pt;}
.y18{bottom:697.213333pt;}
.y8f{bottom:702.333333pt;}
.y45{bottom:704.893333pt;}
.ycc{bottom:705.853333pt;}
.y129{bottom:707.293333pt;}
.y171{bottom:709.853333pt;}
.y192{bottom:715.933333pt;}
.y71{bottom:722.973333pt;}
.y8e{bottom:727.613333pt;}
.y17{bottom:727.773333pt;}
.y213{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.y1f4{bottom:731.173333pt;}
.ycb{bottom:731.973333pt;}
.y12d{bottom:733.253333pt;}
.y174{bottom:735.973333pt;}
.y18e{bottom:742.213333pt;}
.y16{bottom:747.813333pt;}
.y70{bottom:749.253333pt;}
.y8d{bottom:752.613333pt;}
.y43{bottom:755.493333pt;}
.yc6{bottom:757.893333pt;}
.y12c{bottom:759.173333pt;}
.y1f0{bottom:761.253333pt;}
.y16e{bottom:761.893333pt;}
.y18f{bottom:768.133333pt;}
.y6f{bottom:775.653333pt;}
.y8c{bottom:778.053333pt;}
.y15{bottom:778.533333pt;}
.y42{bottom:780.773333pt;}
.yc7{bottom:783.813333pt;}
.y127{bottom:785.253333pt;}
.y1f1{bottom:787.173333pt;}
.y170{bottom:787.813333pt;}
.y14{bottom:798.533333pt;}
.y8b{bottom:800.133333pt;}
.y6e{bottom:802.053333pt;}
.y41{bottom:806.213333pt;}
.ybf{bottom:809.733333pt;}
.y128{bottom:811.173333pt;}
.y1ed{bottom:813.253333pt;}
.y16f{bottom:813.733333pt;}
.y6d{bottom:828.293333pt;}
.y13{bottom:829.093333pt;}
.y40{bottom:831.493333pt;}
.yc4{bottom:835.813333pt;}
.y122{bottom:837.093333pt;}
.y16c{bottom:839.813333pt;}
.y12{bottom:848.773333pt;}
.y6c{bottom:853.733333pt;}
.y211{bottom:856.453333pt;}
.y3f{bottom:856.773333pt;}
.y1ee{bottom:862.053333pt;}
.y126{bottom:863.013333pt;}
.y16d{bottom:865.733333pt;}
.yc3{bottom:867.973333pt;}
.y11{bottom:874.053333pt;}
.y6b{bottom:879.653333pt;}
.y90{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y125{bottom:889.093333pt;}
.y1e9{bottom:889.733333pt;}
.y167{bottom:891.653333pt;}
.yba{bottom:894.053333pt;}
.y10{bottom:899.333333pt;}
.y1b1{bottom:902.693333pt;}
.y6a{bottom:905.253333pt;}
.y3d{bottom:907.333333pt;}
.y11f{bottom:915.493333pt;}
.y1eb{bottom:915.653333pt;}
.y1ac{bottom:916.773333pt;}
.y16b{bottom:917.573333pt;}
.y4{bottom:918.053333pt;}
.ybc{bottom:919.973333pt;}
.y69{bottom:930.693333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y120{bottom:941.413333pt;}
.y1b0{bottom:942.693333pt;}
.y169{bottom:943.653333pt;}
.y1e6{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y68{bottom:956.960000pt;}
.y3b{bottom:957.920000pt;}
.y11d{bottom:967.360000pt;}
.y1af{bottom:968.640000pt;}
.y166{bottom:970.560000pt;}
.y67{bottom:982.240000pt;}
.y210{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h1e{height:22.880000pt;}
.h18{height:23.040000pt;}
.h1b{height:23.072000pt;}
.h1a{height:24.960000pt;}
.h23{height:25.280000pt;}
.h27{height:25.312000pt;}
.h2e{height:25.440000pt;}
.h4c{height:25.632000pt;}
.h3b{height:25.760000pt;}
.hc{height:25.936875pt;}
.h5e{height:26.240000pt;}
.h44{height:26.272000pt;}
.h2c{height:26.400000pt;}
.h59{height:27.040000pt;}
.h4e{height:27.200000pt;}
.h40{height:27.712000pt;}
.h33{height:28.480000pt;}
.h29{height:28.640000pt;}
.h58{height:28.960000pt;}
.h3f{height:29.120000pt;}
.h55{height:29.440000pt;}
.h21{height:29.600000pt;}
.h6{height:29.760000pt;}
.h3c{height:31.200000pt;}
.h25{height:31.520000pt;}
.h54{height:31.680000pt;}
.h1d{height:33.120000pt;}
.h13{height:41.141250pt;}
.h1{height:42.707500pt;}
.h5c{height:45.792000pt;}
.h16{height:46.080000pt;}
.hd{height:47.056875pt;}
.hf{height:47.085938pt;}
.ha{height:47.310625pt;}
.he{height:47.742188pt;}
.h5a{height:48.160000pt;}
.h7{height:48.375000pt;}
.h5f{height:48.800000pt;}
.h52{height:49.920000pt;}
.h56{height:50.592000pt;}
.h22{height:51.200000pt;}
.h2a{height:51.232000pt;}
.h2d{height:51.360000pt;}
.h46{height:51.392000pt;}
.h2{height:52.108438pt;}
.h17{height:52.134375pt;}
.h12{height:53.937500pt;}
.h32{height:54.400000pt;}
.h57{height:54.880000pt;}
.h5d{height:55.360000pt;}
.h9{height:56.017500pt;}
.h53{height:57.760000pt;}
.h3{height:57.787500pt;}
.hb{height:59.340000pt;}
.h15{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h39{height:66.750000pt;}
.h36{height:66.883500pt;}
.h1f{height:70.240000pt;}
.h19{height:72.352000pt;}
.h51{height:75.840000pt;}
.h5b{height:75.872000pt;}
.h20{height:76.992000pt;}
.h45{height:77.120000pt;}
.h31{height:77.152000pt;}
.h50{height:77.256667pt;}
.h30{height:77.280000pt;}
.h3d{height:77.312000pt;}
.h4b{height:77.632000pt;}
.h3a{height:77.760000pt;}
.h2b{height:78.240000pt;}
.h43{height:78.272000pt;}
.h4d{height:79.072000pt;}
.h1c{height:80.320000pt;}
.h28{height:80.480000pt;}
.h2f{height:80.512000pt;}
.h3e{height:83.392000pt;}
.h24{height:83.520000pt;}
.h26{height:83.552000pt;}
.h42{height:84.643500pt;}
.h4a{height:90.963333pt;}
.h38{height:91.710000pt;}
.h48{height:92.243333pt;}
.h49{height:96.563333pt;}
.h14{height:98.705643pt;}
.h11{height:98.705648pt;}
.h35{height:129.363333pt;}
.h4{height:148.666667pt;}
.h37{height:171.070000pt;}
.h10{height:238.786667pt;}
.h47{height:333.920000pt;}
.h60{height:352.800000pt;}
.h41{height:362.080000pt;}
.h4f{height:381.440000pt;}
.h34{height:389.600000pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w11{width:57.952000pt;}
.wf{width:59.200000pt;}
.w13{width:59.232000pt;}
.w15{width:64.992000pt;}
.w2d{width:65.280000pt;}
.w10{width:71.200000pt;}
.we{width:71.232000pt;}
.w26{width:76.160000pt;}
.w9{width:77.280000pt;}
.w12{width:81.600000pt;}
.w14{width:82.240000pt;}
.w32{width:83.392000pt;}
.w20{width:91.520000pt;}
.w1b{width:92.480000pt;}
.w8{width:95.392000pt;}
.w2f{width:100.480000pt;}
.w2b{width:107.360000pt;}
.w17{width:111.232000pt;}
.w16{width:113.152000pt;}
.w2c{width:113.312000pt;}
.w23{width:116.512000pt;}
.w1d{width:117.600000pt;}
.w2a{width:119.392000pt;}
.w1f{width:123.872000pt;}
.w34{width:125.280000pt;}
.w1a{width:125.312000pt;}
.w1e{width:127.072000pt;}
.w24{width:128.640000pt;}
.w22{width:128.672000pt;}
.w19{width:128.832000pt;}
.wb{width:129.792000pt;}
.wa{width:131.232000pt;}
.w33{width:137.306667pt;}
.w25{width:140.826667pt;}
.wc{width:141.626667pt;}
.wd{width:147.866667pt;}
.w18{width:148.160000pt;}
.w2e{width:149.306667pt;}
.w1c{width:155.386667pt;}
.w31{width:179.386667pt;}
.w29{width:191.386667pt;}
.w3{width:321.186667pt;}
.w28{width:601.600000pt;}
.w30{width:601.760000pt;}
.w27{width:666.880000pt;}
.w21{width:711.200000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x29{left:31.712000pt;}
.x27{left:39.104000pt;}
.x47{left:41.120000pt;}
.x2{left:47.999988pt;}
.x44{left:51.520000pt;}
.x34{left:52.448000pt;}
.xd{left:71.999988pt;}
.x37{left:82.560000pt;}
.x3a{left:96.320000pt;}
.x30{left:99.546667pt;}
.x45{left:103.426667pt;}
.x1{left:108.831988pt;}
.x24{left:110.786667pt;}
.x38{left:111.746667pt;}
.x6{left:116.320000pt;}
.x4d{left:117.346667pt;}
.x50{left:123.746667pt;}
.x28{left:129.466667pt;}
.x32{left:131.613333pt;}
.x39{left:140.933333pt;}
.x10{left:144.346667pt;}
.x4f{left:156.800000pt;}
.x46{left:159.333333pt;}
.x19{left:162.106667pt;}
.x33{left:163.680000pt;}
.x3b{left:176.506667pt;}
.x2c{left:177.626667pt;}
.x26{left:178.880000pt;}
.x1f{left:204.346667pt;}
.x35{left:209.120000pt;}
.x48{left:221.146667pt;}
.x11{left:222.426667pt;}
.x51{left:227.453333pt;}
.x2a{left:231.266667pt;}
.x3c{left:240.346667pt;}
.x31{left:243.866667pt;}
.x1a{left:274.146667pt;}
.x15{left:294.466667pt;}
.x20{left:300.386667pt;}
.x49{left:305.186667pt;}
.x12{left:354.466667pt;}
.x3d{left:360.386667pt;}
.x4e{left:364.160000pt;}
.xe{left:386.946655pt;}
.x41{left:390.466667pt;}
.x21{left:418.626667pt;}
.x1b{left:422.946667pt;}
.x2d{left:424.226667pt;}
.x16{left:426.306667pt;}
.x8{left:428.573321pt;}
.x4a{left:443.293333pt;}
.xc{left:452.573321pt;}
.x5{left:463.133333pt;}
.x3e{left:480.413333pt;}
.x13{left:484.893333pt;}
.x42{left:540.413333pt;}
.x22{left:546.493333pt;}
.x1c{left:552.413333pt;}
.x2e{left:553.533333pt;}
.x17{left:567.293333pt;}
.x4b{left:569.213333pt;}
.x25{left:570.306667pt;}
.x3f{left:588.413333pt;}
.x14{left:627.173333pt;}
.x36{left:650.053321pt;}
.x43{left:666.533333pt;}
.x23{left:671.013333pt;}
.x1d{left:678.373333pt;}
.x4c{left:683.333333pt;}
.x2f{left:695.013333pt;}
.x40{left:702.533333pt;}
.x18{left:710.053333pt;}
.x2b{left:716.133321pt;}
.x1e{left:760.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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