
    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_ce932ee9775247295da9f5ef.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de00ce42d1c4ba38a4e47e72.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a7733cc30d7cb00c441991e6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_128be706521644ae55c6df0a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3c404d59aafecccefd942c82.woff')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_7301ace90af8701351d1be01.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_c21fb93940ba61b6ee1741d3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_cf0d61c812bfc9069d99918a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dff3df08333a5e22d89706ea.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_435d3dc7b374cacbd687c063.woff')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_d6b6ca84a8683a16169095be.woff')format("woff");}.ffb{font-family:ffb;line-height:1.119629;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_584c311ab2d6386a6094a813.woff')format("woff");}.ffc{font-family:ffc;line-height:0.983398;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.783691;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_577ba5a18a94cd7062d094d4.woff')format("woff");}.fff{font-family:fff;line-height:1.104492;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;}
.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);}
.m1{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,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);}
.v1{vertical-align:-95.040000px;}
.v2{vertical-align:-92.880000px;}
.v3{vertical-align:-89.280000px;}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-9.120000px;}
.ls36{letter-spacing:-6.240000px;}
.ls23{letter-spacing:-5.040000px;}
.ls14{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.468000px;}
.ls13{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.417600px;}
.ls21{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252000px;}
.ls2f{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.444000px;}
.ls8{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.666720px;}
.lsd{letter-spacing:0.864000px;}
.ls1b{letter-spacing:1.584000px;}
.ls20{letter-spacing:2.304000px;}
.ls17{letter-spacing:3.744000px;}
.ls1e{letter-spacing:4.464000px;}
.ls1f{letter-spacing:4.644000px;}
.ls24{letter-spacing:5.184000px;}
.ls26{letter-spacing:6.624000px;}
.ls33{letter-spacing:7.344000px;}
.ls18{letter-spacing:8.064000px;}
.ls1a{letter-spacing:8.784000px;}
.ls2{letter-spacing:9.432000px;}
.ls27{letter-spacing:9.504000px;}
.lse{letter-spacing:10.224000px;}
.ls31{letter-spacing:10.944000px;}
.ls19{letter-spacing:13.104000px;}
.ls30{letter-spacing:13.824000px;}
.ls34{letter-spacing:14.544000px;}
.ls35{letter-spacing:16.704000px;}
.ls25{letter-spacing:17.424000px;}
.ls1c{letter-spacing:19.584000px;}
.ls1d{letter-spacing:20.304000px;}
.lsc{letter-spacing:23.904000px;}
.ls2d{letter-spacing:65.801280px;}
.ls2c{letter-spacing:108.144000px;}
.ls2a{letter-spacing:109.001280px;}
.ls28{letter-spacing:192.360000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(166,166,166),0 0.015em rgb(166,166,166),0.015em 0 rgb(166,166,166),0 -0.015em  rgb(166,166,166);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(166,166,166);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-72.000000px;}
.wse{word-spacing:-20.304000px;}
.ws12{word-spacing:-20.232000px;}
.ws19{word-spacing:-20.160000px;}
.ws10{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.872000px;}
.ws11{word-spacing:-19.800000px;}
.wsc{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.512000px;}
.ws13{word-spacing:-19.296000px;}
.wsd{word-spacing:-19.152000px;}
.ws5{word-spacing:-18.414720px;}
.ws16{word-spacing:-18.305520px;}
.ws7{word-spacing:-17.225280px;}
.ws6{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.506480px;}
.ws14{word-spacing:-14.976000px;}
.ws1a{word-spacing:-13.776000px;}
.ws15{word-spacing:-13.447440px;}
.ws18{word-spacing:-10.896000px;}
.ws0{word-spacing:-10.452000px;}
.ws3{word-spacing:-10.260000px;}
.ws4{word-spacing:-10.152000px;}
.ws2{word-spacing:-10.080000px;}
.ws1{word-spacing:-10.008000px;}
.wsa{word-spacing:-9.540000px;}
.ws9{word-spacing:0.000000px;}
._3b{margin-left:-11.688000px;}
._41{margin-left:-9.201840px;}
._35{margin-left:-7.356480px;}
._36{margin-left:-5.822160px;}
._21{margin-left:-4.239360px;}
._1f{margin-left:-3.227040px;}
._1e{margin-left:-2.091600px;}
._1{margin-left:-1.008000px;}
._0{width:1.044000px;}
._1c{width:2.211120px;}
._2{width:3.227040px;}
._3{width:4.633200px;}
._8{width:5.677200px;}
._19{width:7.290720px;}
._31{width:8.311440px;}
._14{width:9.442080px;}
._13{width:10.697040px;}
._d{width:12.071520px;}
._26{width:13.266720px;}
._2b{width:14.433840px;}
._24{width:15.537600px;}
._33{width:16.805280px;}
._27{width:18.047520px;}
._9{width:19.242720px;}
._18{width:21.513600px;}
._25{width:22.589280px;}
._e{width:23.844240px;}
._1b{width:25.119840px;}
._4{width:26.712720px;}
._5{width:27.820080px;}
._39{width:28.827360px;}
._f{width:29.880000px;}
._15{width:31.792320px;}
._2e{width:33.377760px;}
._32{width:34.961520px;}
._17{width:36.513360px;}
._2f{width:38.067120px;}
._30{width:39.083040px;}
._3f{width:40.183440px;}
._3a{width:41.184000px;}
._c{width:42.397920px;}
._7{width:43.776000px;}
._6{width:45.059040px;}
._23{width:46.134720px;}
._34{width:47.404560px;}
._16{width:48.465360px;}
._38{width:50.112000px;}
._28{width:52.409520px;}
._29{width:53.576640px;}
._20{width:55.098720px;}
._a{width:56.413440px;}
._37{width:57.575520px;}
._12{width:61.373520px;}
._3d{width:64.716480px;}
._3e{width:66.013200px;}
._11{width:69.261840px;}
._10{width:70.397280px;}
._1a{width:75.118320px;}
._b{width:86.114160px;}
._22{width:89.520480px;}
._1d{width:91.763280px;}
._2d{width:126.511920px;}
._2c{width:127.707120px;}
._40{width:142.704000px;}
._3c{width:182.724000px;}
._2a{width:280.925760px;}
.fc6{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y77{bottom:-15.840000px;}
.y3d{bottom:-15.480000px;}
.y76{bottom:-5.400000px;}
.y4{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.240000px;}
.y3c{bottom:4.320000px;}
.y6{bottom:4.860000px;}
.y75{bottom:5.040000px;}
.y3{bottom:10.620000px;}
.y4f{bottom:18.000000px;}
.y39{bottom:20.520000px;}
.y2{bottom:20.880000px;}
.y73{bottom:21.060000px;}
.y3b{bottom:24.120000px;}
.y51{bottom:34.560000px;}
.y4e{bottom:35.280000px;}
.y4a{bottom:37.620000px;}
.y38{bottom:37.800000px;}
.y72{bottom:43.740000px;}
.y1{bottom:44.460000px;}
.y3f{bottom:48.420000px;}
.y50{bottom:51.840000px;}
.y4d{bottom:52.560000px;}
.y49{bottom:54.900000px;}
.y37{bottom:55.074000px;}
.y3e{bottom:57.960000px;}
.y8{bottom:58.140000px;}
.y5{bottom:59.940000px;}
.y74{bottom:60.300000px;}
.y4c{bottom:69.840000px;}
.y36{bottom:72.174000px;}
.y48{bottom:72.180000px;}
.y35{bottom:89.454000px;}
.y47{bottom:89.460000px;}
.y34{bottom:106.734000px;}
.y46{bottom:106.740000px;}
.y1d{bottom:109.296000px;}
.yae{bottom:111.816000px;}
.ya4{bottom:114.336000px;}
.ybe{bottom:120.276000px;}
.y33{bottom:124.014000px;}
.y45{bottom:124.020000px;}
.y71{bottom:124.776000px;}
.yad{bottom:130.176000px;}
.yf3{bottom:132.336000px;}
.ya3{bottom:138.096000px;}
.y44{bottom:141.120000px;}
.y32{bottom:141.294000px;}
.ybd{bottom:144.036000px;}
.y70{bottom:148.536000px;}
.yac{bottom:153.750000px;}
.yf2{bottom:156.090000px;}
.y43{bottom:158.400000px;}
.y31{bottom:158.574000px;}
.yc8{bottom:159.510000px;}
.ya2{bottom:161.850000px;}
.yab{bottom:166.710000px;}
.ybc{bottom:167.790000px;}
.yc2{bottom:171.930000px;}
.y6f{bottom:172.290000px;}
.y30{bottom:175.674000px;}
.y42{bottom:175.710000px;}
.yf1{bottom:180.030000px;}
.yc7{bottom:183.270000px;}
.yaa{bottom:185.070000px;}
.ya1{bottom:185.610000px;}
.ybb{bottom:191.730000px;}
.y2f{bottom:192.954000px;}
.y6e{bottom:196.230000px;}
.ya9{bottom:203.430000px;}
.yf0{bottom:204.690000px;}
.yc6{bottom:207.030000px;}
.ya8{bottom:208.650000px;}
.ya0{bottom:209.550000px;}
.y2e{bottom:210.234000px;}
.yba{bottom:215.490000px;}
.y6d{bottom:219.990000px;}
.ya7{bottom:221.790000px;}
.y2d{bottom:227.559000px;}
.yef{bottom:229.350000px;}
.yc5{bottom:232.050000px;}
.y9f{bottom:233.310000px;}
.yb9{bottom:239.250000px;}
.y6c{bottom:243.750000px;}
.y2c{bottom:244.839000px;}
.yee{bottom:253.110000px;}
.yc4{bottom:255.810000px;}
.y9e{bottom:257.070000px;}
.y2b{bottom:262.119000px;}
.yb8{bottom:263.010000px;}
.y6b{bottom:267.510000px;}
.yed{bottom:277.050000px;}
.y2a{bottom:279.219000px;}
.yc3{bottom:279.570000px;}
.y9d{bottom:280.830000px;}
.yb7{bottom:286.770000px;}
.y6a{bottom:291.450000px;}
.y114{bottom:295.770000px;}
.y29{bottom:296.499000px;}
.yec{bottom:300.810000px;}
.y9c{bottom:304.770000px;}
.yb6{bottom:310.710000px;}
.y28{bottom:313.779000px;}
.y69{bottom:315.210000px;}
.y113{bottom:319.530000px;}
.yeb{bottom:324.570000px;}
.y9b{bottom:328.530000px;}
.y27{bottom:331.059000px;}
.yb5{bottom:334.470000px;}
.y68{bottom:339.015000px;}
.y112{bottom:343.335000px;}
.y26{bottom:348.339000px;}
.yea{bottom:349.275000px;}
.y9a{bottom:352.335000px;}
.yc0{bottom:357.735000px;}
.yb4{bottom:358.275000px;}
.y67{bottom:362.775000px;}
.y25{bottom:365.439000px;}
.y111{bottom:367.995000px;}
.ye9{bottom:373.215000px;}
.y99{bottom:376.095000px;}
.ybf{bottom:379.515000px;}
.yb3{bottom:382.035000px;}
.y24{bottom:382.719000px;}
.y66{bottom:386.715000px;}
.y110{bottom:391.935000px;}
.ye8{bottom:396.975000px;}
.y23{bottom:399.999000px;}
.y98{bottom:400.035000px;}
.yb2{bottom:405.975000px;}
.y65{bottom:410.475000px;}
.y10f{bottom:416.595000px;}
.y22{bottom:417.279000px;}
.ye7{bottom:421.635000px;}
.y97{bottom:423.795000px;}
.y64{bottom:434.235000px;}
.y21{bottom:434.559000px;}
.y10e{bottom:440.355000px;}
.ye6{bottom:445.395000px;}
.y96{bottom:447.555000px;}
.y20{bottom:451.839000px;}
.yb1{bottom:452.955000px;}
.y63{bottom:457.995000px;}
.y10d{bottom:464.115000px;}
.y1f{bottom:468.939000px;}
.ye5{bottom:470.235000px;}
.y95{bottom:471.315000px;}
.yb0{bottom:474.735000px;}
.y62{bottom:481.935000px;}
.y1e{bottom:486.219000px;}
.y10c{bottom:488.955000px;}
.ye4{bottom:493.995000px;}
.y94{bottom:495.255000px;}
.yaf{bottom:496.695000px;}
.y61{bottom:505.695000px;}
.y10b{bottom:512.715000px;}
.ye3{bottom:517.755000px;}
.y93{bottom:519.015000px;}
.y60{bottom:529.455000px;}
.y10a{bottom:536.475000px;}
.ye2{bottom:541.515000px;}
.y92{bottom:542.775000px;}
.y5f{bottom:553.215000px;}
.y109{bottom:560.235000px;}
.ye1{bottom:565.455000px;}
.y91{bottom:566.535000px;}
.y5e{bottom:576.975000px;}
.y108{bottom:585.075000px;}
.ye0{bottom:589.215000px;}
.y90{bottom:590.475000px;}
.y5d{bottom:600.915000px;}
.y107{bottom:608.865000px;}
.y1b{bottom:610.305000px;}
.ydf{bottom:613.005000px;}
.y8f{bottom:614.265000px;}
.y5c{bottom:624.705000px;}
.y106{bottom:633.525000px;}
.y1a{bottom:634.425000px;}
.yde{bottom:636.765000px;}
.y8e{bottom:638.025000px;}
.y5b{bottom:648.465000px;}
.y19{bottom:654.945000px;}
.y105{bottom:657.285000px;}
.ydd{bottom:660.525000px;}
.y8d{bottom:661.785000px;}
.ya6{bottom:667.725000px;}
.y5a{bottom:672.225000px;}
.y18{bottom:673.845000px;}
.y104{bottom:681.045000px;}
.ydc{bottom:684.465000px;}
.y8c{bottom:685.545000px;}
.y17{bottom:692.925000px;}
.y59{bottom:696.165000px;}
.y103{bottom:704.985000px;}
.ydb{bottom:708.225000px;}
.y8b{bottom:709.485000px;}
.y16{bottom:711.825000px;}
.y58{bottom:719.925000px;}
.y102{bottom:729.645000px;}
.y15{bottom:730.725000px;}
.yda{bottom:731.985000px;}
.y8a{bottom:733.245000px;}
.y57{bottom:743.685000px;}
.y14{bottom:749.625000px;}
.y101{bottom:753.405000px;}
.yd9{bottom:755.745000px;}
.y89{bottom:757.005000px;}
.y56{bottom:767.445000px;}
.y100{bottom:777.165000px;}
.y13{bottom:778.965000px;}
.yd8{bottom:779.685000px;}
.y88{bottom:780.765000px;}
.y55{bottom:791.385000px;}
.yff{bottom:801.105000px;}
.yd7{bottom:803.445000px;}
.y87{bottom:804.705000px;}
.y3a{bottom:808.845000px;}
.y54{bottom:815.145000px;}
.yfe{bottom:824.865000px;}
.yd6{bottom:827.205000px;}
.y86{bottom:828.465000px;}
.ya5{bottom:834.405000px;}
.y53{bottom:838.905000px;}
.yfd{bottom:849.525000px;}
.yd5{bottom:850.965000px;}
.y85{bottom:852.225000px;}
.y12{bottom:859.425000px;}
.y52{bottom:862.665000px;}
.yfc{bottom:873.330000px;}
.yd4{bottom:874.950000px;}
.y84{bottom:876.030000px;}
.y4b{bottom:880.530000px;}
.yc1{bottom:881.970000px;}
.y11{bottom:883.410000px;}
.yfb{bottom:897.270000px;}
.yd3{bottom:898.710000px;}
.y83{bottom:899.970000px;}
.y10{bottom:908.430000px;}
.yfa{bottom:921.030000px;}
.yd2{bottom:922.470000px;}
.y82{bottom:923.730000px;}
.yf{bottom:935.790000px;}
.yf9{bottom:945.690000px;}
.yd1{bottom:946.230000px;}
.y81{bottom:947.490000px;}
.ye{bottom:961.890000px;}
.y41{bottom:964.410000px;}
.yf8{bottom:969.450000px;}
.yd0{bottom:970.170000px;}
.y80{bottom:971.250000px;}
.yd{bottom:989.430000px;}
.yf7{bottom:993.390000px;}
.ycf{bottom:993.930000px;}
.y7f{bottom:995.190000px;}
.yce{bottom:1017.690000px;}
.yf6{bottom:1018.050000px;}
.y7e{bottom:1018.950000px;}
.yc{bottom:1024.530000px;}
.ycd{bottom:1041.450000px;}
.yf5{bottom:1041.810000px;}
.y7d{bottom:1042.710000px;}
.yb{bottom:1059.810000px;}
.ycc{bottom:1065.390000px;}
.yf4{bottom:1065.570000px;}
.y7c{bottom:1066.470000px;}
.ycb{bottom:1089.150000px;}
.y7b{bottom:1090.410000px;}
.ya{bottom:1094.910000px;}
.yca{bottom:1112.910000px;}
.y7a{bottom:1114.170000px;}
.y9{bottom:1130.190000px;}
.yc9{bottom:1136.670000px;}
.y79{bottom:1137.960000px;}
.y78{bottom:1181.520000px;}
.y7{bottom:1194.120000px;}
.y40{bottom:1197.180000px;}
.h4{height:13.536000px;}
.hc{height:17.280000px;}
.h2{height:29.376000px;}
.h15{height:29.556000px;}
.h3{height:37.546875px;}
.h10{height:38.160000px;}
.h17{height:38.671172px;}
.h16{height:50.312812px;}
.h11{height:56.320312px;}
.h18{height:59.439023px;}
.hf{height:62.327813px;}
.h9{height:63.180000px;}
.h19{height:64.371094px;}
.h14{height:64.546875px;}
.h5{height:65.884219px;}
.hb{height:69.086250px;}
.ha{height:72.562500px;}
.hd{height:74.004654px;}
.h8{height:75.093750px;}
.h7{height:81.000000px;}
.h13{height:83.880000px;}
.h6{height:99.874688px;}
.h12{height:189.750000px;}
.he{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:225.930000px;}
.wa{width:226.110000px;}
.w2{width:270.930000px;}
.w8{width:271.110000px;}
.w9{width:271.155000px;}
.w5{width:318.990000px;}
.w6{width:334.335000px;}
.w7{width:891.000000px;}
.wb{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:1.440000px;}
.x11{left:8.100000px;}
.x13{left:13.500000px;}
.x2{left:25.560000px;}
.x18{left:27.000000px;}
.x3{left:75.780000px;}
.x24{left:93.270000px;}
.x1c{left:97.415987px;}
.x1f{left:101.190000px;}
.x6{left:108.036000px;}
.x25{left:109.116000px;}
.x2f{left:112.895987px;}
.x4{left:116.100000px;}
.x26{left:121.134000px;}
.x20{left:126.750000px;}
.x30{left:129.275987px;}
.x2a{left:140.075987px;}
.x27{left:145.115987px;}
.x10{left:146.375987px;}
.x19{left:149.436000px;}
.x33{left:150.509987px;}
.x7{left:151.914000px;}
.x1d{left:161.129987px;}
.x1a{left:163.299000px;}
.x21{left:176.970000px;}
.x14{left:211.890000px;}
.x22{left:217.335000px;}
.x23{left:264.495000px;}
.xd{left:269.849987px;}
.x15{left:286.635000px;}
.xa{left:294.194987px;}
.x9{left:305.534987px;}
.x2d{left:324.074973px;}
.x2e{left:330.734987px;}
.x1b{left:389.414987px;}
.x28{left:400.034987px;}
.x12{left:427.035000px;}
.x16{left:445.395000px;}
.xf{left:446.474987px;}
.xb{left:453.494987px;}
.x1e{left:457.455000px;}
.x31{left:484.304973px;}
.xe{left:487.004987px;}
.x32{left:490.964987px;}
.x1{left:536.505000px;}
.x17{left:537.945000px;}
.x2b{left:622.544973px;}
.x2c{left:629.204987px;}
.x8{left:751.289987px;}
.x29{left:758.489987px;}
.xc{left:785.129987px;}
@media print{
.v1{vertical-align:-84.480000pt;}
.v2{vertical-align:-82.560000pt;}
.v3{vertical-align:-79.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-8.106667pt;}
.ls36{letter-spacing:-5.546667pt;}
.ls23{letter-spacing:-4.480000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.416000pt;}
.ls13{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.371200pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224000pt;}
.ls2f{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.394667pt;}
.ls8{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls20{letter-spacing:2.048000pt;}
.ls17{letter-spacing:3.328000pt;}
.ls1e{letter-spacing:3.968000pt;}
.ls1f{letter-spacing:4.128000pt;}
.ls24{letter-spacing:4.608000pt;}
.ls26{letter-spacing:5.888000pt;}
.ls33{letter-spacing:6.528000pt;}
.ls18{letter-spacing:7.168000pt;}
.ls1a{letter-spacing:7.808000pt;}
.ls2{letter-spacing:8.384000pt;}
.ls27{letter-spacing:8.448000pt;}
.lse{letter-spacing:9.088000pt;}
.ls31{letter-spacing:9.728000pt;}
.ls19{letter-spacing:11.648000pt;}
.ls30{letter-spacing:12.288000pt;}
.ls34{letter-spacing:12.928000pt;}
.ls35{letter-spacing:14.848000pt;}
.ls25{letter-spacing:15.488000pt;}
.ls1c{letter-spacing:17.408000pt;}
.ls1d{letter-spacing:18.048000pt;}
.lsc{letter-spacing:21.248000pt;}
.ls2d{letter-spacing:58.490027pt;}
.ls2c{letter-spacing:96.128000pt;}
.ls2a{letter-spacing:96.890027pt;}
.ls28{letter-spacing:170.986667pt;}
.ws17{word-spacing:-64.000000pt;}
.wse{word-spacing:-18.048000pt;}
.ws12{word-spacing:-17.984000pt;}
.ws19{word-spacing:-17.920000pt;}
.ws10{word-spacing:-17.792000pt;}
.wsb{word-spacing:-17.664000pt;}
.ws11{word-spacing:-17.600000pt;}
.wsc{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.344000pt;}
.ws13{word-spacing:-17.152000pt;}
.wsd{word-spacing:-17.024000pt;}
.ws5{word-spacing:-16.368640pt;}
.ws16{word-spacing:-16.271573pt;}
.ws7{word-spacing:-15.311360pt;}
.ws6{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.672427pt;}
.ws14{word-spacing:-13.312000pt;}
.ws1a{word-spacing:-12.245333pt;}
.ws15{word-spacing:-11.953280pt;}
.ws18{word-spacing:-9.685333pt;}
.ws0{word-spacing:-9.290667pt;}
.ws3{word-spacing:-9.120000pt;}
.ws4{word-spacing:-9.024000pt;}
.ws2{word-spacing:-8.960000pt;}
.ws1{word-spacing:-8.896000pt;}
.wsa{word-spacing:-8.480000pt;}
.ws9{word-spacing:0.000000pt;}
._3b{margin-left:-10.389333pt;}
._41{margin-left:-8.179413pt;}
._35{margin-left:-6.539093pt;}
._36{margin-left:-5.175253pt;}
._21{margin-left:-3.768320pt;}
._1f{margin-left:-2.868480pt;}
._1e{margin-left:-1.859200pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.928000pt;}
._1c{width:1.965440pt;}
._2{width:2.868480pt;}
._3{width:4.118400pt;}
._8{width:5.046400pt;}
._19{width:6.480640pt;}
._31{width:7.387947pt;}
._14{width:8.392960pt;}
._13{width:9.508480pt;}
._d{width:10.730240pt;}
._26{width:11.792640pt;}
._2b{width:12.830080pt;}
._24{width:13.811200pt;}
._33{width:14.938027pt;}
._27{width:16.042240pt;}
._9{width:17.104640pt;}
._18{width:19.123200pt;}
._25{width:20.079360pt;}
._e{width:21.194880pt;}
._1b{width:22.328747pt;}
._4{width:23.744640pt;}
._5{width:24.728960pt;}
._39{width:25.624320pt;}
._f{width:26.560000pt;}
._15{width:28.259840pt;}
._2e{width:29.669120pt;}
._32{width:31.076907pt;}
._17{width:32.456320pt;}
._2f{width:33.837440pt;}
._30{width:34.740480pt;}
._3f{width:35.718613pt;}
._3a{width:36.608000pt;}
._c{width:37.687040pt;}
._7{width:38.912000pt;}
._6{width:40.052480pt;}
._23{width:41.008640pt;}
._34{width:42.137387pt;}
._16{width:43.080320pt;}
._38{width:44.544000pt;}
._28{width:46.586240pt;}
._29{width:47.623680pt;}
._20{width:48.976640pt;}
._a{width:50.145280pt;}
._37{width:51.178240pt;}
._12{width:54.554240pt;}
._3d{width:57.525760pt;}
._3e{width:58.678400pt;}
._11{width:61.566080pt;}
._10{width:62.575360pt;}
._1a{width:66.771840pt;}
._b{width:76.545920pt;}
._22{width:79.573760pt;}
._1d{width:81.567360pt;}
._2d{width:112.455040pt;}
._2c{width:113.517440pt;}
._40{width:126.848000pt;}
._3c{width:162.421333pt;}
._2a{width:249.711787pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y77{bottom:-14.080000pt;}
.y3d{bottom:-13.760000pt;}
.y76{bottom:-4.800000pt;}
.y4{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.880000pt;}
.y3c{bottom:3.840000pt;}
.y6{bottom:4.320000pt;}
.y75{bottom:4.480000pt;}
.y3{bottom:9.440000pt;}
.y4f{bottom:16.000000pt;}
.y39{bottom:18.240000pt;}
.y2{bottom:18.560000pt;}
.y73{bottom:18.720000pt;}
.y3b{bottom:21.440000pt;}
.y51{bottom:30.720000pt;}
.y4e{bottom:31.360000pt;}
.y4a{bottom:33.440000pt;}
.y38{bottom:33.600000pt;}
.y72{bottom:38.880000pt;}
.y1{bottom:39.520000pt;}
.y3f{bottom:43.040000pt;}
.y50{bottom:46.080000pt;}
.y4d{bottom:46.720000pt;}
.y49{bottom:48.800000pt;}
.y37{bottom:48.954667pt;}
.y3e{bottom:51.520000pt;}
.y8{bottom:51.680000pt;}
.y5{bottom:53.280000pt;}
.y74{bottom:53.600000pt;}
.y4c{bottom:62.080000pt;}
.y36{bottom:64.154667pt;}
.y48{bottom:64.160000pt;}
.y35{bottom:79.514667pt;}
.y47{bottom:79.520000pt;}
.y34{bottom:94.874667pt;}
.y46{bottom:94.880000pt;}
.y1d{bottom:97.152000pt;}
.yae{bottom:99.392000pt;}
.ya4{bottom:101.632000pt;}
.ybe{bottom:106.912000pt;}
.y33{bottom:110.234667pt;}
.y45{bottom:110.240000pt;}
.y71{bottom:110.912000pt;}
.yad{bottom:115.712000pt;}
.yf3{bottom:117.632000pt;}
.ya3{bottom:122.752000pt;}
.y44{bottom:125.440000pt;}
.y32{bottom:125.594667pt;}
.ybd{bottom:128.032000pt;}
.y70{bottom:132.032000pt;}
.yac{bottom:136.666667pt;}
.yf2{bottom:138.746667pt;}
.y43{bottom:140.800000pt;}
.y31{bottom:140.954667pt;}
.yc8{bottom:141.786667pt;}
.ya2{bottom:143.866667pt;}
.yab{bottom:148.186667pt;}
.ybc{bottom:149.146667pt;}
.yc2{bottom:152.826667pt;}
.y6f{bottom:153.146667pt;}
.y30{bottom:156.154667pt;}
.y42{bottom:156.186667pt;}
.yf1{bottom:160.026667pt;}
.yc7{bottom:162.906667pt;}
.yaa{bottom:164.506667pt;}
.ya1{bottom:164.986667pt;}
.ybb{bottom:170.426667pt;}
.y2f{bottom:171.514667pt;}
.y6e{bottom:174.426667pt;}
.ya9{bottom:180.826667pt;}
.yf0{bottom:181.946667pt;}
.yc6{bottom:184.026667pt;}
.ya8{bottom:185.466667pt;}
.ya0{bottom:186.266667pt;}
.y2e{bottom:186.874667pt;}
.yba{bottom:191.546667pt;}
.y6d{bottom:195.546667pt;}
.ya7{bottom:197.146667pt;}
.y2d{bottom:202.274667pt;}
.yef{bottom:203.866667pt;}
.yc5{bottom:206.266667pt;}
.y9f{bottom:207.386667pt;}
.yb9{bottom:212.666667pt;}
.y6c{bottom:216.666667pt;}
.y2c{bottom:217.634667pt;}
.yee{bottom:224.986667pt;}
.yc4{bottom:227.386667pt;}
.y9e{bottom:228.506667pt;}
.y2b{bottom:232.994667pt;}
.yb8{bottom:233.786667pt;}
.y6b{bottom:237.786667pt;}
.yed{bottom:246.266667pt;}
.y2a{bottom:248.194667pt;}
.yc3{bottom:248.506667pt;}
.y9d{bottom:249.626667pt;}
.yb7{bottom:254.906667pt;}
.y6a{bottom:259.066667pt;}
.y114{bottom:262.906667pt;}
.y29{bottom:263.554667pt;}
.yec{bottom:267.386667pt;}
.y9c{bottom:270.906667pt;}
.yb6{bottom:276.186667pt;}
.y28{bottom:278.914667pt;}
.y69{bottom:280.186667pt;}
.y113{bottom:284.026667pt;}
.yeb{bottom:288.506667pt;}
.y9b{bottom:292.026667pt;}
.y27{bottom:294.274667pt;}
.yb5{bottom:297.306667pt;}
.y68{bottom:301.346667pt;}
.y112{bottom:305.186667pt;}
.y26{bottom:309.634667pt;}
.yea{bottom:310.466667pt;}
.y9a{bottom:313.186667pt;}
.yc0{bottom:317.986667pt;}
.yb4{bottom:318.466667pt;}
.y67{bottom:322.466667pt;}
.y25{bottom:324.834667pt;}
.y111{bottom:327.106667pt;}
.ye9{bottom:331.746667pt;}
.y99{bottom:334.306667pt;}
.ybf{bottom:337.346667pt;}
.yb3{bottom:339.586667pt;}
.y24{bottom:340.194667pt;}
.y66{bottom:343.746667pt;}
.y110{bottom:348.386667pt;}
.ye8{bottom:352.866667pt;}
.y23{bottom:355.554667pt;}
.y98{bottom:355.586667pt;}
.yb2{bottom:360.866667pt;}
.y65{bottom:364.866667pt;}
.y10f{bottom:370.306667pt;}
.y22{bottom:370.914667pt;}
.ye7{bottom:374.786667pt;}
.y97{bottom:376.706667pt;}
.y64{bottom:385.986667pt;}
.y21{bottom:386.274667pt;}
.y10e{bottom:391.426667pt;}
.ye6{bottom:395.906667pt;}
.y96{bottom:397.826667pt;}
.y20{bottom:401.634667pt;}
.yb1{bottom:402.626667pt;}
.y63{bottom:407.106667pt;}
.y10d{bottom:412.546667pt;}
.y1f{bottom:416.834667pt;}
.ye5{bottom:417.986667pt;}
.y95{bottom:418.946667pt;}
.yb0{bottom:421.986667pt;}
.y62{bottom:428.386667pt;}
.y1e{bottom:432.194667pt;}
.y10c{bottom:434.626667pt;}
.ye4{bottom:439.106667pt;}
.y94{bottom:440.226667pt;}
.yaf{bottom:441.506667pt;}
.y61{bottom:449.506667pt;}
.y10b{bottom:455.746667pt;}
.ye3{bottom:460.226667pt;}
.y93{bottom:461.346667pt;}
.y60{bottom:470.626667pt;}
.y10a{bottom:476.866667pt;}
.ye2{bottom:481.346667pt;}
.y92{bottom:482.466667pt;}
.y5f{bottom:491.746667pt;}
.y109{bottom:497.986667pt;}
.ye1{bottom:502.626667pt;}
.y91{bottom:503.586667pt;}
.y5e{bottom:512.866667pt;}
.y108{bottom:520.066667pt;}
.ye0{bottom:523.746667pt;}
.y90{bottom:524.866667pt;}
.y5d{bottom:534.146667pt;}
.y107{bottom:541.213333pt;}
.y1b{bottom:542.493333pt;}
.ydf{bottom:544.893333pt;}
.y8f{bottom:546.013333pt;}
.y5c{bottom:555.293333pt;}
.y106{bottom:563.133333pt;}
.y1a{bottom:563.933333pt;}
.yde{bottom:566.013333pt;}
.y8e{bottom:567.133333pt;}
.y5b{bottom:576.413333pt;}
.y19{bottom:582.173333pt;}
.y105{bottom:584.253333pt;}
.ydd{bottom:587.133333pt;}
.y8d{bottom:588.253333pt;}
.ya6{bottom:593.533333pt;}
.y5a{bottom:597.533333pt;}
.y18{bottom:598.973333pt;}
.y104{bottom:605.373333pt;}
.ydc{bottom:608.413333pt;}
.y8c{bottom:609.373333pt;}
.y17{bottom:615.933333pt;}
.y59{bottom:618.813333pt;}
.y103{bottom:626.653333pt;}
.ydb{bottom:629.533333pt;}
.y8b{bottom:630.653333pt;}
.y16{bottom:632.733333pt;}
.y58{bottom:639.933333pt;}
.y102{bottom:648.573333pt;}
.y15{bottom:649.533333pt;}
.yda{bottom:650.653333pt;}
.y8a{bottom:651.773333pt;}
.y57{bottom:661.053333pt;}
.y14{bottom:666.333333pt;}
.y101{bottom:669.693333pt;}
.yd9{bottom:671.773333pt;}
.y89{bottom:672.893333pt;}
.y56{bottom:682.173333pt;}
.y100{bottom:690.813333pt;}
.y13{bottom:692.413333pt;}
.yd8{bottom:693.053333pt;}
.y88{bottom:694.013333pt;}
.y55{bottom:703.453333pt;}
.yff{bottom:712.093333pt;}
.yd7{bottom:714.173333pt;}
.y87{bottom:715.293333pt;}
.y3a{bottom:718.973333pt;}
.y54{bottom:724.573333pt;}
.yfe{bottom:733.213333pt;}
.yd6{bottom:735.293333pt;}
.y86{bottom:736.413333pt;}
.ya5{bottom:741.693333pt;}
.y53{bottom:745.693333pt;}
.yfd{bottom:755.133333pt;}
.yd5{bottom:756.413333pt;}
.y85{bottom:757.533333pt;}
.y12{bottom:763.933333pt;}
.y52{bottom:766.813333pt;}
.yfc{bottom:776.293333pt;}
.yd4{bottom:777.733333pt;}
.y84{bottom:778.693333pt;}
.y4b{bottom:782.693333pt;}
.yc1{bottom:783.973333pt;}
.y11{bottom:785.253333pt;}
.yfb{bottom:797.573333pt;}
.yd3{bottom:798.853333pt;}
.y83{bottom:799.973333pt;}
.y10{bottom:807.493333pt;}
.yfa{bottom:818.693333pt;}
.yd2{bottom:819.973333pt;}
.y82{bottom:821.093333pt;}
.yf{bottom:831.813333pt;}
.yf9{bottom:840.613333pt;}
.yd1{bottom:841.093333pt;}
.y81{bottom:842.213333pt;}
.ye{bottom:855.013333pt;}
.y41{bottom:857.253333pt;}
.yf8{bottom:861.733333pt;}
.yd0{bottom:862.373333pt;}
.y80{bottom:863.333333pt;}
.yd{bottom:879.493333pt;}
.yf7{bottom:883.013333pt;}
.ycf{bottom:883.493333pt;}
.y7f{bottom:884.613333pt;}
.yce{bottom:904.613333pt;}
.yf6{bottom:904.933333pt;}
.y7e{bottom:905.733333pt;}
.yc{bottom:910.693333pt;}
.ycd{bottom:925.733333pt;}
.yf5{bottom:926.053333pt;}
.y7d{bottom:926.853333pt;}
.yb{bottom:942.053333pt;}
.ycc{bottom:947.013333pt;}
.yf4{bottom:947.173333pt;}
.y7c{bottom:947.973333pt;}
.ycb{bottom:968.133333pt;}
.y7b{bottom:969.253333pt;}
.ya{bottom:973.253333pt;}
.yca{bottom:989.253333pt;}
.y7a{bottom:990.373333pt;}
.y9{bottom:1004.613333pt;}
.yc9{bottom:1010.373333pt;}
.y79{bottom:1011.520000pt;}
.y78{bottom:1050.240000pt;}
.y7{bottom:1061.440000pt;}
.y40{bottom:1064.160000pt;}
.h4{height:12.032000pt;}
.hc{height:15.360000pt;}
.h2{height:26.112000pt;}
.h15{height:26.272000pt;}
.h3{height:33.375000pt;}
.h10{height:33.920000pt;}
.h17{height:34.374375pt;}
.h16{height:44.722500pt;}
.h11{height:50.062500pt;}
.h18{height:52.834688pt;}
.hf{height:55.402500pt;}
.h9{height:56.160000pt;}
.h19{height:57.218750pt;}
.h14{height:57.375000pt;}
.h5{height:58.563750pt;}
.hb{height:61.410000pt;}
.ha{height:64.500000pt;}
.hd{height:65.781915pt;}
.h8{height:66.750000pt;}
.h7{height:72.000000pt;}
.h13{height:74.560000pt;}
.h6{height:88.777500pt;}
.h12{height:168.666667pt;}
.he{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:200.826667pt;}
.wa{width:200.986667pt;}
.w2{width:240.826667pt;}
.w8{width:240.986667pt;}
.w9{width:241.026667pt;}
.w5{width:283.546667pt;}
.w6{width:297.186667pt;}
.w7{width:792.000000pt;}
.wb{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.280000pt;}
.x11{left:7.200000pt;}
.x13{left:12.000000pt;}
.x2{left:22.720000pt;}
.x18{left:24.000000pt;}
.x3{left:67.360000pt;}
.x24{left:82.906667pt;}
.x1c{left:86.591988pt;}
.x1f{left:89.946667pt;}
.x6{left:96.032000pt;}
.x25{left:96.992000pt;}
.x2f{left:100.351988pt;}
.x4{left:103.200000pt;}
.x26{left:107.674667pt;}
.x20{left:112.666667pt;}
.x30{left:114.911988pt;}
.x2a{left:124.511988pt;}
.x27{left:128.991988pt;}
.x10{left:130.111988pt;}
.x19{left:132.832000pt;}
.x33{left:133.786655pt;}
.x7{left:135.034667pt;}
.x1d{left:143.226655pt;}
.x1a{left:145.154667pt;}
.x21{left:157.306667pt;}
.x14{left:188.346667pt;}
.x22{left:193.186667pt;}
.x23{left:235.106667pt;}
.xd{left:239.866655pt;}
.x15{left:254.786667pt;}
.xa{left:261.506655pt;}
.x9{left:271.586655pt;}
.x2d{left:288.066643pt;}
.x2e{left:293.986655pt;}
.x1b{left:346.146655pt;}
.x28{left:355.586655pt;}
.x12{left:379.586667pt;}
.x16{left:395.906667pt;}
.xf{left:396.866655pt;}
.xb{left:403.106655pt;}
.x1e{left:406.626667pt;}
.x31{left:430.493310pt;}
.xe{left:432.893322pt;}
.x32{left:436.413322pt;}
.x1{left:476.893333pt;}
.x17{left:478.173333pt;}
.x2b{left:553.373310pt;}
.x2c{left:559.293322pt;}
.x8{left:667.813322pt;}
.x29{left:674.213322pt;}
.xc{left:697.893322pt;}
}

