
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_dd4b09cb2957.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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("fonts/font_0001_df7c29e9576a.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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("fonts/font_0002_3bb44ee2c548.woff")format("woff");}.ff3{font-family:ff3;line-height:1.006348;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("fonts/font_0003_2f43d9d66454.woff")format("woff");}.ff4{font-family:ff4;line-height:1.011230;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("fonts/font_0004_99f5fc9dde03.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_3cace2ff49a0.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_5c33da05986f.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_45e5aa60e902.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("fonts/font_0008_1a9758ab0acb.woff")format("woff");}.ff9{font-family:ff9;line-height:1.014160;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("fonts/font_0009_0ea283e059ab.woff")format("woff");}.ffa{font-family:ffa;line-height:1.063477;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("fonts/font_0010_9d1dd3a85af9.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_24508782616a.woff")format("woff");}.ffc{font-family:ffc;line-height:1.011230;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("fonts/font_0012_aa6b4ecab1ad.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_9d1dd3a85af9.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_ee2d77fae467.woff")format("woff");}.fff{font-family:fff;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_ba8c00a75145.woff")format("woff");}.ff10{font-family:ff10;line-height:1.030273;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;}
.m5{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);}
.m2{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{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:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v1{vertical-align:15.120000px;}
.v6{vertical-align:29.220000px;}
.ls23{letter-spacing:-6.300000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.460200px;}
.ls2{letter-spacing:-0.414600px;}
.ls1c{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.277200px;}
.ls31{letter-spacing:-0.252000px;}
.ls24{letter-spacing:-0.220200px;}
.ls1e{letter-spacing:-0.214800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.138000px;}
.ls2c{letter-spacing:-0.110400px;}
.ls25{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.041760px;}
.ls28{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls30{letter-spacing:0.018000px;}
.ls32{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.082800px;}
.ls20{letter-spacing:0.096480px;}
.ls1f{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.126000px;}
.ls26{letter-spacing:0.159600px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.ls2f{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.258000px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.303600px;}
.ls3{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.396000px;}
.ls18{letter-spacing:0.442800px;}
.ls12{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.119600px;}
.lse{letter-spacing:10.069200px;}
.ls11{letter-spacing:12.895920px;}
.ls13{letter-spacing:16.559280px;}
.lsf{letter-spacing:17.279280px;}
.ls2e{letter-spacing:35.946720px;}
.ls4{letter-spacing:46.002720px;}
.ls15{letter-spacing:64.002720px;}
.ls2d{letter-spacing:65.466720px;}
.ls22{letter-spacing:227.559840px;}
.ls21{letter-spacing:227.679840px;}
.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;}
}
.ws1c{word-spacing:-59.760000px;}
.ws15{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.145400px;}
.ws19{word-spacing:-15.552000px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.898240px;}
.ws1f{word-spacing:-14.833200px;}
.ws3e{word-spacing:-14.829600px;}
.wsf{word-spacing:-14.802000px;}
.ws1d{word-spacing:-14.725200px;}
.ws1e{word-spacing:-14.719800px;}
.ws10{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.479800px;}
.ws45{word-spacing:-13.896000px;}
.ws40{word-spacing:-13.860000px;}
.ws41{word-spacing:-13.824000px;}
.ws18{word-spacing:-13.590000px;}
.ws44{word-spacing:-13.536000px;}
.ws42{word-spacing:-13.518000px;}
.ws3f{word-spacing:-13.500000px;}
.ws43{word-spacing:-13.248000px;}
.ws17{word-spacing:-13.147200px;}
.ws11{word-spacing:-12.870000px;}
.ws37{word-spacing:-9.889200px;}
.ws2c{word-spacing:-9.821952px;}
.ws21{word-spacing:-9.792720px;}
.ws6{word-spacing:-9.000000px;}
.ws1a{word-spacing:-8.856000px;}
.ws7{word-spacing:-7.560000px;}
.ws4{word-spacing:-0.056787px;}
.ws9{word-spacing:0.000000px;}
.ws14{word-spacing:0.519840px;}
.ws13{word-spacing:0.532080px;}
.ws12{word-spacing:3.390480px;}
.ws16{word-spacing:5.955120px;}
.ws3{word-spacing:15.729999px;}
.ws5{word-spacing:15.900360px;}
.ws0{word-spacing:25.167998px;}
.ws1{word-spacing:31.459998px;}
.ws2{word-spacing:32.027868px;}
.ws3b{word-spacing:136.602048px;}
.ws39{word-spacing:136.792560px;}
.ws38{word-spacing:136.852560px;}
.ws20{word-spacing:153.459600px;}
.ws2b{word-spacing:153.759600px;}
.ws3d{word-spacing:162.649200px;}
.ws2f{word-spacing:167.029200px;}
.ws3c{word-spacing:170.645520px;}
.ws2a{word-spacing:179.509200px;}
.ws24{word-spacing:179.689200px;}
.ws32{word-spacing:179.809200px;}
.ws36{word-spacing:179.929200px;}
.ws31{word-spacing:191.516160px;}
.ws27{word-spacing:191.648160px;}
.ws2e{word-spacing:191.888160px;}
.ws35{word-spacing:191.948160px;}
.ws23{word-spacing:204.488160px;}
.ws33{word-spacing:204.608160px;}
.ws26{word-spacing:217.268160px;}
.ws25{word-spacing:217.707120px;}
.ws29{word-spacing:217.780992px;}
.ws30{word-spacing:218.007120px;}
.ws3a{word-spacing:308.507280px;}
.ws2d{word-spacing:342.647280px;}
.ws22{word-spacing:355.307280px;}
.ws28{word-spacing:470.885520px;}
.ws34{word-spacing:471.305520px;}
._6{margin-left:-8.234115px;}
._10{margin-left:-4.563264px;}
._5{margin-left:-3.407220px;}
._1{margin-left:-2.385054px;}
._2{margin-left:-1.135740px;}
._3{width:1.817184px;}
._0{width:3.634368px;}
._9{width:5.005632px;}
._8{width:6.756480px;}
._7{width:8.663040px;}
._f{width:10.278720px;}
._14{width:11.295132px;}
._a{width:12.320640px;}
._b{width:13.695474px;}
._39{width:14.837082px;}
._11{width:16.613280px;}
._e{width:18.525600px;}
._4{width:19.989024px;}
._13{width:21.663696px;}
._c{width:22.844160px;}
._d{width:23.898420px;}
._12{width:25.278480px;}
._2f{width:27.000000px;}
._30{width:28.065816px;}
._34{width:32.940000px;}
._33{width:34.074000px;}
._38{width:35.694000px;}
._37{width:37.368000px;}
._32{width:53.460000px;}
._31{width:54.756000px;}
._3b{width:76.899480px;}
._3a{width:78.192000px;}
._36{width:79.435740px;}
._35{width:80.460000px;}
._2b{width:101.399100px;}
._15{width:103.524540px;}
._28{width:105.105420px;}
._1e{width:109.739100px;}
._29{width:159.609720px;}
._2c{width:173.619774px;}
._2e{width:183.493740px;}
._2d{width:184.500000px;}
._1f{width:188.214720px;}
._23{width:189.239520px;}
._22{width:190.772190px;}
._19{width:200.951040px;}
._21{width:214.451040px;}
._27{width:226.814940px;}
._1c{width:240.519840px;}
._2a{width:246.036480px;}
._18{width:247.994940px;}
._25{width:315.560700px;}
._16{width:349.400700px;}
._1a{width:405.345420px;}
._1b{width:409.164540px;}
._1d{width:545.700768px;}
._24{width:546.756480px;}
._26{width:582.340320px;}
._17{width:633.040320px;}
._20{width:634.600320px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs7{font-size:48.240000px;}
.fsb{font-size:48.384000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:56.787000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:90.859200px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y70{bottom:4.500000px;}
.y74{bottom:4.680000px;}
.ya4{bottom:5.400000px;}
.ya3{bottom:8.280000px;}
.y123{bottom:10.620000px;}
.y186{bottom:14.040000px;}
.y156{bottom:14.148000px;}
.y170{bottom:14.250000px;}
.ya7{bottom:14.940000px;}
.ya6{bottom:17.820000px;}
.ydc{bottom:20.160000px;}
.y128{bottom:23.580000px;}
.y120{bottom:24.120000px;}
.ye8{bottom:24.660000px;}
.y6f{bottom:24.840000px;}
.y122{bottom:30.780000px;}
.y185{bottom:33.765000px;}
.y155{bottom:33.840000px;}
.y16f{bottom:33.990000px;}
.y127{bottom:43.920000px;}
.y73{bottom:45.000000px;}
.y79{bottom:45.180000px;}
.y77{bottom:45.225000px;}
.ydb{bottom:49.680000px;}
.y184{bottom:53.460000px;}
.y154{bottom:53.565000px;}
.y16e{bottom:53.670000px;}
.y126{bottom:64.080000px;}
.y12d{bottom:65.160000px;}
.y72{bottom:65.340000px;}
.ye7{bottom:65.370000px;}
.y76{bottom:65.385000px;}
.yda{bottom:70.020000px;}
.y183{bottom:73.185000px;}
.y153{bottom:73.290000px;}
.y16d{bottom:73.410000px;}
.ye2{bottom:74.520000px;}
.y125{bottom:84.420000px;}
.y12c{bottom:85.500000px;}
.ye6{bottom:85.530000px;}
.yd9{bottom:90.180000px;}
.y182{bottom:92.910000px;}
.y152{bottom:92.985000px;}
.y16c{bottom:93.135000px;}
.ye1{bottom:94.680000px;}
.y12b{bottom:105.705000px;}
.ye5{bottom:105.870000px;}
.yd8{bottom:110.340000px;}
.y11{bottom:111.475500px;}
.y181{bottom:112.605000px;}
.y151{bottom:112.710000px;}
.y16b{bottom:112.830000px;}
.y62{bottom:113.076000px;}
.ye0{bottom:114.840000px;}
.y6b{bottom:115.236000px;}
.y166{bottom:119.556000px;}
.y14b{bottom:121.176000px;}
.y32{bottom:125.496000px;}
.ye4{bottom:126.030000px;}
.y12a{bottom:126.045000px;}
.y10{bottom:129.409500px;}
.yfa{bottom:130.176000px;}
.yd7{bottom:130.680000px;}
.y180{bottom:132.330000px;}
.y150{bottom:132.405000px;}
.y16a{bottom:132.555000px;}
.y61{bottom:133.236000px;}
.y14a{bottom:134.676000px;}
.y14c{bottom:134.820000px;}
.ya1{bottom:135.036000px;}
.ydf{bottom:135.180000px;}
.y6a{bottom:135.576000px;}
.yd1{bottom:135.936000px;}
.y165{bottom:136.836000px;}
.y1fb{bottom:138.276000px;}
.y1c7{bottom:142.956000px;}
.y131{bottom:143.496000px;}
.y31{bottom:145.656000px;}
.yf{bottom:147.342000px;}
.yf9{bottom:150.330000px;}
.yd6{bottom:150.840000px;}
.y17f{bottom:152.025000px;}
.y14f{bottom:152.130000px;}
.y169{bottom:152.250000px;}
.y60{bottom:153.570000px;}
.yde{bottom:155.340000px;}
.ya0{bottom:155.370000px;}
.y1fa{bottom:155.550000px;}
.y69{bottom:155.730000px;}
.yd0{bottom:156.090000px;}
.y130{bottom:156.990000px;}
.y149{bottom:158.790000px;}
.y1c6{bottom:160.230000px;}
.y196{bottom:161.310000px;}
.ye{bottom:165.274500px;}
.y30{bottom:165.810000px;}
.yf8{bottom:170.670000px;}
.y17e{bottom:170.970000px;}
.y14e{bottom:171.075000px;}
.yd5{bottom:171.180000px;}
.y164{bottom:172.110000px;}
.y1f9{bottom:172.830000px;}
.y11e{bottom:173.190000px;}
.y5f{bottom:173.730000px;}
.y9f{bottom:175.530000px;}
.y68{bottom:176.070000px;}
.ycf{bottom:176.430000px;}
.y1c5{bottom:177.510000px;}
.y148{bottom:178.950000px;}
.y195{bottom:180.570000px;}
.y2f{bottom:186.150000px;}
.y17d{bottom:189.870000px;}
.y14d{bottom:189.930000px;}
.y168{bottom:190.080000px;}
.yf7{bottom:190.830000px;}
.y1f8{bottom:191.730000px;}
.y11d{bottom:192.630000px;}
.y5e{bottom:194.070000px;}
.y163{bottom:194.610000px;}
.y1c4{bottom:194.790000px;}
.y17b{bottom:194.940000px;}
.y9e{bottom:195.870000px;}
.y67{bottom:196.230000px;}
.yce{bottom:196.590000px;}
.y157{bottom:199.110000px;}
.y171{bottom:199.260000px;}
.y147{bottom:199.290000px;}
.y194{bottom:199.830000px;}
.y17c{bottom:204.510000px;}
.y2e{bottom:206.310000px;}
.y1f7{bottom:209.010000px;}
.yf6{bottom:211.170000px;}
.y11c{bottom:212.790000px;}
.y187{bottom:213.660000px;}
.y1c3{bottom:213.690000px;}
.y5d{bottom:214.230000px;}
.y9d{bottom:216.030000px;}
.y66{bottom:216.570000px;}
.ycd{bottom:216.930000px;}
.y193{bottom:219.090000px;}
.y146{bottom:219.450000px;}
.y158{bottom:221.550000px;}
.y172{bottom:223.200000px;}
.y160{bottom:224.175000px;}
.y190{bottom:225.825000px;}
.y1f6{bottom:226.290000px;}
.y2d{bottom:226.650000px;}
.y1c2{bottom:230.970000px;}
.yf5{bottom:231.330000px;}
.y188{bottom:232.920000px;}
.y11b{bottom:233.130000px;}
.y5c{bottom:234.570000px;}
.y9c{bottom:236.370000px;}
.y65{bottom:236.730000px;}
.yd{bottom:237.006000px;}
.ycc{bottom:237.090000px;}
.y17a{bottom:238.350000px;}
.y145{bottom:239.790000px;}
.y159{bottom:243.975000px;}
.y1f5{bottom:245.190000px;}
.y2c{bottom:246.810000px;}
.y173{bottom:247.170000px;}
.y1c1{bottom:249.870000px;}
.yf4{bottom:251.490000px;}
.y189{bottom:252.150000px;}
.y11a{bottom:253.290000px;}
.y5b{bottom:254.730000px;}
.yc{bottom:254.938500px;}
.y9b{bottom:256.530000px;}
.y64{bottom:256.890000px;}
.ycb{bottom:257.250000px;}
.y192{bottom:257.430000px;}
.y144{bottom:259.950000px;}
.y1f4{bottom:262.470000px;}
.y15a{bottom:266.400000px;}
.y2b{bottom:267.150000px;}
.y174{bottom:271.110000px;}
.y18a{bottom:271.365000px;}
.yf3{bottom:271.830000px;}
.yb{bottom:272.871000px;}
.y119{bottom:273.630000px;}
.y5a{bottom:274.890000px;}
.y9a{bottom:276.690000px;}
.y63{bottom:277.230000px;}
.yca{bottom:277.590000px;}
.y1f3{bottom:279.750000px;}
.y143{bottom:280.290000px;}
.y1c0{bottom:284.430000px;}
.y2a{bottom:287.310000px;}
.y15b{bottom:288.825000px;}
.y18b{bottom:290.595000px;}
.ya{bottom:290.803500px;}
.yf2{bottom:291.990000px;}
.y118{bottom:293.790000px;}
.y175{bottom:295.095000px;}
.y59{bottom:295.230000px;}
.y191{bottom:295.950000px;}
.y99{bottom:297.030000px;}
.yc9{bottom:297.750000px;}
.y1f2{bottom:298.650000px;}
.y142{bottom:300.450000px;}
.y1bf{bottom:303.330000px;}
.y29{bottom:307.470000px;}
.y18c{bottom:309.810000px;}
.y15c{bottom:311.295000px;}
.yf1{bottom:312.330000px;}
.y117{bottom:313.410000px;}
.y58{bottom:315.390000px;}
.y1f1{bottom:316.110000px;}
.y98{bottom:317.235000px;}
.yc8{bottom:318.135000px;}
.y176{bottom:319.035000px;}
.y141{bottom:320.655000px;}
.y18d{bottom:329.070000px;}
.yf0{bottom:332.535000px;}
.y1f0{bottom:333.435000px;}
.y15d{bottom:333.720000px;}
.y116{bottom:334.875000px;}
.y57{bottom:335.775000px;}
.y97{bottom:337.575000px;}
.y1be{bottom:337.935000px;}
.yc7{bottom:338.295000px;}
.y140{bottom:340.995000px;}
.y8a{bottom:342.615000px;}
.y177{bottom:343.005000px;}
.y9{bottom:344.602500px;}
.y18e{bottom:348.300000px;}
.y1ef{bottom:350.715000px;}
.yef{bottom:352.875000px;}
.y115{bottom:355.035000px;}
.y1bd{bottom:355.215000px;}
.y56{bottom:355.935000px;}
.y15e{bottom:356.145000px;}
.y96{bottom:357.735000px;}
.y28{bottom:358.635000px;}
.y13f{bottom:361.155000px;}
.y89{bottom:362.235000px;}
.y8{bottom:362.535000px;}
.y178{bottom:366.945000px;}
.y18f{bottom:367.530000px;}
.y1ee{bottom:369.615000px;}
.yee{bottom:373.035000px;}
.y1bc{bottom:374.115000px;}
.y114{bottom:375.195000px;}
.y55{bottom:376.095000px;}
.y95{bottom:378.075000px;}
.y15f{bottom:378.570000px;}
.yc6{bottom:378.795000px;}
.y13e{bottom:381.495000px;}
.y88{bottom:381.675000px;}
.y1ed{bottom:386.895000px;}
.y27{bottom:387.255000px;}
.y179{bottom:390.930000px;}
.y1bb{bottom:391.395000px;}
.yed{bottom:393.195000px;}
.y113{bottom:395.535000px;}
.y54{bottom:396.435000px;}
.y94{bottom:398.235000px;}
.y7{bottom:398.400000px;}
.y214{bottom:398.775000px;}
.yc5{bottom:398.955000px;}
.y87{bottom:401.115000px;}
.y13d{bottom:401.655000px;}
.y1ec{bottom:405.795000px;}
.y1ba{bottom:408.675000px;}
.yec{bottom:413.535000px;}
.y112{bottom:415.695000px;}
.y6{bottom:416.332500px;}
.y53{bottom:416.595000px;}
.y93{bottom:418.395000px;}
.yc4{bottom:419.295000px;}
.y86{bottom:420.735000px;}
.y13c{bottom:421.995000px;}
.y1eb{bottom:423.075000px;}
.y1b9{bottom:427.575000px;}
.yeb{bottom:433.695000px;}
.y213{bottom:435.675000px;}
.y111{bottom:436.035000px;}
.y52{bottom:436.935000px;}
.y92{bottom:438.735000px;}
.yc3{bottom:439.455000px;}
.y85{bottom:440.175000px;}
.y1ea{bottom:440.355000px;}
.y13b{bottom:442.155000px;}
.y26{bottom:442.695000px;}
.y1b8{bottom:444.855000px;}
.y212{bottom:452.955000px;}
.yea{bottom:453.675000px;}
.y110{bottom:456.195000px;}
.y51{bottom:457.095000px;}
.y91{bottom:458.895000px;}
.y1e9{bottom:459.255000px;}
.y84{bottom:459.615000px;}
.yc2{bottom:459.795000px;}
.y5{bottom:461.164500px;}
.y13a{bottom:462.315000px;}
.y1b7{bottom:463.755000px;}
.ye9{bottom:469.335000px;}
.y25{bottom:471.135000px;}
.y211{bottom:471.855000px;}
.y10f{bottom:476.535000px;}
.y50{bottom:477.435000px;}
.y90{bottom:478.695000px;}
.y83{bottom:479.235000px;}
.yc1{bottom:479.955000px;}
.y1b6{bottom:481.035000px;}
.y139{bottom:482.655000px;}
.y210{bottom:489.135000px;}
.y1e8{bottom:493.815000px;}
.y10e{bottom:496.695000px;}
.y4f{bottom:497.595000px;}
.y8f{bottom:498.135000px;}
.y82{bottom:498.675000px;}
.y24{bottom:499.575000px;}
.y1b5{bottom:499.935000px;}
.yc0{bottom:500.295000px;}
.y138{bottom:502.815000px;}
.y20f{bottom:508.035000px;}
.ye3{bottom:510.555000px;}
.y1e7{bottom:512.715000px;}
.y10d{bottom:516.855000px;}
.y1b4{bottom:517.215000px;}
.y4e{bottom:517.755000px;}
.y81{bottom:518.115000px;}
.ybf{bottom:520.455000px;}
.y8e{bottom:521.175000px;}
.y137{bottom:523.155000px;}
.y20e{bottom:525.315000px;}
.y23{bottom:528.015000px;}
.y1e6{bottom:529.995000px;}
.y1b3{bottom:536.115000px;}
.y10c{bottom:537.195000px;}
.y80{bottom:537.735000px;}
.y4d{bottom:538.095000px;}
.ybe{bottom:540.615000px;}
.y20d{bottom:542.595000px;}
.y136{bottom:543.315000px;}
.y8d{bottom:545.835000px;}
.y1e5{bottom:547.275000px;}
.y1b2{bottom:553.395000px;}
.y22{bottom:556.455000px;}
.y7f{bottom:557.175000px;}
.y10b{bottom:557.355000px;}
.y4c{bottom:558.255000px;}
.ybd{bottom:560.955000px;}
.y20c{bottom:561.495000px;}
.y135{bottom:563.655000px;}
.y1e4{bottom:566.175000px;}
.y1b1{bottom:572.325000px;}
.y7e{bottom:576.645000px;}
.y10a{bottom:577.725000px;}
.y4b{bottom:578.625000px;}
.y20b{bottom:578.805000px;}
.ybc{bottom:581.145000px;}
.y134{bottom:583.125000px;}
.y1e3{bottom:583.485000px;}
.y21{bottom:584.925000px;}
.y1b0{bottom:589.605000px;}
.y7d{bottom:596.265000px;}
.y20a{bottom:597.705000px;}
.y109{bottom:597.885000px;}
.y4a{bottom:598.785000px;}
.y133{bottom:600.405000px;}
.y1e2{bottom:600.765000px;}
.ybb{bottom:601.485000px;}
.y162{bottom:604.365000px;}
.y1af{bottom:606.885000px;}
.y12f{bottom:613.185000px;}
.y20{bottom:613.365000px;}
.y132{bottom:613.905000px;}
.y209{bottom:614.985000px;}
.y7c{bottom:615.705000px;}
.y108{bottom:618.225000px;}
.y49{bottom:619.125000px;}
.y1e1{bottom:619.665000px;}
.yba{bottom:621.645000px;}
.y1ae{bottom:625.785000px;}
.y12e{bottom:626.685000px;}
.y161{bottom:626.865000px;}
.y167{bottom:627.660000px;}
.y208{bottom:633.885000px;}
.y7b{bottom:635.145000px;}
.y1e0{bottom:636.945000px;}
.y107{bottom:638.385000px;}
.y48{bottom:639.285000px;}
.y1f{bottom:641.805000px;}
.y1ad{bottom:644.685000px;}
.y207{bottom:651.165000px;}
.y7a{bottom:652.605000px;}
.ydd{bottom:652.965000px;}
.y1df{bottom:654.225000px;}
.y106{bottom:658.545000px;}
.y47{bottom:659.445000px;}
.y1ac{bottom:661.965000px;}
.yb9{bottom:662.145000px;}
.y206{bottom:670.065000px;}
.y1e{bottom:670.425000px;}
.y1de{bottom:673.125000px;}
.y105{bottom:678.885000px;}
.y46{bottom:679.785000px;}
.y1ab{bottom:680.865000px;}
.yb8{bottom:682.305000px;}
.y205{bottom:687.345000px;}
.y1dd{bottom:690.405000px;}
.y78{bottom:693.825000px;}
.y1aa{bottom:698.145000px;}
.y1d{bottom:698.865000px;}
.y104{bottom:699.045000px;}
.y45{bottom:699.945000px;}
.yb7{bottom:702.645000px;}
.y204{bottom:704.625000px;}
.y1dc{bottom:707.685000px;}
.y129{bottom:715.605000px;}
.y1a9{bottom:717.045000px;}
.y103{bottom:719.385000px;}
.y44{bottom:720.285000px;}
.yb6{bottom:722.805000px;}
.y203{bottom:723.525000px;}
.y1db{bottom:726.585000px;}
.y1c{bottom:727.305000px;}
.y1a8{bottom:734.325000px;}
.y102{bottom:739.545000px;}
.y43{bottom:740.445000px;}
.y202{bottom:740.805000px;}
.yb5{bottom:743.145000px;}
.y1da{bottom:743.865000px;}
.y1a7{bottom:753.225000px;}
.y1b{bottom:755.745000px;}
.y201{bottom:758.085000px;}
.y101{bottom:759.885000px;}
.y42{bottom:760.785000px;}
.y1d9{bottom:762.765000px;}
.yb4{bottom:763.305000px;}
.y1a6{bottom:770.505000px;}
.y75{bottom:775.545000px;}
.y200{bottom:776.985000px;}
.y1d8{bottom:780.225000px;}
.y41{bottom:780.945000px;}
.yb3{bottom:783.465000px;}
.y1a{bottom:784.185000px;}
.y1a5{bottom:789.405000px;}
.y1ff{bottom:795.885000px;}
.y1d7{bottom:797.505000px;}
.y40{bottom:801.105000px;}
.yb2{bottom:803.805000px;}
.y1a4{bottom:806.685000px;}
.y100{bottom:811.005000px;}
.y1fe{bottom:814.785000px;}
.y1d6{bottom:816.405000px;}
.y8c{bottom:816.765000px;}
.y3f{bottom:821.490000px;}
.yb1{bottom:824.010000px;}
.yd4{bottom:824.910000px;}
.y1a3{bottom:825.630000px;}
.y4{bottom:827.964000px;}
.y19{bottom:831.210000px;}
.y1fd{bottom:832.110000px;}
.y1d5{bottom:833.730000px;}
.y8b{bottom:841.470000px;}
.y3e{bottom:841.650000px;}
.y1a2{bottom:842.910000px;}
.yb0{bottom:844.350000px;}
.y18{bottom:850.650000px;}
.y1d4{bottom:851.010000px;}
.y71{bottom:857.310000px;}
.y124{bottom:858.030000px;}
.y1a1{bottom:861.810000px;}
.y3d{bottom:861.990000px;}
.y3{bottom:863.829000px;}
.yaf{bottom:864.510000px;}
.yff{bottom:866.490000px;}
.y1fc{bottom:868.290000px;}
.y1d3{bottom:869.910000px;}
.y17{bottom:873.150000px;}
.y1a0{bottom:879.090000px;}
.y3c{bottom:882.150000px;}
.yae{bottom:884.850000px;}
.y1d2{bottom:887.190000px;}
.y16{bottom:892.590000px;}
.y19f{bottom:897.990000px;}
.y2{bottom:899.695500px;}
.y3b{bottom:902.490000px;}
.y1d1{bottom:904.470000px;}
.yad{bottom:905.010000px;}
.yfe{bottom:913.470000px;}
.y19e{bottom:915.270000px;}
.y3a{bottom:922.650000px;}
.y1d0{bottom:923.370000px;}
.yac{bottom:925.170000px;}
.y19d{bottom:934.170000px;}
.y15{bottom:937.050000px;}
.y6e{bottom:939.030000px;}
.y1cf{bottom:940.650000px;}
.y39{bottom:942.810000px;}
.yab{bottom:945.510000px;}
.y19c{bottom:951.450000px;}
.y1ce{bottom:957.930000px;}
.y121{bottom:958.830000px;}
.y1{bottom:962.460000px;}
.y38{bottom:963.150000px;}
.yfd{bottom:964.590000px;}
.yaa{bottom:965.670000px;}
.y19b{bottom:970.350000px;}
.y1cd{bottom:976.830000px;}
.y14{bottom:978.810000px;}
.y37{bottom:983.310000px;}
.y6d{bottom:983.490000px;}
.ya9{bottom:986.010000px;}
.y19a{bottom:987.630000px;}
.y1cc{bottom:994.110000px;}
.y36{bottom:1003.650000px;}
.y6c{bottom:1003.830000px;}
.y11f{bottom:1005.990000px;}
.ya8{bottom:1006.170000px;}
.y199{bottom:1006.530000px;}
.yfc{bottom:1010.850000px;}
.y1cb{bottom:1011.390000px;}
.yd3{bottom:1012.470000px;}
.y13{bottom:1015.350000px;}
.ya5{bottom:1021.830000px;}
.y35{bottom:1023.810000px;}
.y1ca{bottom:1030.290000px;}
.yfb{bottom:1038.030000px;}
.y198{bottom:1041.090000px;}
.y34{bottom:1044.150000px;}
.y1c9{bottom:1047.570000px;}
.y12{bottom:1051.710000px;}
.ya2{bottom:1055.670000px;}
.y33{bottom:1064.310000px;}
.y1c8{bottom:1064.850000px;}
.y197{bottom:1065.030000px;}
.yd2{bottom:1066.470000px;}
.h9{height:22.974258px;}
.h17{height:24.336000px;}
.h16{height:26.279297px;}
.h1a{height:33.840000px;}
.ha{height:35.214258px;}
.h11{height:39.418945px;}
.h2c{height:39.577148px;}
.h2b{height:39.761719px;}
.h20{height:39.780000px;}
.h13{height:40.500000px;}
.h24{height:41.809570px;}
.h25{height:41.934375px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.hb{height:43.623633px;}
.h10{height:43.798711px;}
.h8{height:44.002969px;}
.h27{height:45.641602px;}
.h21{height:46.440000px;}
.h26{height:46.801758px;}
.h1b{height:52.524141px;}
.h19{height:52.558594px;}
.h12{height:58.651172px;}
.h18{height:60.679688px;}
.hf{height:61.423863px;}
.he{height:62.211094px;}
.hd{height:65.010937px;}
.hc{height:66.757500px;}
.h2{height:67.326667px;}
.h1f{height:70.664062px;}
.h2a{height:71.029570px;}
.h7{height:79.523438px;}
.h14{height:81.000000px;}
.h15{height:81.036000px;}
.h3{height:84.385482px;}
.h22{height:100.080000px;}
.h1e{height:141.696000px;}
.h1d{height:171.030000px;}
.h1c{height:186.840000px;}
.h29{height:387.720000px;}
.h23{height:398.700000px;}
.h28{height:411.120000px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:63.720000px;}
.wb{width:92.196000px;}
.w9{width:98.280000px;}
.w4{width:116.856000px;}
.wd{width:127.656000px;}
.w6{width:170.130000px;}
.wa{width:175.170000px;}
.w5{width:201.990000px;}
.wc{width:240.510000px;}
.we{width:395.535000px;}
.w7{width:510.405000px;}
.w11{width:617.400000px;}
.wf{width:646.920000px;}
.w10{width:647.460000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:917.999986px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:8.640000px;}
.x3c{left:9.900000px;}
.x16{left:12.780000px;}
.x10{left:14.580000px;}
.x2d{left:16.200000px;}
.x37{left:18.900000px;}
.x3a{left:20.160000px;}
.x26{left:21.240000px;}
.x2f{left:22.500000px;}
.x19{left:27.000000px;}
.x13{left:29.160000px;}
.x34{left:31.545000px;}
.x28{left:33.300000px;}
.x30{left:34.740000px;}
.x3b{left:36.720000px;}
.x31{left:39.825000px;}
.x35{left:41.625000px;}
.x9{left:42.660000px;}
.x11{left:43.740000px;}
.x17{left:44.820000px;}
.xf{left:46.080000px;}
.x1d{left:48.780000px;}
.x18{left:52.380000px;}
.x1a{left:53.820000px;}
.x12{left:55.080000px;}
.x44{left:57.780000px;}
.xc{left:61.920000px;}
.xb{left:63.900000px;}
.x2a{left:65.025000px;}
.xe{left:66.420000px;}
.x38{left:68.985000px;}
.x51{left:73.365000px;}
.x14{left:75.600000px;}
.x1b{left:80.280000px;}
.x15{left:84.960000px;}
.x2b{left:87.525000px;}
.x48{left:91.800000px;}
.x2{left:101.025000px;}
.x1{left:102.046500px;}
.x3{left:108.035986px;}
.x47{left:111.600000px;}
.x42{left:117.000000px;}
.x32{left:120.240000px;}
.x55{left:123.405000px;}
.x46{left:125.820000px;}
.x52{left:130.650000px;}
.x5{left:135.035986px;}
.x59{left:139.895986px;}
.x4a{left:142.200000px;}
.x43{left:145.260000px;}
.x45{left:146.880000px;}
.x56{left:150.120000px;}
.x4b{left:154.080000px;}
.x27{left:156.630000px;}
.x4{left:162.029986px;}
.x24{left:166.005000px;}
.x4f{left:170.310000px;}
.x50{left:172.830000px;}
.x49{left:174.990000px;}
.x57{left:181.230000px;}
.x58{left:183.270000px;}
.x22{left:186.149986px;}
.x40{left:196.950000px;}
.x8{left:214.770000px;}
.x33{left:217.305000px;}
.x6{left:227.009986px;}
.x23{left:237.630000px;}
.x39{left:246.645000px;}
.x29{left:254.910000px;}
.x36{left:256.545000px;}
.x21{left:281.729986px;}
.x3e{left:303.734986px;}
.x41{left:324.615000px;}
.xa{left:331.635000px;}
.x3d{left:335.594986px;}
.x2c{left:430.095000px;}
.x1f{left:450.254986px;}
.x7{left:459.074986px;}
.x53{left:486.104986px;}
.x2e{left:522.285000px;}
.xd{left:533.625000px;}
.x1e{left:618.764986px;}
.x3f{left:734.729986px;}
.x25{left:748.050000px;}
.x54{left:767.849986px;}
.x4e{left:783.149986px;}
.x20{left:794.309986px;}
.x4c{left:873.179986px;}
.x4d{left:893.339986px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v1{vertical-align:13.440000pt;}
.v6{vertical-align:25.973333pt;}
.ls23{letter-spacing:-5.600000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.409067pt;}
.ls2{letter-spacing:-0.368533pt;}
.ls1c{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.246400pt;}
.ls31{letter-spacing:-0.224000pt;}
.ls24{letter-spacing:-0.195733pt;}
.ls1e{letter-spacing:-0.190933pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.122667pt;}
.ls2c{letter-spacing:-0.098133pt;}
.ls25{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.037120pt;}
.ls28{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls30{letter-spacing:0.016000pt;}
.ls32{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.073600pt;}
.ls20{letter-spacing:0.085760pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.112000pt;}
.ls26{letter-spacing:0.141867pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.229333pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.269867pt;}
.ls3{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.352000pt;}
.ls18{letter-spacing:0.393600pt;}
.ls12{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.995200pt;}
.lse{letter-spacing:8.950400pt;}
.ls11{letter-spacing:11.463040pt;}
.ls13{letter-spacing:14.719360pt;}
.lsf{letter-spacing:15.359360pt;}
.ls2e{letter-spacing:31.952640pt;}
.ls4{letter-spacing:40.891307pt;}
.ls15{letter-spacing:56.891307pt;}
.ls2d{letter-spacing:58.192640pt;}
.ls22{letter-spacing:202.275413pt;}
.ls21{letter-spacing:202.382080pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.351467pt;}
.ws19{word-spacing:-13.824000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.242880pt;}
.ws1f{word-spacing:-13.185067pt;}
.ws3e{word-spacing:-13.181867pt;}
.wsf{word-spacing:-13.157333pt;}
.ws1d{word-spacing:-13.089067pt;}
.ws1e{word-spacing:-13.084267pt;}
.ws10{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.870933pt;}
.ws45{word-spacing:-12.352000pt;}
.ws40{word-spacing:-12.320000pt;}
.ws41{word-spacing:-12.288000pt;}
.ws18{word-spacing:-12.080000pt;}
.ws44{word-spacing:-12.032000pt;}
.ws42{word-spacing:-12.016000pt;}
.ws3f{word-spacing:-12.000000pt;}
.ws43{word-spacing:-11.776000pt;}
.ws17{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.440000pt;}
.ws37{word-spacing:-8.790400pt;}
.ws2c{word-spacing:-8.730624pt;}
.ws21{word-spacing:-8.704640pt;}
.ws6{word-spacing:-8.000000pt;}
.ws1a{word-spacing:-7.872000pt;}
.ws7{word-spacing:-6.720000pt;}
.ws4{word-spacing:-0.050477pt;}
.ws9{word-spacing:0.000000pt;}
.ws14{word-spacing:0.462080pt;}
.ws13{word-spacing:0.472960pt;}
.ws12{word-spacing:3.013760pt;}
.ws16{word-spacing:5.293440pt;}
.ws3{word-spacing:13.982221pt;}
.ws5{word-spacing:14.133653pt;}
.ws0{word-spacing:22.371554pt;}
.ws1{word-spacing:27.964443pt;}
.ws2{word-spacing:28.469216pt;}
.ws3b{word-spacing:121.424043pt;}
.ws39{word-spacing:121.593387pt;}
.ws38{word-spacing:121.646720pt;}
.ws20{word-spacing:136.408533pt;}
.ws2b{word-spacing:136.675200pt;}
.ws3d{word-spacing:144.577067pt;}
.ws2f{word-spacing:148.470400pt;}
.ws3c{word-spacing:151.684907pt;}
.ws2a{word-spacing:159.563733pt;}
.ws24{word-spacing:159.723733pt;}
.ws32{word-spacing:159.830400pt;}
.ws36{word-spacing:159.937067pt;}
.ws31{word-spacing:170.236587pt;}
.ws27{word-spacing:170.353920pt;}
.ws2e{word-spacing:170.567253pt;}
.ws35{word-spacing:170.620587pt;}
.ws23{word-spacing:181.767253pt;}
.ws33{word-spacing:181.873920pt;}
.ws26{word-spacing:193.127253pt;}
.ws25{word-spacing:193.517440pt;}
.ws29{word-spacing:193.583104pt;}
.ws30{word-spacing:193.784107pt;}
.ws3a{word-spacing:274.228693pt;}
.ws2d{word-spacing:304.575360pt;}
.ws22{word-spacing:315.828693pt;}
.ws28{word-spacing:418.564907pt;}
.ws34{word-spacing:418.938240pt;}
._6{margin-left:-7.319213pt;}
._10{margin-left:-4.056235pt;}
._5{margin-left:-3.028640pt;}
._1{margin-left:-2.120048pt;}
._2{margin-left:-1.009547pt;}
._3{width:1.615275pt;}
._0{width:3.230549pt;}
._9{width:4.449451pt;}
._8{width:6.005760pt;}
._7{width:7.700480pt;}
._f{width:9.136640pt;}
._14{width:10.040117pt;}
._a{width:10.951680pt;}
._b{width:12.173755pt;}
._39{width:13.188517pt;}
._11{width:14.767360pt;}
._e{width:16.467200pt;}
._4{width:17.768021pt;}
._13{width:19.256619pt;}
._c{width:20.305920pt;}
._d{width:21.243040pt;}
._12{width:22.469760pt;}
._2f{width:24.000000pt;}
._30{width:24.947392pt;}
._34{width:29.280000pt;}
._33{width:30.288000pt;}
._38{width:31.728000pt;}
._37{width:33.216000pt;}
._32{width:47.520000pt;}
._31{width:48.672000pt;}
._3b{width:68.355093pt;}
._3a{width:69.504000pt;}
._36{width:70.609547pt;}
._35{width:71.520000pt;}
._2b{width:90.132533pt;}
._15{width:92.021813pt;}
._28{width:93.427040pt;}
._1e{width:97.545867pt;}
._29{width:141.875307pt;}
._2c{width:154.328688pt;}
._2e{width:163.105547pt;}
._2d{width:164.000000pt;}
._1f{width:167.301973pt;}
._23{width:168.212907pt;}
._22{width:169.575280pt;}
._19{width:178.623147pt;}
._21{width:190.623147pt;}
._27{width:201.613280pt;}
._1c{width:213.795413pt;}
._2a{width:218.699093pt;}
._18{width:220.439947pt;}
._25{width:280.498400pt;}
._16{width:310.578400pt;}
._1a{width:360.307040pt;}
._1b{width:363.701813pt;}
._1d{width:485.067349pt;}
._24{width:486.005760pt;}
._26{width:517.635840pt;}
._17{width:562.702507pt;}
._20{width:564.089173pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:42.880000pt;}
.fsb{font-size:43.008000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:50.477333pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:80.763733pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:4.000000pt;}
.y74{bottom:4.160000pt;}
.ya4{bottom:4.800000pt;}
.ya3{bottom:7.360000pt;}
.y123{bottom:9.440000pt;}
.y186{bottom:12.480000pt;}
.y156{bottom:12.576000pt;}
.y170{bottom:12.666667pt;}
.ya7{bottom:13.280000pt;}
.ya6{bottom:15.840000pt;}
.ydc{bottom:17.920000pt;}
.y128{bottom:20.960000pt;}
.y120{bottom:21.440000pt;}
.ye8{bottom:21.920000pt;}
.y6f{bottom:22.080000pt;}
.y122{bottom:27.360000pt;}
.y185{bottom:30.013333pt;}
.y155{bottom:30.080000pt;}
.y16f{bottom:30.213333pt;}
.y127{bottom:39.040000pt;}
.y73{bottom:40.000000pt;}
.y79{bottom:40.160000pt;}
.y77{bottom:40.200000pt;}
.ydb{bottom:44.160000pt;}
.y184{bottom:47.520000pt;}
.y154{bottom:47.613333pt;}
.y16e{bottom:47.706667pt;}
.y126{bottom:56.960000pt;}
.y12d{bottom:57.920000pt;}
.y72{bottom:58.080000pt;}
.ye7{bottom:58.106667pt;}
.y76{bottom:58.120000pt;}
.yda{bottom:62.240000pt;}
.y183{bottom:65.053333pt;}
.y153{bottom:65.146667pt;}
.y16d{bottom:65.253333pt;}
.ye2{bottom:66.240000pt;}
.y125{bottom:75.040000pt;}
.y12c{bottom:76.000000pt;}
.ye6{bottom:76.026667pt;}
.yd9{bottom:80.160000pt;}
.y182{bottom:82.586667pt;}
.y152{bottom:82.653333pt;}
.y16c{bottom:82.786667pt;}
.ye1{bottom:84.160000pt;}
.y12b{bottom:93.960000pt;}
.ye5{bottom:94.106667pt;}
.yd8{bottom:98.080000pt;}
.y11{bottom:99.089333pt;}
.y181{bottom:100.093333pt;}
.y151{bottom:100.186667pt;}
.y16b{bottom:100.293333pt;}
.y62{bottom:100.512000pt;}
.ye0{bottom:102.080000pt;}
.y6b{bottom:102.432000pt;}
.y166{bottom:106.272000pt;}
.y14b{bottom:107.712000pt;}
.y32{bottom:111.552000pt;}
.ye4{bottom:112.026667pt;}
.y12a{bottom:112.040000pt;}
.y10{bottom:115.030667pt;}
.yfa{bottom:115.712000pt;}
.yd7{bottom:116.160000pt;}
.y180{bottom:117.626667pt;}
.y150{bottom:117.693333pt;}
.y16a{bottom:117.826667pt;}
.y61{bottom:118.432000pt;}
.y14a{bottom:119.712000pt;}
.y14c{bottom:119.840000pt;}
.ya1{bottom:120.032000pt;}
.ydf{bottom:120.160000pt;}
.y6a{bottom:120.512000pt;}
.yd1{bottom:120.832000pt;}
.y165{bottom:121.632000pt;}
.y1fb{bottom:122.912000pt;}
.y1c7{bottom:127.072000pt;}
.y131{bottom:127.552000pt;}
.y31{bottom:129.472000pt;}
.yf{bottom:130.970667pt;}
.yf9{bottom:133.626667pt;}
.yd6{bottom:134.080000pt;}
.y17f{bottom:135.133333pt;}
.y14f{bottom:135.226667pt;}
.y169{bottom:135.333333pt;}
.y60{bottom:136.506667pt;}
.yde{bottom:138.080000pt;}
.ya0{bottom:138.106667pt;}
.y1fa{bottom:138.266667pt;}
.y69{bottom:138.426667pt;}
.yd0{bottom:138.746667pt;}
.y130{bottom:139.546667pt;}
.y149{bottom:141.146667pt;}
.y1c6{bottom:142.426667pt;}
.y196{bottom:143.386667pt;}
.ye{bottom:146.910667pt;}
.y30{bottom:147.386667pt;}
.yf8{bottom:151.706667pt;}
.y17e{bottom:151.973333pt;}
.y14e{bottom:152.066667pt;}
.yd5{bottom:152.160000pt;}
.y164{bottom:152.986667pt;}
.y1f9{bottom:153.626667pt;}
.y11e{bottom:153.946667pt;}
.y5f{bottom:154.426667pt;}
.y9f{bottom:156.026667pt;}
.y68{bottom:156.506667pt;}
.ycf{bottom:156.826667pt;}
.y1c5{bottom:157.786667pt;}
.y148{bottom:159.066667pt;}
.y195{bottom:160.506667pt;}
.y2f{bottom:165.466667pt;}
.y17d{bottom:168.773333pt;}
.y14d{bottom:168.826667pt;}
.y168{bottom:168.960000pt;}
.yf7{bottom:169.626667pt;}
.y1f8{bottom:170.426667pt;}
.y11d{bottom:171.226667pt;}
.y5e{bottom:172.506667pt;}
.y163{bottom:172.986667pt;}
.y1c4{bottom:173.146667pt;}
.y17b{bottom:173.280000pt;}
.y9e{bottom:174.106667pt;}
.y67{bottom:174.426667pt;}
.yce{bottom:174.746667pt;}
.y157{bottom:176.986667pt;}
.y171{bottom:177.120000pt;}
.y147{bottom:177.146667pt;}
.y194{bottom:177.626667pt;}
.y17c{bottom:181.786667pt;}
.y2e{bottom:183.386667pt;}
.y1f7{bottom:185.786667pt;}
.yf6{bottom:187.706667pt;}
.y11c{bottom:189.146667pt;}
.y187{bottom:189.920000pt;}
.y1c3{bottom:189.946667pt;}
.y5d{bottom:190.426667pt;}
.y9d{bottom:192.026667pt;}
.y66{bottom:192.506667pt;}
.ycd{bottom:192.826667pt;}
.y193{bottom:194.746667pt;}
.y146{bottom:195.066667pt;}
.y158{bottom:196.933333pt;}
.y172{bottom:198.400000pt;}
.y160{bottom:199.266667pt;}
.y190{bottom:200.733333pt;}
.y1f6{bottom:201.146667pt;}
.y2d{bottom:201.466667pt;}
.y1c2{bottom:205.306667pt;}
.yf5{bottom:205.626667pt;}
.y188{bottom:207.040000pt;}
.y11b{bottom:207.226667pt;}
.y5c{bottom:208.506667pt;}
.y9c{bottom:210.106667pt;}
.y65{bottom:210.426667pt;}
.yd{bottom:210.672000pt;}
.ycc{bottom:210.746667pt;}
.y17a{bottom:211.866667pt;}
.y145{bottom:213.146667pt;}
.y159{bottom:216.866667pt;}
.y1f5{bottom:217.946667pt;}
.y2c{bottom:219.386667pt;}
.y173{bottom:219.706667pt;}
.y1c1{bottom:222.106667pt;}
.yf4{bottom:223.546667pt;}
.y189{bottom:224.133333pt;}
.y11a{bottom:225.146667pt;}
.y5b{bottom:226.426667pt;}
.yc{bottom:226.612000pt;}
.y9b{bottom:228.026667pt;}
.y64{bottom:228.346667pt;}
.ycb{bottom:228.666667pt;}
.y192{bottom:228.826667pt;}
.y144{bottom:231.066667pt;}
.y1f4{bottom:233.306667pt;}
.y15a{bottom:236.800000pt;}
.y2b{bottom:237.466667pt;}
.y174{bottom:240.986667pt;}
.y18a{bottom:241.213333pt;}
.yf3{bottom:241.626667pt;}
.yb{bottom:242.552000pt;}
.y119{bottom:243.226667pt;}
.y5a{bottom:244.346667pt;}
.y9a{bottom:245.946667pt;}
.y63{bottom:246.426667pt;}
.yca{bottom:246.746667pt;}
.y1f3{bottom:248.666667pt;}
.y143{bottom:249.146667pt;}
.y1c0{bottom:252.826667pt;}
.y2a{bottom:255.386667pt;}
.y15b{bottom:256.733333pt;}
.y18b{bottom:258.306667pt;}
.ya{bottom:258.492000pt;}
.yf2{bottom:259.546667pt;}
.y118{bottom:261.146667pt;}
.y175{bottom:262.306667pt;}
.y59{bottom:262.426667pt;}
.y191{bottom:263.066667pt;}
.y99{bottom:264.026667pt;}
.yc9{bottom:264.666667pt;}
.y1f2{bottom:265.466667pt;}
.y142{bottom:267.066667pt;}
.y1bf{bottom:269.626667pt;}
.y29{bottom:273.306667pt;}
.y18c{bottom:275.386667pt;}
.y15c{bottom:276.706667pt;}
.yf1{bottom:277.626667pt;}
.y117{bottom:278.586667pt;}
.y58{bottom:280.346667pt;}
.y1f1{bottom:280.986667pt;}
.y98{bottom:281.986667pt;}
.yc8{bottom:282.786667pt;}
.y176{bottom:283.586667pt;}
.y141{bottom:285.026667pt;}
.y18d{bottom:292.506667pt;}
.yf0{bottom:295.586667pt;}
.y1f0{bottom:296.386667pt;}
.y15d{bottom:296.640000pt;}
.y116{bottom:297.666667pt;}
.y57{bottom:298.466667pt;}
.y97{bottom:300.066667pt;}
.y1be{bottom:300.386667pt;}
.yc7{bottom:300.706667pt;}
.y140{bottom:303.106667pt;}
.y8a{bottom:304.546667pt;}
.y177{bottom:304.893333pt;}
.y9{bottom:306.313333pt;}
.y18e{bottom:309.600000pt;}
.y1ef{bottom:311.746667pt;}
.yef{bottom:313.666667pt;}
.y115{bottom:315.586667pt;}
.y1bd{bottom:315.746667pt;}
.y56{bottom:316.386667pt;}
.y15e{bottom:316.573333pt;}
.y96{bottom:317.986667pt;}
.y28{bottom:318.786667pt;}
.y13f{bottom:321.026667pt;}
.y89{bottom:321.986667pt;}
.y8{bottom:322.253333pt;}
.y178{bottom:326.173333pt;}
.y18f{bottom:326.693333pt;}
.y1ee{bottom:328.546667pt;}
.yee{bottom:331.586667pt;}
.y1bc{bottom:332.546667pt;}
.y114{bottom:333.506667pt;}
.y55{bottom:334.306667pt;}
.y95{bottom:336.066667pt;}
.y15f{bottom:336.506667pt;}
.yc6{bottom:336.706667pt;}
.y13e{bottom:339.106667pt;}
.y88{bottom:339.266667pt;}
.y1ed{bottom:343.906667pt;}
.y27{bottom:344.226667pt;}
.y179{bottom:347.493333pt;}
.y1bb{bottom:347.906667pt;}
.yed{bottom:349.506667pt;}
.y113{bottom:351.586667pt;}
.y54{bottom:352.386667pt;}
.y94{bottom:353.986667pt;}
.y7{bottom:354.133333pt;}
.y214{bottom:354.466667pt;}
.yc5{bottom:354.626667pt;}
.y87{bottom:356.546667pt;}
.y13d{bottom:357.026667pt;}
.y1ec{bottom:360.706667pt;}
.y1ba{bottom:363.266667pt;}
.yec{bottom:367.586667pt;}
.y112{bottom:369.506667pt;}
.y6{bottom:370.073333pt;}
.y53{bottom:370.306667pt;}
.y93{bottom:371.906667pt;}
.yc4{bottom:372.706667pt;}
.y86{bottom:373.986667pt;}
.y13c{bottom:375.106667pt;}
.y1eb{bottom:376.066667pt;}
.y1b9{bottom:380.066667pt;}
.yeb{bottom:385.506667pt;}
.y213{bottom:387.266667pt;}
.y111{bottom:387.586667pt;}
.y52{bottom:388.386667pt;}
.y92{bottom:389.986667pt;}
.yc3{bottom:390.626667pt;}
.y85{bottom:391.266667pt;}
.y1ea{bottom:391.426667pt;}
.y13b{bottom:393.026667pt;}
.y26{bottom:393.506667pt;}
.y1b8{bottom:395.426667pt;}
.y212{bottom:402.626667pt;}
.yea{bottom:403.266667pt;}
.y110{bottom:405.506667pt;}
.y51{bottom:406.306667pt;}
.y91{bottom:407.906667pt;}
.y1e9{bottom:408.226667pt;}
.y84{bottom:408.546667pt;}
.yc2{bottom:408.706667pt;}
.y5{bottom:409.924000pt;}
.y13a{bottom:410.946667pt;}
.y1b7{bottom:412.226667pt;}
.ye9{bottom:417.186667pt;}
.y25{bottom:418.786667pt;}
.y211{bottom:419.426667pt;}
.y10f{bottom:423.586667pt;}
.y50{bottom:424.386667pt;}
.y90{bottom:425.506667pt;}
.y83{bottom:425.986667pt;}
.yc1{bottom:426.626667pt;}
.y1b6{bottom:427.586667pt;}
.y139{bottom:429.026667pt;}
.y210{bottom:434.786667pt;}
.y1e8{bottom:438.946667pt;}
.y10e{bottom:441.506667pt;}
.y4f{bottom:442.306667pt;}
.y8f{bottom:442.786667pt;}
.y82{bottom:443.266667pt;}
.y24{bottom:444.066667pt;}
.y1b5{bottom:444.386667pt;}
.yc0{bottom:444.706667pt;}
.y138{bottom:446.946667pt;}
.y20f{bottom:451.586667pt;}
.ye3{bottom:453.826667pt;}
.y1e7{bottom:455.746667pt;}
.y10d{bottom:459.426667pt;}
.y1b4{bottom:459.746667pt;}
.y4e{bottom:460.226667pt;}
.y81{bottom:460.546667pt;}
.ybf{bottom:462.626667pt;}
.y8e{bottom:463.266667pt;}
.y137{bottom:465.026667pt;}
.y20e{bottom:466.946667pt;}
.y23{bottom:469.346667pt;}
.y1e6{bottom:471.106667pt;}
.y1b3{bottom:476.546667pt;}
.y10c{bottom:477.506667pt;}
.y80{bottom:477.986667pt;}
.y4d{bottom:478.306667pt;}
.ybe{bottom:480.546667pt;}
.y20d{bottom:482.306667pt;}
.y136{bottom:482.946667pt;}
.y8d{bottom:485.186667pt;}
.y1e5{bottom:486.466667pt;}
.y1b2{bottom:491.906667pt;}
.y22{bottom:494.626667pt;}
.y7f{bottom:495.266667pt;}
.y10b{bottom:495.426667pt;}
.y4c{bottom:496.226667pt;}
.ybd{bottom:498.626667pt;}
.y20c{bottom:499.106667pt;}
.y135{bottom:501.026667pt;}
.y1e4{bottom:503.266667pt;}
.y1b1{bottom:508.733333pt;}
.y7e{bottom:512.573333pt;}
.y10a{bottom:513.533333pt;}
.y4b{bottom:514.333333pt;}
.y20b{bottom:514.493333pt;}
.ybc{bottom:516.573333pt;}
.y134{bottom:518.333333pt;}
.y1e3{bottom:518.653333pt;}
.y21{bottom:519.933333pt;}
.y1b0{bottom:524.093333pt;}
.y7d{bottom:530.013333pt;}
.y20a{bottom:531.293333pt;}
.y109{bottom:531.453333pt;}
.y4a{bottom:532.253333pt;}
.y133{bottom:533.693333pt;}
.y1e2{bottom:534.013333pt;}
.ybb{bottom:534.653333pt;}
.y162{bottom:537.213333pt;}
.y1af{bottom:539.453333pt;}
.y12f{bottom:545.053333pt;}
.y20{bottom:545.213333pt;}
.y132{bottom:545.693333pt;}
.y209{bottom:546.653333pt;}
.y7c{bottom:547.293333pt;}
.y108{bottom:549.533333pt;}
.y49{bottom:550.333333pt;}
.y1e1{bottom:550.813333pt;}
.yba{bottom:552.573333pt;}
.y1ae{bottom:556.253333pt;}
.y12e{bottom:557.053333pt;}
.y161{bottom:557.213333pt;}
.y167{bottom:557.920000pt;}
.y208{bottom:563.453333pt;}
.y7b{bottom:564.573333pt;}
.y1e0{bottom:566.173333pt;}
.y107{bottom:567.453333pt;}
.y48{bottom:568.253333pt;}
.y1f{bottom:570.493333pt;}
.y1ad{bottom:573.053333pt;}
.y207{bottom:578.813333pt;}
.y7a{bottom:580.093333pt;}
.ydd{bottom:580.413333pt;}
.y1df{bottom:581.533333pt;}
.y106{bottom:585.373333pt;}
.y47{bottom:586.173333pt;}
.y1ac{bottom:588.413333pt;}
.yb9{bottom:588.573333pt;}
.y206{bottom:595.613333pt;}
.y1e{bottom:595.933333pt;}
.y1de{bottom:598.333333pt;}
.y105{bottom:603.453333pt;}
.y46{bottom:604.253333pt;}
.y1ab{bottom:605.213333pt;}
.yb8{bottom:606.493333pt;}
.y205{bottom:610.973333pt;}
.y1dd{bottom:613.693333pt;}
.y78{bottom:616.733333pt;}
.y1aa{bottom:620.573333pt;}
.y1d{bottom:621.213333pt;}
.y104{bottom:621.373333pt;}
.y45{bottom:622.173333pt;}
.yb7{bottom:624.573333pt;}
.y204{bottom:626.333333pt;}
.y1dc{bottom:629.053333pt;}
.y129{bottom:636.093333pt;}
.y1a9{bottom:637.373333pt;}
.y103{bottom:639.453333pt;}
.y44{bottom:640.253333pt;}
.yb6{bottom:642.493333pt;}
.y203{bottom:643.133333pt;}
.y1db{bottom:645.853333pt;}
.y1c{bottom:646.493333pt;}
.y1a8{bottom:652.733333pt;}
.y102{bottom:657.373333pt;}
.y43{bottom:658.173333pt;}
.y202{bottom:658.493333pt;}
.yb5{bottom:660.573333pt;}
.y1da{bottom:661.213333pt;}
.y1a7{bottom:669.533333pt;}
.y1b{bottom:671.773333pt;}
.y201{bottom:673.853333pt;}
.y101{bottom:675.453333pt;}
.y42{bottom:676.253333pt;}
.y1d9{bottom:678.013333pt;}
.yb4{bottom:678.493333pt;}
.y1a6{bottom:684.893333pt;}
.y75{bottom:689.373333pt;}
.y200{bottom:690.653333pt;}
.y1d8{bottom:693.533333pt;}
.y41{bottom:694.173333pt;}
.yb3{bottom:696.413333pt;}
.y1a{bottom:697.053333pt;}
.y1a5{bottom:701.693333pt;}
.y1ff{bottom:707.453333pt;}
.y1d7{bottom:708.893333pt;}
.y40{bottom:712.093333pt;}
.yb2{bottom:714.493333pt;}
.y1a4{bottom:717.053333pt;}
.y100{bottom:720.893333pt;}
.y1fe{bottom:724.253333pt;}
.y1d6{bottom:725.693333pt;}
.y8c{bottom:726.013333pt;}
.y3f{bottom:730.213333pt;}
.yb1{bottom:732.453333pt;}
.yd4{bottom:733.253333pt;}
.y1a3{bottom:733.893333pt;}
.y4{bottom:735.968000pt;}
.y19{bottom:738.853333pt;}
.y1fd{bottom:739.653333pt;}
.y1d5{bottom:741.093333pt;}
.y8b{bottom:747.973333pt;}
.y3e{bottom:748.133333pt;}
.y1a2{bottom:749.253333pt;}
.yb0{bottom:750.533333pt;}
.y18{bottom:756.133333pt;}
.y1d4{bottom:756.453333pt;}
.y71{bottom:762.053333pt;}
.y124{bottom:762.693333pt;}
.y1a1{bottom:766.053333pt;}
.y3d{bottom:766.213333pt;}
.y3{bottom:767.848000pt;}
.yaf{bottom:768.453333pt;}
.yff{bottom:770.213333pt;}
.y1fc{bottom:771.813333pt;}
.y1d3{bottom:773.253333pt;}
.y17{bottom:776.133333pt;}
.y1a0{bottom:781.413333pt;}
.y3c{bottom:784.133333pt;}
.yae{bottom:786.533333pt;}
.y1d2{bottom:788.613333pt;}
.y16{bottom:793.413333pt;}
.y19f{bottom:798.213333pt;}
.y2{bottom:799.729333pt;}
.y3b{bottom:802.213333pt;}
.y1d1{bottom:803.973333pt;}
.yad{bottom:804.453333pt;}
.yfe{bottom:811.973333pt;}
.y19e{bottom:813.573333pt;}
.y3a{bottom:820.133333pt;}
.y1d0{bottom:820.773333pt;}
.yac{bottom:822.373333pt;}
.y19d{bottom:830.373333pt;}
.y15{bottom:832.933333pt;}
.y6e{bottom:834.693333pt;}
.y1cf{bottom:836.133333pt;}
.y39{bottom:838.053333pt;}
.yab{bottom:840.453333pt;}
.y19c{bottom:845.733333pt;}
.y1ce{bottom:851.493333pt;}
.y121{bottom:852.293333pt;}
.y1{bottom:855.520000pt;}
.y38{bottom:856.133333pt;}
.yfd{bottom:857.413333pt;}
.yaa{bottom:858.373333pt;}
.y19b{bottom:862.533333pt;}
.y1cd{bottom:868.293333pt;}
.y14{bottom:870.053333pt;}
.y37{bottom:874.053333pt;}
.y6d{bottom:874.213333pt;}
.ya9{bottom:876.453333pt;}
.y19a{bottom:877.893333pt;}
.y1cc{bottom:883.653333pt;}
.y36{bottom:892.133333pt;}
.y6c{bottom:892.293333pt;}
.y11f{bottom:894.213333pt;}
.ya8{bottom:894.373333pt;}
.y199{bottom:894.693333pt;}
.yfc{bottom:898.533333pt;}
.y1cb{bottom:899.013333pt;}
.yd3{bottom:899.973333pt;}
.y13{bottom:902.533333pt;}
.ya5{bottom:908.293333pt;}
.y35{bottom:910.053333pt;}
.y1ca{bottom:915.813333pt;}
.yfb{bottom:922.693333pt;}
.y198{bottom:925.413333pt;}
.y34{bottom:928.133333pt;}
.y1c9{bottom:931.173333pt;}
.y12{bottom:934.853333pt;}
.ya2{bottom:938.373333pt;}
.y33{bottom:946.053333pt;}
.y1c8{bottom:946.533333pt;}
.y197{bottom:946.693333pt;}
.yd2{bottom:947.973333pt;}
.h9{height:20.421563pt;}
.h17{height:21.632000pt;}
.h16{height:23.359375pt;}
.h1a{height:30.080000pt;}
.ha{height:31.301562pt;}
.h11{height:35.039062pt;}
.h2c{height:35.179688pt;}
.h2b{height:35.343750pt;}
.h20{height:35.360000pt;}
.h13{height:36.000000pt;}
.h24{height:37.164062pt;}
.h25{height:37.275000pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.hb{height:38.776563pt;}
.h10{height:38.932188pt;}
.h8{height:39.113750pt;}
.h27{height:40.570312pt;}
.h21{height:41.280000pt;}
.h26{height:41.601562pt;}
.h1b{height:46.688125pt;}
.h19{height:46.718750pt;}
.h12{height:52.134375pt;}
.h18{height:53.937500pt;}
.hf{height:54.598989pt;}
.he{height:55.298750pt;}
.hd{height:57.787500pt;}
.hc{height:59.340000pt;}
.h2{height:59.845926pt;}
.h1f{height:62.812500pt;}
.h2a{height:63.137396pt;}
.h7{height:70.687500pt;}
.h14{height:72.000000pt;}
.h15{height:72.032000pt;}
.h3{height:75.009317pt;}
.h22{height:88.960000pt;}
.h1e{height:125.952000pt;}
.h1d{height:152.026667pt;}
.h1c{height:166.080000pt;}
.h29{height:344.640000pt;}
.h23{height:354.400000pt;}
.h28{height:365.440000pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:56.640000pt;}
.wb{width:81.952000pt;}
.w9{width:87.360000pt;}
.w4{width:103.872000pt;}
.wd{width:113.472000pt;}
.w6{width:151.226667pt;}
.wa{width:155.706667pt;}
.w5{width:179.546667pt;}
.wc{width:213.786667pt;}
.we{width:351.586667pt;}
.w7{width:453.693333pt;}
.w11{width:548.800000pt;}
.wf{width:575.040000pt;}
.w10{width:575.520000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:815.999988pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.680000pt;}
.x3c{left:8.800000pt;}
.x16{left:11.360000pt;}
.x10{left:12.960000pt;}
.x2d{left:14.400000pt;}
.x37{left:16.800000pt;}
.x3a{left:17.920000pt;}
.x26{left:18.880000pt;}
.x2f{left:20.000000pt;}
.x19{left:24.000000pt;}
.x13{left:25.920000pt;}
.x34{left:28.040000pt;}
.x28{left:29.600000pt;}
.x30{left:30.880000pt;}
.x3b{left:32.640000pt;}
.x31{left:35.400000pt;}
.x35{left:37.000000pt;}
.x9{left:37.920000pt;}
.x11{left:38.880000pt;}
.x17{left:39.840000pt;}
.xf{left:40.960000pt;}
.x1d{left:43.360000pt;}
.x18{left:46.560000pt;}
.x1a{left:47.840000pt;}
.x12{left:48.960000pt;}
.x44{left:51.360000pt;}
.xc{left:55.040000pt;}
.xb{left:56.800000pt;}
.x2a{left:57.800000pt;}
.xe{left:59.040000pt;}
.x38{left:61.320000pt;}
.x51{left:65.213333pt;}
.x14{left:67.200000pt;}
.x1b{left:71.360000pt;}
.x15{left:75.520000pt;}
.x2b{left:77.800000pt;}
.x48{left:81.600000pt;}
.x2{left:89.800000pt;}
.x1{left:90.708000pt;}
.x3{left:96.031988pt;}
.x47{left:99.200000pt;}
.x42{left:104.000000pt;}
.x32{left:106.880000pt;}
.x55{left:109.693333pt;}
.x46{left:111.840000pt;}
.x52{left:116.133333pt;}
.x5{left:120.031988pt;}
.x59{left:124.351988pt;}
.x4a{left:126.400000pt;}
.x43{left:129.120000pt;}
.x45{left:130.560000pt;}
.x56{left:133.440000pt;}
.x4b{left:136.960000pt;}
.x27{left:139.226667pt;}
.x4{left:144.026655pt;}
.x24{left:147.560000pt;}
.x4f{left:151.386667pt;}
.x50{left:153.626667pt;}
.x49{left:155.546667pt;}
.x57{left:161.093333pt;}
.x58{left:162.906667pt;}
.x22{left:165.466655pt;}
.x40{left:175.066667pt;}
.x8{left:190.906667pt;}
.x33{left:193.160000pt;}
.x6{left:201.786655pt;}
.x23{left:211.226667pt;}
.x39{left:219.240000pt;}
.x29{left:226.586667pt;}
.x36{left:228.040000pt;}
.x21{left:250.426655pt;}
.x3e{left:269.986655pt;}
.x41{left:288.546667pt;}
.xa{left:294.786667pt;}
.x3d{left:298.306655pt;}
.x2c{left:382.306667pt;}
.x1f{left:400.226655pt;}
.x7{left:408.066655pt;}
.x53{left:432.093321pt;}
.x2e{left:464.253333pt;}
.xd{left:474.333333pt;}
.x1e{left:550.013321pt;}
.x3f{left:653.093321pt;}
.x25{left:664.933333pt;}
.x54{left:682.533321pt;}
.x4e{left:696.133321pt;}
.x20{left:706.053321pt;}
.x4c{left:776.159988pt;}
.x4d{left:794.079988pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
