
    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_eb01415cd948b62172c8ee70.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_105e25949d3f17288e59092b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aee6c0133202fdc786350522.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_26067e88ece7cad3d6bc7fa8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_1155f12929f8b5a5d697f43c.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_e139d347331044f9c5b6de80.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ae132b28f422c5ae3fa10382.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_93bb6395577d2e98f7c44d08.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737793;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_f8a24f9b1cbe010a7e552abd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_714bd038a324e4c346f863f3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_0f31720e86d7001c818442b7.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_b33d810be7801d0b18c62b95.woff')format("woff");}.fff{font-family:fff;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;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.181200px;}
.ls10{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144720px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.226200px;}
.lsf{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.270720px;}
.lsa{letter-spacing:0.315600px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.817920px;}
.ls15{letter-spacing:0.900000px;}
.lse{letter-spacing:1.080000px;}
.ls17{letter-spacing:15.269760px;}
.ls2{letter-spacing:47.700000px;}
.ls0{letter-spacing:72.000000px;}
.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;}
}
.ws16{word-spacing:-59.760000px;}
.ws9{word-spacing:-41.760000px;}
.ws14{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.733600px;}
.ws18{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws2{word-spacing:-11.700000px;}
.ws7{word-spacing:-10.755600px;}
.ws8{word-spacing:-10.666200px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:61.560000px;}
._5{margin-left:-59.580000px;}
._44{margin-left:-4.330800px;}
._d{margin-left:-3.206880px;}
._2{margin-left:-1.814400px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._8{width:3.758400px;}
._7{width:4.780800px;}
._b{width:5.947920px;}
._18{width:7.598160px;}
._a{width:9.382320px;}
._10{width:10.995840px;}
._12{width:12.700800px;}
._11{width:13.924080px;}
._17{width:15.768000px;}
._15{width:17.210880px;}
._2e{width:18.273600px;}
._28{width:19.362240px;}
._9{width:20.796480px;}
._e{width:22.290480px;}
._f{width:23.907360px;}
._20{width:25.099200px;}
._23{width:26.108640px;}
._c{width:27.549360px;}
._22{width:29.043360px;}
._21{width:30.535920px;}
._1c{width:31.821120px;}
._14{width:33.704640px;}
._25{width:35.230320px;}
._24{width:36.334080px;}
._2d{width:37.469520px;}
._42{width:38.571600px;}
._35{width:39.592800px;}
._2a{width:40.636800px;}
._13{width:42.071040px;}
._2c{width:43.086960px;}
._1d{width:44.766720px;}
._2b{width:45.822960px;}
._29{width:46.851840px;}
._1f{width:47.867760px;}
._33{width:49.122720px;}
._32{width:50.198400px;}
._31{width:52.170480px;}
._26{width:53.485200px;}
._27{width:54.951120px;}
._34{width:55.995120px;}
._3b{width:57.190320px;}
._16{width:59.102640px;}
._30{width:60.993360px;}
._2f{width:62.024400px;}
._3d{width:63.226080px;}
._3{width:65.496000px;}
._39{width:66.751920px;}
._1a{width:70.323840px;}
._1b{width:71.493120px;}
._19{width:72.996480px;}
._36{width:74.463120px;}
._3c{width:75.682800px;}
._40{width:76.704240px;}
._37{width:80.138160px;}
._43{width:81.930960px;}
._3e{width:83.006640px;}
._38{width:84.532320px;}
._3a{width:89.938800px;}
._3f{width:110.974320px;}
._41{width:150.654960px;}
._4{width:199.620000px;}
._1e{width:285.870000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsf{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y71{bottom:-251.490000px;}
.y70{bottom:-217.830000px;}
.y6f{bottom:-183.990000px;}
.y7f{bottom:-155.010000px;}
.y6e{bottom:-150.330000px;}
.y7e{bottom:-121.350000px;}
.y6d{bottom:-116.460000px;}
.y7d{bottom:-87.510000px;}
.y6c{bottom:-82.800000px;}
.y7c{bottom:-53.805000px;}
.y6b{bottom:-49.140000px;}
.y64{bottom:-28.650000px;}
.y3c{bottom:-27.180000px;}
.y7b{bottom:-20.145000px;}
.y81{bottom:-17.922750px;}
.y6a{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y260{bottom:1.837500px;}
.y69{bottom:2.700000px;}
.y121{bottom:3.045000px;}
.y2{bottom:3.960000px;}
.y58{bottom:4.515000px;}
.yd4{bottom:4.680000px;}
.ye2{bottom:4.725000px;}
.yd6{bottom:4.860000px;}
.ye3{bottom:4.905000px;}
.y3b{bottom:5.040000px;}
.y63{bottom:5.580000px;}
.y61{bottom:6.165000px;}
.y11e{bottom:9.705000px;}
.y10e{bottom:11.325000px;}
.y7{bottom:12.420000px;}
.y105{bottom:12.600000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y7a{bottom:13.695000px;}
.y68{bottom:15.660000px;}
.y119{bottom:16.185000px;}
.y10a{bottom:16.545000px;}
.y120{bottom:16.905000px;}
.y57{bottom:18.375000px;}
.y60{bottom:18.585000px;}
.y104{bottom:20.520000px;}
.y6{bottom:25.200000px;}
.y11d{bottom:25.725000px;}
.y10d{bottom:25.770000px;}
.y56{bottom:27.195000px;}
.y67{bottom:28.800000px;}
.y11c{bottom:30.405000px;}
.y11f{bottom:30.585000px;}
.y5f{bottom:30.645000px;}
.y118{bottom:32.025000px;}
.y11b{bottom:32.205000px;}
.y109{bottom:32.430000px;}
.y5{bottom:38.160000px;}
.y10c{bottom:39.450000px;}
.y66{bottom:41.040000px;}
.y5e{bottom:42.705000px;}
.y129{bottom:43.380000px;}
.y79{bottom:44.655000px;}
.y55{bottom:45.015000px;}
.y11a{bottom:46.065000px;}
.y85{bottom:46.260000px;}
.y117{bottom:48.045000px;}
.y128{bottom:48.060000px;}
.y108{bottom:48.270000px;}
.y10b{bottom:53.310000px;}
.y5d{bottom:54.765000px;}
.y78{bottom:57.615000px;}
.y107{bottom:59.970000px;}
.yd1{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.y84{bottom:62.640000px;}
.y54{bottom:62.835000px;}
.y80{bottom:63.780000px;}
.y116{bottom:63.885000px;}
.y127{bottom:64.440000px;}
.y5c{bottom:66.825000px;}
.y113{bottom:70.725000px;}
.y77{bottom:70.755000px;}
.y115{bottom:75.225000px;}
.y5b{bottom:78.885000px;}
.y53{bottom:80.835000px;}
.y76{bottom:83.715000px;}
.y112{bottom:86.745000px;}
.y5a{bottom:95.805000px;}
.y75{bottom:96.675000px;}
.y52{bottom:98.655000px;}
.y215{bottom:99.900000px;}
.y111{bottom:102.585000px;}
.yb7{bottom:103.680000px;}
.y126{bottom:103.860000px;}
.y1c2{bottom:105.840000px;}
.y236{bottom:107.280000px;}
.y1f0{bottom:107.460000px;}
.y74{bottom:109.815000px;}
.y16a{bottom:110.520000px;}
.y51{bottom:111.975000px;}
.yd0{bottom:112.500000px;}
.y39{bottom:115.920000px;}
.y214{bottom:119.700000px;}
.y50{bottom:120.795000px;}
.y73{bottom:122.235000px;}
.y110{bottom:123.465000px;}
.yb6{bottom:123.480000px;}
.y125{bottom:123.660000px;}
.y1c1{bottom:125.640000px;}
.y235{bottom:127.080000px;}
.y1ef{bottom:127.260000px;}
.y25f{bottom:130.860000px;}
.ycf{bottom:132.300000px;}
.y38{bottom:135.720000px;}
.y4f{bottom:138.615000px;}
.y213{bottom:139.500000px;}
.yb5{bottom:143.280000px;}
.y124{bottom:143.460000px;}
.y1c0{bottom:145.440000px;}
.y234{bottom:146.880000px;}
.y1ee{bottom:147.060000px;}
.y25e{bottom:150.660000px;}
.yce{bottom:152.280000px;}
.y37{bottom:155.520000px;}
.y4e{bottom:156.435000px;}
.y212{bottom:159.480000px;}
.yb4{bottom:163.110000px;}
.y123{bottom:163.470000px;}
.y1bf{bottom:165.450000px;}
.y1ed{bottom:167.070000px;}
.y233{bottom:167.610000px;}
.y25d{bottom:170.490000px;}
.ycd{bottom:172.110000px;}
.y4d{bottom:174.255000px;}
.y36{bottom:175.350000px;}
.y211{bottom:179.310000px;}
.yb3{bottom:183.090000px;}
.y122{bottom:183.270000px;}
.y1be{bottom:185.250000px;}
.y1ec{bottom:186.870000px;}
.y25c{bottom:190.290000px;}
.ycc{bottom:191.910000px;}
.y4c{bottom:192.255000px;}
.y35{bottom:195.150000px;}
.y210{bottom:199.110000px;}
.yb2{bottom:202.890000px;}
.y196{bottom:203.070000px;}
.y169{bottom:203.790000px;}
.y1bd{bottom:205.050000px;}
.y1eb{bottom:206.670000px;}
.y232{bottom:208.650000px;}
.y4b{bottom:210.075000px;}
.y25b{bottom:210.270000px;}
.ycb{bottom:211.710000px;}
.y34{bottom:215.130000px;}
.y20f{bottom:218.910000px;}
.yb1{bottom:222.690000px;}
.y195{bottom:222.870000px;}
.y168{bottom:223.590000px;}
.y1bc{bottom:224.850000px;}
.y1ea{bottom:226.470000px;}
.y4a{bottom:227.925000px;}
.y231{bottom:229.350000px;}
.y25a{bottom:230.070000px;}
.yca{bottom:231.510000px;}
.y33{bottom:234.930000px;}
.y167{bottom:236.550000px;}
.y20e{bottom:238.710000px;}
.y10f{bottom:240.885000px;}
.yb0{bottom:242.490000px;}
.y194{bottom:242.670000px;}
.y1bb{bottom:244.650000px;}
.y49{bottom:245.745000px;}
.y1e9{bottom:246.270000px;}
.y259{bottom:249.870000px;}
.yc9{bottom:252.390000px;}
.y230{bottom:253.110000px;}
.y32{bottom:254.730000px;}
.y166{bottom:256.350000px;}
.y20d{bottom:258.690000px;}
.yaf{bottom:262.290000px;}
.y193{bottom:262.650000px;}
.y48{bottom:263.565000px;}
.y1ba{bottom:264.630000px;}
.y1e8{bottom:266.250000px;}
.y258{bottom:269.670000px;}
.yc8{bottom:272.010000px;}
.y31{bottom:274.530000px;}
.y165{bottom:276.150000px;}
.y20c{bottom:278.490000px;}
.y47{bottom:281.565000px;}
.yae{bottom:282.270000px;}
.y192{bottom:282.450000px;}
.y114{bottom:283.185000px;}
.y1b9{bottom:284.430000px;}
.yc7{bottom:285.150000px;}
.y1e7{bottom:286.050000px;}
.y257{bottom:289.470000px;}
.y22f{bottom:293.970000px;}
.y30{bottom:294.330000px;}
.y46{bottom:294.885000px;}
.y164{bottom:296.130000px;}
.y20b{bottom:298.290000px;}
.yad{bottom:302.070000px;}
.y191{bottom:302.250000px;}
.y152{bottom:303.330000px;}
.y45{bottom:303.705000px;}
.y1b8{bottom:304.230000px;}
.yc6{bottom:304.950000px;}
.y1e6{bottom:305.850000px;}
.y256{bottom:309.450000px;}
.y22e{bottom:313.950000px;}
.y2f{bottom:314.310000px;}
.y163{bottom:315.930000px;}
.y20a{bottom:318.090000px;}
.y44{bottom:321.525000px;}
.yac{bottom:321.870000px;}
.y190{bottom:322.050000px;}
.y151{bottom:322.770000px;}
.y1b7{bottom:324.030000px;}
.yc5{bottom:324.750000px;}
.y1e5{bottom:325.650000px;}
.y255{bottom:329.250000px;}
.y22d{bottom:333.750000px;}
.y2e{bottom:334.110000px;}
.y150{bottom:335.730000px;}
.y209{bottom:337.890000px;}
.y43{bottom:339.345000px;}
.yab{bottom:341.670000px;}
.y18f{bottom:341.850000px;}
.yc4{bottom:344.730000px;}
.y1b6{bottom:345.090000px;}
.y1e4{bottom:345.450000px;}
.y254{bottom:349.050000px;}
.y22c{bottom:353.550000px;}
.y2d{bottom:354.810000px;}
.y14f{bottom:355.530000px;}
.y42{bottom:357.165000px;}
.y208{bottom:357.870000px;}
.yaa{bottom:361.470000px;}
.y18e{bottom:361.830000px;}
.yc3{bottom:364.530000px;}
.y1b5{bottom:364.710000px;}
.y1e3{bottom:365.430000px;}
.y253{bottom:368.850000px;}
.y106{bottom:370.125000px;}
.y41{bottom:370.485000px;}
.y22b{bottom:373.350000px;}
.y2c{bottom:375.150000px;}
.y14e{bottom:375.330000px;}
.y1b4{bottom:377.670000px;}
.y40{bottom:379.305000px;}
.ya9{bottom:381.450000px;}
.y18d{bottom:381.630000px;}
.yc2{bottom:384.330000px;}
.y2b{bottom:385.050000px;}
.y1e2{bottom:385.230000px;}
.y252{bottom:388.650000px;}
.y22a{bottom:393.195000px;}
.y14d{bottom:395.355000px;}
.y2a{bottom:396.435000px;}
.y3f{bottom:397.305000px;}
.y1b3{bottom:397.515000px;}
.y3d{bottom:400.380000px;}
.ya8{bottom:401.295000px;}
.y18c{bottom:401.475000px;}
.yc1{bottom:404.175000px;}
.y1e1{bottom:405.075000px;}
.y251{bottom:408.675000px;}
.y229{bottom:413.175000px;}
.y3e{bottom:415.125000px;}
.y14c{bottom:415.155000px;}
.y1b2{bottom:417.315000px;}
.y29{bottom:420.375000px;}
.ya7{bottom:421.095000px;}
.y18b{bottom:422.535000px;}
.yc0{bottom:423.975000px;}
.y1e0{bottom:424.875000px;}
.y250{bottom:428.475000px;}
.y228{bottom:432.975000px;}
.y14b{bottom:434.955000px;}
.y1b1{bottom:437.115000px;}
.ya6{bottom:440.895000px;}
.y18a{bottom:441.975000px;}
.y103{bottom:443.235000px;}
.ybf{bottom:443.955000px;}
.y28{bottom:444.135000px;}
.y1df{bottom:444.675000px;}
.y24f{bottom:448.275000px;}
.y227{bottom:452.775000px;}
.y14a{bottom:454.755000px;}
.y189{bottom:455.115000px;}
.y1b0{bottom:457.095000px;}
.ya5{bottom:460.695000px;}
.ybe{bottom:464.655000px;}
.y27{bottom:467.895000px;}
.y24e{bottom:468.075000px;}
.y226{bottom:472.575000px;}
.y149{bottom:474.555000px;}
.y188{bottom:474.915000px;}
.y72{bottom:475.620000px;}
.y1af{bottom:476.895000px;}
.ya4{bottom:480.675000px;}
.y102{bottom:482.835000px;}
.ybd{bottom:484.275000px;}
.y1de{bottom:484.455000px;}
.y24d{bottom:487.875000px;}
.y26{bottom:488.775000px;}
.y225{bottom:492.375000px;}
.y148{bottom:494.535000px;}
.y187{bottom:494.715000px;}
.y1ae{bottom:496.695000px;}
.ybc{bottom:497.415000px;}
.ya3{bottom:500.475000px;}
.y101{bottom:501.195000px;}
.y1dd{bottom:504.255000px;}
.y24c{bottom:507.855000px;}
.y25{bottom:508.575000px;}
.y224{bottom:513.255000px;}
.y147{bottom:514.335000px;}
.y186{bottom:514.515000px;}
.y1ad{bottom:516.495000px;}
.ybb{bottom:517.215000px;}
.ya2{bottom:520.275000px;}
.yf4{bottom:521.175000px;}
.y24{bottom:522.435000px;}
.y1dc{bottom:524.055000px;}
.y24b{bottom:527.655000px;}
.y23{bottom:531.075000px;}
.y146{bottom:534.135000px;}
.y185{bottom:534.315000px;}
.y1ac{bottom:536.295000px;}
.yba{bottom:537.015000px;}
.ya1{bottom:540.075000px;}
.yf3{bottom:540.975000px;}
.y1db{bottom:543.855000px;}
.y24a{bottom:547.455000px;}
.y100{bottom:550.875000px;}
.y145{bottom:553.935000px;}
.y223{bottom:554.115000px;}
.y22{bottom:554.295000px;}
.y162{bottom:555.195000px;}
.y1ab{bottom:556.275000px;}
.yb9{bottom:556.995000px;}
.ya0{bottom:559.875000px;}
.yf2{bottom:560.775000px;}
.y1da{bottom:563.835000px;}
.y249{bottom:567.255000px;}
.yff{bottom:570.675000px;}
.y144{bottom:573.735000px;}
.y222{bottom:573.915000px;}
.y184{bottom:574.095000px;}
.y161{bottom:574.635000px;}
.y1aa{bottom:576.075000px;}
.y21{bottom:577.695000px;}
.y9f{bottom:579.855000px;}
.yf1{bottom:580.575000px;}
.y1d9{bottom:583.635000px;}
.y248{bottom:587.055000px;}
.y160{bottom:587.775000px;}
.yfe{bottom:590.475000px;}
.y221{bottom:593.715000px;}
.y183{bottom:593.895000px;}
.y143{bottom:594.975000px;}
.y1a9{bottom:595.875000px;}
.yb8{bottom:598.575000px;}
.y9e{bottom:599.655000px;}
.yf0{bottom:600.375000px;}
.y20{bottom:600.915000px;}
.y1d8{bottom:603.435000px;}
.y247{bottom:607.035000px;}
.y15f{bottom:607.575000px;}
.yfd{bottom:610.275000px;}
.y220{bottom:613.515000px;}
.y182{bottom:613.695000px;}
.y142{bottom:614.415000px;}
.y207{bottom:615.675000px;}
.y1a8{bottom:616.935000px;}
.y9d{bottom:619.455000px;}
.yef{bottom:620.355000px;}
.y59{bottom:620.520000px;}
.y1d7{bottom:623.265000px;}
.y246{bottom:626.865000px;}
.y141{bottom:627.405000px;}
.yfc{bottom:630.285000px;}
.y181{bottom:633.525000px;}
.y206{bottom:635.505000px;}
.y9c{bottom:639.285000px;}
.yee{bottom:640.185000px;}
.y1a7{bottom:640.725000px;}
.y1d6{bottom:643.065000px;}
.y245{bottom:646.665000px;}
.y140{bottom:647.205000px;}
.yfb{bottom:650.085000px;}
.y21f{bottom:653.325000px;}
.y180{bottom:653.505000px;}
.y205{bottom:655.485000px;}
.y1f{bottom:655.845000px;}
.y9b{bottom:659.085000px;}
.yed{bottom:659.985000px;}
.y1a6{bottom:660.345000px;}
.y1d5{bottom:663.045000px;}
.y13f{bottom:667.005000px;}
.y244{bottom:667.365000px;}
.yfa{bottom:669.885000px;}
.y1e{bottom:671.325000px;}
.y21e{bottom:673.125000px;}
.y17f{bottom:673.305000px;}
.y204{bottom:675.285000px;}
.y9a{bottom:679.065000px;}
.yec{bottom:679.785000px;}
.y1d4{bottom:682.845000px;}
.y1d{bottom:686.805000px;}
.y13e{bottom:686.985000px;}
.yf9{bottom:689.685000px;}
.y21d{bottom:692.925000px;}
.y17e{bottom:693.105000px;}
.y203{bottom:695.085000px;}
.y99{bottom:698.865000px;}
.yeb{bottom:699.585000px;}
.y1c{bottom:702.285000px;}
.y1d3{bottom:702.645000px;}
.y13d{bottom:706.785000px;}
.y243{bottom:708.225000px;}
.yf8{bottom:710.385000px;}
.y21c{bottom:712.725000px;}
.y17d{bottom:712.905000px;}
.y202{bottom:714.885000px;}
.y1b{bottom:717.945000px;}
.y98{bottom:718.665000px;}
.yea{bottom:719.565000px;}
.y1d2{bottom:723.345000px;}
.y13c{bottom:726.585000px;}
.y1a{bottom:728.925000px;}
.y242{bottom:729.105000px;}
.yf7{bottom:730.365000px;}
.y17c{bottom:732.705000px;}
.y201{bottom:734.685000px;}
.y97{bottom:738.465000px;}
.ye9{bottom:739.365000px;}
.y65{bottom:740.805000px;}
.y19{bottom:742.605000px;}
.yf6{bottom:743.325000px;}
.y13b{bottom:746.385000px;}
.y21b{bottom:752.505000px;}
.y1a5{bottom:752.685000px;}
.y17b{bottom:753.945000px;}
.y200{bottom:754.665000px;}
.y18{bottom:755.205000px;}
.y96{bottom:758.265000px;}
.ye8{bottom:760.065000px;}
.yf5{bottom:763.125000px;}
.y1d1{bottom:764.205000px;}
.y13a{bottom:766.185000px;}
.y17{bottom:767.625000px;}
.y241{bottom:769.965000px;}
.y21a{bottom:772.305000px;}
.y1a4{bottom:772.485000px;}
.y1ff{bottom:774.465000px;}
.y17a{bottom:777.705000px;}
.y95{bottom:778.245000px;}
.y16{bottom:780.585000px;}
.ye7{bottom:782.565000px;}
.y1d0{bottom:784.185000px;}
.y139{bottom:786.165000px;}
.y240{bottom:789.765000px;}
.y219{bottom:792.105000px;}
.y1a3{bottom:792.285000px;}
.y15{bottom:794.265000px;}
.y179{bottom:797.145000px;}
.y94{bottom:798.045000px;}
.ye6{bottom:798.945000px;}
.y1cf{bottom:803.985000px;}
.y138{bottom:805.965000px;}
.y14{bottom:807.225000px;}
.y178{bottom:810.105000px;}
.y23f{bottom:810.465000px;}
.y218{bottom:811.905000px;}
.y1a2{bottom:812.085000px;}
.y1fe{bottom:814.065000px;}
.ye5{bottom:815.505000px;}
.y93{bottom:817.845000px;}
.y1ce{bottom:823.785000px;}
.y137{bottom:825.765000px;}
.y177{bottom:829.905000px;}
.y1a1{bottom:831.885000px;}
.ye4{bottom:832.065000px;}
.y1fd{bottom:833.865000px;}
.y13{bottom:834.045000px;}
.y92{bottom:837.645000px;}
.y1cd{bottom:843.585000px;}
.y12{bottom:845.205000px;}
.y15e{bottom:845.565000px;}
.y136{bottom:846.825000px;}
.ye1{bottom:848.805000px;}
.y176{bottom:849.885000px;}
.y23e{bottom:851.325000px;}
.y217{bottom:851.685000px;}
.y1a0{bottom:851.865000px;}
.y1fc{bottom:853.890000px;}
.y91{bottom:857.490000px;}
.y1cc{bottom:863.430000px;}
.y11{bottom:864.870000px;}
.ye0{bottom:865.410000px;}
.y135{bottom:866.310000px;}
.y175{bottom:869.730000px;}
.y23d{bottom:871.350000px;}
.y19f{bottom:871.710000px;}
.y216{bottom:872.430000px;}
.y1fb{bottom:873.690000px;}
.y90{bottom:877.470000px;}
.y134{bottom:879.450000px;}
.ydf{bottom:881.970000px;}
.y1cb{bottom:883.410000px;}
.y15d{bottom:885.390000px;}
.y174{bottom:889.530000px;}
.y10{bottom:890.610000px;}
.y23c{bottom:891.150000px;}
.y19e{bottom:891.510000px;}
.y1fa{bottom:893.490000px;}
.y8f{bottom:897.270000px;}
.yde{bottom:898.710000px;}
.y133{bottom:899.250000px;}
.y1ca{bottom:903.210000px;}
.y15c{bottom:905.190000px;}
.yf{bottom:908.790000px;}
.y173{bottom:909.330000px;}
.y23b{bottom:910.950000px;}
.y19d{bottom:911.310000px;}
.y1f9{bottom:913.290000px;}
.ydd{bottom:915.270000px;}
.y8e{bottom:917.070000px;}
.y132{bottom:919.950000px;}
.ye{bottom:922.650000px;}
.y1c9{bottom:923.010000px;}
.y15b{bottom:924.990000px;}
.y172{bottom:929.130000px;}
.y23a{bottom:930.750000px;}
.y19c{bottom:931.110000px;}
.ydc{bottom:931.830000px;}
.y1f8{bottom:933.090000px;}
.yd{bottom:935.790000px;}
.y8d{bottom:936.870000px;}
.y131{bottom:939.570000px;}
.y1c8{bottom:942.810000px;}
.y15a{bottom:944.790000px;}
.ydb{bottom:948.570000px;}
.y171{bottom:949.110000px;}
.y239{bottom:950.550000px;}
.y19b{bottom:951.090000px;}
.y130{bottom:952.710000px;}
.y1f7{bottom:953.070000px;}
.y8c{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.y1c7{bottom:962.610000px;}
.yda{bottom:965.130000px;}
.y159{bottom:965.850000px;}
.y170{bottom:968.910000px;}
.y238{bottom:970.530000px;}
.y19a{bottom:972.150000px;}
.y12f{bottom:972.510000px;}
.y1f6{bottom:972.870000px;}
.y8b{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.yd9{bottom:981.690000px;}
.y1c6{bottom:982.590000px;}
.y16f{bottom:988.710000px;}
.y158{bottom:989.790000px;}
.y237{bottom:991.230000px;}
.y12e{bottom:992.490000px;}
.y1f5{bottom:992.670000px;}
.y199{bottom:995.910000px;}
.y8a{bottom:996.450000px;}
.yd8{bottom:998.430000px;}
.y1c5{bottom:1002.390000px;}
.ya{bottom:1004.550000px;}
.y16e{bottom:1008.510000px;}
.y157{bottom:1009.230000px;}
.y12d{bottom:1012.290000px;}
.y1f4{bottom:1012.470000px;}
.yd7{bottom:1014.990000px;}
.y198{bottom:1015.170000px;}
.y89{bottom:1016.250000px;}
.y156{bottom:1022.190000px;}
.y1c4{bottom:1023.450000px;}
.y16d{bottom:1028.310000px;}
.yd5{bottom:1031.550000px;}
.y12c{bottom:1032.090000px;}
.y1f3{bottom:1032.270000px;}
.y88{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y155{bottom:1041.990000px;}
.y1c3{bottom:1042.890000px;}
.y16c{bottom:1048.290000px;}
.yd3{bottom:1049.730000px;}
.y12b{bottom:1051.890000px;}
.y1f2{bottom:1052.250000px;}
.y87{bottom:1055.850000px;}
.y154{bottom:1062.690000px;}
.y8{bottom:1063.230000px;}
.y197{bottom:1068.990000px;}
.y16b{bottom:1069.350000px;}
.y1f1{bottom:1072.050000px;}
.y12a{bottom:1072.590000px;}
.yd2{bottom:1073.490000px;}
.y86{bottom:1075.650000px;}
.y153{bottom:1082.490000px;}
.y62{bottom:1096.200000px;}
.y83{bottom:1103.940000px;}
.y82{bottom:1123.200000px;}
.y3a{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h34{height:5.729063px;}
.h37{height:6.257812px;}
.h2{height:13.500000px;}
.h27{height:15.825000px;}
.h2a{height:15.840000px;}
.h28{height:15.862500px;}
.h29{height:16.020000px;}
.h19{height:16.920000px;}
.h16{height:18.140625px;}
.h1f{height:22.140000px;}
.h15{height:23.319141px;}
.h26{height:29.664141px;}
.hc{height:29.678906px;}
.hf{height:30.963516px;}
.h2c{height:31.665000px;}
.h17{height:36.281250px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h33{height:41.385000px;}
.h18{height:41.726953px;}
.h1e{height:42.086250px;}
.h11{height:44.518359px;}
.h12{height:46.622932px;}
.h2e{height:47.321367px;}
.hd{height:47.344922px;}
.h4{height:47.699850px;}
.h1a{height:48.616875px;}
.h30{height:49.583118px;}
.h21{height:52.020000px;}
.h14{height:52.998047px;}
.h1b{height:54.421875px;}
.h10{height:55.291992px;}
.h2b{height:58.621992px;}
.h3{height:58.651172px;}
.ha{height:60.226875px;}
.h35{height:61.423863px;}
.h36{height:62.211094px;}
.hb{height:65.010937px;}
.h22{height:65.884219px;}
.h25{height:70.628906px;}
.h2d{height:70.941000px;}
.h2f{height:70.942500px;}
.he{height:72.562500px;}
.h20{height:74.953125px;}
.h24{height:75.093750px;}
.h32{height:86.205000px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h1d{height:103.905000px;}
.h23{height:133.200000px;}
.h31{height:200.190000px;}
.h1c{height:427.365000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wc{width:54.900000px;}
.wd{width:77.220000px;}
.w3{width:82.071000px;}
.w11{width:85.851000px;}
.w15{width:93.090000px;}
.w18{width:93.096000px;}
.w19{width:93.105000px;}
.w14{width:109.425000px;}
.w16{width:109.431000px;}
.w17{width:109.440000px;}
.wf{width:111.261000px;}
.w13{width:113.061000px;}
.wb{width:119.902500px;}
.we{width:136.476000px;}
.w9{width:154.470000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.w10{width:184.350000px;}
.w12{width:319.920000px;}
.w6{width:532.905000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:4.252500px;}
.x2{left:8.091000px;}
.x24{left:9.720000px;}
.x12{left:10.791000px;}
.x27{left:13.140000px;}
.x21{left:14.745000px;}
.x37{left:19.800000px;}
.x18{left:21.255000px;}
.x34{left:22.890000px;}
.x35{left:24.135000px;}
.x39{left:27.540000px;}
.x25{left:32.580000px;}
.x3a{left:34.920000px;}
.x38{left:38.145000px;}
.x28{left:40.500000px;}
.x29{left:43.920000px;}
.x2a{left:52.920000px;}
.x36{left:54.735000px;}
.x2d{left:59.220000px;}
.x26{left:62.310000px;}
.x2c{left:64.980000px;}
.x23{left:68.760000px;}
.x2b{left:72.720000px;}
.x3{left:73.965000px;}
.x2e{left:77.040000px;}
.x11{left:81.765000px;}
.x17{left:93.105000px;}
.x14{left:94.725000px;}
.x2f{left:101.196000px;}
.x1{left:108.045000px;}
.x3b{left:111.996000px;}
.x1c{left:121.536000px;}
.x1d{left:126.765000px;}
.xe{left:132.696000px;}
.xa{left:133.776000px;}
.x6{left:138.636000px;}
.x31{left:144.210000px;}
.x7{left:151.230000px;}
.xb{left:182.370000px;}
.x4{left:190.125000px;}
.x30{left:193.905000px;}
.x1a{left:242.490000px;}
.x1e{left:246.675000px;}
.x13{left:302.115000px;}
.x15{left:310.350000px;}
.x9{left:312.015000px;}
.x16{left:371.580000px;}
.x1f{left:378.795000px;}
.xc{left:396.615000px;}
.xd{left:445.065000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x32{left:513.840000px;}
.x20{left:515.280000px;}
.x19{left:620.253000px;}
.x22{left:626.550000px;}
.x1b{left:645.450000px;}
.x33{left:736.350000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.201067pt;}
.lsf{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.240640pt;}
.lsa{letter-spacing:0.280533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.727040pt;}
.ls15{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.960000pt;}
.ls17{letter-spacing:13.573120pt;}
.ls2{letter-spacing:42.400000pt;}
.ls0{letter-spacing:64.000000pt;}
.ws16{word-spacing:-53.120000pt;}
.ws9{word-spacing:-37.120000pt;}
.ws14{word-spacing:-16.000000pt;}
.ws13{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.096533pt;}
.ws18{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws2{word-spacing:-10.400000pt;}
.ws7{word-spacing:-9.560533pt;}
.ws8{word-spacing:-9.481067pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:54.720000pt;}
._5{margin-left:-52.960000pt;}
._44{margin-left:-3.849600pt;}
._d{margin-left:-2.850560pt;}
._2{margin-left:-1.612800pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._8{width:3.340800pt;}
._7{width:4.249600pt;}
._b{width:5.287040pt;}
._18{width:6.753920pt;}
._a{width:8.339840pt;}
._10{width:9.774080pt;}
._12{width:11.289600pt;}
._11{width:12.376960pt;}
._17{width:14.016000pt;}
._15{width:15.298560pt;}
._2e{width:16.243200pt;}
._28{width:17.210880pt;}
._9{width:18.485760pt;}
._e{width:19.813760pt;}
._f{width:21.250987pt;}
._20{width:22.310400pt;}
._23{width:23.207680pt;}
._c{width:24.488320pt;}
._22{width:25.816320pt;}
._21{width:27.143040pt;}
._1c{width:28.285440pt;}
._14{width:29.959680pt;}
._25{width:31.315840pt;}
._24{width:32.296960pt;}
._2d{width:33.306240pt;}
._42{width:34.285867pt;}
._35{width:35.193600pt;}
._2a{width:36.121600pt;}
._13{width:37.396480pt;}
._2c{width:38.299520pt;}
._1d{width:39.792640pt;}
._2b{width:40.731520pt;}
._29{width:41.646080pt;}
._1f{width:42.549120pt;}
._33{width:43.664640pt;}
._32{width:44.620800pt;}
._31{width:46.373760pt;}
._26{width:47.542400pt;}
._27{width:48.845440pt;}
._34{width:49.773440pt;}
._3b{width:50.835840pt;}
._16{width:52.535680pt;}
._30{width:54.216320pt;}
._2f{width:55.132800pt;}
._3d{width:56.200960pt;}
._3{width:58.218667pt;}
._39{width:59.335040pt;}
._1a{width:62.510080pt;}
._1b{width:63.549440pt;}
._19{width:64.885760pt;}
._36{width:66.189440pt;}
._3c{width:67.273600pt;}
._40{width:68.181547pt;}
._37{width:71.233920pt;}
._43{width:72.827520pt;}
._3e{width:73.783680pt;}
._38{width:75.139840pt;}
._3a{width:79.945600pt;}
._3f{width:98.643840pt;}
._41{width:133.915520pt;}
._4{width:177.440000pt;}
._1e{width:254.106667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y71{bottom:-223.546667pt;}
.y70{bottom:-193.626667pt;}
.y6f{bottom:-163.546667pt;}
.y7f{bottom:-137.786667pt;}
.y6e{bottom:-133.626667pt;}
.y7e{bottom:-107.866667pt;}
.y6d{bottom:-103.520000pt;}
.y7d{bottom:-77.786667pt;}
.y6c{bottom:-73.600000pt;}
.y7c{bottom:-47.826667pt;}
.y6b{bottom:-43.680000pt;}
.y64{bottom:-25.466667pt;}
.y3c{bottom:-24.160000pt;}
.y7b{bottom:-17.906667pt;}
.y81{bottom:-15.931333pt;}
.y6a{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y260{bottom:1.633333pt;}
.y69{bottom:2.400000pt;}
.y121{bottom:2.706667pt;}
.y2{bottom:3.520000pt;}
.y58{bottom:4.013333pt;}
.yd4{bottom:4.160000pt;}
.ye2{bottom:4.200000pt;}
.yd6{bottom:4.320000pt;}
.ye3{bottom:4.360000pt;}
.y3b{bottom:4.480000pt;}
.y63{bottom:4.960000pt;}
.y61{bottom:5.480000pt;}
.y11e{bottom:8.626667pt;}
.y10e{bottom:10.066667pt;}
.y7{bottom:11.040000pt;}
.y105{bottom:11.200000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y7a{bottom:12.173333pt;}
.y68{bottom:13.920000pt;}
.y119{bottom:14.386667pt;}
.y10a{bottom:14.706667pt;}
.y120{bottom:15.026667pt;}
.y57{bottom:16.333333pt;}
.y60{bottom:16.520000pt;}
.y104{bottom:18.240000pt;}
.y6{bottom:22.400000pt;}
.y11d{bottom:22.866667pt;}
.y10d{bottom:22.906667pt;}
.y56{bottom:24.173333pt;}
.y67{bottom:25.600000pt;}
.y11c{bottom:27.026667pt;}
.y11f{bottom:27.186667pt;}
.y5f{bottom:27.240000pt;}
.y118{bottom:28.466667pt;}
.y11b{bottom:28.626667pt;}
.y109{bottom:28.826667pt;}
.y5{bottom:33.920000pt;}
.y10c{bottom:35.066667pt;}
.y66{bottom:36.480000pt;}
.y5e{bottom:37.960000pt;}
.y129{bottom:38.560000pt;}
.y79{bottom:39.693333pt;}
.y55{bottom:40.013333pt;}
.y11a{bottom:40.946667pt;}
.y85{bottom:41.120000pt;}
.y117{bottom:42.706667pt;}
.y128{bottom:42.720000pt;}
.y108{bottom:42.906667pt;}
.y10b{bottom:47.386667pt;}
.y5d{bottom:48.680000pt;}
.y78{bottom:51.213333pt;}
.y107{bottom:53.306667pt;}
.yd1{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.y84{bottom:55.680000pt;}
.y54{bottom:55.853333pt;}
.y80{bottom:56.693333pt;}
.y116{bottom:56.786667pt;}
.y127{bottom:57.280000pt;}
.y5c{bottom:59.400000pt;}
.y113{bottom:62.866667pt;}
.y77{bottom:62.893333pt;}
.y115{bottom:66.866667pt;}
.y5b{bottom:70.120000pt;}
.y53{bottom:71.853333pt;}
.y76{bottom:74.413333pt;}
.y112{bottom:77.106667pt;}
.y5a{bottom:85.160000pt;}
.y75{bottom:85.933333pt;}
.y52{bottom:87.693333pt;}
.y215{bottom:88.800000pt;}
.y111{bottom:91.186667pt;}
.yb7{bottom:92.160000pt;}
.y126{bottom:92.320000pt;}
.y1c2{bottom:94.080000pt;}
.y236{bottom:95.360000pt;}
.y1f0{bottom:95.520000pt;}
.y74{bottom:97.613333pt;}
.y16a{bottom:98.240000pt;}
.y51{bottom:99.533333pt;}
.yd0{bottom:100.000000pt;}
.y39{bottom:103.040000pt;}
.y214{bottom:106.400000pt;}
.y50{bottom:107.373333pt;}
.y73{bottom:108.653333pt;}
.y110{bottom:109.746667pt;}
.yb6{bottom:109.760000pt;}
.y125{bottom:109.920000pt;}
.y1c1{bottom:111.680000pt;}
.y235{bottom:112.960000pt;}
.y1ef{bottom:113.120000pt;}
.y25f{bottom:116.320000pt;}
.ycf{bottom:117.600000pt;}
.y38{bottom:120.640000pt;}
.y4f{bottom:123.213333pt;}
.y213{bottom:124.000000pt;}
.yb5{bottom:127.360000pt;}
.y124{bottom:127.520000pt;}
.y1c0{bottom:129.280000pt;}
.y234{bottom:130.560000pt;}
.y1ee{bottom:130.720000pt;}
.y25e{bottom:133.920000pt;}
.yce{bottom:135.360000pt;}
.y37{bottom:138.240000pt;}
.y4e{bottom:139.053333pt;}
.y212{bottom:141.760000pt;}
.yb4{bottom:144.986667pt;}
.y123{bottom:145.306667pt;}
.y1bf{bottom:147.066667pt;}
.y1ed{bottom:148.506667pt;}
.y233{bottom:148.986667pt;}
.y25d{bottom:151.546667pt;}
.ycd{bottom:152.986667pt;}
.y4d{bottom:154.893333pt;}
.y36{bottom:155.866667pt;}
.y211{bottom:159.386667pt;}
.yb3{bottom:162.746667pt;}
.y122{bottom:162.906667pt;}
.y1be{bottom:164.666667pt;}
.y1ec{bottom:166.106667pt;}
.y25c{bottom:169.146667pt;}
.ycc{bottom:170.586667pt;}
.y4c{bottom:170.893333pt;}
.y35{bottom:173.466667pt;}
.y210{bottom:176.986667pt;}
.yb2{bottom:180.346667pt;}
.y196{bottom:180.506667pt;}
.y169{bottom:181.146667pt;}
.y1bd{bottom:182.266667pt;}
.y1eb{bottom:183.706667pt;}
.y232{bottom:185.466667pt;}
.y4b{bottom:186.733333pt;}
.y25b{bottom:186.906667pt;}
.ycb{bottom:188.186667pt;}
.y34{bottom:191.226667pt;}
.y20f{bottom:194.586667pt;}
.yb1{bottom:197.946667pt;}
.y195{bottom:198.106667pt;}
.y168{bottom:198.746667pt;}
.y1bc{bottom:199.866667pt;}
.y1ea{bottom:201.306667pt;}
.y4a{bottom:202.600000pt;}
.y231{bottom:203.866667pt;}
.y25a{bottom:204.506667pt;}
.yca{bottom:205.786667pt;}
.y33{bottom:208.826667pt;}
.y167{bottom:210.266667pt;}
.y20e{bottom:212.186667pt;}
.y10f{bottom:214.120000pt;}
.yb0{bottom:215.546667pt;}
.y194{bottom:215.706667pt;}
.y1bb{bottom:217.466667pt;}
.y49{bottom:218.440000pt;}
.y1e9{bottom:218.906667pt;}
.y259{bottom:222.106667pt;}
.yc9{bottom:224.346667pt;}
.y230{bottom:224.986667pt;}
.y32{bottom:226.426667pt;}
.y166{bottom:227.866667pt;}
.y20d{bottom:229.946667pt;}
.yaf{bottom:233.146667pt;}
.y193{bottom:233.466667pt;}
.y48{bottom:234.280000pt;}
.y1ba{bottom:235.226667pt;}
.y1e8{bottom:236.666667pt;}
.y258{bottom:239.706667pt;}
.yc8{bottom:241.786667pt;}
.y31{bottom:244.026667pt;}
.y165{bottom:245.466667pt;}
.y20c{bottom:247.546667pt;}
.y47{bottom:250.280000pt;}
.yae{bottom:250.906667pt;}
.y192{bottom:251.066667pt;}
.y114{bottom:251.720000pt;}
.y1b9{bottom:252.826667pt;}
.yc7{bottom:253.466667pt;}
.y1e7{bottom:254.266667pt;}
.y257{bottom:257.306667pt;}
.y22f{bottom:261.306667pt;}
.y30{bottom:261.626667pt;}
.y46{bottom:262.120000pt;}
.y164{bottom:263.226667pt;}
.y20b{bottom:265.146667pt;}
.yad{bottom:268.506667pt;}
.y191{bottom:268.666667pt;}
.y152{bottom:269.626667pt;}
.y45{bottom:269.960000pt;}
.y1b8{bottom:270.426667pt;}
.yc6{bottom:271.066667pt;}
.y1e6{bottom:271.866667pt;}
.y256{bottom:275.066667pt;}
.y22e{bottom:279.066667pt;}
.y2f{bottom:279.386667pt;}
.y163{bottom:280.826667pt;}
.y20a{bottom:282.746667pt;}
.y44{bottom:285.800000pt;}
.yac{bottom:286.106667pt;}
.y190{bottom:286.266667pt;}
.y151{bottom:286.906667pt;}
.y1b7{bottom:288.026667pt;}
.yc5{bottom:288.666667pt;}
.y1e5{bottom:289.466667pt;}
.y255{bottom:292.666667pt;}
.y22d{bottom:296.666667pt;}
.y2e{bottom:296.986667pt;}
.y150{bottom:298.426667pt;}
.y209{bottom:300.346667pt;}
.y43{bottom:301.640000pt;}
.yab{bottom:303.706667pt;}
.y18f{bottom:303.866667pt;}
.yc4{bottom:306.426667pt;}
.y1b6{bottom:306.746667pt;}
.y1e4{bottom:307.066667pt;}
.y254{bottom:310.266667pt;}
.y22c{bottom:314.266667pt;}
.y2d{bottom:315.386667pt;}
.y14f{bottom:316.026667pt;}
.y42{bottom:317.480000pt;}
.y208{bottom:318.106667pt;}
.yaa{bottom:321.306667pt;}
.y18e{bottom:321.626667pt;}
.yc3{bottom:324.026667pt;}
.y1b5{bottom:324.186667pt;}
.y1e3{bottom:324.826667pt;}
.y253{bottom:327.866667pt;}
.y106{bottom:329.000000pt;}
.y41{bottom:329.320000pt;}
.y22b{bottom:331.866667pt;}
.y2c{bottom:333.466667pt;}
.y14e{bottom:333.626667pt;}
.y1b4{bottom:335.706667pt;}
.y40{bottom:337.160000pt;}
.ya9{bottom:339.066667pt;}
.y18d{bottom:339.226667pt;}
.yc2{bottom:341.626667pt;}
.y2b{bottom:342.266667pt;}
.y1e2{bottom:342.426667pt;}
.y252{bottom:345.466667pt;}
.y22a{bottom:349.506667pt;}
.y14d{bottom:351.426667pt;}
.y2a{bottom:352.386667pt;}
.y3f{bottom:353.160000pt;}
.y1b3{bottom:353.346667pt;}
.y3d{bottom:355.893333pt;}
.ya8{bottom:356.706667pt;}
.y18c{bottom:356.866667pt;}
.yc1{bottom:359.266667pt;}
.y1e1{bottom:360.066667pt;}
.y251{bottom:363.266667pt;}
.y229{bottom:367.266667pt;}
.y3e{bottom:369.000000pt;}
.y14c{bottom:369.026667pt;}
.y1b2{bottom:370.946667pt;}
.y29{bottom:373.666667pt;}
.ya7{bottom:374.306667pt;}
.y18b{bottom:375.586667pt;}
.yc0{bottom:376.866667pt;}
.y1e0{bottom:377.666667pt;}
.y250{bottom:380.866667pt;}
.y228{bottom:384.866667pt;}
.y14b{bottom:386.626667pt;}
.y1b1{bottom:388.546667pt;}
.ya6{bottom:391.906667pt;}
.y18a{bottom:392.866667pt;}
.y103{bottom:393.986667pt;}
.ybf{bottom:394.626667pt;}
.y28{bottom:394.786667pt;}
.y1df{bottom:395.266667pt;}
.y24f{bottom:398.466667pt;}
.y227{bottom:402.466667pt;}
.y14a{bottom:404.226667pt;}
.y189{bottom:404.546667pt;}
.y1b0{bottom:406.306667pt;}
.ya5{bottom:409.506667pt;}
.ybe{bottom:413.026667pt;}
.y27{bottom:415.906667pt;}
.y24e{bottom:416.066667pt;}
.y226{bottom:420.066667pt;}
.y149{bottom:421.826667pt;}
.y188{bottom:422.146667pt;}
.y72{bottom:422.773333pt;}
.y1af{bottom:423.906667pt;}
.ya4{bottom:427.266667pt;}
.y102{bottom:429.186667pt;}
.ybd{bottom:430.466667pt;}
.y1de{bottom:430.626667pt;}
.y24d{bottom:433.666667pt;}
.y26{bottom:434.466667pt;}
.y225{bottom:437.666667pt;}
.y148{bottom:439.586667pt;}
.y187{bottom:439.746667pt;}
.y1ae{bottom:441.506667pt;}
.ybc{bottom:442.146667pt;}
.ya3{bottom:444.866667pt;}
.y101{bottom:445.506667pt;}
.y1dd{bottom:448.226667pt;}
.y24c{bottom:451.426667pt;}
.y25{bottom:452.066667pt;}
.y224{bottom:456.226667pt;}
.y147{bottom:457.186667pt;}
.y186{bottom:457.346667pt;}
.y1ad{bottom:459.106667pt;}
.ybb{bottom:459.746667pt;}
.ya2{bottom:462.466667pt;}
.yf4{bottom:463.266667pt;}
.y24{bottom:464.386667pt;}
.y1dc{bottom:465.826667pt;}
.y24b{bottom:469.026667pt;}
.y23{bottom:472.066667pt;}
.y146{bottom:474.786667pt;}
.y185{bottom:474.946667pt;}
.y1ac{bottom:476.706667pt;}
.yba{bottom:477.346667pt;}
.ya1{bottom:480.066667pt;}
.yf3{bottom:480.866667pt;}
.y1db{bottom:483.426667pt;}
.y24a{bottom:486.626667pt;}
.y100{bottom:489.666667pt;}
.y145{bottom:492.386667pt;}
.y223{bottom:492.546667pt;}
.y22{bottom:492.706667pt;}
.y162{bottom:493.506667pt;}
.y1ab{bottom:494.466667pt;}
.yb9{bottom:495.106667pt;}
.ya0{bottom:497.666667pt;}
.yf2{bottom:498.466667pt;}
.y1da{bottom:501.186667pt;}
.y249{bottom:504.226667pt;}
.yff{bottom:507.266667pt;}
.y144{bottom:509.986667pt;}
.y222{bottom:510.146667pt;}
.y184{bottom:510.306667pt;}
.y161{bottom:510.786667pt;}
.y1aa{bottom:512.066667pt;}
.y21{bottom:513.506667pt;}
.y9f{bottom:515.426667pt;}
.yf1{bottom:516.066667pt;}
.y1d9{bottom:518.786667pt;}
.y248{bottom:521.826667pt;}
.y160{bottom:522.466667pt;}
.yfe{bottom:524.866667pt;}
.y221{bottom:527.746667pt;}
.y183{bottom:527.906667pt;}
.y143{bottom:528.866667pt;}
.y1a9{bottom:529.666667pt;}
.yb8{bottom:532.066667pt;}
.y9e{bottom:533.026667pt;}
.yf0{bottom:533.666667pt;}
.y20{bottom:534.146667pt;}
.y1d8{bottom:536.386667pt;}
.y247{bottom:539.586667pt;}
.y15f{bottom:540.066667pt;}
.yfd{bottom:542.466667pt;}
.y220{bottom:545.346667pt;}
.y182{bottom:545.506667pt;}
.y142{bottom:546.146667pt;}
.y207{bottom:547.266667pt;}
.y1a8{bottom:548.386667pt;}
.y9d{bottom:550.626667pt;}
.yef{bottom:551.426667pt;}
.y59{bottom:551.573333pt;}
.y1d7{bottom:554.013333pt;}
.y246{bottom:557.213333pt;}
.y141{bottom:557.693333pt;}
.yfc{bottom:560.253333pt;}
.y181{bottom:563.133333pt;}
.y206{bottom:564.893333pt;}
.y9c{bottom:568.253333pt;}
.yee{bottom:569.053333pt;}
.y1a7{bottom:569.533333pt;}
.y1d6{bottom:571.613333pt;}
.y245{bottom:574.813333pt;}
.y140{bottom:575.293333pt;}
.yfb{bottom:577.853333pt;}
.y21f{bottom:580.733333pt;}
.y180{bottom:580.893333pt;}
.y205{bottom:582.653333pt;}
.y1f{bottom:582.973333pt;}
.y9b{bottom:585.853333pt;}
.yed{bottom:586.653333pt;}
.y1a6{bottom:586.973333pt;}
.y1d5{bottom:589.373333pt;}
.y13f{bottom:592.893333pt;}
.y244{bottom:593.213333pt;}
.yfa{bottom:595.453333pt;}
.y1e{bottom:596.733333pt;}
.y21e{bottom:598.333333pt;}
.y17f{bottom:598.493333pt;}
.y204{bottom:600.253333pt;}
.y9a{bottom:603.613333pt;}
.yec{bottom:604.253333pt;}
.y1d4{bottom:606.973333pt;}
.y1d{bottom:610.493333pt;}
.y13e{bottom:610.653333pt;}
.yf9{bottom:613.053333pt;}
.y21d{bottom:615.933333pt;}
.y17e{bottom:616.093333pt;}
.y203{bottom:617.853333pt;}
.y99{bottom:621.213333pt;}
.yeb{bottom:621.853333pt;}
.y1c{bottom:624.253333pt;}
.y1d3{bottom:624.573333pt;}
.y13d{bottom:628.253333pt;}
.y243{bottom:629.533333pt;}
.yf8{bottom:631.453333pt;}
.y21c{bottom:633.533333pt;}
.y17d{bottom:633.693333pt;}
.y202{bottom:635.453333pt;}
.y1b{bottom:638.173333pt;}
.y98{bottom:638.813333pt;}
.yea{bottom:639.613333pt;}
.y1d2{bottom:642.973333pt;}
.y13c{bottom:645.853333pt;}
.y1a{bottom:647.933333pt;}
.y242{bottom:648.093333pt;}
.yf7{bottom:649.213333pt;}
.y17c{bottom:651.293333pt;}
.y201{bottom:653.053333pt;}
.y97{bottom:656.413333pt;}
.ye9{bottom:657.213333pt;}
.y65{bottom:658.493333pt;}
.y19{bottom:660.093333pt;}
.yf6{bottom:660.733333pt;}
.y13b{bottom:663.453333pt;}
.y21b{bottom:668.893333pt;}
.y1a5{bottom:669.053333pt;}
.y17b{bottom:670.173333pt;}
.y200{bottom:670.813333pt;}
.y18{bottom:671.293333pt;}
.y96{bottom:674.013333pt;}
.ye8{bottom:675.613333pt;}
.yf5{bottom:678.333333pt;}
.y1d1{bottom:679.293333pt;}
.y13a{bottom:681.053333pt;}
.y17{bottom:682.333333pt;}
.y241{bottom:684.413333pt;}
.y21a{bottom:686.493333pt;}
.y1a4{bottom:686.653333pt;}
.y1ff{bottom:688.413333pt;}
.y17a{bottom:691.293333pt;}
.y95{bottom:691.773333pt;}
.y16{bottom:693.853333pt;}
.ye7{bottom:695.613333pt;}
.y1d0{bottom:697.053333pt;}
.y139{bottom:698.813333pt;}
.y240{bottom:702.013333pt;}
.y219{bottom:704.093333pt;}
.y1a3{bottom:704.253333pt;}
.y15{bottom:706.013333pt;}
.y179{bottom:708.573333pt;}
.y94{bottom:709.373333pt;}
.ye6{bottom:710.173333pt;}
.y1cf{bottom:714.653333pt;}
.y138{bottom:716.413333pt;}
.y14{bottom:717.533333pt;}
.y178{bottom:720.093333pt;}
.y23f{bottom:720.413333pt;}
.y218{bottom:721.693333pt;}
.y1a2{bottom:721.853333pt;}
.y1fe{bottom:723.613333pt;}
.ye5{bottom:724.893333pt;}
.y93{bottom:726.973333pt;}
.y1ce{bottom:732.253333pt;}
.y137{bottom:734.013333pt;}
.y177{bottom:737.693333pt;}
.y1a1{bottom:739.453333pt;}
.ye4{bottom:739.613333pt;}
.y1fd{bottom:741.213333pt;}
.y13{bottom:741.373333pt;}
.y92{bottom:744.573333pt;}
.y1cd{bottom:749.853333pt;}
.y12{bottom:751.293333pt;}
.y15e{bottom:751.613333pt;}
.y136{bottom:752.733333pt;}
.ye1{bottom:754.493333pt;}
.y176{bottom:755.453333pt;}
.y23e{bottom:756.733333pt;}
.y217{bottom:757.053333pt;}
.y1a0{bottom:757.213333pt;}
.y1fc{bottom:759.013333pt;}
.y91{bottom:762.213333pt;}
.y1cc{bottom:767.493333pt;}
.y11{bottom:768.773333pt;}
.ye0{bottom:769.253333pt;}
.y135{bottom:770.053333pt;}
.y175{bottom:773.093333pt;}
.y23d{bottom:774.533333pt;}
.y19f{bottom:774.853333pt;}
.y216{bottom:775.493333pt;}
.y1fb{bottom:776.613333pt;}
.y90{bottom:779.973333pt;}
.y134{bottom:781.733333pt;}
.ydf{bottom:783.973333pt;}
.y1cb{bottom:785.253333pt;}
.y15d{bottom:787.013333pt;}
.y174{bottom:790.693333pt;}
.y10{bottom:791.653333pt;}
.y23c{bottom:792.133333pt;}
.y19e{bottom:792.453333pt;}
.y1fa{bottom:794.213333pt;}
.y8f{bottom:797.573333pt;}
.yde{bottom:798.853333pt;}
.y133{bottom:799.333333pt;}
.y1ca{bottom:802.853333pt;}
.y15c{bottom:804.613333pt;}
.yf{bottom:807.813333pt;}
.y173{bottom:808.293333pt;}
.y23b{bottom:809.733333pt;}
.y19d{bottom:810.053333pt;}
.y1f9{bottom:811.813333pt;}
.ydd{bottom:813.573333pt;}
.y8e{bottom:815.173333pt;}
.y132{bottom:817.733333pt;}
.ye{bottom:820.133333pt;}
.y1c9{bottom:820.453333pt;}
.y15b{bottom:822.213333pt;}
.y172{bottom:825.893333pt;}
.y23a{bottom:827.333333pt;}
.y19c{bottom:827.653333pt;}
.ydc{bottom:828.293333pt;}
.y1f8{bottom:829.413333pt;}
.yd{bottom:831.813333pt;}
.y8d{bottom:832.773333pt;}
.y131{bottom:835.173333pt;}
.y1c8{bottom:838.053333pt;}
.y15a{bottom:839.813333pt;}
.ydb{bottom:843.173333pt;}
.y171{bottom:843.653333pt;}
.y239{bottom:844.933333pt;}
.y19b{bottom:845.413333pt;}
.y130{bottom:846.853333pt;}
.y1f7{bottom:847.173333pt;}
.y8c{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.y1c7{bottom:855.653333pt;}
.yda{bottom:857.893333pt;}
.y159{bottom:858.533333pt;}
.y170{bottom:861.253333pt;}
.y238{bottom:862.693333pt;}
.y19a{bottom:864.133333pt;}
.y12f{bottom:864.453333pt;}
.y1f6{bottom:864.773333pt;}
.y8b{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.yd9{bottom:872.613333pt;}
.y1c6{bottom:873.413333pt;}
.y16f{bottom:878.853333pt;}
.y158{bottom:879.813333pt;}
.y237{bottom:881.093333pt;}
.y12e{bottom:882.213333pt;}
.y1f5{bottom:882.373333pt;}
.y199{bottom:885.253333pt;}
.y8a{bottom:885.733333pt;}
.yd8{bottom:887.493333pt;}
.y1c5{bottom:891.013333pt;}
.ya{bottom:892.933333pt;}
.y16e{bottom:896.453333pt;}
.y157{bottom:897.093333pt;}
.y12d{bottom:899.813333pt;}
.y1f4{bottom:899.973333pt;}
.yd7{bottom:902.213333pt;}
.y198{bottom:902.373333pt;}
.y89{bottom:903.333333pt;}
.y156{bottom:908.613333pt;}
.y1c4{bottom:909.733333pt;}
.y16d{bottom:914.053333pt;}
.yd5{bottom:916.933333pt;}
.y12c{bottom:917.413333pt;}
.y1f3{bottom:917.573333pt;}
.y88{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y155{bottom:926.213333pt;}
.y1c3{bottom:927.013333pt;}
.y16c{bottom:931.813333pt;}
.yd3{bottom:933.093333pt;}
.y12b{bottom:935.013333pt;}
.y1f2{bottom:935.333333pt;}
.y87{bottom:938.533333pt;}
.y154{bottom:944.613333pt;}
.y8{bottom:945.093333pt;}
.y197{bottom:950.213333pt;}
.y16b{bottom:950.533333pt;}
.y1f1{bottom:952.933333pt;}
.y12a{bottom:953.413333pt;}
.yd2{bottom:954.213333pt;}
.y86{bottom:956.133333pt;}
.y153{bottom:962.213333pt;}
.y62{bottom:974.400000pt;}
.y83{bottom:981.280000pt;}
.y82{bottom:998.400000pt;}
.y3a{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h34{height:5.092500pt;}
.h37{height:5.562500pt;}
.h2{height:12.000000pt;}
.h27{height:14.066667pt;}
.h2a{height:14.080000pt;}
.h28{height:14.100000pt;}
.h29{height:14.240000pt;}
.h19{height:15.040000pt;}
.h16{height:16.125000pt;}
.h1f{height:19.680000pt;}
.h15{height:20.728125pt;}
.h26{height:26.368125pt;}
.hc{height:26.381250pt;}
.hf{height:27.523125pt;}
.h2c{height:28.146667pt;}
.h17{height:32.250000pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h33{height:36.786667pt;}
.h18{height:37.090625pt;}
.h1e{height:37.410000pt;}
.h11{height:39.571875pt;}
.h12{height:41.442606pt;}
.h2e{height:42.063437pt;}
.hd{height:42.084375pt;}
.h4{height:42.399867pt;}
.h1a{height:43.215000pt;}
.h30{height:44.073883pt;}
.h21{height:46.240000pt;}
.h14{height:47.109375pt;}
.h1b{height:48.375000pt;}
.h10{height:49.148438pt;}
.h2b{height:52.108438pt;}
.h3{height:52.134375pt;}
.ha{height:53.535000pt;}
.h35{height:54.598989pt;}
.h36{height:55.298750pt;}
.hb{height:57.787500pt;}
.h22{height:58.563750pt;}
.h25{height:62.781250pt;}
.h2d{height:63.058667pt;}
.h2f{height:63.060000pt;}
.he{height:64.500000pt;}
.h20{height:66.625000pt;}
.h24{height:66.750000pt;}
.h32{height:76.626667pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h1d{height:92.360000pt;}
.h23{height:118.400000pt;}
.h31{height:177.946667pt;}
.h1c{height:379.880000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wc{width:48.800000pt;}
.wd{width:68.640000pt;}
.w3{width:72.952000pt;}
.w11{width:76.312000pt;}
.w15{width:82.746667pt;}
.w18{width:82.752000pt;}
.w19{width:82.760000pt;}
.w14{width:97.266667pt;}
.w16{width:97.272000pt;}
.w17{width:97.280000pt;}
.wf{width:98.898667pt;}
.w13{width:100.498667pt;}
.wb{width:106.580000pt;}
.we{width:121.312000pt;}
.w9{width:137.306667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.w10{width:163.866667pt;}
.w12{width:284.373333pt;}
.w6{width:473.693333pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:3.780000pt;}
.x2{left:7.192000pt;}
.x24{left:8.640000pt;}
.x12{left:9.592000pt;}
.x27{left:11.680000pt;}
.x21{left:13.106667pt;}
.x37{left:17.600000pt;}
.x18{left:18.893333pt;}
.x34{left:20.346667pt;}
.x35{left:21.453333pt;}
.x39{left:24.480000pt;}
.x25{left:28.960000pt;}
.x3a{left:31.040000pt;}
.x38{left:33.906667pt;}
.x28{left:36.000000pt;}
.x29{left:39.040000pt;}
.x2a{left:47.040000pt;}
.x36{left:48.653333pt;}
.x2d{left:52.640000pt;}
.x26{left:55.386667pt;}
.x2c{left:57.760000pt;}
.x23{left:61.120000pt;}
.x2b{left:64.640000pt;}
.x3{left:65.746667pt;}
.x2e{left:68.480000pt;}
.x11{left:72.680000pt;}
.x17{left:82.760000pt;}
.x14{left:84.200000pt;}
.x2f{left:89.952000pt;}
.x1{left:96.040000pt;}
.x3b{left:99.552000pt;}
.x1c{left:108.032000pt;}
.x1d{left:112.680000pt;}
.xe{left:117.952000pt;}
.xa{left:118.912000pt;}
.x6{left:123.232000pt;}
.x31{left:128.186667pt;}
.x7{left:134.426667pt;}
.xb{left:162.106667pt;}
.x4{left:169.000000pt;}
.x30{left:172.360000pt;}
.x1a{left:215.546667pt;}
.x1e{left:219.266667pt;}
.x13{left:268.546667pt;}
.x15{left:275.866667pt;}
.x9{left:277.346667pt;}
.x16{left:330.293333pt;}
.x1f{left:336.706667pt;}
.xc{left:352.546667pt;}
.xd{left:395.613333pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x32{left:456.746667pt;}
.x20{left:458.026667pt;}
.x19{left:551.336000pt;}
.x22{left:556.933333pt;}
.x1b{left:573.733333pt;}
.x33{left:654.533333pt;}
}




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